author | zautrix <zautrix> | 2005-10-28 21:15:00 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-10-28 21:15:00 (UTC) |
commit | 85d2ea5c17a2b2c7a4ae4dd954bc635a56239b57 (patch) (unidiff) | |
tree | 8628f5cef407eaeee2d8b893f82d296d5dcd4787 /kabc/addressee.h | |
parent | 16e87ac5b81352c51343715cf1080191aaba9611 (diff) | |
download | kdepimpi-85d2ea5c17a2b2c7a4ae4dd954bc635a56239b57.zip kdepimpi-85d2ea5c17a2b2c7a4ae4dd954bc635a56239b57.tar.gz kdepimpi-85d2ea5c17a2b2c7a4ae4dd954bc635a56239b57.tar.bz2 |
fixx
-rw-r--r-- | kabc/addressee.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/kabc/addressee.h b/kabc/addressee.h index fcadda6..aac78dc 100644 --- a/kabc/addressee.h +++ b/kabc/addressee.h | |||
@@ -79,529 +79,524 @@ class Resource; | |||
79 | data enty, but shouldn't be used for displaying the data to the user. | 79 | data enty, but shouldn't be used for displaying the data to the user. |
80 | */ | 80 | */ |
81 | class Addressee | 81 | class Addressee |
82 | { | 82 | { |
83 | friend QDataStream &operator<<( QDataStream &, const Addressee & ); | 83 | friend QDataStream &operator<<( QDataStream &, const Addressee & ); |
84 | friend QDataStream &operator>>( QDataStream &, Addressee & ); | 84 | friend QDataStream &operator>>( QDataStream &, Addressee & ); |
85 | 85 | ||
86 | public: | 86 | public: |
87 | typedef QValueList<Addressee> List; | 87 | typedef QValueList<Addressee> List; |
88 | 88 | ||
89 | /** | 89 | /** |
90 | Construct an empty address book entry. | 90 | Construct an empty address book entry. |
91 | */ | 91 | */ |
92 | Addressee(); | 92 | Addressee(); |
93 | ~Addressee(); | 93 | ~Addressee(); |
94 | 94 | ||
95 | Addressee( const Addressee & ); | 95 | Addressee( const Addressee & ); |
96 | Addressee &operator=( const Addressee & ); | 96 | Addressee &operator=( const Addressee & ); |
97 | 97 | ||
98 | bool operator==( const Addressee & ) const; | 98 | bool operator==( const Addressee & ) const; |
99 | bool operator!=( const Addressee & ) const; | 99 | bool operator!=( const Addressee & ) const; |
100 | // sync stuff | 100 | // sync stuff |
101 | void setTempSyncStat(int id); | 101 | void setTempSyncStat(int id); |
102 | int tempSyncStat() const; | 102 | int tempSyncStat() const; |
103 | void setIDStr( const QString & ); | 103 | void setIDStr( const QString & ); |
104 | const QString IDStr() const; | 104 | const QString IDStr() const; |
105 | void setID( const QString &, const QString & ); | 105 | void setID( const QString &, const QString & ); |
106 | const QString getID( const QString & ) const; | 106 | const QString getID( const QString & ) const; |
107 | void setCsum( const QString &, const QString & ); | 107 | void setCsum( const QString &, const QString & ); |
108 | const QString getCsum( const QString & ) const ; | 108 | const QString getCsum( const QString & ) const ; |
109 | void removeID(const QString &); | 109 | void removeID(const QString &); |
110 | void computeCsum(const QString &dev); | 110 | void computeCsum(const QString &dev); |
111 | ulong getCsum4List( const QStringList & attList); | 111 | ulong getCsum4List( const QStringList & attList); |
112 | /** | 112 | /** |
113 | Return, if the address book entry is empty. | 113 | Return, if the address book entry is empty. |
114 | */ | 114 | */ |
115 | bool isEmpty() const; | 115 | bool isEmpty() const; |
116 | void setExternalUID( const QString &id ); | 116 | void setExternalUID( const QString &id ); |
117 | const QString externalUID() const; | 117 | const QString externalUID() const; |
118 | void setOriginalExternalUID( const QString &id ); | 118 | void setOriginalExternalUID( const QString &id ); |
119 | QString originalExternalUID() const; | 119 | QString originalExternalUID() const; |
120 | void mergeContact( const Addressee& ad, bool isSubSet ); | 120 | void mergeContact( const Addressee& ad, bool isSubSet ); |
121 | void simplifyEmails(); | 121 | void simplifyEmails(); |
122 | void simplifyAddresses(); | 122 | void simplifyAddresses(); |
123 | void simplifyPhoneNumbers(); | 123 | void simplifyPhoneNumbers(); |
124 | void simplifyPhoneNumberTypes(); | 124 | void simplifyPhoneNumberTypes(); |
125 | void makePhoneNumbersOLcompatible(); | 125 | void makePhoneNumbersOLcompatible(); |
126 | int hasPhoneNumberType( int type ); | 126 | int hasPhoneNumberType( int type ); |
127 | bool removeVoice(); | 127 | bool removeVoice(); |
128 | bool containsAdr(const Addressee& addr ); | 128 | bool containsAdr(const Addressee& addr ); |
129 | 129 | ||
130 | /** | 130 | /** |
131 | Set unique identifier. | 131 | Set unique identifier. |
132 | */ | 132 | */ |
133 | void setUid( const QString &uid ); | 133 | void setUid( const QString &uid ); |
134 | /** | 134 | /** |
135 | Return unique identifier. | 135 | Return unique identifier. |
136 | */ | 136 | */ |
137 | const QString uid() const; | 137 | const QString uid() const; |
138 | /** | 138 | /** |
139 | Return translated label for uid field. | 139 | Return translated label for uid field. |
140 | */ | 140 | */ |
141 | static QString uidLabel(); | 141 | static QString uidLabel(); |
142 | 142 | ||
143 | /** | 143 | /** |
144 | Set name. | 144 | Set name. |
145 | */ | 145 | */ |
146 | void setName( const QString &name ); | 146 | void setName( const QString &name ); |
147 | /** | 147 | /** |
148 | Return name. | 148 | Return name. |
149 | */ | 149 | */ |
150 | QString name() const; | 150 | QString name() const; |
151 | /** | 151 | /** |
152 | Return translated label for name field. | 152 | Return translated label for name field. |
153 | */ | 153 | */ |
154 | static QString nameLabel(); | 154 | static QString nameLabel(); |
155 | 155 | ||
156 | /** | 156 | /** |
157 | Set formatted name. | 157 | Set formatted name. |
158 | */ | 158 | */ |
159 | void setFormattedName( const QString &formattedName ); | 159 | void setFormattedName( const QString &formattedName ); |
160 | /** | 160 | /** |
161 | Return formatted name. | 161 | Return formatted name. |
162 | */ | 162 | */ |
163 | QString formattedName() const; | 163 | QString formattedName() const; |
164 | /** | 164 | /** |
165 | Return translated label for formattedName field. | 165 | Return translated label for formattedName field. |
166 | */ | 166 | */ |
167 | static QString formattedNameLabel(); | 167 | static QString formattedNameLabel(); |
168 | 168 | ||
169 | /** | 169 | /** |
170 | Set family name. | 170 | Set family name. |
171 | */ | 171 | */ |
172 | void setFamilyName( const QString &familyName ); | 172 | void setFamilyName( const QString &familyName ); |
173 | /** | 173 | /** |
174 | Return family name. | 174 | Return family name. |
175 | */ | 175 | */ |
176 | QString familyName() const; | 176 | QString familyName() const; |
177 | /** | 177 | /** |
178 | Return translated label for familyName field. | 178 | Return translated label for familyName field. |
179 | */ | 179 | */ |
180 | static QString familyNameLabel(); | 180 | static QString familyNameLabel(); |
181 | 181 | ||
182 | /** | 182 | /** |
183 | Set given name. | 183 | Set given name. |
184 | */ | 184 | */ |
185 | void setGivenName( const QString &givenName ); | 185 | void setGivenName( const QString &givenName ); |
186 | /** | 186 | /** |
187 | Return given name. | 187 | Return given name. |
188 | */ | 188 | */ |
189 | QString givenName() const; | 189 | QString givenName() const; |
190 | /** | 190 | /** |
191 | Return translated label for givenName field. | 191 | Return translated label for givenName field. |
192 | */ | 192 | */ |
193 | static QString givenNameLabel(); | 193 | static QString givenNameLabel(); |
194 | 194 | ||
195 | /** | 195 | /** |
196 | Set additional names. | 196 | Set additional names. |
197 | */ | 197 | */ |
198 | void setAdditionalName( const QString &additionalName ); | 198 | void setAdditionalName( const QString &additionalName ); |
199 | /** | 199 | /** |
200 | Return additional names. | 200 | Return additional names. |
201 | */ | 201 | */ |
202 | QString additionalName() const; | 202 | QString additionalName() const; |
203 | /** | 203 | /** |
204 | Return translated label for additionalName field. | 204 | Return translated label for additionalName field. |
205 | */ | 205 | */ |
206 | static QString additionalNameLabel(); | 206 | static QString additionalNameLabel(); |
207 | 207 | ||
208 | /** | 208 | /** |
209 | Set honorific prefixes. | 209 | Set honorific prefixes. |
210 | */ | 210 | */ |
211 | void setPrefix( const QString &prefix ); | 211 | void setPrefix( const QString &prefix ); |
212 | /** | 212 | /** |
213 | Return honorific prefixes. | 213 | Return honorific prefixes. |
214 | */ | 214 | */ |
215 | QString prefix() const; | 215 | QString prefix() const; |
216 | /** | 216 | /** |
217 | Return translated label for prefix field. | 217 | Return translated label for prefix field. |
218 | */ | 218 | */ |
219 | static QString prefixLabel(); | 219 | static QString prefixLabel(); |
220 | 220 | ||
221 | /** | 221 | /** |
222 | Set honorific suffixes. | 222 | Set honorific suffixes. |
223 | */ | 223 | */ |
224 | void setSuffix( const QString &suffix ); | 224 | void setSuffix( const QString &suffix ); |
225 | /** | 225 | /** |
226 | Return honorific suffixes. | 226 | Return honorific suffixes. |
227 | */ | 227 | */ |
228 | QString suffix() const; | 228 | QString suffix() const; |
229 | /** | 229 | /** |
230 | Return translated label for suffix field. | 230 | Return translated label for suffix field. |
231 | */ | 231 | */ |
232 | static QString suffixLabel(); | 232 | static QString suffixLabel(); |
233 | 233 | ||
234 | /** | 234 | /** |
235 | Set nick name. | 235 | Set nick name. |
236 | */ | 236 | */ |
237 | void setNickName( const QString &nickName ); | 237 | void setNickName( const QString &nickName ); |
238 | /** | 238 | /** |
239 | Return nick name. | 239 | Return nick name. |
240 | */ | 240 | */ |
241 | QString nickName() const; | 241 | QString nickName() const; |
242 | /** | 242 | /** |
243 | Return translated label for nickName field. | 243 | Return translated label for nickName field. |
244 | */ | 244 | */ |
245 | static QString nickNameLabel(); | 245 | static QString nickNameLabel(); |
246 | 246 | ||
247 | /** | 247 | /** |
248 | Set birthday. | 248 | Set birthday. |
249 | */ | 249 | */ |
250 | void setBirthday( const QDateTime &birthday ); | 250 | void setBirthday( const QDateTime &birthday ); |
251 | /** | 251 | /** |
252 | Return birthday. | 252 | Return birthday. |
253 | */ | 253 | */ |
254 | QDateTime birthday() const; | 254 | QDateTime birthday() const; |
255 | /** | 255 | /** |
256 | Return translated label for birthday field. | 256 | Return translated label for birthday field. |
257 | */ | 257 | */ |
258 | static QString birthdayLabel(); | 258 | static QString birthdayLabel(); |
259 | 259 | ||
260 | /** | 260 | /** |
261 | Return translated label for homeAddressStreet field. | 261 | Return translated label for homeAddressStreet field. |
262 | */ | 262 | */ |
263 | static QString homeAddressStreetLabel(); | 263 | static QString homeAddressStreetLabel(); |
264 | 264 | ||
265 | /** | 265 | /** |
266 | Return translated label for homeAddressLocality field. | 266 | Return translated label for homeAddressLocality field. |
267 | */ | 267 | */ |
268 | static QString homeAddressLocalityLabel(); | 268 | static QString homeAddressLocalityLabel(); |
269 | 269 | ||
270 | /** | 270 | /** |
271 | Return translated label for homeAddressRegion field. | 271 | Return translated label for homeAddressRegion field. |
272 | */ | 272 | */ |
273 | static QString homeAddressRegionLabel(); | 273 | static QString homeAddressRegionLabel(); |
274 | 274 | ||
275 | /** | 275 | /** |
276 | Return translated label for homeAddressPostalCode field. | 276 | Return translated label for homeAddressPostalCode field. |
277 | */ | 277 | */ |
278 | static QString homeAddressPostalCodeLabel(); | 278 | static QString homeAddressPostalCodeLabel(); |
279 | 279 | ||
280 | /** | 280 | /** |
281 | Return translated label for homeAddressCountry field. | 281 | Return translated label for homeAddressCountry field. |
282 | */ | 282 | */ |
283 | static QString homeAddressCountryLabel(); | 283 | static QString homeAddressCountryLabel(); |
284 | 284 | ||
285 | /** | 285 | /** |
286 | Return translated label for homeAddressLabel field. | 286 | Return translated label for homeAddressLabel field. |
287 | */ | 287 | */ |
288 | static QString homeAddressLabelLabel(); | 288 | static QString homeAddressLabelLabel(); |
289 | 289 | ||
290 | /** | 290 | /** |
291 | Return translated label for businessAddressStreet field. | 291 | Return translated label for businessAddressStreet field. |
292 | */ | 292 | */ |
293 | static QString businessAddressStreetLabel(); | 293 | static QString businessAddressStreetLabel(); |
294 | 294 | ||
295 | /** | 295 | /** |
296 | Return translated label for businessAddressLocality field. | 296 | Return translated label for businessAddressLocality field. |
297 | */ | 297 | */ |
298 | static QString businessAddressLocalityLabel(); | 298 | static QString businessAddressLocalityLabel(); |
299 | 299 | ||
300 | /** | 300 | /** |
301 | Return translated label for businessAddressRegion field. | 301 | Return translated label for businessAddressRegion field. |
302 | */ | 302 | */ |
303 | static QString businessAddressRegionLabel(); | 303 | static QString businessAddressRegionLabel(); |
304 | 304 | ||
305 | /** | 305 | /** |
306 | Return translated label for businessAddressPostalCode field. | 306 | Return translated label for businessAddressPostalCode field. |
307 | */ | 307 | */ |
308 | static QString businessAddressPostalCodeLabel(); | 308 | static QString businessAddressPostalCodeLabel(); |
309 | 309 | ||
310 | /** | 310 | /** |
311 | Return translated label for businessAddressCountry field. | 311 | Return translated label for businessAddressCountry field. |
312 | */ | 312 | */ |
313 | static QString businessAddressCountryLabel(); | 313 | static QString businessAddressCountryLabel(); |
314 | 314 | ||
315 | /** | 315 | /** |
316 | Return translated label for businessAddressLabel field. | 316 | Return translated label for businessAddressLabel field. |
317 | */ | 317 | */ |
318 | static QString businessAddressLabelLabel(); | 318 | static QString businessAddressLabelLabel(); |
319 | 319 | ||
320 | /** | 320 | /** |
321 | Return translated label for homePhone field. | 321 | Return translated label for homePhone field. |
322 | */ | 322 | */ |
323 | static QString homePhoneLabel(); | 323 | static QString homePhoneLabel(); |
324 | 324 | ||
325 | /** | 325 | /** |
326 | Return translated label for businessPhone field. | 326 | Return translated label for businessPhone field. |
327 | */ | 327 | */ |
328 | static QString businessPhoneLabel(); | 328 | static QString businessPhoneLabel(); |
329 | 329 | ||
330 | /** | 330 | /** |
331 | Return translated label for mobilePhone field. | 331 | Return translated label for mobilePhone field. |
332 | */ | 332 | */ |
333 | static QString mobilePhoneLabel(); | 333 | static QString mobilePhoneLabel(); |
334 | static QString mobileWorkPhoneLabel(); | 334 | static QString mobileWorkPhoneLabel(); |
335 | static QString mobileHomePhoneLabel(); | ||
336 | 335 | ||
337 | /** | 336 | /** |
338 | Return translated label for homeFax field. | 337 | Return translated label for homeFax field. |
339 | */ | 338 | */ |
340 | static QString homeFaxLabel(); | 339 | static QString homeFaxLabel(); |
341 | 340 | ||
342 | /** | 341 | /** |
343 | Return translated label for businessFax field. | 342 | Return translated label for businessFax field. |
344 | */ | 343 | */ |
345 | static QString businessFaxLabel(); | 344 | static QString businessFaxLabel(); |
346 | 345 | ||
347 | /** | 346 | |
348 | Return translated label for carPhone field. | ||
349 | */ | ||
350 | static QString carPhoneLabel(); | ||
351 | |||
352 | /** | 347 | /** |
353 | Return translated label for isdn field. | 348 | Return translated label for isdn field. |
354 | */ | 349 | */ |
355 | static QString isdnLabel(); | 350 | static QString isdnLabel(); |
356 | 351 | ||
357 | /** | 352 | /** |
358 | Return translated label for pager field. | 353 | Return translated label for pager field. |
359 | */ | 354 | */ |
360 | static QString pagerLabel(); | 355 | static QString pagerLabel(); |
361 | static QString otherPhoneLabel(); | 356 | static QString otherPhoneLabel(); |
362 | /** | 357 | /** |
363 | Return translated label for sip field. | 358 | Return translated label for sip field. |
364 | */ | 359 | */ |
365 | static QString sipLabel(); | 360 | static QString sipLabel(); |
366 | 361 | ||
367 | /** | 362 | /** |
368 | Return translated label for email field. | 363 | Return translated label for email field. |
369 | */ | 364 | */ |
370 | static QString emailLabel(); | 365 | static QString emailLabel(); |
371 | 366 | ||
372 | /** | 367 | /** |
373 | Set mail client. | 368 | Set mail client. |
374 | */ | 369 | */ |
375 | void setMailer( const QString &mailer ); | 370 | void setMailer( const QString &mailer ); |
376 | /** | 371 | /** |
377 | Return mail client. | 372 | Return mail client. |
378 | */ | 373 | */ |
379 | QString mailer() const; | 374 | QString mailer() const; |
380 | /** | 375 | /** |
381 | Return translated label for mailer field. | 376 | Return translated label for mailer field. |
382 | */ | 377 | */ |
383 | static QString mailerLabel(); | 378 | static QString mailerLabel(); |
384 | 379 | ||
385 | /** | 380 | /** |
386 | Set time zone. | 381 | Set time zone. |
387 | */ | 382 | */ |
388 | void setTimeZone( const TimeZone &timeZone ); | 383 | void setTimeZone( const TimeZone &timeZone ); |
389 | /** | 384 | /** |
390 | Return time zone. | 385 | Return time zone. |
391 | */ | 386 | */ |
392 | TimeZone timeZone() const; | 387 | TimeZone timeZone() const; |
393 | /** | 388 | /** |
394 | Return translated label for timeZone field. | 389 | Return translated label for timeZone field. |
395 | */ | 390 | */ |
396 | static QString timeZoneLabel(); | 391 | static QString timeZoneLabel(); |
397 | 392 | ||
398 | /** | 393 | /** |
399 | Set geographic position. | 394 | Set geographic position. |
400 | */ | 395 | */ |
401 | void setGeo( const Geo &geo ); | 396 | void setGeo( const Geo &geo ); |
402 | /** | 397 | /** |
403 | Return geographic position. | 398 | Return geographic position. |
404 | */ | 399 | */ |
405 | Geo geo() const; | 400 | Geo geo() const; |
406 | /** | 401 | /** |
407 | Return translated label for geo field. | 402 | Return translated label for geo field. |
408 | */ | 403 | */ |
409 | static QString geoLabel(); | 404 | static QString geoLabel(); |
410 | 405 | ||
411 | /** | 406 | /** |
412 | Set title. | 407 | Set title. |
413 | */ | 408 | */ |
414 | void setTitle( const QString &title ); | 409 | void setTitle( const QString &title ); |
415 | /** | 410 | /** |
416 | Return title. | 411 | Return title. |
417 | */ | 412 | */ |
418 | QString title() const; | 413 | QString title() const; |
419 | /** | 414 | /** |
420 | Return translated label for title field. | 415 | Return translated label for title field. |
421 | */ | 416 | */ |
422 | static QString titleLabel(); | 417 | static QString titleLabel(); |
423 | 418 | ||
424 | /** | 419 | /** |
425 | Set role. | 420 | Set role. |
426 | */ | 421 | */ |
427 | void setRole( const QString &role ); | 422 | void setRole( const QString &role ); |
428 | /** | 423 | /** |
429 | Return role. | 424 | Return role. |
430 | */ | 425 | */ |
431 | QString role() const; | 426 | QString role() const; |
432 | /** | 427 | /** |
433 | Return translated label for role field. | 428 | Return translated label for role field. |
434 | */ | 429 | */ |
435 | static QString roleLabel(); | 430 | static QString roleLabel(); |
436 | 431 | ||
437 | /** | 432 | /** |
438 | Set organization. | 433 | Set organization. |
439 | */ | 434 | */ |
440 | void setOrganization( const QString &organization ); | 435 | void setOrganization( const QString &organization ); |
441 | /** | 436 | /** |
442 | Return organization. | 437 | Return organization. |
443 | */ | 438 | */ |
444 | QString organization() const; | 439 | QString organization() const; |
445 | /** | 440 | /** |
446 | Return translated label for organization field. | 441 | Return translated label for organization field. |
447 | */ | 442 | */ |
448 | static QString organizationLabel(); | 443 | static QString organizationLabel(); |
449 | 444 | ||
450 | /** | 445 | /** |
451 | Set note. | 446 | Set note. |
452 | */ | 447 | */ |
453 | void setNote( const QString ¬e ); | 448 | void setNote( const QString ¬e ); |
454 | /** | 449 | /** |
455 | Return note. | 450 | Return note. |
456 | */ | 451 | */ |
457 | QString note() const; | 452 | QString note() const; |
458 | /** | 453 | /** |
459 | Return translated label for note field. | 454 | Return translated label for note field. |
460 | */ | 455 | */ |
461 | static QString noteLabel(); | 456 | static QString noteLabel(); |
462 | 457 | ||
463 | /** | 458 | /** |
464 | Set product identifier. | 459 | Set product identifier. |
465 | */ | 460 | */ |
466 | void setProductId( const QString &productId ); | 461 | void setProductId( const QString &productId ); |
467 | /** | 462 | /** |
468 | Return product identifier. | 463 | Return product identifier. |
469 | */ | 464 | */ |
470 | QString productId() const; | 465 | QString productId() const; |
471 | /** | 466 | /** |
472 | Return translated label for productId field. | 467 | Return translated label for productId field. |
473 | */ | 468 | */ |
474 | static QString productIdLabel(); | 469 | static QString productIdLabel(); |
475 | 470 | ||
476 | /** | 471 | /** |
477 | Set revision date. | 472 | Set revision date. |
478 | */ | 473 | */ |
479 | void setRevision( const QDateTime &revision ); | 474 | void setRevision( const QDateTime &revision ); |
480 | /** | 475 | /** |
481 | Return revision date. | 476 | Return revision date. |
482 | */ | 477 | */ |
483 | QDateTime revision() const; | 478 | QDateTime revision() const; |
484 | /** | 479 | /** |
485 | Return translated label for revision field. | 480 | Return translated label for revision field. |
486 | */ | 481 | */ |
487 | static QString revisionLabel(); | 482 | static QString revisionLabel(); |
488 | 483 | ||
489 | /** | 484 | /** |
490 | Set sort string. | 485 | Set sort string. |
491 | */ | 486 | */ |
492 | void setSortString( const QString &sortString ); | 487 | void setSortString( const QString &sortString ); |
493 | /** | 488 | /** |
494 | Return sort string. | 489 | Return sort string. |
495 | */ | 490 | */ |
496 | QString sortString() const; | 491 | QString sortString() const; |
497 | /** | 492 | /** |
498 | Return translated label for sortString field. | 493 | Return translated label for sortString field. |
499 | */ | 494 | */ |
500 | static QString sortStringLabel(); | 495 | static QString sortStringLabel(); |
501 | 496 | ||
502 | /** | 497 | /** |
503 | Set URL. | 498 | Set URL. |
504 | */ | 499 | */ |
505 | void setUrl( const KURL &url ); | 500 | void setUrl( const KURL &url ); |
506 | /** | 501 | /** |
507 | Return URL. | 502 | Return URL. |
508 | */ | 503 | */ |
509 | KURL url() const; | 504 | KURL url() const; |
510 | /** | 505 | /** |
511 | Return translated label for url field. | 506 | Return translated label for url field. |
512 | */ | 507 | */ |
513 | static QString urlLabel(); | 508 | static QString urlLabel(); |
514 | 509 | ||
515 | /** | 510 | /** |
516 | Set security class. | 511 | Set security class. |
517 | */ | 512 | */ |
518 | void setSecrecy( const Secrecy &secrecy ); | 513 | void setSecrecy( const Secrecy &secrecy ); |
519 | /** | 514 | /** |
520 | Return security class. | 515 | Return security class. |
521 | */ | 516 | */ |
522 | Secrecy secrecy() const; | 517 | Secrecy secrecy() const; |
523 | /** | 518 | /** |
524 | Return translated label for secrecy field. | 519 | Return translated label for secrecy field. |
525 | */ | 520 | */ |
526 | static QString secrecyLabel(); | 521 | static QString secrecyLabel(); |
527 | 522 | ||
528 | /** | 523 | /** |
529 | Set logo. | 524 | Set logo. |
530 | */ | 525 | */ |
531 | void setLogo( const Picture &logo ); | 526 | void setLogo( const Picture &logo ); |
532 | /** | 527 | /** |
533 | Return logo. | 528 | Return logo. |
534 | */ | 529 | */ |
535 | Picture logo() const; | 530 | Picture logo() const; |
536 | /** | 531 | /** |
537 | Return translated label for logo field. | 532 | Return translated label for logo field. |
538 | */ | 533 | */ |
539 | static QString logoLabel(); | 534 | static QString logoLabel(); |
540 | 535 | ||
541 | /** | 536 | /** |
542 | Set photo. | 537 | Set photo. |
543 | */ | 538 | */ |
544 | void setPhoto( const Picture &photo ); | 539 | void setPhoto( const Picture &photo ); |
545 | /** | 540 | /** |
546 | Return photo. | 541 | Return photo. |
547 | */ | 542 | */ |
548 | Picture photo() const; | 543 | Picture photo() const; |
549 | /** | 544 | /** |
550 | Return translated label for photo field. | 545 | Return translated label for photo field. |
551 | */ | 546 | */ |
552 | static QString photoLabel(); | 547 | static QString photoLabel(); |
553 | 548 | ||
554 | /** | 549 | /** |
555 | Set sound. | 550 | Set sound. |
556 | */ | 551 | */ |
557 | void setSound( const Sound &sound ); | 552 | void setSound( const Sound &sound ); |
558 | /** | 553 | /** |
559 | Return sound. | 554 | Return sound. |
560 | */ | 555 | */ |
561 | Sound sound() const; | 556 | Sound sound() const; |
562 | /** | 557 | /** |
563 | Return translated label for sound field. | 558 | Return translated label for sound field. |
564 | */ | 559 | */ |
565 | static QString soundLabel(); | 560 | static QString soundLabel(); |
566 | 561 | ||
567 | /** | 562 | /** |
568 | Set agent. | 563 | Set agent. |
569 | */ | 564 | */ |
570 | void setAgent( const Agent &agent ); | 565 | void setAgent( const Agent &agent ); |
571 | /** | 566 | /** |
572 | Return agent. | 567 | Return agent. |
573 | */ | 568 | */ |
574 | Agent agent() const; | 569 | Agent agent() const; |
575 | /** | 570 | /** |
576 | Return translated label for agent field. | 571 | Return translated label for agent field. |
577 | */ | 572 | */ |
578 | static QString agentLabel(); | 573 | static QString agentLabel(); |
579 | 574 | ||
580 | /** | 575 | /** |
581 | Set name fields by parsing the given string and trying to associate the | 576 | Set name fields by parsing the given string and trying to associate the |
582 | parts of the string with according fields. This function should probably | 577 | parts of the string with according fields. This function should probably |
583 | be a bit more clever. | 578 | be a bit more clever. |
584 | */ | 579 | */ |
585 | void setNameFromString( const QString & ); | 580 | void setNameFromString( const QString & ); |
586 | 581 | ||
587 | /** | 582 | /** |
588 | Return the name of the addressee. This is calculated from all the name | 583 | Return the name of the addressee. This is calculated from all the name |
589 | fields. | 584 | fields. |
590 | */ | 585 | */ |
591 | QString realName() const; | 586 | QString realName() const; |
592 | 587 | ||
593 | /** | 588 | /** |
594 | Return the name that consists of all name parts. | 589 | Return the name that consists of all name parts. |
595 | */ | 590 | */ |
596 | QString assembledName() const; | 591 | QString assembledName() const; |
597 | 592 | ||
598 | /** | 593 | /** |
599 | Return email address including real name. | 594 | Return email address including real name. |
600 | 595 | ||
601 | @param email Email address to be used to construct the full email string. | 596 | @param email Email address to be used to construct the full email string. |
602 | If this is QString::null the preferred email address is used. | 597 | If this is QString::null the preferred email address is used. |
603 | */ | 598 | */ |
604 | QString fullEmail( const QString &email=QString::null ) const; | 599 | QString fullEmail( const QString &email=QString::null ) const; |
605 | 600 | ||
606 | /** | 601 | /** |
607 | Insert an email address. If the email address already exists in this | 602 | Insert an email address. If the email address already exists in this |