summaryrefslogtreecommitdiffstats
path: root/libkpimexchange/core/exchangeclient.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /libkpimexchange/core/exchangeclient.h
downloadtdepim-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 'libkpimexchange/core/exchangeclient.h')
-rw-r--r--libkpimexchange/core/exchangeclient.h134
1 files changed, 134 insertions, 0 deletions
diff --git a/libkpimexchange/core/exchangeclient.h b/libkpimexchange/core/exchangeclient.h
new file mode 100644
index 00000000..b887dac5
--- /dev/null
+++ b/libkpimexchange/core/exchangeclient.h
@@ -0,0 +1,134 @@
+/*
+ This file is part of libkpimexchange
+ Copyright (c) 2002 Jan-Pascal van Best <janpascal@vanbest.org>
+
+ 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 KDEPIM_EXCHANGE_CLIENT_H
+#define KDEPIM_EXCHANGE_CLIENT_H
+
+#include <qstring.h>
+#include <qdatetime.h>
+#include <qobject.h>
+#include <qhostaddress.h>
+#include <qptrlist.h>
+
+#include <kdepimmacros.h>
+
+namespace KCal {
+ class Event;
+ class Calendar;
+}
+
+namespace KIO {
+ class Job;
+}
+
+namespace KPIM {
+
+class ExchangeAccount;
+class ExchangeDownload;
+class ExchangeUpload;
+class ExchangeDelete;
+//class ExchangeMonitor;
+
+class KDE_EXPORT ExchangeClient : public QObject {
+ Q_OBJECT
+ public:
+ ExchangeClient( ExchangeAccount* account, const QString& mTimeZoneId=QString::null );
+ ~ExchangeClient();
+
+ /**
+ * Associate this client with a window given by @p window.
+ */
+ void setWindow(QWidget *window);
+
+ /**
+ * Returns the window this client is associated with.
+ */
+ QWidget *window() const;
+
+ /**
+ * Set the time zone to use
+ */
+ void setTimeZoneId( const QString& timeZoneId );
+ QString timeZoneId();
+
+ // synchronous functions
+ enum {
+ ResultOK, /** No problem */
+ UnknownError, /** Something else happened */
+ CommunicationError, /** IO Error, the server could not be reached or returned an HTTP error */
+ ServerResponseError, /** Server did not give a useful response. For download, this
+ means that a SEARCH did not result in anything like an appointment */
+ IllegalAppointmentError, /** Reading appointment data from server response failed */
+ NonEventError, /** The Incidence that is to be uplaoded to the server is not an Event */
+ EventWriteError, /** When writing an event to the server, an error occurred */
+ DeleteUnknownEventError /** The event to be deleted does not exist on the server */
+ };
+
+ int downloadSynchronous( KCal::Calendar* calendar, const QDate& start, const QDate& end, bool showProgress=false);
+ int uploadSynchronous( KCal::Event* event );
+ int removeSynchronous( KCal::Event* event );
+
+ // ExchangeMonitor* monitor( int pollMode, const QHostAddress& ownInterface );
+
+ QString detailedErrorString();
+
+ public slots:
+ // Asynchronous functions, wait for "finished" signals for result
+ // Deprecated: use download() without the Calendar* argument instead
+ void download( KCal::Calendar* calendar, const QDate& start, const QDate& end, bool showProgress=false);
+ void download( const QDate& start, const QDate& end, bool showProgress=false);
+ void upload( KCal::Event* event );
+ void remove( KCal::Event* event );
+ void test();
+
+ private slots:
+ void slotDownloadFinished( ExchangeDownload* worker, int result, const QString& moreInfo );
+ void slotDownloadFinished( ExchangeDownload* worker, int result, const QString& moreInfo, QPtrList<KCal::Event>& );
+ void slotUploadFinished( ExchangeUpload* worker, int result, const QString& moreInfo );
+ void slotRemoveFinished( ExchangeDelete* worker, int result, const QString& moreInfo );
+ void slotSyncFinished( int result, const QString& moreInfo );
+
+ signals:
+ // Useful for progress dialogs, shows how much still needs to be done.
+ // Not used right now, since ExchangeDownload provides its own progress dialog
+ void startDownload();
+ void finishDownload();
+
+ void downloadFinished( int result, const QString& moreInfo );
+ void event( KCal::Event* event, const KURL& url);
+ void downloadFinished( int result, const QString& moreInfo, QPtrList<KCal::Event>& events );
+ void uploadFinished( int result, const QString& moreInfo );
+ void removeFinished( int result, const QString& moreInfo );
+
+ private:
+ void test2();
+
+ enum { WaitingForResult, HaveResult, Error };
+
+ int mClientState;
+ int mSyncResult;
+ QString mDetailedErrorString;
+ QWidget* mWindow;
+ ExchangeAccount* mAccount;
+ QString mTimeZoneId;
+};
+
+}
+
+#endif