1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/*
Copyright (C) 2009 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.net
Copyright (c) 2009 Andras Mantia <andras@kdab.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __MIMETREEPARSER_OBJECTTREESOURCE_IF_H__
#define __MIMETREEPARSER_OBJECTTREESOURCE_IF_H__
#include "util.h"
#include <KMime/Message>
#include <QSharedPointer>
class QTextCodec;
namespace MimeTreeParser
{
class HtmlWriter;
class AttachmentStrategy;
class BodyPartFormatterBaseFactory;
namespace Interface
{
class MessagePart;
typedef QSharedPointer<MessagePart> MessagePartPtr;
class MessagePartRenderer;
typedef QSharedPointer<MessagePartRenderer> MessagePartRendererPtr;
}
}
namespace MimeTreeParser
{
namespace Interface
{
/**
* Interface for object tree sources.
* @author Andras Mantia <amantia@kdab.net>
*/
class ObjectTreeSource
{
public:
virtual ~ObjectTreeSource();
/**
* Sets the type of mail that is currently displayed. Applications can display this
* information to the user, for example KMail displays a HTML status bar.
* Note: This is not called when the mode is "Normal".
*/
virtual void setHtmlMode(MimeTreeParser::Util::HtmlMode mode, const QList<MimeTreeParser::Util::HtmlMode> &availableModes) = 0;
/** Return the mode that is the preferred to display */
virtual MimeTreeParser::Util::HtmlMode preferredMode() const = 0;
/** Return true if an encrypted mail should be decrypted */
virtual bool decryptMessage() const = 0;
/** Return true if external sources should be loaded in a html mail */
virtual bool htmlLoadExternal() const = 0;
/** Return true to include the signature details in the generated html */
virtual bool showSignatureDetails() const = 0;
virtual int levelQuote() const = 0;
/** The override codec that should be used for the mail */
virtual const QTextCodec *overrideCodec() = 0;
virtual QString createMessageHeader(KMime::Message *message) = 0;
/** Return the wanted attachment startegy */
virtual const AttachmentStrategy *attachmentStrategy() = 0;
/** Return the html write object */
virtual HtmlWriter *htmlWriter() = 0;
/** The source object behind the interface. */
virtual QObject *sourceObject() = 0;
/** should keys be imported automatically **/
virtual bool autoImportKeys() const = 0;
virtual bool showEmoticons() const = 0;
virtual bool showExpandQuotesMark() const = 0;
virtual const BodyPartFormatterBaseFactory *bodyPartFormatterFactory() = 0;
virtual MessagePartRendererPtr messagePartTheme(MessagePartPtr msgPart) = 0;
virtual bool isPrinting() const = 0;
};
}
}
#endif
|