From 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- kresources/slox/kcalresourceslox.h | 167 +++++++++++++++++++++++++++++++++++++ 1 file changed, 167 insertions(+) create mode 100644 kresources/slox/kcalresourceslox.h (limited to 'kresources/slox/kcalresourceslox.h') diff --git a/kresources/slox/kcalresourceslox.h b/kresources/slox/kcalresourceslox.h new file mode 100644 index 000000000..2d0022cc7 --- /dev/null +++ b/kresources/slox/kcalresourceslox.h @@ -0,0 +1,167 @@ +/* + This file is part of kdepim. + + Copyright (c) 2004 Cornelius Schumacher + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +*/ +#ifndef KCALRESOURCESLOX_H +#define KCALRESOURCESLOX_H + +#include "sloxbase.h" +#include "webdavhandler.h" + +#include +#include +#include +#include + +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +namespace KIO { +class FileCopyJob; +class Job; +class DavJob; +} + +namespace KCal { +class SloxPrefs; +} + +namespace KPIM { +class ProgressItem; +} + +class SloxAccounts; + +/** + This class provides a calendar stored as a remote file. +*/ +class KDE_EXPORT KCalResourceSlox : public KCal::ResourceCached, public SloxBase +{ + Q_OBJECT + + friend class KCalResourceSloxConfig; + + public: + /** + Reload policy. + + @see setReloadPolicy(), reloadPolicy() + */ + enum { ReloadNever, ReloadOnStartup, ReloadOnceADay, ReloadAlways }; + + /** + Create resource from configuration information stored in KConfig object. + */ + KCalResourceSlox( const KConfig * ); + KCalResourceSlox( const KURL &url ); + ~KCalResourceSlox(); + + void readConfig( const KConfig *config ); + void writeConfig( KConfig *config ); + + KCal::SloxPrefs *prefs() const { return mPrefs; } + + KABC::Lock *lock(); + + bool isSaving(); + + void dump() const; + + protected slots: + void slotLoadEventsResult( KIO::Job * ); + void slotLoadTodosResult( KIO::Job * ); + void slotUploadResult( KIO::Job * ); + + void slotEventsProgress( KIO::Job *job, unsigned long percent ); + void slotTodosProgress( KIO::Job *job, unsigned long percent ); + void slotUploadProgress( KIO::Job *job, unsigned long percent ); + + void cancelLoadEvents(); + void cancelLoadTodos(); + void cancelUpload(); + + protected: + void doClose(); + bool doLoad(); + bool doSave(); + + void requestEvents(); + void requestTodos(); + + void uploadIncidences(); + + void parseMembersAttribute( const QDomElement &e, + KCal::Incidence *incidence ); + void parseReadRightsAttribute( const QDomElement &e, + KCal::Incidence *incidence ); + void parseIncidenceAttribute( const QDomElement &e, + KCal::Incidence *incidence ); + void parseTodoAttribute( const QDomElement &e, KCal::Todo *todo ); + void parseEventAttribute( const QDomElement &e, KCal::Event *event ); + void parseRecurrence( const QDomNode &n, KCal::Event *event ); + + void createIncidenceAttributes( QDomDocument &doc, + QDomElement &parent, + KCal::Incidence *incidence ); + void createEventAttributes( QDomDocument &doc, + QDomElement &parent, + KCal::Event *event ); + void createTodoAttributes( QDomDocument &doc, + QDomElement &parent, + KCal::Todo *todo ); + void createRecurrenceAttributes( QDomDocument &doc, + QDomElement &parent, + KCal::Incidence *incidence ); + + bool confirmSave(); + + QString sloxIdToEventUid( const QString &sloxId ); + QString sloxIdToTodoUid( const QString &sloxId ); + + private: + void init(); + + KCal::SloxPrefs *mPrefs; + + KIO::DavJob *mLoadEventsJob; + KIO::DavJob *mLoadTodosJob; + KIO::DavJob *mUploadJob; + + KPIM::ProgressItem *mLoadEventsProgress; + KPIM::ProgressItem *mLoadTodosProgress; + KPIM::ProgressItem *mUploadProgress; + + KCal::Incidence *mUploadedIncidence; + bool mUploadIsDelete; + + KABC::Lock *mLock; + + WebdavHandler mWebdavHandler; + + SloxAccounts *mAccounts; +}; + +#endif -- cgit v1.2.1