summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/bookmanager.h
Side-by-side diff
Diffstat (limited to 'core/pim/datebook2/bookmanager.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook2/bookmanager.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/core/pim/datebook2/bookmanager.h b/core/pim/datebook2/bookmanager.h
new file mode 100644
index 0000000..44ad8ed
--- a/dev/null
+++ b/core/pim/datebook2/bookmanager.h
@@ -0,0 +1,40 @@
+#ifndef OPIE_DATE_BOOK_MANAGER_H
+#define OPIE_DATE_BOOK_MANAGER_H
+
+#include <qlist.h>
+
+#include <opie/opimrecord.h>
+#include <opie/odatebookaccess.h>
+
+namespace Datebook {
+ /**
+ * book manager is responsible for managing the
+ * access
+ * All access to the underlying API will be done
+ * through this class
+ */
+ class BookManager {
+ public:
+ BookManager();
+ ~BookManager();
+
+ bool isLoaded()const;
+ bool load();
+ bool save();
+
+ OEvent event( int uid );
+ OEffectiveEvent::ValueList list( const QDate& from,
+ const QDate& to );
+ ODateBookAccess::List allRecords()const;
+
+ void add( const OEvent& );
+ void update( const OEvent& );
+ void remove( int uid );
+ void remove( const QArray<int>& );
+
+ QPtrList<OPimRecord> records( const QDate& from,
+ const QDate& to );
+ };
+}
+
+#endif