summaryrefslogtreecommitdiffstats
path: root/ksirc/puke/pobject.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitbcb704366cb5e333a626c18c308c7e0448a8e69f (patch)
treef0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /ksirc/puke/pobject.h
downloadtdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz
tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksirc/puke/pobject.h')
-rw-r--r--ksirc/puke/pobject.h134
1 files changed, 134 insertions, 0 deletions
diff --git a/ksirc/puke/pobject.h b/ksirc/puke/pobject.h
new file mode 100644
index 00000000..8e5c7c5a
--- /dev/null
+++ b/ksirc/puke/pobject.h
@@ -0,0 +1,134 @@
+#ifndef POBJECT_H
+#define POBJECT_H
+
+class PObject;
+class PukeController;
+class CreateArgs;
+
+#include <qobject.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
+ */
+ QObject *fetchedObj;
+};
+
+class PObject : public QObject
+{
+ Q_OBJECT
+ public:
+ PObject(QObject *parent = 0, const char *name = 0);
+ virtual ~PObject();
+
+ /**
+ * Creates a new QObject 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(QObject *w);
+
+ /**
+ * Returns the current object
+ */
+ virtual QObject *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
+ */
+ QString 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(QObject *_w);
+
+private:
+ QObject *obj;
+ PukeController *pController;
+ widgetId wI;
+
+ bool manualTerm;
+ bool deleteAble;
+ QString m_error;
+ bool m_hasError;
+};
+
+#include "controller.h"
+#endif