summaryrefslogtreecommitdiffstats
path: root/ksirc/puke/pframe.h
blob: 8d7fbc82c1eeadb01a604bdf8dfff7e4253523bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#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