blob: a603d684bd64f872ed9c29fa95aad408106b6b2b (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef PTABDIALOG_H
#define PTABDIALOG_H
class PTabDialog;
#include <tqtabdialog.h>
#include "pmessage.h"
#include "pwidget.h"
class PTabDialog : public PWidget
{
Q_OBJECT
TQ_OBJECT
public:
static PObject *createWidget(CreateArgs &ca);
PTabDialog(TQObject *parent = 0);
virtual ~PTabDialog();
/**
* Handles messages from dsirc
* PObject can't get messages so return an error
*/
virtual void messageHandler(int fd, PukeMessage *pm);
/**
* Sets the current opbect
*/
virtual void setWidget(TQObject *tb);
/**
* Returns the current object
*/
virtual TQTabDialog *widget();
private:
TQTabDialog *tab;
};
#endif
|