summaryrefslogtreecommitdiffstats
path: root/karm/taskviewwhatsthis.h
diff options
context:
space:
mode:
Diffstat (limited to 'karm/taskviewwhatsthis.h')
-rw-r--r--karm/taskviewwhatsthis.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/karm/taskviewwhatsthis.h b/karm/taskviewwhatsthis.h
new file mode 100644
index 000000000..af8a82969
--- /dev/null
+++ b/karm/taskviewwhatsthis.h
@@ -0,0 +1,32 @@
+//
+// C++ Interface: taskviewwhatsthis
+//
+//
+// Author: Thorsten Staerk <thorsten@staerk.de>, (C) 2005
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#ifndef TASKVIEWWHATSTHIS_H
+#define TASKVIEWWHATSTHIS_H
+
+#include <qwhatsthis.h>
+#include <klistview.h>
+
+/**
+this is the karm-taskview-specific implementation of qwhatsthis
+
+@author Thorsten Staerk
+*/
+class TaskViewWhatsThis : public QWhatsThis
+{
+public:
+ TaskViewWhatsThis( QWidget* );
+ ~TaskViewWhatsThis();
+
+ QString text ( const QPoint & );
+
+private:
+ KListView* _listView; // stores the associated listview for column widths
+};
+#endif