summaryrefslogtreecommitdiff
path: root/noncore/applets/pyquicklaunch/pyquicklaunch.h
Side-by-side diff
Diffstat (limited to 'noncore/applets/pyquicklaunch/pyquicklaunch.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/applets/pyquicklaunch/pyquicklaunch.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/noncore/applets/pyquicklaunch/pyquicklaunch.h b/noncore/applets/pyquicklaunch/pyquicklaunch.h
index e99f780..f108b43 100644
--- a/noncore/applets/pyquicklaunch/pyquicklaunch.h
+++ b/noncore/applets/pyquicklaunch/pyquicklaunch.h
@@ -18,2 +18,3 @@
#include <qwidget.h>
+#include <qfile.h>
#include <qframe.h>
@@ -22,2 +23,3 @@
class PyQuicklaunchApplet;
+class QCopChannel;
@@ -33,4 +35,2 @@ class PyQuicklaunchControl : public QFrame
- public slots:
-
private:
@@ -49,2 +49,6 @@ class PyQuicklaunchApplet : public QWidget
virtual void timerEvent( QTimerEvent* );
+ bool online;
+
+ public slots:
+ void receivedMessage( const QCString & msg, const QByteArray & data );
@@ -53,2 +57,9 @@ class PyQuicklaunchApplet : public QWidget
virtual void paintEvent( QPaintEvent* );
+
+ private:
+ QCopChannel* _control;
+ QFile _fifo;
+ QString _fifoName;
+ QPixmap _online;
+ QPixmap _offline;
};