summaryrefslogtreecommitdiffstats
path: root/kmail/messagecopyhelper.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/messagecopyhelper.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/messagecopyhelper.h')
-rw-r--r--kmail/messagecopyhelper.h79
1 files changed, 79 insertions, 0 deletions
diff --git a/kmail/messagecopyhelper.h b/kmail/messagecopyhelper.h
new file mode 100644
index 000000000..2291fce9d
--- /dev/null
+++ b/kmail/messagecopyhelper.h
@@ -0,0 +1,79 @@
+/*
+ Copyright (c) 2007 Volker Krause <vkrause@kde.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 KMAIL_MESSAGECOPYHELPER_H
+#define KMAIL_MESSAGECOPYHELPER_H
+
+#include <qguardedptr.h>
+#include <qobject.h>
+#include <qptrlist.h>
+
+#include <maillistdrag.h>
+
+class KMCommand;
+class KMFolder;
+class KMMsgBase;
+
+namespace KMail {
+
+/**
+ Helper class to copy/move a set of messages defined by their serial
+ numbers from arbitrary folders into a common destination folder.
+*/
+class MessageCopyHelper : public QObject
+{
+ Q_OBJECT
+
+ public:
+ /**
+ Creates new MessageCopyHelper object to copy the given messages
+ to the specified destination folder.
+ @param msgs List of serial numbers.
+ @param dest Destination folder.
+ @param move If set to true, messages will be moved instead of copied
+ @param parent The parent object.
+ */
+ MessageCopyHelper( const QValueList<Q_UINT32> &msgs, KMFolder *dest,
+ bool move, QObject *parent = 0 );
+
+ /**
+ Converts a MailList into a serial number list.
+ */
+ static QValueList<Q_UINT32> serNumListFromMailList( const KPIM::MailList &list );
+
+ /**
+ Converts a KMMsgsBase* list into a serial number list.
+ */
+ static QValueList<Q_UINT32> serNumListFromMsgList( QPtrList<KMMsgBase> list );
+
+ /**
+ Checks of any of the given messages comes from a read-only source.
+ */
+ static bool inReadOnlyFolder( const QValueList<Q_UINT32> &sernums );
+
+ private slots:
+ void copyCompleted( KMCommand *cmd );
+
+ private:
+ QMap<QGuardedPtr<KMFolder>, int> mOpenFolders;
+};
+
+}
+
+#endif