summaryrefslogtreecommitdiff
path: root/noncore/applets/pyquicklaunch/pyquicklaunch.h
Unidiff
Diffstat (limited to 'noncore/applets/pyquicklaunch/pyquicklaunch.h') (more/less context) (ignore 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 @@
18#include <qwidget.h> 18#include <qwidget.h>
19#include <qfile.h>
19#include <qframe.h> 20#include <qframe.h>
@@ -22,2 +23,3 @@
22class PyQuicklaunchApplet; 23class PyQuicklaunchApplet;
24class QCopChannel;
23 25
@@ -33,4 +35,2 @@ class PyQuicklaunchControl : public QFrame
33 35
34 public slots:
35
36 private: 36 private:
@@ -49,2 +49,6 @@ class PyQuicklaunchApplet : public QWidget
49 virtual void timerEvent( QTimerEvent* ); 49 virtual void timerEvent( QTimerEvent* );
50 bool online;
51
52 public slots:
53 void receivedMessage( const QCString & msg, const QByteArray & data );
50 54
@@ -53,2 +57,9 @@ class PyQuicklaunchApplet : public QWidget
53 virtual void paintEvent( QPaintEvent* ); 57 virtual void paintEvent( QPaintEvent* );
58
59 private:
60 QCopChannel* _control;
61 QFile _fifo;
62 QString _fifoName;
63 QPixmap _online;
64 QPixmap _offline;
54}; 65};