From 66b3123dabbad8bdfc75893e0e0c4c4e63301435 Mon Sep 17 00:00:00 2001 From: eilers Date: Sat, 09 Nov 2002 14:34:52 +0000 Subject: Added VCard Backend. --- (limited to 'libopie/pim/ocontactaccessbackend_vcard.h') 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 + +#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 allRecords() const; + QArray queryByExample ( const OContact &query, int settings ); + QArray 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 m_map; +}; + +#endif -- cgit v0.9.0.2