akonadi
markascommand_p.h
00001 /* 00002 Copyright (c) 2010 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com 00003 Copyright (c) 2010 Andras Mantia <andras@kdab.com> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Lesser General Public 00007 License as published by the Free Software Foundation; either 00008 version 2.1 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Lesser General Public License for more details. 00014 00015 You should have received a copy of the GNU Lesser General Public 00016 License along with this library; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00018 */ 00019 00020 #ifndef MARKASCOMMAND_H 00021 #define MARKASCOMMAND_H 00022 00023 #include "commandbase_p.h" 00024 00025 #include <akonadi/collection.h> 00026 #include <akonadi/item.h> 00027 #include <akonadi/kmime/messagestatus.h> 00028 00029 #include <QList> 00030 00031 class KJob; 00032 class MarkAsCommand : public CommandBase 00033 { 00034 Q_OBJECT 00035 public: 00036 MarkAsCommand( const Akonadi::MessageStatus& targetStatus, const Akonadi::Item::List & msgList, bool invert = false, QObject* parent = 0 ); 00037 MarkAsCommand( const Akonadi::MessageStatus& targetStatus, const Akonadi::Collection::List& folders, bool invert = false, QObject* parent = 0 ); 00038 void execute(); 00039 00040 private Q_SLOTS: 00041 void slotFetchDone( KJob* job ); 00042 void slotModifyItemDone( KJob * job ); 00043 00044 private: 00045 void markMessages(); 00046 00047 Akonadi::Collection::List mFolders; 00048 QList<Akonadi::Item> mMessages; 00049 Akonadi::MessageStatus mTargetStatus; 00050 int mMarkJobCount; 00051 int mFolderListJobCount; 00052 int mInvertMark; 00053 }; 00054 00055 #endif // MARKASCOMMAND_H
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Aug 27 2012 22:09:23 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Aug 27 2012 22:09:23 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.