diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /kresources/egroupware/kabc_resourcexmlrpc.h | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/egroupware/kabc_resourcexmlrpc.h')
-rw-r--r-- | kresources/egroupware/kabc_resourcexmlrpc.h | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/kresources/egroupware/kabc_resourcexmlrpc.h b/kresources/egroupware/kabc_resourcexmlrpc.h new file mode 100644 index 000000000..57bbd903a --- /dev/null +++ b/kresources/egroupware/kabc_resourcexmlrpc.h @@ -0,0 +1,114 @@ +/* + This file is part of kdepim. + Copyright (c) 2003 - 2004 Tobias Koenig <[email protected]> + + This library 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. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#ifndef KABC_RESOURCEXMLRPC_H +#define KABC_RESOURCEXMLRPC_H + +#include <qmap.h> +#include <kdepimmacros.h> + +#include "libkdepim/kabcresourcecached.h" + +class KConfig; +class Synchronizer; + +namespace KXMLRPC { +class Server; +} + +namespace KABC { + +class EGroupwarePrefs; + +class KDE_EXPORT ResourceXMLRPC : public ResourceCached +{ + Q_OBJECT + + public: + ResourceXMLRPC( const KConfig* ); + ResourceXMLRPC( const QString &url, const QString &domain, + const QString &user, const QString &password ); + ~ResourceXMLRPC(); + + virtual void writeConfig( KConfig* ); + + EGroupwarePrefs *prefs() const { return mPrefs; } + + virtual bool doOpen(); + virtual void doClose(); + + virtual Ticket *requestSaveTicket(); + virtual void releaseSaveTicket( Ticket* ); + + virtual bool load(); + virtual bool asyncLoad(); + virtual bool save( Ticket * ); + virtual bool asyncSave( Ticket * ); + + protected: + void init(); + + protected slots: + void loginFinished( const QValueList<QVariant>&, const QVariant& ); + void logoutFinished( const QValueList<QVariant>&, const QVariant& ); + + void listContactsFinished( const QValueList<QVariant>&, const QVariant& ); + void addContactFinished( const QValueList<QVariant>&, const QVariant& ); + void updateContactFinished( const QValueList<QVariant>&, const QVariant& ); + void deleteContactFinished( const QValueList<QVariant>&, const QVariant& ); + void loadCategoriesFinished( const QValueList<QVariant>&, const QVariant& ); + void loadCustomFieldsFinished( const QValueList<QVariant>&, const QVariant& ); + + void fault( int, const QString&, const QVariant& ); + void addContactFault( int, const QString&, const QVariant& ); + void updateContactFault( int, const QString&, const QVariant& ); + void deleteContactFault( int, const QString&, const QVariant& ); + + void addContact( const KABC::Addressee& ); + void updateContact( const KABC::Addressee& ); + void deleteContact( const KABC::Addressee& ); + + private: + void initEGroupware(); + + QString addrTypesToTypeStr( int ); + + void writeContact( const Addressee&, QMap<QString, QVariant>& ); + void readContact( const QMap<QString, QVariant>&, Addressee &addr, QString& ); + + EGroupwarePrefs *mPrefs; + + QString mSessionID; + QString mKp3; + + QMap<QString, int> mCategoryMap; + QMap<QString, int> mAddrTypes; + QMap<QString, QString> mCustomFieldsMap; + + KXMLRPC::Server *mServer; + Synchronizer *mSynchronizer; + + class ResourceXMLRPCPrivate; + ResourceXMLRPCPrivate *d; +}; + +} + +#endif |