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.
136 lines
2.4 KiB
136 lines
2.4 KiB
#ifndef POBJECT_H
|
|
#define POBJECT_H
|
|
|
|
class PObject;
|
|
class PukeController;
|
|
class CreateArgs;
|
|
|
|
#include <tqobject.h>
|
|
#include "pmessage.h"
|
|
|
|
|
|
class CreateArgs {
|
|
public:
|
|
CreateArgs(PukeController *_pc, PukeMessage *_pm, widgetId *_pwI, PObject *_parent){
|
|
pc = _pc;
|
|
pwI = _pwI;
|
|
parent = _parent;
|
|
pm = _pm;
|
|
fetchedObj = 0;
|
|
}
|
|
PukeController *pc;
|
|
widgetId *pwI;
|
|
PObject *parent;
|
|
PukeMessage *pm;
|
|
|
|
/**
|
|
* name of the widget which was fetched from kSirc, this has to be set explicitly
|
|
*/
|
|
TQObject *fetchedObj;
|
|
};
|
|
|
|
class PObject : public TQObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PObject(TQObject *parent = 0, const char *name = 0);
|
|
virtual ~PObject();
|
|
|
|
/**
|
|
* Creates a new TQObject and returns a PObject
|
|
*/
|
|
static PObject *createWidget(CreateArgs &ca);
|
|
|
|
/**
|
|
* 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 *w);
|
|
|
|
/**
|
|
* Returns the current object
|
|
*/
|
|
virtual TQObject *widget();
|
|
|
|
/**
|
|
* Sets the window id
|
|
*/
|
|
virtual void setWidgetId(widgetId *pwI);
|
|
/**
|
|
* Returns the current window identifier
|
|
*/
|
|
virtual widgetId widgetIden();
|
|
|
|
/**
|
|
* Set's the puke controller for the widget
|
|
*/
|
|
void setPukeController(PukeController *pc){
|
|
pController = pc;
|
|
}
|
|
|
|
/**
|
|
* If we cannot delete the widget, check this (ie fetched widgets)
|
|
*/
|
|
bool isDeleteAble(){
|
|
return deleteAble;
|
|
}
|
|
|
|
/**
|
|
* Returns if an error was encountered.
|
|
*/
|
|
bool hasError() {
|
|
return m_hasError;
|
|
}
|
|
|
|
/**
|
|
* Returns error description
|
|
*/
|
|
TQString error() {
|
|
m_hasError = false;
|
|
return m_error;
|
|
}
|
|
|
|
/**
|
|
* Set this for fetched widgets and such that cannot be deleted
|
|
*/
|
|
void setDeleteAble(bool _d){
|
|
deleteAble = _d;
|
|
}
|
|
/**
|
|
* Before deleting the widget, call manTerm() to signal manual
|
|
* termination of the widget
|
|
*/
|
|
void manTerm();
|
|
|
|
|
|
signals:
|
|
void outputMessage(int fd, PukeMessage *pm);
|
|
void widgetDestroyed(widgetId wI);
|
|
|
|
protected slots:
|
|
void swidgetDestroyed();
|
|
|
|
protected:
|
|
PukeController *controller();
|
|
void errorInvalidSet(TQObject *_w);
|
|
|
|
private:
|
|
TQObject *obj;
|
|
PukeController *pController;
|
|
widgetId wI;
|
|
|
|
bool manualTerm;
|
|
bool deleteAble;
|
|
TQString m_error;
|
|
bool m_hasError;
|
|
};
|
|
|
|
#include "controller.h"
|
|
#endif
|