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 <tqwidget.h>
00022 #include <tqpixmap.h>
00023 #include <ksystemtray.h>
00024 #include <tdeaction.h>
00025
00030 class KShowMailDock : public KSystemTray
00031 {
00032 TQ_OBJECT
00033 public:
00034 KShowMailDock(TQWidget*, TDEAction *actionRefresh );
00035 ~KShowMailDock() {};
00036 void drawText (const TQString str, const TQColor& color);
00037 void drawNumber (int n, const TQColor& color);
00038 void clear ();
00039 signals:
00040 void sigActivated(int);
00041 void sigHighlighted(int);
00042 private:
00043 TQPixmap m_background;
00044 };
00045
00046 #endif