mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
84 lines
2.3 KiB
C++
84 lines
2.3 KiB
C++
/*
|
|
Copyright (c) 2009 Constantin Berzan <exit3219@gmail.com>
|
|
|
|
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 MESSAGECOMPOSER_INFOPART_H
|
|
#define MESSAGECOMPOSER_INFOPART_H
|
|
|
|
#include "messagepart.h"
|
|
|
|
#include <QtCore/QStringList>
|
|
|
|
#include <kmime/kmime_message.h>
|
|
#include <kmime/kmime_headers.h>
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
namespace MessageComposer {
|
|
|
|
class MESSAGECOMPOSER_EXPORT InfoPart : public MessageComposer::MessagePart
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit InfoPart( QObject *parent = 0 );
|
|
virtual ~InfoPart();
|
|
|
|
QString from() const;
|
|
void setFrom( const QString &from );
|
|
QStringList to() const;
|
|
void setTo( const QStringList &to );
|
|
QStringList cc() const;
|
|
void setCc( const QStringList &cc );
|
|
QStringList bcc() const;
|
|
void setBcc( const QStringList &bcc );
|
|
|
|
QString replyTo() const;
|
|
void setReplyTo( const QString& replyTo );
|
|
|
|
QString subject() const;
|
|
void setSubject( const QString &subject );
|
|
|
|
QString fcc() const;
|
|
void setFcc( const QString &fcc );
|
|
|
|
QString userAgent() const;
|
|
void setUserAgent( const QString &userAgent );
|
|
|
|
bool urgent() const;
|
|
void setUrgent( bool );
|
|
|
|
QString inReplyTo() const;
|
|
void setInReplyTo( const QString& inReplyTo );
|
|
|
|
QString references() const;
|
|
void setReferences( const QString& references );
|
|
|
|
void setExtraHeaders( KMime::Headers::Base::List headers );
|
|
KMime::Headers::Base::List extraHeaders() const;
|
|
|
|
int transportId() const;
|
|
void setTransportId( int tid );
|
|
|
|
private:
|
|
class Private;
|
|
Private *const d;
|
|
};
|
|
|
|
} // namespace MessageComposer
|
|
|
|
#endif // MESSAGECOMPOSER_INFOPART_H
|