mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
85 lines
2.2 KiB
C++
85 lines
2.2 KiB
C++
/*
|
|
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 KMIME_CONTENT_P_H
|
|
#define KMIME_CONTENT_P_H
|
|
|
|
//@cond PRIVATE
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
namespace KMime {
|
|
class Message;
|
|
typedef boost::shared_ptr<Message> MessagePtr;
|
|
}
|
|
|
|
namespace KMime {
|
|
|
|
class ContentPrivate
|
|
{
|
|
public:
|
|
explicit ContentPrivate( Content *q ) :
|
|
parent( 0 ),
|
|
q_ptr( q ),
|
|
forceDefaultCS( false ),
|
|
frozen( false )
|
|
{
|
|
defaultCS = KMime::cachedCharset( "ISO-8859-1" );
|
|
}
|
|
|
|
virtual ~ContentPrivate()
|
|
{
|
|
qDeleteAll( multipartContents );
|
|
multipartContents.clear();
|
|
}
|
|
|
|
bool parseUuencoded();
|
|
bool parseYenc();
|
|
bool parseMultipart();
|
|
Headers::Generic *nextHeader( QByteArray &head );
|
|
void clearBodyMessage();
|
|
|
|
// This one returns the normal multipartContents for multipart contents, but returns
|
|
// a list with just bodyAsMessage in it for contents that are encapsulated messages.
|
|
// That makes it possible to handle encapsulated messages in a transparent way.
|
|
Content::List contents() const;
|
|
|
|
QByteArray head;
|
|
QByteArray body;
|
|
QByteArray frozenBody;
|
|
QByteArray defaultCS;
|
|
QByteArray preamble;
|
|
QByteArray epilogue;
|
|
Content *parent;
|
|
|
|
Content::List multipartContents;
|
|
MessagePtr bodyAsMessage;
|
|
|
|
Content* q_ptr;
|
|
Q_DECLARE_PUBLIC( Content )
|
|
|
|
bool forceDefaultCS : 1;
|
|
bool frozen : 1;
|
|
};
|
|
|
|
}
|
|
|
|
//@endcond
|
|
|
|
#endif
|