mailtransport
messagequeuejob.h
00001 /* 00002 Copyright (c) 2009 Constantin Berzan <exit3219@gmail.com> 00003 00004 This library is free software; you can redistribute it and/or modify it 00005 under the terms of the GNU Library General Public License as published by 00006 the Free Software Foundation; either version 2 of the License, or (at your 00007 option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, but WITHOUT 00010 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00011 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00012 License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to the 00016 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 00017 02110-1301, USA. 00018 */ 00019 00020 #ifndef MAILTRANSPORT_MESSAGEQUEUEJOB_H 00021 #define MAILTRANSPORT_MESSAGEQUEUEJOB_H 00022 00023 #include <mailtransport/mailtransport_export.h> 00024 00025 #include "dispatchmodeattribute.h" 00026 #include "sentactionattribute.h" 00027 #include "sentbehaviourattribute.h" 00028 #include "transportattribute.h" 00029 00030 #include <QtCore/QDateTime> 00031 #include <QtCore/QString> 00032 #include <QtCore/QStringList> 00033 00034 #include <KDE/KCompositeJob> 00035 00036 #include <akonadi/collection.h> 00037 #include <akonadi/kmime/addressattribute.h> 00038 00039 #include <kmime/kmime_message.h> 00040 #include <boost/shared_ptr.hpp> 00041 00042 namespace MailTransport { 00043 00086 class MAILTRANSPORT_EXPORT MessageQueueJob : public KCompositeJob 00087 { 00088 Q_OBJECT 00089 00090 public: 00095 explicit MessageQueueJob( QObject *parent = 0 ); 00096 00101 virtual ~MessageQueueJob(); 00102 00106 KMime::Message::Ptr message() const; 00107 00112 DispatchModeAttribute &dispatchModeAttribute(); 00113 00119 Akonadi::AddressAttribute &addressAttribute(); 00120 00126 TransportAttribute &transportAttribute(); 00127 00132 SentBehaviourAttribute &sentBehaviourAttribute(); 00133 00138 SentActionAttribute &sentActionAttribute(); 00139 00143 void setMessage( KMime::Message::Ptr message ); 00144 00149 virtual void start(); 00150 00151 protected Q_SLOTS: 00157 virtual void slotResult( KJob * ); 00158 00159 private: 00160 class Private; 00161 friend class Private; 00162 Private *const d; 00163 00164 Q_PRIVATE_SLOT( d, void outboxRequestResult( KJob* ) ) 00165 00166 }; 00167 00168 } // namespace MailTransport 00169 00170 #endif // MAILTRANSPORT_MESSAGEQUEUEJOB_H
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon May 14 2012 04:49:32 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon May 14 2012 04:49:32 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.