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.
30 lines
444 B
30 lines
444 B
#ifndef PFRAME_H
|
|
#define PFRAME_H
|
|
|
|
class PFrame;
|
|
|
|
#include <tqframe.h>
|
|
#include "pmessage.h"
|
|
#include "pwidget.h"
|
|
|
|
class PFrame : public PWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static PObject *createWidget(CreateArgs &ca);
|
|
|
|
PFrame ( PObject * parent );
|
|
virtual ~PFrame ();
|
|
|
|
virtual void messageHandler(int fd, PukeMessage *pm);
|
|
|
|
virtual void setWidget(TQObject *w = 0x0);
|
|
virtual TQFrame *widget();
|
|
|
|
private:
|
|
TQFrame *frame;
|
|
};
|
|
|
|
#endif
|