author | zautrix <zautrix> | 2004-09-19 20:27:44 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-09-19 20:27:44 (UTC) |
commit | 3da2cfeab2edbe64a17251662e56668fe143f7a3 (patch) (unidiff) | |
tree | 37e8d4445fca84bd4e93af38c96c5c489f9cbca8 /kabc | |
parent | afa28a62314117555d6b32291188eedd1a576284 (diff) | |
download | kdepimpi-3da2cfeab2edbe64a17251662e56668fe143f7a3.zip kdepimpi-3da2cfeab2edbe64a17251662e56668fe143f7a3.tar.gz kdepimpi-3da2cfeab2edbe64a17251662e56668fe143f7a3.tar.bz2 |
more AB sync
-rw-r--r-- | kabc/addressbook.cpp | 32 | ||||
-rw-r--r-- | kabc/addressbook.h | 3 |
2 files changed, 35 insertions, 0 deletions
diff --git a/kabc/addressbook.cpp b/kabc/addressbook.cpp index 64832f1..86dc7c2 100644 --- a/kabc/addressbook.cpp +++ b/kabc/addressbook.cpp | |||
@@ -221,670 +221,702 @@ AddressBook::AddressBook() | |||
221 | } | 221 | } |
222 | 222 | ||
223 | AddressBook::AddressBook( const QString &config ) | 223 | AddressBook::AddressBook( const QString &config ) |
224 | { | 224 | { |
225 | init(config, "contact"); | 225 | init(config, "contact"); |
226 | } | 226 | } |
227 | 227 | ||
228 | AddressBook::AddressBook( const QString &config, const QString &family ) | 228 | AddressBook::AddressBook( const QString &config, const QString &family ) |
229 | { | 229 | { |
230 | init(config, family); | 230 | init(config, family); |
231 | 231 | ||
232 | } | 232 | } |
233 | 233 | ||
234 | // the default family is "contact" | 234 | // the default family is "contact" |
235 | void AddressBook::init(const QString &config, const QString &family ) | 235 | void AddressBook::init(const QString &config, const QString &family ) |
236 | { | 236 | { |
237 | blockLSEchange = false; | 237 | blockLSEchange = false; |
238 | d = new AddressBookData; | 238 | d = new AddressBookData; |
239 | QString fami = family; | 239 | QString fami = family; |
240 | qDebug("new ab "); | 240 | qDebug("new ab "); |
241 | if (config != 0) { | 241 | if (config != 0) { |
242 | qDebug("config != 0 "); | 242 | qDebug("config != 0 "); |
243 | if ( family == "syncContact" ) { | 243 | if ( family == "syncContact" ) { |
244 | qDebug("creating sync config "); | 244 | qDebug("creating sync config "); |
245 | fami = "contact"; | 245 | fami = "contact"; |
246 | KConfig* con = new KConfig( locateLocal("config", "syncContactrc") ); | 246 | KConfig* con = new KConfig( locateLocal("config", "syncContactrc") ); |
247 | con->setGroup( "General" ); | 247 | con->setGroup( "General" ); |
248 | con->writeEntry( "ResourceKeys", QString("sync") ); | 248 | con->writeEntry( "ResourceKeys", QString("sync") ); |
249 | con->writeEntry( "Standard", QString("sync") ); | 249 | con->writeEntry( "Standard", QString("sync") ); |
250 | con->setGroup( "Resource_sync" ); | 250 | con->setGroup( "Resource_sync" ); |
251 | con->writeEntry( "FileName", config ); | 251 | con->writeEntry( "FileName", config ); |
252 | con->writeEntry( "FileFormat", QString("vcard") ); | 252 | con->writeEntry( "FileFormat", QString("vcard") ); |
253 | con->writeEntry( "ResourceIdentifier", QString("sync") ); | 253 | con->writeEntry( "ResourceIdentifier", QString("sync") ); |
254 | con->writeEntry( "ResourceName", QString("sync_res") ); | 254 | con->writeEntry( "ResourceName", QString("sync_res") ); |
255 | if ( config.right(4) == ".xml" ) | 255 | if ( config.right(4) == ".xml" ) |
256 | con->writeEntry( "ResourceType", QString("qtopia") ); | 256 | con->writeEntry( "ResourceType", QString("qtopia") ); |
257 | else | 257 | else |
258 | con->writeEntry( "ResourceType", QString("file") ); | 258 | con->writeEntry( "ResourceType", QString("file") ); |
259 | //con->sync(); | 259 | //con->sync(); |
260 | d->mConfig = con; | 260 | d->mConfig = con; |
261 | } | 261 | } |
262 | else | 262 | else |
263 | d->mConfig = new KConfig( locateLocal("config", config) ); | 263 | d->mConfig = new KConfig( locateLocal("config", config) ); |
264 | // qDebug("AddressBook::init 1 config=%s",config.latin1() ); | 264 | // qDebug("AddressBook::init 1 config=%s",config.latin1() ); |
265 | } | 265 | } |
266 | else { | 266 | else { |
267 | d->mConfig = 0; | 267 | d->mConfig = 0; |
268 | // qDebug("AddressBook::init 1 config=0"); | 268 | // qDebug("AddressBook::init 1 config=0"); |
269 | } | 269 | } |
270 | 270 | ||
271 | //US d->mErrorHandler = 0; | 271 | //US d->mErrorHandler = 0; |
272 | d->mManager = new KRES::Manager<Resource>( fami, false ); | 272 | d->mManager = new KRES::Manager<Resource>( fami, false ); |
273 | d->mManager->readConfig( d->mConfig ); | 273 | d->mManager->readConfig( d->mConfig ); |
274 | if ( family == "syncContact" ) { | 274 | if ( family == "syncContact" ) { |
275 | KRES::Manager<Resource> *manager = d->mManager; | 275 | KRES::Manager<Resource> *manager = d->mManager; |
276 | KRES::Manager<Resource>::ActiveIterator it; | 276 | KRES::Manager<Resource>::ActiveIterator it; |
277 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { | 277 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { |
278 | (*it)->setAddressBook( this ); | 278 | (*it)->setAddressBook( this ); |
279 | if ( !(*it)->open() ) | 279 | if ( !(*it)->open() ) |
280 | error( QString( "Unable to open resource '%1'!" ).arg( (*it)->resourceName() ) ); | 280 | error( QString( "Unable to open resource '%1'!" ).arg( (*it)->resourceName() ) ); |
281 | } | 281 | } |
282 | Resource *res = standardResource(); | 282 | Resource *res = standardResource(); |
283 | if ( !res ) { | 283 | if ( !res ) { |
284 | qDebug("ERROR: no standard resource"); | 284 | qDebug("ERROR: no standard resource"); |
285 | res = manager->createResource( "file" ); | 285 | res = manager->createResource( "file" ); |
286 | if ( res ) | 286 | if ( res ) |
287 | { | 287 | { |
288 | addResource( res ); | 288 | addResource( res ); |
289 | } | 289 | } |
290 | else | 290 | else |
291 | qDebug(" No resource available!!!"); | 291 | qDebug(" No resource available!!!"); |
292 | } | 292 | } |
293 | setStandardResource( res ); | 293 | setStandardResource( res ); |
294 | manager->writeConfig(); | 294 | manager->writeConfig(); |
295 | } | 295 | } |
296 | addCustomField( i18n( "Department" ), KABC::Field::Organization, | 296 | addCustomField( i18n( "Department" ), KABC::Field::Organization, |
297 | "X-Department", "KADDRESSBOOK" ); | 297 | "X-Department", "KADDRESSBOOK" ); |
298 | addCustomField( i18n( "Profession" ), KABC::Field::Organization, | 298 | addCustomField( i18n( "Profession" ), KABC::Field::Organization, |
299 | "X-Profession", "KADDRESSBOOK" ); | 299 | "X-Profession", "KADDRESSBOOK" ); |
300 | addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, | 300 | addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, |
301 | "X-AssistantsName", "KADDRESSBOOK" ); | 301 | "X-AssistantsName", "KADDRESSBOOK" ); |
302 | addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, | 302 | addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, |
303 | "X-ManagersName", "KADDRESSBOOK" ); | 303 | "X-ManagersName", "KADDRESSBOOK" ); |
304 | addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, | 304 | addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, |
305 | "X-SpousesName", "KADDRESSBOOK" ); | 305 | "X-SpousesName", "KADDRESSBOOK" ); |
306 | addCustomField( i18n( "Office" ), KABC::Field::Personal, | 306 | addCustomField( i18n( "Office" ), KABC::Field::Personal, |
307 | "X-Office", "KADDRESSBOOK" ); | 307 | "X-Office", "KADDRESSBOOK" ); |
308 | addCustomField( i18n( "IM Address" ), KABC::Field::Personal, | 308 | addCustomField( i18n( "IM Address" ), KABC::Field::Personal, |
309 | "X-IMAddress", "KADDRESSBOOK" ); | 309 | "X-IMAddress", "KADDRESSBOOK" ); |
310 | addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, | 310 | addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, |
311 | "X-Anniversary", "KADDRESSBOOK" ); | 311 | "X-Anniversary", "KADDRESSBOOK" ); |
312 | 312 | ||
313 | //US added this field to become compatible with Opie/qtopia addressbook | 313 | //US added this field to become compatible with Opie/qtopia addressbook |
314 | // values can be "female" or "male" or "". An empty field represents undefined. | 314 | // values can be "female" or "male" or "". An empty field represents undefined. |
315 | addCustomField( i18n( "Gender" ), KABC::Field::Personal, | 315 | addCustomField( i18n( "Gender" ), KABC::Field::Personal, |
316 | "X-Gender", "KADDRESSBOOK" ); | 316 | "X-Gender", "KADDRESSBOOK" ); |
317 | addCustomField( i18n( "Children" ), KABC::Field::Personal, | 317 | addCustomField( i18n( "Children" ), KABC::Field::Personal, |
318 | "X-Children", "KADDRESSBOOK" ); | 318 | "X-Children", "KADDRESSBOOK" ); |
319 | addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, | 319 | addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, |
320 | "X-FreeBusyUrl", "KADDRESSBOOK" ); | 320 | "X-FreeBusyUrl", "KADDRESSBOOK" ); |
321 | addCustomField( i18n( "ExternalID" ), KABC::Field::Personal, | 321 | addCustomField( i18n( "ExternalID" ), KABC::Field::Personal, |
322 | "X-ExternalID", "KADDRESSBOOK" ); | 322 | "X-ExternalID", "KADDRESSBOOK" ); |
323 | } | 323 | } |
324 | 324 | ||
325 | AddressBook::~AddressBook() | 325 | AddressBook::~AddressBook() |
326 | { | 326 | { |
327 | delete d->mConfig; d->mConfig = 0; | 327 | delete d->mConfig; d->mConfig = 0; |
328 | delete d->mManager; d->mManager = 0; | 328 | delete d->mManager; d->mManager = 0; |
329 | //US delete d->mErrorHandler; d->mErrorHandler = 0; | 329 | //US delete d->mErrorHandler; d->mErrorHandler = 0; |
330 | delete d; d = 0; | 330 | delete d; d = 0; |
331 | } | 331 | } |
332 | 332 | ||
333 | bool AddressBook::load() | 333 | bool AddressBook::load() |
334 | { | 334 | { |
335 | 335 | ||
336 | 336 | ||
337 | clear(); | 337 | clear(); |
338 | 338 | ||
339 | KRES::Manager<Resource>::ActiveIterator it; | 339 | KRES::Manager<Resource>::ActiveIterator it; |
340 | bool ok = true; | 340 | bool ok = true; |
341 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) | 341 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) |
342 | if ( !(*it)->load() ) { | 342 | if ( !(*it)->load() ) { |
343 | error( i18n("Unable to load resource '%1'").arg( (*it)->resourceName() ) ); | 343 | error( i18n("Unable to load resource '%1'").arg( (*it)->resourceName() ) ); |
344 | ok = false; | 344 | ok = false; |
345 | } | 345 | } |
346 | 346 | ||
347 | // mark all addressees as unchanged | 347 | // mark all addressees as unchanged |
348 | Addressee::List::Iterator addrIt; | 348 | Addressee::List::Iterator addrIt; |
349 | for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt ) { | 349 | for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt ) { |
350 | (*addrIt).setChanged( false ); | 350 | (*addrIt).setChanged( false ); |
351 | QString id = (*addrIt).custom( "KADDRESSBOOK", "X-ExternalID" ); | 351 | QString id = (*addrIt).custom( "KADDRESSBOOK", "X-ExternalID" ); |
352 | if ( !id.isEmpty() ) { | 352 | if ( !id.isEmpty() ) { |
353 | //qDebug("setId aa %s ", id.latin1()); | 353 | //qDebug("setId aa %s ", id.latin1()); |
354 | (*addrIt).setIDStr(id ); | 354 | (*addrIt).setIDStr(id ); |
355 | } | 355 | } |
356 | } | 356 | } |
357 | blockLSEchange = true; | 357 | blockLSEchange = true; |
358 | return ok; | 358 | return ok; |
359 | } | 359 | } |
360 | 360 | ||
361 | bool AddressBook::save( Ticket *ticket ) | 361 | bool AddressBook::save( Ticket *ticket ) |
362 | { | 362 | { |
363 | kdDebug(5700) << "AddressBook::save()"<< endl; | 363 | kdDebug(5700) << "AddressBook::save()"<< endl; |
364 | 364 | ||
365 | if ( ticket->resource() ) { | 365 | if ( ticket->resource() ) { |
366 | deleteRemovedAddressees(); | 366 | deleteRemovedAddressees(); |
367 | return ticket->resource()->save( ticket ); | 367 | return ticket->resource()->save( ticket ); |
368 | } | 368 | } |
369 | 369 | ||
370 | return false; | 370 | return false; |
371 | } | 371 | } |
372 | bool AddressBook::saveAB() | 372 | bool AddressBook::saveAB() |
373 | { | 373 | { |
374 | bool ok = true; | 374 | bool ok = true; |
375 | 375 | ||
376 | deleteRemovedAddressees(); | 376 | deleteRemovedAddressees(); |
377 | Iterator ait; | 377 | Iterator ait; |
378 | for ( ait = begin(); ait != end(); ++ait ) { | 378 | for ( ait = begin(); ait != end(); ++ait ) { |
379 | if ( !(*ait).IDStr().isEmpty() ) { | 379 | if ( !(*ait).IDStr().isEmpty() ) { |
380 | (*ait).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*ait).IDStr() ); | 380 | (*ait).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*ait).IDStr() ); |
381 | } | 381 | } |
382 | } | 382 | } |
383 | KRES::Manager<Resource>::ActiveIterator it; | 383 | KRES::Manager<Resource>::ActiveIterator it; |
384 | KRES::Manager<Resource> *manager = d->mManager; | 384 | KRES::Manager<Resource> *manager = d->mManager; |
385 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { | 385 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { |
386 | if ( !(*it)->readOnly() && (*it)->isOpen() ) { | 386 | if ( !(*it)->readOnly() && (*it)->isOpen() ) { |
387 | Ticket *ticket = requestSaveTicket( *it ); | 387 | Ticket *ticket = requestSaveTicket( *it ); |
388 | // qDebug("StdAddressBook::save '%s'", (*it)->resourceName().latin1() ); | 388 | // qDebug("StdAddressBook::save '%s'", (*it)->resourceName().latin1() ); |
389 | if ( !ticket ) { | 389 | if ( !ticket ) { |
390 | error( i18n( "Unable to save to resource '%1'. It is locked." ) | 390 | error( i18n( "Unable to save to resource '%1'. It is locked." ) |
391 | .arg( (*it)->resourceName() ) ); | 391 | .arg( (*it)->resourceName() ) ); |
392 | return false; | 392 | return false; |
393 | } | 393 | } |
394 | 394 | ||
395 | //if ( !save( ticket ) ) | 395 | //if ( !save( ticket ) ) |
396 | if ( ticket->resource() ) { | 396 | if ( ticket->resource() ) { |
397 | if ( ! ticket->resource()->save( ticket ) ) | 397 | if ( ! ticket->resource()->save( ticket ) ) |
398 | ok = false; | 398 | ok = false; |
399 | } else | 399 | } else |
400 | ok = false; | 400 | ok = false; |
401 | 401 | ||
402 | } | 402 | } |
403 | } | 403 | } |
404 | return ok; | 404 | return ok; |
405 | } | 405 | } |
406 | 406 | ||
407 | AddressBook::Iterator AddressBook::begin() | 407 | AddressBook::Iterator AddressBook::begin() |
408 | { | 408 | { |
409 | Iterator it = Iterator(); | 409 | Iterator it = Iterator(); |
410 | it.d->mIt = d->mAddressees.begin(); | 410 | it.d->mIt = d->mAddressees.begin(); |
411 | return it; | 411 | return it; |
412 | } | 412 | } |
413 | 413 | ||
414 | AddressBook::ConstIterator AddressBook::begin() const | 414 | AddressBook::ConstIterator AddressBook::begin() const |
415 | { | 415 | { |
416 | ConstIterator it = ConstIterator(); | 416 | ConstIterator it = ConstIterator(); |
417 | it.d->mIt = d->mAddressees.begin(); | 417 | it.d->mIt = d->mAddressees.begin(); |
418 | return it; | 418 | return it; |
419 | } | 419 | } |
420 | 420 | ||
421 | AddressBook::Iterator AddressBook::end() | 421 | AddressBook::Iterator AddressBook::end() |
422 | { | 422 | { |
423 | Iterator it = Iterator(); | 423 | Iterator it = Iterator(); |
424 | it.d->mIt = d->mAddressees.end(); | 424 | it.d->mIt = d->mAddressees.end(); |
425 | return it; | 425 | return it; |
426 | } | 426 | } |
427 | 427 | ||
428 | AddressBook::ConstIterator AddressBook::end() const | 428 | AddressBook::ConstIterator AddressBook::end() const |
429 | { | 429 | { |
430 | ConstIterator it = ConstIterator(); | 430 | ConstIterator it = ConstIterator(); |
431 | it.d->mIt = d->mAddressees.end(); | 431 | it.d->mIt = d->mAddressees.end(); |
432 | return it; | 432 | return it; |
433 | } | 433 | } |
434 | 434 | ||
435 | void AddressBook::clear() | 435 | void AddressBook::clear() |
436 | { | 436 | { |
437 | d->mAddressees.clear(); | 437 | d->mAddressees.clear(); |
438 | } | 438 | } |
439 | 439 | ||
440 | Ticket *AddressBook::requestSaveTicket( Resource *resource ) | 440 | Ticket *AddressBook::requestSaveTicket( Resource *resource ) |
441 | { | 441 | { |
442 | kdDebug(5700) << "AddressBook::requestSaveTicket()" << endl; | 442 | kdDebug(5700) << "AddressBook::requestSaveTicket()" << endl; |
443 | 443 | ||
444 | if ( !resource ) | 444 | if ( !resource ) |
445 | { | 445 | { |
446 | qDebug("AddressBook::requestSaveTicket no resource" ); | 446 | qDebug("AddressBook::requestSaveTicket no resource" ); |
447 | resource = standardResource(); | 447 | resource = standardResource(); |
448 | } | 448 | } |
449 | 449 | ||
450 | KRES::Manager<Resource>::ActiveIterator it; | 450 | KRES::Manager<Resource>::ActiveIterator it; |
451 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { | 451 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { |
452 | if ( (*it) == resource ) { | 452 | if ( (*it) == resource ) { |
453 | if ( (*it)->readOnly() || !(*it)->isOpen() ) | 453 | if ( (*it)->readOnly() || !(*it)->isOpen() ) |
454 | return 0; | 454 | return 0; |
455 | else | 455 | else |
456 | return (*it)->requestSaveTicket(); | 456 | return (*it)->requestSaveTicket(); |
457 | } | 457 | } |
458 | } | 458 | } |
459 | 459 | ||
460 | return 0; | 460 | return 0; |
461 | } | 461 | } |
462 | 462 | ||
463 | void AddressBook::insertAddressee( const Addressee &a, bool setRev ) | 463 | void AddressBook::insertAddressee( const Addressee &a, bool setRev ) |
464 | { | 464 | { |
465 | if ( blockLSEchange && setRev && a.uid().left( 19 ) == QString("last-syncAddressee-") ) { | 465 | if ( blockLSEchange && setRev && a.uid().left( 19 ) == QString("last-syncAddressee-") ) { |
466 | //qDebug("block insert "); | 466 | //qDebug("block insert "); |
467 | return; | 467 | return; |
468 | } | 468 | } |
469 | //qDebug("inserting.... %s ",a.uid().latin1() ); | 469 | //qDebug("inserting.... %s ",a.uid().latin1() ); |
470 | bool found = false; | 470 | bool found = false; |
471 | Addressee::List::Iterator it; | 471 | Addressee::List::Iterator it; |
472 | for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) { | 472 | for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) { |
473 | if ( a.uid() == (*it).uid() ) { | 473 | if ( a.uid() == (*it).uid() ) { |
474 | 474 | ||
475 | bool changed = false; | 475 | bool changed = false; |
476 | Addressee addr = a; | 476 | Addressee addr = a; |
477 | if ( addr != (*it) ) | 477 | if ( addr != (*it) ) |
478 | changed = true; | 478 | changed = true; |
479 | 479 | ||
480 | (*it) = a; | 480 | (*it) = a; |
481 | if ( (*it).resource() == 0 ) | 481 | if ( (*it).resource() == 0 ) |
482 | (*it).setResource( standardResource() ); | 482 | (*it).setResource( standardResource() ); |
483 | 483 | ||
484 | if ( changed ) { | 484 | if ( changed ) { |
485 | if ( setRev ) { | 485 | if ( setRev ) { |
486 | 486 | ||
487 | // get rid of micro seconds | 487 | // get rid of micro seconds |
488 | QDateTime dt = QDateTime::currentDateTime(); | 488 | QDateTime dt = QDateTime::currentDateTime(); |
489 | QTime t = dt.time(); | 489 | QTime t = dt.time(); |
490 | dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); | 490 | dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); |
491 | (*it).setRevision( dt ); | 491 | (*it).setRevision( dt ); |
492 | } | 492 | } |
493 | (*it).setChanged( true ); | 493 | (*it).setChanged( true ); |
494 | } | 494 | } |
495 | 495 | ||
496 | found = true; | 496 | found = true; |
497 | } else { | 497 | } else { |
498 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { | 498 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { |
499 | QString name = (*it).uid().mid( 19 ); | 499 | QString name = (*it).uid().mid( 19 ); |
500 | Addressee b = a; | 500 | Addressee b = a; |
501 | QString id = b.getID( name ); | 501 | QString id = b.getID( name ); |
502 | if ( ! id.isEmpty() ) { | 502 | if ( ! id.isEmpty() ) { |
503 | QString des = (*it).note(); | 503 | QString des = (*it).note(); |
504 | int startN; | 504 | int startN; |
505 | if( (startN = des.find( id ) ) >= 0 ) { | 505 | if( (startN = des.find( id ) ) >= 0 ) { |
506 | int endN = des.find( ",", startN+1 ); | 506 | int endN = des.find( ",", startN+1 ); |
507 | des = des.left( startN ) + des.mid( endN+1 ); | 507 | des = des.left( startN ) + des.mid( endN+1 ); |
508 | (*it).setNote( des ); | 508 | (*it).setNote( des ); |
509 | } | 509 | } |
510 | } | 510 | } |
511 | } | 511 | } |
512 | } | 512 | } |
513 | } | 513 | } |
514 | if ( found ) | 514 | if ( found ) |
515 | return; | 515 | return; |
516 | d->mAddressees.append( a ); | 516 | d->mAddressees.append( a ); |
517 | Addressee& addr = d->mAddressees.last(); | 517 | Addressee& addr = d->mAddressees.last(); |
518 | if ( addr.resource() == 0 ) | 518 | if ( addr.resource() == 0 ) |
519 | addr.setResource( standardResource() ); | 519 | addr.setResource( standardResource() ); |
520 | 520 | ||
521 | addr.setChanged( true ); | 521 | addr.setChanged( true ); |
522 | } | 522 | } |
523 | 523 | ||
524 | void AddressBook::removeAddressee( const Addressee &a ) | 524 | void AddressBook::removeAddressee( const Addressee &a ) |
525 | { | 525 | { |
526 | Iterator it; | 526 | Iterator it; |
527 | Iterator it2; | 527 | Iterator it2; |
528 | bool found = false; | 528 | bool found = false; |
529 | for ( it = begin(); it != end(); ++it ) { | 529 | for ( it = begin(); it != end(); ++it ) { |
530 | if ( a.uid() == (*it).uid() ) { | 530 | if ( a.uid() == (*it).uid() ) { |
531 | found = true; | 531 | found = true; |
532 | it2 = it; | 532 | it2 = it; |
533 | } else { | 533 | } else { |
534 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { | 534 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { |
535 | QString name = (*it).uid().mid( 19 ); | 535 | QString name = (*it).uid().mid( 19 ); |
536 | Addressee b = a; | 536 | Addressee b = a; |
537 | QString id = b.getID( name ); | 537 | QString id = b.getID( name ); |
538 | if ( ! id.isEmpty() ) { | 538 | if ( ! id.isEmpty() ) { |
539 | QString des = (*it).note(); | 539 | QString des = (*it).note(); |
540 | if( des.find( id ) < 0 ) { | 540 | if( des.find( id ) < 0 ) { |
541 | des += id + ","; | 541 | des += id + ","; |
542 | (*it).setNote( des ); | 542 | (*it).setNote( des ); |
543 | } | 543 | } |
544 | } | 544 | } |
545 | } | 545 | } |
546 | 546 | ||
547 | } | 547 | } |
548 | } | 548 | } |
549 | 549 | ||
550 | if ( found ) | 550 | if ( found ) |
551 | removeAddressee( it2 ); | 551 | removeAddressee( it2 ); |
552 | 552 | ||
553 | } | 553 | } |
554 | 554 | ||
555 | void AddressBook::removeDeletedAddressees() | 555 | void AddressBook::removeDeletedAddressees() |
556 | { | 556 | { |
557 | deleteRemovedAddressees(); | 557 | deleteRemovedAddressees(); |
558 | Iterator it = begin(); | 558 | Iterator it = begin(); |
559 | Iterator it2 ; | 559 | Iterator it2 ; |
560 | QDateTime dt ( QDate( 2004,1,1) ); | 560 | QDateTime dt ( QDate( 2004,1,1) ); |
561 | while ( it != end() ) { | 561 | while ( it != end() ) { |
562 | (*it).setRevision( dt ); | 562 | (*it).setRevision( dt ); |
563 | (*it).removeCustom( "KADDRESSBOOK", "X-ExternalID" ); | 563 | (*it).removeCustom( "KADDRESSBOOK", "X-ExternalID" ); |
564 | (*it).setIDStr(""); | 564 | (*it).setIDStr(""); |
565 | if ( (*it).tempSyncStat() == SYNC_TEMPSTATE_DELETE || (*it).uid().left( 19 ) == QString("last-syncAddressee-")) { | 565 | if ( (*it).tempSyncStat() == SYNC_TEMPSTATE_DELETE || (*it).uid().left( 19 ) == QString("last-syncAddressee-")) { |
566 | it2 = it; | 566 | it2 = it; |
567 | //qDebug("removing %s ",(*it).uid().latin1() ); | 567 | //qDebug("removing %s ",(*it).uid().latin1() ); |
568 | ++it; | 568 | ++it; |
569 | removeAddressee( it2 ); | 569 | removeAddressee( it2 ); |
570 | } else { | 570 | } else { |
571 | //qDebug("skipping %s ",(*it).uid().latin1() ); | 571 | //qDebug("skipping %s ",(*it).uid().latin1() ); |
572 | ++it; | 572 | ++it; |
573 | } | 573 | } |
574 | } | 574 | } |
575 | deleteRemovedAddressees(); | 575 | deleteRemovedAddressees(); |
576 | } | 576 | } |
577 | 577 | ||
578 | void AddressBook::removeAddressee( const Iterator &it ) | 578 | void AddressBook::removeAddressee( const Iterator &it ) |
579 | { | 579 | { |
580 | d->mRemovedAddressees.append( (*it) ); | 580 | d->mRemovedAddressees.append( (*it) ); |
581 | d->mAddressees.remove( it.d->mIt ); | 581 | d->mAddressees.remove( it.d->mIt ); |
582 | } | 582 | } |
583 | 583 | ||
584 | AddressBook::Iterator AddressBook::find( const Addressee &a ) | 584 | AddressBook::Iterator AddressBook::find( const Addressee &a ) |
585 | { | 585 | { |
586 | Iterator it; | 586 | Iterator it; |
587 | for ( it = begin(); it != end(); ++it ) { | 587 | for ( it = begin(); it != end(); ++it ) { |
588 | if ( a.uid() == (*it).uid() ) { | 588 | if ( a.uid() == (*it).uid() ) { |
589 | return it; | 589 | return it; |
590 | } | 590 | } |
591 | } | 591 | } |
592 | return end(); | 592 | return end(); |
593 | } | 593 | } |
594 | 594 | ||
595 | Addressee AddressBook::findByUid( const QString &uid ) | 595 | Addressee AddressBook::findByUid( const QString &uid ) |
596 | { | 596 | { |
597 | Iterator it; | 597 | Iterator it; |
598 | for ( it = begin(); it != end(); ++it ) { | 598 | for ( it = begin(); it != end(); ++it ) { |
599 | if ( uid == (*it).uid() ) { | 599 | if ( uid == (*it).uid() ) { |
600 | return *it; | 600 | return *it; |
601 | } | 601 | } |
602 | } | 602 | } |
603 | return Addressee(); | 603 | return Addressee(); |
604 | } | 604 | } |
605 | void AddressBook::preExternSync( AddressBook* aBook, const QString& csd ) | ||
606 | { | ||
607 | qDebug("AddressBook::preExternSync "); | ||
608 | AddressBook::Iterator it; | ||
609 | for ( it = begin(); it != end(); ++it ) { | ||
610 | (*it).setID( csd, (*it).externalUID() ); | ||
611 | (*it).computeCsum( csd ); | ||
612 | } | ||
613 | mergeAB( aBook ,csd ); | ||
614 | } | ||
615 | void AddressBook::postExternSync( AddressBook* aBook , const QString& csd) | ||
616 | { | ||
617 | qDebug("AddressBook::postExternSync "); | ||
618 | AddressBook::Iterator it; | ||
619 | for ( it = begin(); it != end(); ++it ) { | ||
620 | if ( (*it).tempSyncStat() == SYNC_TEMPSTATE_NEW_ID || | ||
621 | (*it).tempSyncStat() == SYNC_TEMPSTATE_NEW_CSUM ) { | ||
622 | Addressee ad = aBook->findByUid( ( (*it).uid() )); | ||
623 | if ( ad.isEmpty() ) { | ||
624 | qDebug("ERROR ad empty "); | ||
625 | } else { | ||
626 | (*it).computeCsum( csd ); | ||
627 | if ( (*it).tempSyncStat() == SYNC_TEMPSTATE_NEW_ID ) | ||
628 | ad.setID( csd, (*it).externalUID() ); | ||
629 | ad.setCsum( csd, (*it).getCsum( csd ) ); | ||
630 | aBook->insertAddressee( ad ); | ||
631 | } | ||
632 | } | ||
633 | } | ||
634 | } | ||
635 | |||
636 | |||
605 | Addressee AddressBook::findByExternUid( const QString& uid , const QString& profile ) | 637 | Addressee AddressBook::findByExternUid( const QString& uid , const QString& profile ) |
606 | { | 638 | { |
607 | Iterator it; | 639 | Iterator it; |
608 | for ( it = begin(); it != end(); ++it ) { | 640 | for ( it = begin(); it != end(); ++it ) { |
609 | if ( uid == (*it).getID( profile ) ) | 641 | if ( uid == (*it).getID( profile ) ) |
610 | return (*it); | 642 | return (*it); |
611 | } | 643 | } |
612 | return Addressee(); | 644 | return Addressee(); |
613 | } | 645 | } |
614 | void AddressBook::mergeAB( AddressBook *aBook, const QString& profile ) | 646 | void AddressBook::mergeAB( AddressBook *aBook, const QString& profile ) |
615 | { | 647 | { |
616 | Iterator it; | 648 | Iterator it; |
617 | Addressee ad; | 649 | Addressee ad; |
618 | for ( it = begin(); it != end(); ++it ) { | 650 | for ( it = begin(); it != end(); ++it ) { |
619 | ad = aBook->findByExternUid( (*it).externalUID(), profile ); | 651 | ad = aBook->findByExternUid( (*it).externalUID(), profile ); |
620 | if ( !ad.isEmpty() ) { | 652 | if ( !ad.isEmpty() ) { |
621 | (*it).mergeContact( ad ); | 653 | (*it).mergeContact( ad ); |
622 | } | 654 | } |
623 | } | 655 | } |
624 | } | 656 | } |
625 | 657 | ||
626 | #if 0 | 658 | #if 0 |
627 | Addressee::List AddressBook::getExternLastSyncAddressees() | 659 | Addressee::List AddressBook::getExternLastSyncAddressees() |
628 | { | 660 | { |
629 | Addressee::List results; | 661 | Addressee::List results; |
630 | 662 | ||
631 | Iterator it; | 663 | Iterator it; |
632 | for ( it = begin(); it != end(); ++it ) { | 664 | for ( it = begin(); it != end(); ++it ) { |
633 | if ( (*it).uid().left( 19 ) == "last-syncAddressee-" ) { | 665 | if ( (*it).uid().left( 19 ) == "last-syncAddressee-" ) { |
634 | if ( (*it).familyName().left(4) == "!E: " ) | 666 | if ( (*it).familyName().left(4) == "!E: " ) |
635 | results.append( *it ); | 667 | results.append( *it ); |
636 | } | 668 | } |
637 | } | 669 | } |
638 | 670 | ||
639 | return results; | 671 | return results; |
640 | } | 672 | } |
641 | #endif | 673 | #endif |
642 | void AddressBook::resetTempSyncStat() | 674 | void AddressBook::resetTempSyncStat() |
643 | { | 675 | { |
644 | Iterator it; | 676 | Iterator it; |
645 | for ( it = begin(); it != end(); ++it ) { | 677 | for ( it = begin(); it != end(); ++it ) { |
646 | (*it).setTempSyncStat ( SYNC_TEMPSTATE_INITIAL ); | 678 | (*it).setTempSyncStat ( SYNC_TEMPSTATE_INITIAL ); |
647 | } | 679 | } |
648 | 680 | ||
649 | } | 681 | } |
650 | 682 | ||
651 | QStringList AddressBook:: uidList() | 683 | QStringList AddressBook:: uidList() |
652 | { | 684 | { |
653 | QStringList results; | 685 | QStringList results; |
654 | Iterator it; | 686 | Iterator it; |
655 | for ( it = begin(); it != end(); ++it ) { | 687 | for ( it = begin(); it != end(); ++it ) { |
656 | results.append( (*it).uid() ); | 688 | results.append( (*it).uid() ); |
657 | } | 689 | } |
658 | return results; | 690 | return results; |
659 | } | 691 | } |
660 | 692 | ||
661 | 693 | ||
662 | Addressee::List AddressBook::allAddressees() | 694 | Addressee::List AddressBook::allAddressees() |
663 | { | 695 | { |
664 | return d->mAddressees; | 696 | return d->mAddressees; |
665 | 697 | ||
666 | } | 698 | } |
667 | 699 | ||
668 | Addressee::List AddressBook::findByName( const QString &name ) | 700 | Addressee::List AddressBook::findByName( const QString &name ) |
669 | { | 701 | { |
670 | Addressee::List results; | 702 | Addressee::List results; |
671 | 703 | ||
672 | Iterator it; | 704 | Iterator it; |
673 | for ( it = begin(); it != end(); ++it ) { | 705 | for ( it = begin(); it != end(); ++it ) { |
674 | if ( name == (*it).realName() ) { | 706 | if ( name == (*it).realName() ) { |
675 | results.append( *it ); | 707 | results.append( *it ); |
676 | } | 708 | } |
677 | } | 709 | } |
678 | 710 | ||
679 | return results; | 711 | return results; |
680 | } | 712 | } |
681 | 713 | ||
682 | Addressee::List AddressBook::findByEmail( const QString &email ) | 714 | Addressee::List AddressBook::findByEmail( const QString &email ) |
683 | { | 715 | { |
684 | Addressee::List results; | 716 | Addressee::List results; |
685 | QStringList mailList; | 717 | QStringList mailList; |
686 | 718 | ||
687 | Iterator it; | 719 | Iterator it; |
688 | for ( it = begin(); it != end(); ++it ) { | 720 | for ( it = begin(); it != end(); ++it ) { |
689 | mailList = (*it).emails(); | 721 | mailList = (*it).emails(); |
690 | for ( QStringList::Iterator ite = mailList.begin(); ite != mailList.end(); ++ite ) { | 722 | for ( QStringList::Iterator ite = mailList.begin(); ite != mailList.end(); ++ite ) { |
691 | if ( email == (*ite) ) { | 723 | if ( email == (*ite) ) { |
692 | results.append( *it ); | 724 | results.append( *it ); |
693 | } | 725 | } |
694 | } | 726 | } |
695 | } | 727 | } |
696 | 728 | ||
697 | return results; | 729 | return results; |
698 | } | 730 | } |
699 | 731 | ||
700 | Addressee::List AddressBook::findByCategory( const QString &category ) | 732 | Addressee::List AddressBook::findByCategory( const QString &category ) |
701 | { | 733 | { |
702 | Addressee::List results; | 734 | Addressee::List results; |
703 | 735 | ||
704 | Iterator it; | 736 | Iterator it; |
705 | for ( it = begin(); it != end(); ++it ) { | 737 | for ( it = begin(); it != end(); ++it ) { |
706 | if ( (*it).hasCategory( category) ) { | 738 | if ( (*it).hasCategory( category) ) { |
707 | results.append( *it ); | 739 | results.append( *it ); |
708 | } | 740 | } |
709 | } | 741 | } |
710 | 742 | ||
711 | return results; | 743 | return results; |
712 | } | 744 | } |
713 | 745 | ||
714 | void AddressBook::dump() const | 746 | void AddressBook::dump() const |
715 | { | 747 | { |
716 | kdDebug(5700) << "AddressBook::dump() --- begin ---" << endl; | 748 | kdDebug(5700) << "AddressBook::dump() --- begin ---" << endl; |
717 | 749 | ||
718 | ConstIterator it; | 750 | ConstIterator it; |
719 | for( it = begin(); it != end(); ++it ) { | 751 | for( it = begin(); it != end(); ++it ) { |
720 | (*it).dump(); | 752 | (*it).dump(); |
721 | } | 753 | } |
722 | 754 | ||
723 | kdDebug(5700) << "AddressBook::dump() --- end ---" << endl; | 755 | kdDebug(5700) << "AddressBook::dump() --- end ---" << endl; |
724 | } | 756 | } |
725 | 757 | ||
726 | QString AddressBook::identifier() | 758 | QString AddressBook::identifier() |
727 | { | 759 | { |
728 | QStringList identifier; | 760 | QStringList identifier; |
729 | 761 | ||
730 | 762 | ||
731 | KRES::Manager<Resource>::ActiveIterator it; | 763 | KRES::Manager<Resource>::ActiveIterator it; |
732 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { | 764 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { |
733 | if ( !(*it)->identifier().isEmpty() ) | 765 | if ( !(*it)->identifier().isEmpty() ) |
734 | identifier.append( (*it)->identifier() ); | 766 | identifier.append( (*it)->identifier() ); |
735 | } | 767 | } |
736 | 768 | ||
737 | return identifier.join( ":" ); | 769 | return identifier.join( ":" ); |
738 | } | 770 | } |
739 | 771 | ||
740 | Field::List AddressBook::fields( int category ) | 772 | Field::List AddressBook::fields( int category ) |
741 | { | 773 | { |
742 | if ( d->mAllFields.isEmpty() ) { | 774 | if ( d->mAllFields.isEmpty() ) { |
743 | d->mAllFields = Field::allFields(); | 775 | d->mAllFields = Field::allFields(); |
744 | } | 776 | } |
745 | 777 | ||
746 | if ( category == Field::All ) return d->mAllFields; | 778 | if ( category == Field::All ) return d->mAllFields; |
747 | 779 | ||
748 | Field::List result; | 780 | Field::List result; |
749 | Field::List::ConstIterator it; | 781 | Field::List::ConstIterator it; |
750 | for( it = d->mAllFields.begin(); it != d->mAllFields.end(); ++it ) { | 782 | for( it = d->mAllFields.begin(); it != d->mAllFields.end(); ++it ) { |
751 | if ( (*it)->category() & category ) result.append( *it ); | 783 | if ( (*it)->category() & category ) result.append( *it ); |
752 | } | 784 | } |
753 | 785 | ||
754 | return result; | 786 | return result; |
755 | } | 787 | } |
756 | 788 | ||
757 | bool AddressBook::addCustomField( const QString &label, int category, | 789 | bool AddressBook::addCustomField( const QString &label, int category, |
758 | const QString &key, const QString &app ) | 790 | const QString &key, const QString &app ) |
759 | { | 791 | { |
760 | if ( d->mAllFields.isEmpty() ) { | 792 | if ( d->mAllFields.isEmpty() ) { |
761 | d->mAllFields = Field::allFields(); | 793 | d->mAllFields = Field::allFields(); |
762 | } | 794 | } |
763 | //US QString a = app.isNull() ? KGlobal::instance()->instanceName() : app; | 795 | //US QString a = app.isNull() ? KGlobal::instance()->instanceName() : app; |
764 | QString a = app.isNull() ? KGlobal::getAppName() : app; | 796 | QString a = app.isNull() ? KGlobal::getAppName() : app; |
765 | 797 | ||
766 | QString k = key.isNull() ? label : key; | 798 | QString k = key.isNull() ? label : key; |
767 | 799 | ||
768 | Field *field = Field::createCustomField( label, category, k, a ); | 800 | Field *field = Field::createCustomField( label, category, k, a ); |
769 | 801 | ||
770 | if ( !field ) return false; | 802 | if ( !field ) return false; |
771 | 803 | ||
772 | d->mAllFields.append( field ); | 804 | d->mAllFields.append( field ); |
773 | 805 | ||
774 | return true; | 806 | return true; |
775 | } | 807 | } |
776 | 808 | ||
777 | QDataStream &KABC::operator<<( QDataStream &s, const AddressBook &ab ) | 809 | QDataStream &KABC::operator<<( QDataStream &s, const AddressBook &ab ) |
778 | { | 810 | { |
779 | if (!ab.d) return s; | 811 | if (!ab.d) return s; |
780 | 812 | ||
781 | return s << ab.d->mAddressees; | 813 | return s << ab.d->mAddressees; |
782 | } | 814 | } |
783 | 815 | ||
784 | QDataStream &KABC::operator>>( QDataStream &s, AddressBook &ab ) | 816 | QDataStream &KABC::operator>>( QDataStream &s, AddressBook &ab ) |
785 | { | 817 | { |
786 | if (!ab.d) return s; | 818 | if (!ab.d) return s; |
787 | 819 | ||
788 | s >> ab.d->mAddressees; | 820 | s >> ab.d->mAddressees; |
789 | 821 | ||
790 | return s; | 822 | return s; |
791 | } | 823 | } |
792 | 824 | ||
793 | bool AddressBook::addResource( Resource *resource ) | 825 | bool AddressBook::addResource( Resource *resource ) |
794 | { | 826 | { |
795 | if ( !resource->open() ) { | 827 | if ( !resource->open() ) { |
796 | kdDebug(5700) << "AddressBook::addResource(): can't add resource" << endl; | 828 | kdDebug(5700) << "AddressBook::addResource(): can't add resource" << endl; |
797 | return false; | 829 | return false; |
798 | } | 830 | } |
799 | 831 | ||
800 | resource->setAddressBook( this ); | 832 | resource->setAddressBook( this ); |
801 | 833 | ||
802 | d->mManager->add( resource ); | 834 | d->mManager->add( resource ); |
803 | return true; | 835 | return true; |
804 | } | 836 | } |
805 | 837 | ||
806 | bool AddressBook::removeResource( Resource *resource ) | 838 | bool AddressBook::removeResource( Resource *resource ) |
807 | { | 839 | { |
808 | resource->close(); | 840 | resource->close(); |
809 | 841 | ||
810 | if ( resource == standardResource() ) | 842 | if ( resource == standardResource() ) |
811 | d->mManager->setStandardResource( 0 ); | 843 | d->mManager->setStandardResource( 0 ); |
812 | 844 | ||
813 | resource->setAddressBook( 0 ); | 845 | resource->setAddressBook( 0 ); |
814 | 846 | ||
815 | d->mManager->remove( resource ); | 847 | d->mManager->remove( resource ); |
816 | return true; | 848 | return true; |
817 | } | 849 | } |
818 | 850 | ||
819 | QPtrList<Resource> AddressBook::resources() | 851 | QPtrList<Resource> AddressBook::resources() |
820 | { | 852 | { |
821 | QPtrList<Resource> list; | 853 | QPtrList<Resource> list; |
822 | 854 | ||
823 | // qDebug("AddressBook::resources() 1"); | 855 | // qDebug("AddressBook::resources() 1"); |
824 | 856 | ||
825 | KRES::Manager<Resource>::ActiveIterator it; | 857 | KRES::Manager<Resource>::ActiveIterator it; |
826 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) | 858 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) |
827 | list.append( *it ); | 859 | list.append( *it ); |
828 | 860 | ||
829 | return list; | 861 | return list; |
830 | } | 862 | } |
831 | 863 | ||
832 | /*US | 864 | /*US |
833 | void AddressBook::setErrorHandler( ErrorHandler *handler ) | 865 | void AddressBook::setErrorHandler( ErrorHandler *handler ) |
834 | { | 866 | { |
835 | delete d->mErrorHandler; | 867 | delete d->mErrorHandler; |
836 | d->mErrorHandler = handler; | 868 | d->mErrorHandler = handler; |
837 | } | 869 | } |
838 | */ | 870 | */ |
839 | 871 | ||
840 | void AddressBook::error( const QString& msg ) | 872 | void AddressBook::error( const QString& msg ) |
841 | { | 873 | { |
842 | /*US | 874 | /*US |
843 | if ( !d->mErrorHandler ) // create default error handler | 875 | if ( !d->mErrorHandler ) // create default error handler |
844 | d->mErrorHandler = new ConsoleErrorHandler; | 876 | d->mErrorHandler = new ConsoleErrorHandler; |
845 | 877 | ||
846 | if ( d->mErrorHandler ) | 878 | if ( d->mErrorHandler ) |
847 | d->mErrorHandler->error( msg ); | 879 | d->mErrorHandler->error( msg ); |
848 | else | 880 | else |
849 | kdError(5700) << "no error handler defined" << endl; | 881 | kdError(5700) << "no error handler defined" << endl; |
850 | */ | 882 | */ |
851 | kdDebug(5700) << "msg" << endl; | 883 | kdDebug(5700) << "msg" << endl; |
852 | qDebug(msg); | 884 | qDebug(msg); |
853 | } | 885 | } |
854 | 886 | ||
855 | void AddressBook::deleteRemovedAddressees() | 887 | void AddressBook::deleteRemovedAddressees() |
856 | { | 888 | { |
857 | Addressee::List::Iterator it; | 889 | Addressee::List::Iterator it; |
858 | for ( it = d->mRemovedAddressees.begin(); it != d->mRemovedAddressees.end(); ++it ) { | 890 | for ( it = d->mRemovedAddressees.begin(); it != d->mRemovedAddressees.end(); ++it ) { |
859 | Resource *resource = (*it).resource(); | 891 | Resource *resource = (*it).resource(); |
860 | if ( resource && !resource->readOnly() && resource->isOpen() ) | 892 | if ( resource && !resource->readOnly() && resource->isOpen() ) |
861 | resource->removeAddressee( *it ); | 893 | resource->removeAddressee( *it ); |
862 | } | 894 | } |
863 | 895 | ||
864 | d->mRemovedAddressees.clear(); | 896 | d->mRemovedAddressees.clear(); |
865 | } | 897 | } |
866 | 898 | ||
867 | void AddressBook::setStandardResource( Resource *resource ) | 899 | void AddressBook::setStandardResource( Resource *resource ) |
868 | { | 900 | { |
869 | // qDebug("AddressBook::setStandardResource 1"); | 901 | // qDebug("AddressBook::setStandardResource 1"); |
870 | d->mManager->setStandardResource( resource ); | 902 | d->mManager->setStandardResource( resource ); |
871 | } | 903 | } |
872 | 904 | ||
873 | Resource *AddressBook::standardResource() | 905 | Resource *AddressBook::standardResource() |
874 | { | 906 | { |
875 | return d->mManager->standardResource(); | 907 | return d->mManager->standardResource(); |
876 | } | 908 | } |
877 | 909 | ||
878 | KRES::Manager<Resource> *AddressBook::resourceManager() | 910 | KRES::Manager<Resource> *AddressBook::resourceManager() |
879 | { | 911 | { |
880 | return d->mManager; | 912 | return d->mManager; |
881 | } | 913 | } |
882 | 914 | ||
883 | void AddressBook::cleanUp() | 915 | void AddressBook::cleanUp() |
884 | { | 916 | { |
885 | KRES::Manager<Resource>::ActiveIterator it; | 917 | KRES::Manager<Resource>::ActiveIterator it; |
886 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { | 918 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { |
887 | if ( !(*it)->readOnly() && (*it)->isOpen() ) | 919 | if ( !(*it)->readOnly() && (*it)->isOpen() ) |
888 | (*it)->cleanUp(); | 920 | (*it)->cleanUp(); |
889 | } | 921 | } |
890 | } | 922 | } |
diff --git a/kabc/addressbook.h b/kabc/addressbook.h index f40e015..157dc56 100644 --- a/kabc/addressbook.h +++ b/kabc/addressbook.h | |||
@@ -1,336 +1,339 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkabc. | 2 | This file is part of libkabc. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This library is free software; you can redistribute it and/or | 5 | This library is free software; you can redistribute it and/or |
6 | modify it under the terms of the GNU Library General Public | 6 | modify it under the terms of the GNU Library General Public |
7 | License as published by the Free Software Foundation; either | 7 | License as published by the Free Software Foundation; either |
8 | version 2 of the License, or (at your option) any later version. | 8 | version 2 of the License, or (at your option) any later version. |
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | /* | 21 | /* |
22 | Enhanced Version of the file for platform independent KDE tools. | 22 | Enhanced Version of the file for platform independent KDE tools. |
23 | Copyright (c) 2004 Ulf Schenk | 23 | Copyright (c) 2004 Ulf Schenk |
24 | 24 | ||
25 | $Id$ | 25 | $Id$ |
26 | */ | 26 | */ |
27 | 27 | ||
28 | #ifndef KABC_ADDRESSBOOK_H | 28 | #ifndef KABC_ADDRESSBOOK_H |
29 | #define KABC_ADDRESSBOOK_H | 29 | #define KABC_ADDRESSBOOK_H |
30 | 30 | ||
31 | #include <qobject.h> | 31 | #include <qobject.h> |
32 | 32 | ||
33 | #include <kresources/manager.h> | 33 | #include <kresources/manager.h> |
34 | #include <qptrlist.h> | 34 | #include <qptrlist.h> |
35 | 35 | ||
36 | #include "addressee.h" | 36 | #include "addressee.h" |
37 | #include "field.h" | 37 | #include "field.h" |
38 | 38 | ||
39 | namespace KABC { | 39 | namespace KABC { |
40 | 40 | ||
41 | class ErrorHandler; | 41 | class ErrorHandler; |
42 | class Resource; | 42 | class Resource; |
43 | class Ticket; | 43 | class Ticket; |
44 | 44 | ||
45 | /** | 45 | /** |
46 | @short Address Book | 46 | @short Address Book |
47 | 47 | ||
48 | This class provides access to a collection of address book entries. | 48 | This class provides access to a collection of address book entries. |
49 | */ | 49 | */ |
50 | class AddressBook : public QObject | 50 | class AddressBook : public QObject |
51 | { | 51 | { |
52 | Q_OBJECT | 52 | Q_OBJECT |
53 | 53 | ||
54 | friend QDataStream &operator<<( QDataStream &, const AddressBook & ); | 54 | friend QDataStream &operator<<( QDataStream &, const AddressBook & ); |
55 | friend QDataStream &operator>>( QDataStream &, AddressBook & ); | 55 | friend QDataStream &operator>>( QDataStream &, AddressBook & ); |
56 | friend class StdAddressBook; | 56 | friend class StdAddressBook; |
57 | 57 | ||
58 | public: | 58 | public: |
59 | /** | 59 | /** |
60 | @short Address Book Iterator | 60 | @short Address Book Iterator |
61 | 61 | ||
62 | This class provides an iterator for address book entries. | 62 | This class provides an iterator for address book entries. |
63 | */ | 63 | */ |
64 | class Iterator | 64 | class Iterator |
65 | { | 65 | { |
66 | public: | 66 | public: |
67 | Iterator(); | 67 | Iterator(); |
68 | Iterator( const Iterator & ); | 68 | Iterator( const Iterator & ); |
69 | ~Iterator(); | 69 | ~Iterator(); |
70 | 70 | ||
71 | Iterator &operator=( const Iterator & ); | 71 | Iterator &operator=( const Iterator & ); |
72 | const Addressee &operator*() const; | 72 | const Addressee &operator*() const; |
73 | Addressee &operator*(); | 73 | Addressee &operator*(); |
74 | Addressee* operator->(); | 74 | Addressee* operator->(); |
75 | Iterator &operator++(); | 75 | Iterator &operator++(); |
76 | Iterator &operator++(int); | 76 | Iterator &operator++(int); |
77 | Iterator &operator--(); | 77 | Iterator &operator--(); |
78 | Iterator &operator--(int); | 78 | Iterator &operator--(int); |
79 | bool operator==( const Iterator &it ); | 79 | bool operator==( const Iterator &it ); |
80 | bool operator!=( const Iterator &it ); | 80 | bool operator!=( const Iterator &it ); |
81 | 81 | ||
82 | struct IteratorData; | 82 | struct IteratorData; |
83 | IteratorData *d; | 83 | IteratorData *d; |
84 | }; | 84 | }; |
85 | 85 | ||
86 | /** | 86 | /** |
87 | @short Address Book Const Iterator | 87 | @short Address Book Const Iterator |
88 | 88 | ||
89 | This class provides a const iterator for address book entries. | 89 | This class provides a const iterator for address book entries. |
90 | */ | 90 | */ |
91 | class ConstIterator | 91 | class ConstIterator |
92 | { | 92 | { |
93 | public: | 93 | public: |
94 | ConstIterator(); | 94 | ConstIterator(); |
95 | ConstIterator( const ConstIterator & ); | 95 | ConstIterator( const ConstIterator & ); |
96 | ~ConstIterator(); | 96 | ~ConstIterator(); |
97 | 97 | ||
98 | ConstIterator &operator=( const ConstIterator & ); | 98 | ConstIterator &operator=( const ConstIterator & ); |
99 | const Addressee &operator*() const; | 99 | const Addressee &operator*() const; |
100 | const Addressee* operator->() const; | 100 | const Addressee* operator->() const; |
101 | ConstIterator &operator++(); | 101 | ConstIterator &operator++(); |
102 | ConstIterator &operator++(int); | 102 | ConstIterator &operator++(int); |
103 | ConstIterator &operator--(); | 103 | ConstIterator &operator--(); |
104 | ConstIterator &operator--(int); | 104 | ConstIterator &operator--(int); |
105 | bool operator==( const ConstIterator &it ); | 105 | bool operator==( const ConstIterator &it ); |
106 | bool operator!=( const ConstIterator &it ); | 106 | bool operator!=( const ConstIterator &it ); |
107 | 107 | ||
108 | struct ConstIteratorData; | 108 | struct ConstIteratorData; |
109 | ConstIteratorData *d; | 109 | ConstIteratorData *d; |
110 | }; | 110 | }; |
111 | 111 | ||
112 | /** | 112 | /** |
113 | Constructs a address book object. | 113 | Constructs a address book object. |
114 | 114 | ||
115 | @param format File format class. | 115 | @param format File format class. |
116 | */ | 116 | */ |
117 | AddressBook(); | 117 | AddressBook(); |
118 | AddressBook( const QString &config ); | 118 | AddressBook( const QString &config ); |
119 | AddressBook( const QString &config, const QString &family ); | 119 | AddressBook( const QString &config, const QString &family ); |
120 | virtual ~AddressBook(); | 120 | virtual ~AddressBook(); |
121 | 121 | ||
122 | /** | 122 | /** |
123 | Requests a ticket for saving the addressbook. Calling this function locks | 123 | Requests a ticket for saving the addressbook. Calling this function locks |
124 | the addressbook for all other processes. If the address book is already | 124 | the addressbook for all other processes. If the address book is already |
125 | locked the function returns 0. You need the returned @ref Ticket object | 125 | locked the function returns 0. You need the returned @ref Ticket object |
126 | for calling the @ref save() function. | 126 | for calling the @ref save() function. |
127 | 127 | ||
128 | @see save() | 128 | @see save() |
129 | */ | 129 | */ |
130 | Ticket *requestSaveTicket( Resource *resource=0 ); | 130 | Ticket *requestSaveTicket( Resource *resource=0 ); |
131 | 131 | ||
132 | /** | 132 | /** |
133 | Load address book from file. | 133 | Load address book from file. |
134 | */ | 134 | */ |
135 | bool load(); | 135 | bool load(); |
136 | 136 | ||
137 | /** | 137 | /** |
138 | Save address book. The address book is saved to the file, the Ticket | 138 | Save address book. The address book is saved to the file, the Ticket |
139 | object has been requested for by @ref requestSaveTicket(). | 139 | object has been requested for by @ref requestSaveTicket(). |
140 | 140 | ||
141 | @param ticket a ticket object returned by @ref requestSaveTicket() | 141 | @param ticket a ticket object returned by @ref requestSaveTicket() |
142 | */ | 142 | */ |
143 | bool save( Ticket *ticket ); | 143 | bool save( Ticket *ticket ); |
144 | bool saveAB( ); | 144 | bool saveAB( ); |
145 | 145 | ||
146 | /** | 146 | /** |
147 | Returns a iterator for first entry of address book. | 147 | Returns a iterator for first entry of address book. |
148 | */ | 148 | */ |
149 | Iterator begin(); | 149 | Iterator begin(); |
150 | 150 | ||
151 | /** | 151 | /** |
152 | Returns a const iterator for first entry of address book. | 152 | Returns a const iterator for first entry of address book. |
153 | */ | 153 | */ |
154 | ConstIterator begin() const; | 154 | ConstIterator begin() const; |
155 | 155 | ||
156 | /** | 156 | /** |
157 | Returns a iterator for first entry of address book. | 157 | Returns a iterator for first entry of address book. |
158 | */ | 158 | */ |
159 | Iterator end(); | 159 | Iterator end(); |
160 | 160 | ||
161 | /** | 161 | /** |
162 | Returns a const iterator for first entry of address book. | 162 | Returns a const iterator for first entry of address book. |
163 | */ | 163 | */ |
164 | ConstIterator end() const; | 164 | ConstIterator end() const; |
165 | 165 | ||
166 | /** | 166 | /** |
167 | Removes all entries from address book. | 167 | Removes all entries from address book. |
168 | */ | 168 | */ |
169 | void clear(); | 169 | void clear(); |
170 | 170 | ||
171 | /** | 171 | /** |
172 | Insert an Addressee object into address book. If an object with the same | 172 | Insert an Addressee object into address book. If an object with the same |
173 | unique id already exists in the address book it it replaced by the new | 173 | unique id already exists in the address book it it replaced by the new |
174 | one. If not the new object is appended to the address book. | 174 | one. If not the new object is appended to the address book. |
175 | */ | 175 | */ |
176 | void insertAddressee( const Addressee &, bool setRev = true ); | 176 | void insertAddressee( const Addressee &, bool setRev = true ); |
177 | 177 | ||
178 | /** | 178 | /** |
179 | Removes entry from the address book. | 179 | Removes entry from the address book. |
180 | */ | 180 | */ |
181 | void removeAddressee( const Addressee & ); | 181 | void removeAddressee( const Addressee & ); |
182 | 182 | ||
183 | /** | 183 | /** |
184 | This is like @ref removeAddressee() just above, with the difference that | 184 | This is like @ref removeAddressee() just above, with the difference that |
185 | the first element is a iterator, returned by @ref begin(). | 185 | the first element is a iterator, returned by @ref begin(). |
186 | */ | 186 | */ |
187 | void removeAddressee( const Iterator & ); | 187 | void removeAddressee( const Iterator & ); |
188 | 188 | ||
189 | /** | 189 | /** |
190 | Find the specified entry in address book. Returns end(), if the entry | 190 | Find the specified entry in address book. Returns end(), if the entry |
191 | couldn't be found. | 191 | couldn't be found. |
192 | */ | 192 | */ |
193 | Iterator find( const Addressee & ); | 193 | Iterator find( const Addressee & ); |
194 | 194 | ||
195 | /** | 195 | /** |
196 | Find the entry specified by an unique id. Returns an empty Addressee | 196 | Find the entry specified by an unique id. Returns an empty Addressee |
197 | object, if the address book does not contain an entry with this id. | 197 | object, if the address book does not contain an entry with this id. |
198 | */ | 198 | */ |
199 | Addressee findByUid( const QString & ); | 199 | Addressee findByUid( const QString & ); |
200 | 200 | ||
201 | 201 | ||
202 | /** | 202 | /** |
203 | Returns a list of all addressees in the address book. This list can | 203 | Returns a list of all addressees in the address book. This list can |
204 | be sorted with @ref KABC::AddresseeList for example. | 204 | be sorted with @ref KABC::AddresseeList for example. |
205 | */ | 205 | */ |
206 | Addressee::List allAddressees(); | 206 | Addressee::List allAddressees(); |
207 | 207 | ||
208 | /** | 208 | /** |
209 | Find all entries with the specified name in the address book. Returns | 209 | Find all entries with the specified name in the address book. Returns |
210 | an empty list, if no entries could be found. | 210 | an empty list, if no entries could be found. |
211 | */ | 211 | */ |
212 | Addressee::List findByName( const QString & ); | 212 | Addressee::List findByName( const QString & ); |
213 | 213 | ||
214 | /** | 214 | /** |
215 | Find all entries with the specified email address in the address book. | 215 | Find all entries with the specified email address in the address book. |
216 | Returns an empty list, if no entries could be found. | 216 | Returns an empty list, if no entries could be found. |
217 | */ | 217 | */ |
218 | Addressee::List findByEmail( const QString & ); | 218 | Addressee::List findByEmail( const QString & ); |
219 | 219 | ||
220 | /** | 220 | /** |
221 | Find all entries wich have the specified category in the address book. | 221 | Find all entries wich have the specified category in the address book. |
222 | Returns an empty list, if no entries could be found. | 222 | Returns an empty list, if no entries could be found. |
223 | */ | 223 | */ |
224 | Addressee::List findByCategory( const QString & ); | 224 | Addressee::List findByCategory( const QString & ); |
225 | 225 | ||
226 | /** | 226 | /** |
227 | Return a string identifying this addressbook. | 227 | Return a string identifying this addressbook. |
228 | */ | 228 | */ |
229 | virtual QString identifier(); | 229 | virtual QString identifier(); |
230 | 230 | ||
231 | /** | 231 | /** |
232 | Used for debug output. | 232 | Used for debug output. |
233 | */ | 233 | */ |
234 | void dump() const; | 234 | void dump() const; |
235 | 235 | ||
236 | void emitAddressBookLocked() { emit addressBookLocked( this ); } | 236 | void emitAddressBookLocked() { emit addressBookLocked( this ); } |
237 | void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); } | 237 | void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); } |
238 | void emitAddressBookChanged() { emit addressBookChanged( this ); } | 238 | void emitAddressBookChanged() { emit addressBookChanged( this ); } |
239 | 239 | ||
240 | /** | 240 | /** |
241 | Return list of all Fields known to the address book which are associated | 241 | Return list of all Fields known to the address book which are associated |
242 | with the given field category. | 242 | with the given field category. |
243 | */ | 243 | */ |
244 | Field::List fields( int category = Field::All ); | 244 | Field::List fields( int category = Field::All ); |
245 | 245 | ||
246 | /** | 246 | /** |
247 | Add custom field to address book. | 247 | Add custom field to address book. |
248 | 248 | ||
249 | @param label User visible label of the field. | 249 | @param label User visible label of the field. |
250 | @param category Ored list of field categories. | 250 | @param category Ored list of field categories. |
251 | @param key Identifier used as key for reading and writing the field. | 251 | @param key Identifier used as key for reading and writing the field. |
252 | @param app String used as application key for reading and writing | 252 | @param app String used as application key for reading and writing |
253 | the field. | 253 | the field. |
254 | */ | 254 | */ |
255 | bool addCustomField( const QString &label, int category = Field::All, | 255 | bool addCustomField( const QString &label, int category = Field::All, |
256 | const QString &key = QString::null, | 256 | const QString &key = QString::null, |
257 | const QString &app = QString::null ); | 257 | const QString &app = QString::null ); |
258 | 258 | ||
259 | 259 | ||
260 | /** | 260 | /** |
261 | Add address book resource. | 261 | Add address book resource. |
262 | */ | 262 | */ |
263 | bool addResource( Resource * ); | 263 | bool addResource( Resource * ); |
264 | 264 | ||
265 | /** | 265 | /** |
266 | Remove address book resource. | 266 | Remove address book resource. |
267 | */ | 267 | */ |
268 | bool removeResource( Resource * ); | 268 | bool removeResource( Resource * ); |
269 | 269 | ||
270 | /** | 270 | /** |
271 | Return pointer list of all resources. | 271 | Return pointer list of all resources. |
272 | */ | 272 | */ |
273 | QPtrList<Resource> resources(); | 273 | QPtrList<Resource> resources(); |
274 | 274 | ||
275 | /** | 275 | /** |
276 | Set the @p ErrorHandler, that is used by @ref error() to | 276 | Set the @p ErrorHandler, that is used by @ref error() to |
277 | provide gui-independend error messages. | 277 | provide gui-independend error messages. |
278 | */ | 278 | */ |
279 | void setErrorHandler( ErrorHandler * ); | 279 | void setErrorHandler( ErrorHandler * ); |
280 | 280 | ||
281 | /** | 281 | /** |
282 | Shows gui independend error messages. | 282 | Shows gui independend error messages. |
283 | */ | 283 | */ |
284 | void error( const QString& ); | 284 | void error( const QString& ); |
285 | 285 | ||
286 | /** | 286 | /** |
287 | Query all resources to clean up their lock files | 287 | Query all resources to clean up their lock files |
288 | */ | 288 | */ |
289 | void cleanUp(); | 289 | void cleanUp(); |
290 | 290 | ||
291 | // sync stuff | 291 | // sync stuff |
292 | //Addressee::List getExternLastSyncAddressees(); | 292 | //Addressee::List getExternLastSyncAddressees(); |
293 | void resetTempSyncStat(); | 293 | void resetTempSyncStat(); |
294 | QStringList uidList(); | 294 | QStringList uidList(); |
295 | void removeDeletedAddressees(); | 295 | void removeDeletedAddressees(); |
296 | void mergeAB( AddressBook *aBook, const QString& profile ); | 296 | void mergeAB( AddressBook *aBook, const QString& profile ); |
297 | Addressee findByExternUid( const QString& uid , const QString& profile ); | 297 | Addressee findByExternUid( const QString& uid , const QString& profile ); |
298 | |||
299 | void preExternSync( AddressBook* aBook, const QString& csd ); | ||
300 | void postExternSync( AddressBook* aBook, const QString& csd ); | ||
298 | signals: | 301 | signals: |
299 | /** | 302 | /** |
300 | Emitted, when the address book has changed on disk. | 303 | Emitted, when the address book has changed on disk. |
301 | */ | 304 | */ |
302 | void addressBookChanged( AddressBook * ); | 305 | void addressBookChanged( AddressBook * ); |
303 | 306 | ||
304 | /** | 307 | /** |
305 | Emitted, when the address book has been locked for writing. | 308 | Emitted, when the address book has been locked for writing. |
306 | */ | 309 | */ |
307 | void addressBookLocked( AddressBook * ); | 310 | void addressBookLocked( AddressBook * ); |
308 | 311 | ||
309 | /** | 312 | /** |
310 | Emitted, when the address book has been unlocked. | 313 | Emitted, when the address book has been unlocked. |
311 | */ | 314 | */ |
312 | void addressBookUnlocked( AddressBook * ); | 315 | void addressBookUnlocked( AddressBook * ); |
313 | 316 | ||
314 | protected: | 317 | protected: |
315 | void deleteRemovedAddressees(); | 318 | void deleteRemovedAddressees(); |
316 | void setStandardResource( Resource * ); | 319 | void setStandardResource( Resource * ); |
317 | Resource *standardResource(); | 320 | Resource *standardResource(); |
318 | KRES::Manager<Resource> *resourceManager(); | 321 | KRES::Manager<Resource> *resourceManager(); |
319 | 322 | ||
320 | void init(const QString &config, const QString &family); | 323 | void init(const QString &config, const QString &family); |
321 | 324 | ||
322 | private: | 325 | private: |
323 | //US QPtrList<Resource> mDummy; // Remove in KDE 4 | 326 | //US QPtrList<Resource> mDummy; // Remove in KDE 4 |
324 | 327 | ||
325 | 328 | ||
326 | struct AddressBookData; | 329 | struct AddressBookData; |
327 | AddressBookData *d; | 330 | AddressBookData *d; |
328 | bool blockLSEchange; | 331 | bool blockLSEchange; |
329 | }; | 332 | }; |
330 | 333 | ||
331 | QDataStream &operator<<( QDataStream &, const AddressBook & ); | 334 | QDataStream &operator<<( QDataStream &, const AddressBook & ); |
332 | QDataStream &operator>>( QDataStream &, AddressBook & ); | 335 | QDataStream &operator>>( QDataStream &, AddressBook & ); |
333 | 336 | ||
334 | } | 337 | } |
335 | 338 | ||
336 | #endif | 339 | #endif |