summaryrefslogtreecommitdiffstats
path: root/kshowmail/kshowmaildock.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 15:57:00 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 15:57:00 -0500
commitb888c7edb54e483ec0e3c2e2ce0eafd73acdcc65 (patch)
tree7ca76d42f66fb21ea08142de9a8d3bf16e597404 /kshowmail/kshowmaildock.h
downloadkshowmail-b888c7edb54e483ec0e3c2e2ce0eafd73acdcc65.tar.gz
kshowmail-b888c7edb54e483ec0e3c2e2ce0eafd73acdcc65.zip
Initial import from kshowmail 3.3.1 sources
Diffstat (limited to 'kshowmail/kshowmaildock.h')
-rw-r--r--kshowmail/kshowmaildock.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/kshowmail/kshowmaildock.h b/kshowmail/kshowmaildock.h
new file mode 100644
index 0000000..bc84f5b
--- /dev/null
+++ b/kshowmail/kshowmaildock.h
@@ -0,0 +1,46 @@
+/***************************************************************************
+ kshowmaildock.h - description
+ -------------------
+ begin : Wed Jan 3 2001
+ copyright : (C) 2001 by Eggert Ehmke
+ email : eggert.ehmke@berlin.de
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#ifndef KSHOWMAILDOCK_H
+#define KSHOWMAILDOCK_H
+
+#include <qwidget.h>
+#include <qpixmap.h>
+#include <ksystemtray.h>
+#include <kaction.h>
+
+/**
+ *@author Eggert Ehmke
+ */
+
+class KShowMailDock : public KSystemTray
+{
+ Q_OBJECT
+public:
+ KShowMailDock(QWidget*, KAction *actionRefresh );
+ ~KShowMailDock() {};
+ void drawText (const QString str, const QColor& color);
+ void drawNumber (int n, const QColor& color);
+ void clear ();
+signals:
+ void sigActivated(int);
+ void sigHighlighted(int);
+private:
+ QPixmap m_background;
+};
+
+#endif