You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
536 B
35 lines
536 B
#ifndef PTABLEVIEW_H
|
|
#define PTABLEVIEW_H
|
|
|
|
class PTableView;
|
|
|
|
#include <tqgridview.h>
|
|
|
|
#include "pmessage.h"
|
|
#include "pframe.h"
|
|
#include "controller.h"
|
|
|
|
// Init and setup code
|
|
class PTableView : public PFrame
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
static PObject *createWidget(CreateArgs &ca);
|
|
|
|
PTableView ( PObject * parent );
|
|
virtual ~PTableView ();
|
|
|
|
virtual void messageHandler(int fd, PukeMessage *pm);
|
|
|
|
virtual void setWidget(TQObject *_tbl);
|
|
virtual TQGridView *widget();
|
|
|
|
public slots:
|
|
|
|
private:
|
|
TQGridView *tbl;
|
|
};
|
|
|
|
#endif
|