00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef KSHOWMAILDOCK_H
00019 #define KSHOWMAILDOCK_H
00020
00021 #include <qwidget.h>
00022 #include <qpixmap.h>
00023 #include <ksystemtray.h>
00024 #include <kaction.h>
00025
00030 class KShowMailDock : public KSystemTray
00031 {
00032 Q_OBJECT
00033 public:
00034 KShowMailDock(QWidget*, KAction *actionRefresh );
00035 ~KShowMailDock() {};
00036 void drawText (const QString str, const QColor& color);
00037 void drawNumber (int n, const QColor& color);
00038 void clear ();
00039 signals:
00040 void sigActivated(int);
00041 void sigHighlighted(int);
00042 private:
00043 QPixmap m_background;
00044 };
00045
00046 #endif