summaryrefslogtreecommitdiff
path: root/libopie/pim/ocontactaccessbackend_vcard.h
authoreilers <eilers>2002-11-09 14:34:52 (UTC)
committer eilers <eilers>2002-11-09 14:34:52 (UTC)
commit66b3123dabbad8bdfc75893e0e0c4c4e63301435 (patch) (side-by-side diff)
tree24098aa7e3de8e2cead0a0dd70d6fb4d07111659 /libopie/pim/ocontactaccessbackend_vcard.h
parentfe6a34ccbccac131c0421a06834ca33de33c0900 (diff)
downloadopie-66b3123dabbad8bdfc75893e0e0c4c4e63301435.zip
opie-66b3123dabbad8bdfc75893e0e0c4c4e63301435.tar.gz
opie-66b3123dabbad8bdfc75893e0e0c4c4e63301435.tar.bz2
Added VCard Backend.
Diffstat (limited to 'libopie/pim/ocontactaccessbackend_vcard.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/pim/ocontactaccessbackend_vcard.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/libopie/pim/ocontactaccessbackend_vcard.h b/libopie/pim/ocontactaccessbackend_vcard.h
new file mode 100644
index 0000000..c1422b0
--- a/dev/null
+++ b/libopie/pim/ocontactaccessbackend_vcard.h
@@ -0,0 +1,65 @@
+/*
+ * VCard Backend for the OPIE-Contact Database.
+ *
+ * Copyright (c) 2002 by Stefan Eilers (Eilers.Stefan@epost.de)
+ *
+ * =====================================================================
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ * =====================================================================
+ * ToDo:
+ *
+ * =====================================================================
+ * Version: $Id$
+ * =====================================================================
+ * History:
+ * $Log$
+ * Revision 1.1 2002/11/09 14:34:52 eilers
+ * Added VCard Backend.
+ *
+ */
+#ifndef __OCONTACTACCESSBACKEND_VCARD_H_
+#define __OCONTACTACCESSBACKEND_VCARD_H_
+
+#include <opie/ocontact.h>
+
+#include "ocontactaccessbackend.h"
+
+class VObject;
+
+class OContactAccessBackend_VCard : public OContactAccessBackend {
+ public:
+ OContactAccessBackend_VCard ( QString appname, QString filename = 0l );
+
+ bool load ();
+ bool reload();
+ bool save();
+ void clear ();
+
+ bool add ( const OContact& newcontact );
+ bool remove ( int uid );
+ bool replace ( const OContact& contact );
+
+ OContact find ( int uid ) const;
+ QArray<int> allRecords() const;
+ QArray<int> queryByExample ( const OContact &query, int settings );
+ QArray<int> matchRegexp( const QRegExp &r ) const;
+
+ const uint querySettings();
+ bool hasQuerySettings (uint querySettings) const;
+
+private:
+ OContact parseVObject( VObject* obj );
+ VObject* createVObject( const OContact& c );
+ QDate convVCardDateToDate( const QString& datestr );
+ VObject *safeAddPropValue( VObject *o, const char* prop, const QString& value );
+ VObject *safeAddProp( VObject* o, const char* prop);
+
+ bool m_dirty : 1;
+ QString m_file;
+ QMap<int, OContact> m_map;
+};
+
+#endif