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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/*
* kmail: KDE mail client
* Copyright (c) 1996-1998 Stefan Taferner <taferner@kde.org>
*
* 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 kmmsginfo_h
#define kmmsginfo_h
#include <config.h>
#include <sys/types.h>
#include "kmmsgbase.h"
class KMMessage;
class KMMsgInfo: public KMMsgBase
{
public:
KMMsgInfo(KMFolder* parent, off_t off=0, short len=0);
virtual ~KMMsgInfo();
/** left for old style index files */
void compat_fromOldIndexString(const QCString& str, bool toUtf8);
/** Initialize with given values and set dirty flag to FALSE. */
virtual void init(const QCString& subject, const QCString& from,
const QCString& to, time_t date,
KMMsgStatus status, const QCString& xmark,
const QCString& replyToId,
const QCString& replyToAuxId,
const QCString& msgId,
KMMsgEncryptionState encryptionState,
KMMsgSignatureState signatureState,
KMMsgMDNSentState mdnSentState,
const QCString& prefCharset,
off_t folderOffset=0, size_t msgSize=0,
size_t msgSizeServer = 0, ulong UID = 0);
/** Initialize with given values and set dirty flag to FALSE. */
virtual void init(const QCString& subject, const QCString& from,
const QCString& to, time_t date,
KMMsgStatus status, const QCString& xmark,
const QCString& replyToId,
const QCString& replyToAuxId,
const QCString& msgId,
const QCString& fileName,
KMMsgEncryptionState encryptionState,
KMMsgSignatureState signatureState,
KMMsgMDNSentState mdnSentState,
const QCString& prefCharset,
size_t msgSize=0,
size_t msgSizeServer = 0, ulong UID = 0);
/** Inherited methods (see KMMsgBase for description): */
virtual QString subject(void) const;
virtual QString fromStrip(void) const;
virtual QString toStrip(void) const;
virtual QString xmark(void) const;
virtual QString replyToIdMD5(void) const;
virtual QString replyToAuxIdMD5() const;
virtual QString strippedSubjectMD5() const;
virtual bool subjectIsPrefixed() const;
virtual QString msgIdMD5(void) const;
virtual QString fileName(void) const;
virtual KMMsgStatus status(void) const;
virtual KMMsgEncryptionState encryptionState() const;
virtual KMMsgSignatureState signatureState() const;
virtual KMMsgMDNSentState mdnSentState() const;
virtual off_t folderOffset(void) const;
virtual size_t msgSize(void) const;
virtual size_t msgSizeServer(void) const;
virtual time_t date(void) const;
virtual ulong UID(void) const;
void setMsgSize(size_t sz);
void setMsgSizeServer(size_t sz);
void setFolderOffset(off_t offs);
void setFileName(const QString& file);
virtual void setStatus(const KMMsgStatus status, int idx = -1);
virtual void setDate(time_t aUnixTime);
virtual void setSubject(const QString&);
virtual void setXMark(const QString&);
virtual void setReplyToIdMD5(const QString&);
virtual void setReplyToAuxIdMD5( const QString& );
virtual void initStrippedSubjectMD5();
virtual void setMsgIdMD5(const QString&);
virtual void setEncryptionState( const KMMsgEncryptionState, int idx = -1 );
virtual void setSignatureState( const KMMsgSignatureState, int idx = -1 );
virtual void setMDNSentState( const KMMsgMDNSentState, int idx = -1 );
virtual void setUID(ulong);
/** Grr.. c++! */
virtual void setStatus(const char* s1, const char* s2=0) { KMMsgBase::setStatus(s1, s2); }
virtual void setDate(const char* s1) { KMMsgBase::setDate(s1); }
virtual bool dirty(void) const;
/** Copy operators. */
KMMsgInfo& operator=(const KMMessage&);
private:
// Currently unused
KMMsgInfo& operator=(const KMMsgInfo&);
KMMsgInfo(const KMMsgInfo&);
// WARNING: Do not add new member variables to the class. Add them to kd
class KMMsgInfoPrivate;
KMMsgInfoPrivate *kd;
};
typedef KMMsgInfo* KMMsgInfoPtr;
#endif /*kmmsginfo_h*/
|