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.
42 lines
681 B
42 lines
681 B
#ifndef PBUTTON_H
|
|
#define PBUTTON_H
|
|
|
|
class PButton;
|
|
|
|
#include <tqbutton.h>
|
|
#include "pmessage.h"
|
|
#include "pwidget.h"
|
|
#include "pobject.h"
|
|
#include "controller.h"
|
|
|
|
|
|
class PButton : public PWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static PObject *createWidget(CreateArgs &ca);
|
|
|
|
PButton ( PObject * parent );
|
|
virtual ~PButton ();
|
|
|
|
virtual void messageHandler(int fd, PukeMessage *pm);
|
|
|
|
virtual void setWidget(TQObject *_qb = 0x0);
|
|
virtual TQButton *widget();
|
|
|
|
public slots:
|
|
void buttonPressed();
|
|
void buttonReleased();
|
|
void buttonClicked();
|
|
void buttonToggled(bool);
|
|
|
|
private:
|
|
TQButton *button;
|
|
|
|
void buttonMessage(int iCommand);
|
|
bool checkWidget();
|
|
};
|
|
|
|
#endif
|