-rw-r--r-- | kabc/addressee.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kabc/addressee.h b/kabc/addressee.h index 0aa2c51..03138f6 100644 --- a/kabc/addressee.h +++ b/kabc/addressee.h | |||
@@ -1,316 +1,317 @@ | |||
1 | /*** Warning! This file has been generated by the script makeaddressee ***/ | 1 | /*** Warning! This file has been generated by the script makeaddressee ***/ |
2 | /* | 2 | /* |
3 | This file is part of libkabc. | 3 | This file is part of libkabc. |
4 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 4 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
5 | 5 | ||
6 | This library is free software; you can redistribute it and/or | 6 | This library is free software; you can redistribute it and/or |
7 | modify it under the terms of the GNU Library General Public | 7 | modify it under the terms of the GNU Library General Public |
8 | License as published by the Free Software Foundation; either | 8 | License as published by the Free Software Foundation; either |
9 | version 2 of the License, or (at your option) any later version. | 9 | version 2 of the License, or (at your option) any later version. |
10 | 10 | ||
11 | This library is distributed in the hope that it will be useful, | 11 | This library is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | Library General Public License for more details. | 14 | Library General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU Library General Public License | 16 | You should have received a copy of the GNU Library General Public License |
17 | along with this library; see the file COPYING.LIB. If not, write to | 17 | along with this library; see the file COPYING.LIB. If not, write to |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 | Boston, MA 02111-1307, USA. | 19 | Boston, MA 02111-1307, USA. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | /* | 22 | /* |
23 | Enhanced Version of the file for platform independent KDE tools. | 23 | Enhanced Version of the file for platform independent KDE tools. |
24 | Copyright (c) 2004 Ulf Schenk | 24 | Copyright (c) 2004 Ulf Schenk |
25 | 25 | ||
26 | $Id$ | 26 | $Id$ |
27 | */ | 27 | */ |
28 | 28 | ||
29 | #ifndef KABC_ADDRESSEE_H | 29 | #ifndef KABC_ADDRESSEE_H |
30 | #define KABC_ADDRESSEE_H | 30 | #define KABC_ADDRESSEE_H |
31 | 31 | ||
32 | #include <qdatetime.h> | 32 | #include <qdatetime.h> |
33 | #include <qstring.h> | 33 | #include <qstring.h> |
34 | #include <qstringlist.h> | 34 | #include <qstringlist.h> |
35 | #include <qvaluelist.h> | 35 | #include <qvaluelist.h> |
36 | 36 | ||
37 | #include <ksharedptr.h> | 37 | #include <ksharedptr.h> |
38 | #include <kurl.h> | 38 | #include <kurl.h> |
39 | 39 | ||
40 | #include "address.h" | 40 | #include "address.h" |
41 | #include "agent.h" | 41 | #include "agent.h" |
42 | #include "geo.h" | 42 | #include "geo.h" |
43 | #include "key.h" | 43 | #include "key.h" |
44 | #include "phonenumber.h" | 44 | #include "phonenumber.h" |
45 | #include "picture.h" | 45 | #include "picture.h" |
46 | #include "secrecy.h" | 46 | #include "secrecy.h" |
47 | #include "sound.h" | 47 | #include "sound.h" |
48 | #include "timezone.h" | 48 | #include "timezone.h" |
49 | 49 | ||
50 | namespace KABC { | 50 | namespace KABC { |
51 | 51 | ||
52 | class Resource; | 52 | class Resource; |
53 | 53 | ||
54 | /** | 54 | /** |
55 | @short address book entry | 55 | @short address book entry |
56 | 56 | ||
57 | This class represents an entry in the address book. | 57 | This class represents an entry in the address book. |
58 | 58 | ||
59 | The data of this class is implicitly shared. You can pass this class by value. | 59 | The data of this class is implicitly shared. You can pass this class by value. |
60 | 60 | ||
61 | If you need the name of a field for presenting it to the user you should use | 61 | If you need the name of a field for presenting it to the user you should use |
62 | the functions ending in Label(). They return a translated string which can be | 62 | the functions ending in Label(). They return a translated string which can be |
63 | used as label for the corresponding field. | 63 | used as label for the corresponding field. |
64 | 64 | ||
65 | About the name fields: | 65 | About the name fields: |
66 | 66 | ||
67 | givenName() is the first name and familyName() the last name. In some | 67 | givenName() is the first name and familyName() the last name. In some |
68 | countries the family name comes first, that's the reason for the | 68 | countries the family name comes first, that's the reason for the |
69 | naming. formattedName() is the full name with the correct formatting. | 69 | naming. formattedName() is the full name with the correct formatting. |
70 | It is used as an override, when the correct formatting can't be generated | 70 | It is used as an override, when the correct formatting can't be generated |
71 | from the other name fields automatically. | 71 | from the other name fields automatically. |
72 | 72 | ||
73 | realName() returns a fully formatted name(). It uses formattedName, if set, | 73 | realName() returns a fully formatted name(). It uses formattedName, if set, |
74 | otherwise it constucts the name from the name fields. As fallback, if | 74 | otherwise it constucts the name from the name fields. As fallback, if |
75 | nothing else is set it uses name(). | 75 | nothing else is set it uses name(). |
76 | 76 | ||
77 | name() is the NAME type of RFC2426. It can be used as internal name for the | 77 | name() is the NAME type of RFC2426. It can be used as internal name for the |
78 | data enty, but shouldn't be used for displaying the data to the user. | 78 | data enty, but shouldn't be used for displaying the data to the user. |
79 | */ | 79 | */ |
80 | class Addressee | 80 | class Addressee |
81 | { | 81 | { |
82 | friend QDataStream &operator<<( QDataStream &, const Addressee & ); | 82 | friend QDataStream &operator<<( QDataStream &, const Addressee & ); |
83 | friend QDataStream &operator>>( QDataStream &, Addressee & ); | 83 | friend QDataStream &operator>>( QDataStream &, Addressee & ); |
84 | 84 | ||
85 | public: | 85 | public: |
86 | typedef QValueList<Addressee> List; | 86 | typedef QValueList<Addressee> List; |
87 | 87 | ||
88 | /** | 88 | /** |
89 | Construct an empty address book entry. | 89 | Construct an empty address book entry. |
90 | */ | 90 | */ |
91 | Addressee(); | 91 | Addressee(); |
92 | ~Addressee(); | 92 | ~Addressee(); |
93 | 93 | ||
94 | Addressee( const Addressee & ); | 94 | Addressee( const Addressee & ); |
95 | Addressee &operator=( const Addressee & ); | 95 | Addressee &operator=( const Addressee & ); |
96 | 96 | ||
97 | bool operator==( const Addressee & ) const; | 97 | bool operator==( const Addressee & ) const; |
98 | bool operator!=( const Addressee & ) const; | 98 | bool operator!=( const Addressee & ) const; |
99 | // sync stuff | 99 | // sync stuff |
100 | void setTempSyncStat(int id); | 100 | void setTempSyncStat(int id); |
101 | int tempSyncStat() const; | 101 | int tempSyncStat() const; |
102 | void setIDStr( const QString & ); | 102 | void setIDStr( const QString & ); |
103 | QString IDStr() const; | 103 | QString IDStr() const; |
104 | void setID( const QString &, const QString & ); | 104 | void setID( const QString &, const QString & ); |
105 | QString getID( const QString & ); | 105 | QString getID( const QString & ); |
106 | void setCsum( const QString &, const QString & ); | 106 | void setCsum( const QString &, const QString & ); |
107 | QString getCsum( const QString & ); | 107 | QString getCsum( const QString & ); |
108 | void removeID(const QString &); | 108 | void removeID(const QString &); |
109 | void computeCsum(const QString &dev); | 109 | void computeCsum(const QString &dev); |
110 | ulong getCsum4List( const QStringList & attList); | 110 | ulong getCsum4List( const QStringList & attList); |
111 | /** | 111 | /** |
112 | Return, if the address book entry is empty. | 112 | Return, if the address book entry is empty. |
113 | */ | 113 | */ |
114 | bool isEmpty() const; | 114 | bool isEmpty() const; |
115 | void setExternalUID( const QString &id ); | 115 | void setExternalUID( const QString &id ); |
116 | QString externalUID() const; | 116 | QString externalUID() const; |
117 | void setOriginalExternalUID( const QString &id ); | 117 | void setOriginalExternalUID( const QString &id ); |
118 | QString originalExternalUID() const; | 118 | QString originalExternalUID() const; |
119 | void mergeContact( const Addressee& ad ); | 119 | void mergeContact( const Addressee& ad ); |
120 | void simplifyEmails(); | 120 | void simplifyEmails(); |
121 | void simplifyAddresses(); | 121 | void simplifyAddresses(); |
122 | void simplifyPhoneNumbers(); | 122 | void simplifyPhoneNumbers(); |
123 | void simplifyPhoneNumberTypes(); | 123 | void simplifyPhoneNumberTypes(); |
124 | bool removeVoice(); | 124 | bool removeVoice(); |
125 | bool containsAdr(const Addressee& addr ); | ||
125 | 126 | ||
126 | /** | 127 | /** |
127 | Set unique identifier. | 128 | Set unique identifier. |
128 | */ | 129 | */ |
129 | void setUid( const QString &uid ); | 130 | void setUid( const QString &uid ); |
130 | /** | 131 | /** |
131 | Return unique identifier. | 132 | Return unique identifier. |
132 | */ | 133 | */ |
133 | QString uid() const; | 134 | QString uid() const; |
134 | /** | 135 | /** |
135 | Return translated label for uid field. | 136 | Return translated label for uid field. |
136 | */ | 137 | */ |
137 | static QString uidLabel(); | 138 | static QString uidLabel(); |
138 | 139 | ||
139 | /** | 140 | /** |
140 | Set name. | 141 | Set name. |
141 | */ | 142 | */ |
142 | void setName( const QString &name ); | 143 | void setName( const QString &name ); |
143 | /** | 144 | /** |
144 | Return name. | 145 | Return name. |
145 | */ | 146 | */ |
146 | QString name() const; | 147 | QString name() const; |
147 | /** | 148 | /** |
148 | Return translated label for name field. | 149 | Return translated label for name field. |
149 | */ | 150 | */ |
150 | static QString nameLabel(); | 151 | static QString nameLabel(); |
151 | 152 | ||
152 | /** | 153 | /** |
153 | Set formatted name. | 154 | Set formatted name. |
154 | */ | 155 | */ |
155 | void setFormattedName( const QString &formattedName ); | 156 | void setFormattedName( const QString &formattedName ); |
156 | /** | 157 | /** |
157 | Return formatted name. | 158 | Return formatted name. |
158 | */ | 159 | */ |
159 | QString formattedName() const; | 160 | QString formattedName() const; |
160 | /** | 161 | /** |
161 | Return translated label for formattedName field. | 162 | Return translated label for formattedName field. |
162 | */ | 163 | */ |
163 | static QString formattedNameLabel(); | 164 | static QString formattedNameLabel(); |
164 | 165 | ||
165 | /** | 166 | /** |
166 | Set family name. | 167 | Set family name. |
167 | */ | 168 | */ |
168 | void setFamilyName( const QString &familyName ); | 169 | void setFamilyName( const QString &familyName ); |
169 | /** | 170 | /** |
170 | Return family name. | 171 | Return family name. |
171 | */ | 172 | */ |
172 | QString familyName() const; | 173 | QString familyName() const; |
173 | /** | 174 | /** |
174 | Return translated label for familyName field. | 175 | Return translated label for familyName field. |
175 | */ | 176 | */ |
176 | static QString familyNameLabel(); | 177 | static QString familyNameLabel(); |
177 | 178 | ||
178 | /** | 179 | /** |
179 | Set given name. | 180 | Set given name. |
180 | */ | 181 | */ |
181 | void setGivenName( const QString &givenName ); | 182 | void setGivenName( const QString &givenName ); |
182 | /** | 183 | /** |
183 | Return given name. | 184 | Return given name. |
184 | */ | 185 | */ |
185 | QString givenName() const; | 186 | QString givenName() const; |
186 | /** | 187 | /** |
187 | Return translated label for givenName field. | 188 | Return translated label for givenName field. |
188 | */ | 189 | */ |
189 | static QString givenNameLabel(); | 190 | static QString givenNameLabel(); |
190 | 191 | ||
191 | /** | 192 | /** |
192 | Set additional names. | 193 | Set additional names. |
193 | */ | 194 | */ |
194 | void setAdditionalName( const QString &additionalName ); | 195 | void setAdditionalName( const QString &additionalName ); |
195 | /** | 196 | /** |
196 | Return additional names. | 197 | Return additional names. |
197 | */ | 198 | */ |
198 | QString additionalName() const; | 199 | QString additionalName() const; |
199 | /** | 200 | /** |
200 | Return translated label for additionalName field. | 201 | Return translated label for additionalName field. |
201 | */ | 202 | */ |
202 | static QString additionalNameLabel(); | 203 | static QString additionalNameLabel(); |
203 | 204 | ||
204 | /** | 205 | /** |
205 | Set honorific prefixes. | 206 | Set honorific prefixes. |
206 | */ | 207 | */ |
207 | void setPrefix( const QString &prefix ); | 208 | void setPrefix( const QString &prefix ); |
208 | /** | 209 | /** |
209 | Return honorific prefixes. | 210 | Return honorific prefixes. |
210 | */ | 211 | */ |
211 | QString prefix() const; | 212 | QString prefix() const; |
212 | /** | 213 | /** |
213 | Return translated label for prefix field. | 214 | Return translated label for prefix field. |
214 | */ | 215 | */ |
215 | static QString prefixLabel(); | 216 | static QString prefixLabel(); |
216 | 217 | ||
217 | /** | 218 | /** |
218 | Set honorific suffixes. | 219 | Set honorific suffixes. |
219 | */ | 220 | */ |
220 | void setSuffix( const QString &suffix ); | 221 | void setSuffix( const QString &suffix ); |
221 | /** | 222 | /** |
222 | Return honorific suffixes. | 223 | Return honorific suffixes. |
223 | */ | 224 | */ |
224 | QString suffix() const; | 225 | QString suffix() const; |
225 | /** | 226 | /** |
226 | Return translated label for suffix field. | 227 | Return translated label for suffix field. |
227 | */ | 228 | */ |
228 | static QString suffixLabel(); | 229 | static QString suffixLabel(); |
229 | 230 | ||
230 | /** | 231 | /** |
231 | Set nick name. | 232 | Set nick name. |
232 | */ | 233 | */ |
233 | void setNickName( const QString &nickName ); | 234 | void setNickName( const QString &nickName ); |
234 | /** | 235 | /** |
235 | Return nick name. | 236 | Return nick name. |
236 | */ | 237 | */ |
237 | QString nickName() const; | 238 | QString nickName() const; |
238 | /** | 239 | /** |
239 | Return translated label for nickName field. | 240 | Return translated label for nickName field. |
240 | */ | 241 | */ |
241 | static QString nickNameLabel(); | 242 | static QString nickNameLabel(); |
242 | 243 | ||
243 | /** | 244 | /** |
244 | Set birthday. | 245 | Set birthday. |
245 | */ | 246 | */ |
246 | void setBirthday( const QDateTime &birthday ); | 247 | void setBirthday( const QDateTime &birthday ); |
247 | /** | 248 | /** |
248 | Return birthday. | 249 | Return birthday. |
249 | */ | 250 | */ |
250 | QDateTime birthday() const; | 251 | QDateTime birthday() const; |
251 | /** | 252 | /** |
252 | Return translated label for birthday field. | 253 | Return translated label for birthday field. |
253 | */ | 254 | */ |
254 | static QString birthdayLabel(); | 255 | static QString birthdayLabel(); |
255 | 256 | ||
256 | /** | 257 | /** |
257 | Return translated label for homeAddressStreet field. | 258 | Return translated label for homeAddressStreet field. |
258 | */ | 259 | */ |
259 | static QString homeAddressStreetLabel(); | 260 | static QString homeAddressStreetLabel(); |
260 | 261 | ||
261 | /** | 262 | /** |
262 | Return translated label for homeAddressLocality field. | 263 | Return translated label for homeAddressLocality field. |
263 | */ | 264 | */ |
264 | static QString homeAddressLocalityLabel(); | 265 | static QString homeAddressLocalityLabel(); |
265 | 266 | ||
266 | /** | 267 | /** |
267 | Return translated label for homeAddressRegion field. | 268 | Return translated label for homeAddressRegion field. |
268 | */ | 269 | */ |
269 | static QString homeAddressRegionLabel(); | 270 | static QString homeAddressRegionLabel(); |
270 | 271 | ||
271 | /** | 272 | /** |
272 | Return translated label for homeAddressPostalCode field. | 273 | Return translated label for homeAddressPostalCode field. |
273 | */ | 274 | */ |
274 | static QString homeAddressPostalCodeLabel(); | 275 | static QString homeAddressPostalCodeLabel(); |
275 | 276 | ||
276 | /** | 277 | /** |
277 | Return translated label for homeAddressCountry field. | 278 | Return translated label for homeAddressCountry field. |
278 | */ | 279 | */ |
279 | static QString homeAddressCountryLabel(); | 280 | static QString homeAddressCountryLabel(); |
280 | 281 | ||
281 | /** | 282 | /** |
282 | Return translated label for homeAddressLabel field. | 283 | Return translated label for homeAddressLabel field. |
283 | */ | 284 | */ |
284 | static QString homeAddressLabelLabel(); | 285 | static QString homeAddressLabelLabel(); |
285 | 286 | ||
286 | /** | 287 | /** |
287 | Return translated label for businessAddressStreet field. | 288 | Return translated label for businessAddressStreet field. |
288 | */ | 289 | */ |
289 | static QString businessAddressStreetLabel(); | 290 | static QString businessAddressStreetLabel(); |
290 | 291 | ||
291 | /** | 292 | /** |
292 | Return translated label for businessAddressLocality field. | 293 | Return translated label for businessAddressLocality field. |
293 | */ | 294 | */ |
294 | static QString businessAddressLocalityLabel(); | 295 | static QString businessAddressLocalityLabel(); |
295 | 296 | ||
296 | /** | 297 | /** |
297 | Return translated label for businessAddressRegion field. | 298 | Return translated label for businessAddressRegion field. |
298 | */ | 299 | */ |
299 | static QString businessAddressRegionLabel(); | 300 | static QString businessAddressRegionLabel(); |
300 | 301 | ||
301 | /** | 302 | /** |
302 | Return translated label for businessAddressPostalCode field. | 303 | Return translated label for businessAddressPostalCode field. |
303 | */ | 304 | */ |
304 | static QString businessAddressPostalCodeLabel(); | 305 | static QString businessAddressPostalCodeLabel(); |
305 | 306 | ||
306 | /** | 307 | /** |
307 | Return translated label for businessAddressCountry field. | 308 | Return translated label for businessAddressCountry field. |
308 | */ | 309 | */ |
309 | static QString businessAddressCountryLabel(); | 310 | static QString businessAddressCountryLabel(); |
310 | 311 | ||
311 | /** | 312 | /** |
312 | Return translated label for businessAddressLabel field. | 313 | Return translated label for businessAddressLabel field. |
313 | */ | 314 | */ |
314 | static QString businessAddressLabelLabel(); | 315 | static QString businessAddressLabelLabel(); |
315 | 316 | ||
316 | /** | 317 | /** |