summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/show.h
authorzecke <zecke>2003-02-23 21:27:08 (UTC)
committer zecke <zecke>2003-02-23 21:27:08 (UTC)
commit041eda0d7482d60cd67731b81fd36104fcd3120f (patch) (unidiff)
treec7bc7730b9e76e22f828291d404821f7bd922d6f /core/pim/datebook2/show.h
parenta195865dfdb03b4c7c972acfc8cfd87743ab3e6f (diff)
downloadopie-041eda0d7482d60cd67731b81fd36104fcd3120f.zip
opie-041eda0d7482d60cd67731b81fd36104fcd3120f.tar.gz
opie-041eda0d7482d60cd67731b81fd36104fcd3120f.tar.bz2
Implement some of the new framework
Diffstat (limited to 'core/pim/datebook2/show.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook2/show.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/core/pim/datebook2/show.h b/core/pim/datebook2/show.h
index 37d22fe..72775a9 100644
--- a/core/pim/datebook2/show.h
+++ b/core/pim/datebook2/show.h
@@ -2,6 +2,7 @@
2#define OPIE_DATEBOOK_SHOW_H 2#define OPIE_DATEBOOK_SHOW_H
3 3
4#include <qstring.h> 4#include <qstring.h>
5#include <qtextview.h>
5 6
6#include <opie/oevent.h> 7#include <opie/oevent.h>
7 8
@@ -25,7 +26,7 @@ namespace Datebook {
25 /** 26 /**
26 * show the OEvent 27 * show the OEvent
27 */ 28 */
28 void show(const OEvent& str); 29 virtual void show(const OEvent& str) = 0;
29 30
30 /** 31 /**
31 * the Widget 32 * the Widget
@@ -38,6 +39,18 @@ namespace Datebook {
38 */ 39 */
39 void hideMe(); 40 void hideMe();
40 41
42 private:
43 MainWindow* m_win;
44 };
45 class TextShow : public QTextView {
46 Q_OBJECT
47 public:
48 TextShow( QWidget* parent, MainWindow* win );
49 ~TextShow();
50
51 QWidget* widget();
52 void show(const OEvent&);
53
41 }; 54 };
42} 55}
43 56