blob: b6dad60d6fb824267fe0a26119f785957dea128d (
plain)
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
127
|
/*
ktnefattach.cpp
Copyright (C) 2002 Michael Goffioul <kdeprint@swing.be>
This file is part of KTNEF, the KDE TNEF support library/program.
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.
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
*/
#include "ktnef/ktnefattach.h"
#include "ktnef/ktnefproperty.h"
class KTNEFAttach::AttachPrivate
{
public:
int state_;
int size_;
int offset_;
int displaysize_;
TQString name_;
int index_;
TQString filename_;
TQString displayname_;
TQString mimetag_;
TQString extension_;
};
KTNEFAttach::KTNEFAttach()
{
d = new AttachPrivate;
d->state_ = Unparsed;
d->offset_ = -1;
d->size_ = 0;
d->displaysize_ = 0;
d->index_ = -1;
}
KTNEFAttach::~KTNEFAttach()
{
delete d;
}
void KTNEFAttach::setTitleParsed()
{ d->state_ |= TitleParsed; }
void KTNEFAttach::setDataParsed()
{ d->state_ |= DataParsed; }
void KTNEFAttach::unsetDataParser()
{ d->state_ = ( d->state_ & ~DataParsed ); }
void KTNEFAttach::setInfoParsed()
{ d->state_ |= InfoParsed; }
bool KTNEFAttach::titleParsed() const
{ return (d->state_ & TitleParsed); }
bool KTNEFAttach::dataParsed() const
{ return (d->state_ & DataParsed); }
bool KTNEFAttach::infoParsed() const
{ return (d->state_ & InfoParsed); }
bool KTNEFAttach::checkState(int state) const
{ return (d->state_ & state); }
int KTNEFAttach::offset() const
{ return d->offset_; }
void KTNEFAttach::setOffset(int n)
{ setDataParsed(); d->offset_ = n; }
int KTNEFAttach::size() const
{ return d->size_; }
void KTNEFAttach::setSize(int s)
{ d->size_ = s; }
int KTNEFAttach::displaySize() const
{ return d->displaysize_; }
void KTNEFAttach::setDisplaySize(int s)
{ d->displaysize_ = s; }
TQString KTNEFAttach::name() const
{ return d->name_; }
void KTNEFAttach::setName(const TQString& str)
{ setTitleParsed(); d->name_ = str; }
int KTNEFAttach::index() const
{ return d->index_; }
void KTNEFAttach::setIndex(int i)
{ setInfoParsed(); d->index_ = i; }
TQString KTNEFAttach::fileName() const
{ return d->filename_; }
void KTNEFAttach::setFileName(const TQString& str)
{ d->filename_ = str; }
TQString KTNEFAttach::displayName() const
{ return d->displayname_; }
void KTNEFAttach::setDisplayName(const TQString& str)
{ d->displayname_ = str; }
TQString KTNEFAttach::mimeTag() const
{ return d->mimetag_; }
void KTNEFAttach::setMimeTag(const TQString& str)
{ d->mimetag_ = str; }
TQString KTNEFAttach::extension() const
{ return d->extension_; }
void KTNEFAttach::setExtension(const TQString& str)
{ d->extension_ = str; }
|