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.
35 lines
556 B
35 lines
556 B
#ifndef POBJFINDER_H
|
|
#define POBJFINDER_H
|
|
|
|
#include "pobject.h"
|
|
#include "../objFinder.h"
|
|
#include "pmessage.h"
|
|
#include "controller.h"
|
|
|
|
|
|
class PObjFinder : public PObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static PObject *createWidget(CreateArgs &ca);
|
|
|
|
PObjFinder ( PObject * parent );
|
|
virtual ~PObjFinder ();
|
|
|
|
virtual void messageHandler(int fd, PukeMessage *pm);
|
|
|
|
virtual void setWidget(TQObject *_obj = 0);
|
|
virtual objFinder *widget();
|
|
|
|
public slots:
|
|
virtual void newObject(TQObject *obj);
|
|
|
|
protected:
|
|
bool checkWidget();
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|