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 --- kmail/sievejob.h | 129 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 kmail/sievejob.h (limited to 'kmail/sievejob.h') diff --git a/kmail/sievejob.h b/kmail/sievejob.h new file mode 100644 index 000000000..f7c353cf2 --- /dev/null +++ b/kmail/sievejob.h @@ -0,0 +1,129 @@ +/* -*- c++ -*- + sievejob.h + + KMail, the KDE mail client. + Copyright (c) 2002 Marc Mutz + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License, + version 2.0, as published by the Free Software Foundation. + 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, US +*/ + +#ifndef __KMAIL_SIEVE_JOB_H__ +#define __KMAIL_SIEVE_JOB_H__ + +#include +#include +#include +#include +#include + +#include +#include + +class QTextDecoder; +namespace KIO { + class Job; +} + +namespace KMail { + + class SieveJob : public QObject { + Q_OBJECT + protected: + enum Command { Get, Put, Activate, Deactivate, SearchActive, List, Delete }; + SieveJob( const KURL & url, const QString & script, + const QValueStack & commands, + QObject * parent=0, const char * name=0 ); + SieveJob( const KURL & url, const QString & script, + const QValueStack & commands, + bool showProgressInfo, + QObject * parent=0, const char * name=0 ); + virtual ~SieveJob(); + + public: + enum Existence { DontKnow, Yes, No }; + + /** + * Store a Sieve script. If @param makeActive is set, also mark the + * script active + */ + static SieveJob * put( const KURL & dest, const QString & script, + bool makeActive, bool wasActive ); + + /** + * Get a specific Sieve script + */ + static SieveJob * get( const KURL & src, bool showProgressInfo=true ); + + /** + * List all available scripts + */ + static SieveJob * list( const KURL & url ); + + static SieveJob * del( const KURL & url ); + + static SieveJob * activate( const KURL & url ); + + void kill( bool quiet=true ); + + const QStringList & sieveCapabilities() const { + return mSieveCapabilities; + } + + bool fileExists() const { + return mFileExists; + } + + signals: + void gotScript( KMail::SieveJob * job, bool success, + const QString & script, bool active ); + + /** + * We got the list of available scripts + * + * @param scriptList is the list of script filenames + * @param activeScript lists the filename of the active script, or an + * empty string if no script is active. + */ + void gotList( KMail::SieveJob *job, bool success, + const QStringList &scriptList, const QString &activeScript ); + + void result( KMail::SieveJob * job, bool success, + const QString & script, bool active ); + + void item( KMail::SieveJob * job, const QString & filename, bool active ); + + protected: + void schedule( Command command, bool showProgressInfo ); + + protected slots: + void slotData( KIO::Job *, const QByteArray & ); // for get + void slotDataReq( KIO::Job *, QByteArray & ); // for put + void slotEntries( KIO::Job *, const KIO::UDSEntryList & ); // for listDir + void slotResult( KIO::Job * ); // for all commands + + protected: + KURL mUrl; + KIO::Job * mJob; + QTextDecoder * mDec; + QString mScript; + QString mActiveScriptName; + Existence mFileExists; + QStringList mSieveCapabilities; + QValueStack mCommands; + bool mShowProgressInfo; + + // List of Sieve scripts on the server, used by @ref list() + QStringList mAvailableScripts; + }; + +} // namespace KMail + +#endif // __KMAIL_SIEVE_JOB_H__ + +// vim: set noet sts=2 ts=8 sw=2: + -- cgit v1.2.1