summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/editor.h
authorzecke <zecke>2003-02-24 13:34:03 (UTC)
committer zecke <zecke>2003-02-24 13:34:03 (UTC)
commitb04ced09167d910e5cab1981bde295e2e8185fee (patch) (unidiff)
tree2623e1553968654b133343ce7333995243216201 /core/pim/datebook2/editor.h
parentcfecfd53c433a3b530e4abcef51e81feae3c8641 (diff)
downloadopie-b04ced09167d910e5cab1981bde295e2e8185fee.zip
opie-b04ced09167d910e5cab1981bde295e2e8185fee.tar.gz
opie-b04ced09167d910e5cab1981bde295e2e8185fee.tar.bz2
Add Implementation for Templates, Locations, Descriptions
add some more stuff
Diffstat (limited to 'core/pim/datebook2/editor.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook2/editor.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/core/pim/datebook2/editor.h b/core/pim/datebook2/editor.h
index 53e8718..3fcfaa4 100644
--- a/core/pim/datebook2/editor.h
+++ b/core/pim/datebook2/editor.h
@@ -16,13 +16,13 @@ namespace Datebook {
16 class Editor { 16 class Editor {
17 public: 17 public:
18 Editor( MainWindow*, QWidget* parent ); 18 Editor( MainWindow*, QWidget* parent );
19 virtual Editor(); 19 virtual ~Editor();
20 20
21 bool newEvent( const QDate& ); 21 virtual bool newEvent( const QDate& ) = 0;
22 bool newEvent( const QDateTime& start, const QDateTime& end ); 22 virtual bool newEvent( const QDateTime& start, const QDateTime& end ) = 0;
23 bool edit( const OEvent& ); 23 virtual bool edit( const OEvent&, bool showRec = TRUE ) = 0;
24 24
25 OEvent event()const; 25 virtual OEvent event()const = 0;
26 26
27 protected: 27 protected:
28 DescriptionManager descriptions()const; 28 DescriptionManager descriptions()const;
@@ -30,6 +30,9 @@ namespace Datebook {
30 void setDescriptions( const DescriptionManager& ); 30 void setDescriptions( const DescriptionManager& );
31 void setLocations( const LocationManager& ); 31 void setLocations( const LocationManager& );
32 32
33 private:
34 MainWindow* m_win;
35
33 }; 36 };
34} 37}
35 38