summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/editor.h
Side-by-side diff
Diffstat (limited to 'core/pim/datebook2/editor.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook2/editor.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/core/pim/datebook2/editor.h b/core/pim/datebook2/editor.h
new file mode 100644
index 0000000..53e8718
--- a/dev/null
+++ b/core/pim/datebook2/editor.h
@@ -0,0 +1,36 @@
+#ifndef OPIE_DATEBOOK_EDITOR_H
+#define OPIE_DATEBOOK_EDITOR_H
+
+#include <qdialog.h>
+
+#include <opie/oevent.h>
+
+#include "descriptionmanager.h"
+#include "locationmanager.h"
+
+namespace Datebook {
+ class MainWindow;
+ /**
+ * This is the editor interface
+ */
+ class Editor {
+ public:
+ Editor( MainWindow*, QWidget* parent );
+ virtual Editor();
+
+ bool newEvent( const QDate& );
+ bool newEvent( const QDateTime& start, const QDateTime& end );
+ bool edit( const OEvent& );
+
+ OEvent event()const;
+
+ protected:
+ DescriptionManager descriptions()const;
+ LocationManager locations()const;
+ void setDescriptions( const DescriptionManager& );
+ void setLocations( const LocationManager& );
+
+ };
+}
+
+#endif