summaryrefslogtreecommitdiff
path: root/core/pim/todo/textviewshow.h
Side-by-side diff
Diffstat (limited to 'core/pim/todo/textviewshow.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/todo/textviewshow.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/core/pim/todo/textviewshow.h b/core/pim/todo/textviewshow.h
new file mode 100644
index 0000000..f58026b
--- a/dev/null
+++ b/core/pim/todo/textviewshow.h
@@ -0,0 +1,17 @@
+#include <qtextview.h>
+
+#include "todoshow.h"
+
+namespace Todo {
+
+ class TextViewShow : public QTextView, public TodoShow {
+ public:
+ TextViewShow( QWidget* parent );
+ ~TextViewShow();
+
+ QString type()const;
+ void slotShow( const OTodo& ev );
+ QWidget* widget();
+
+ };
+};