summaryrefslogtreecommitdiffstats
path: root/kmail/searchjob.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 /kmail/searchjob.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 'kmail/searchjob.h')
-rw-r--r--kmail/searchjob.h136
1 files changed, 136 insertions, 0 deletions
diff --git a/kmail/searchjob.h b/kmail/searchjob.h
new file mode 100644
index 000000000..5a655c62a
--- /dev/null
+++ b/kmail/searchjob.h
@@ -0,0 +1,136 @@
+/*
+ * Copyright (c) 2004 Carsten Burghardt <burghardt@kde.org>
+ *
+ * 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; version 2 of the License
+ *
+ * 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.
+ *
+ * In addition, as a special exception, the copyright holders give
+ * permission to link the code of this program with any edition of
+ * the Qt library by Trolltech AS, Norway (or with modified versions
+ * of Qt that use the same license as Qt), and distribute linked
+ * combinations including the two. You must obey the GNU General
+ * Public License in all respects for all of the code used other than
+ * Qt. If you modify this file, you may extend this exception to
+ * your version of the file, but you are not obligated to do so. If
+ * you do not wish to do so, delete this exception statement from
+ * your version.
+ */
+#ifndef SEARCHJOB_H
+#define SEARCHJOB_H
+
+#include <qstringlist.h>
+#include "folderjob.h"
+
+class KMFolderImap;
+class KMSearchPattern;
+class KURL;
+
+namespace KIO {
+ class Job;
+}
+
+namespace KPIM {
+ class ProgressItem;
+}
+
+namespace KMail {
+
+class ImapAccountBase;
+
+/**
+ * Search job
+ */
+class SearchJob : public FolderJob
+{
+ Q_OBJECT
+public:
+ /**
+ * Creates a new job
+ * @param folder the folder that should be searched
+ * @param account the ImapAccountBase of the folder
+ * @param pattern the search pattern
+ * @param serNum if you specify the serNum only this is checked
+ */
+ SearchJob( KMFolderImap* folder, ImapAccountBase* account,
+ const KMSearchPattern* pattern, Q_UINT32 serNum = 0 );
+
+ virtual ~SearchJob();
+
+ // Execute
+ virtual void execute();
+
+protected:
+ // searches the complete folder with the pattern
+ void searchCompleteFolder();
+
+ // checks a single message with the pattern
+ void searchSingleMessage();
+
+ // creates an imap search command
+ QString searchStringFromPattern( const KMSearchPattern* );
+
+ // returns true if all uids can be mapped to sernums
+ bool canMapAllUIDs();
+
+ // if we need to download messages
+ bool needsDownload();
+
+protected slots:
+ // search the folder
+ // is called when all uids can be mapped to sernums
+ void slotSearchFolder();
+
+ // processes the server answer
+ void slotSearchData( KIO::Job* job, const QString& data );
+
+ // message is downloaded and searched
+ void slotSearchMessageArrived( KMMessage* msg );
+
+ // error handling for all cases
+ void slotSearchResult( KIO::Job *job );
+
+ // imap search result from a single message
+ void slotSearchDataSingleMessage( KIO::Job* job, const QString& data );
+
+ // the user cancelled the search progress
+ void slotAbortSearch( KPIM::ProgressItem* item );
+
+signals:
+ // emitted when a list of matching serial numbers was found
+ void searchDone( QValueList<Q_UINT32>, const KMSearchPattern*, bool complete );
+
+ // emitted when a single message (identified by the serial number) was checked
+ void searchDone( Q_UINT32, const KMSearchPattern*, bool matches );
+
+protected:
+ KMFolderImap* mFolder;
+ ImapAccountBase* mAccount;
+ const KMSearchPattern* mSearchPattern;
+ KMSearchPattern* mLocalSearchPattern;
+ Q_UINT32 mSerNum;
+ // saves the results of the imap search
+ QStringList mImapSearchHits;
+ // collects the serial numbers from imap and local search
+ QValueList<Q_UINT32> mSearchSerNums;
+ // the remaining messages that have to be downloaded for local search
+ uint mRemainingMsgs;
+ // progress item for local searches
+ KPIM::ProgressItem *mProgress;
+ bool mUngetCurrentMsg;
+
+};
+
+} // namespace
+
+#endif /* SEARCHJOB_H */
+