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.
tdenetwork/ksirc/puke/plabel.h

35 lines
513 B

#ifndef PLABEL_H
#define PLABEL_H
class PLabel;
#include <qlabel.h>
#include "pmessage.h"
#include "pframe.h"
#include "controller.h"
class PLabel : public PFrame
{
Q_OBJECT
public:
static PObject *createWidget(CreateArgs &ca);
PLabel ( PObject * parent );
virtual ~PLabel ();
virtual void messageHandler(int fd, PukeMessage *pm);
virtual void setWidget(QObject *_obj = 0);
virtual QLabel *widget();
public slots:
protected:
bool checkWidget();
private:
QLabel *label;
};
#endif