-rw-r--r-- | kabc/addressbook.cpp | 148 | ||||
-rw-r--r-- | kabc/addressbook.h | 2 | ||||
-rw-r--r-- | kabc/addressee.cpp | 46 | ||||
-rw-r--r-- | kabc/addressee.h | 1 | ||||
-rw-r--r-- | kabc/phonenumber.cpp | 4 |
5 files changed, 182 insertions, 19 deletions
diff --git a/kabc/addressbook.cpp b/kabc/addressbook.cpp index d037d2f..ad0f702 100644 --- a/kabc/addressbook.cpp +++ b/kabc/addressbook.cpp | |||
@@ -248,445 +248,567 @@ void AddressBook::init(const QString &config, const QString &family ) | |||
248 | if ( family == "syncContact" ) { | 248 | if ( family == "syncContact" ) { |
249 | qDebug("creating sync config "); | 249 | qDebug("creating sync config "); |
250 | fami = "contact"; | 250 | fami = "contact"; |
251 | KConfig* con = new KConfig( locateLocal("config", "syncContactrc") ); | 251 | KConfig* con = new KConfig( locateLocal("config", "syncContactrc") ); |
252 | con->setGroup( "General" ); | 252 | con->setGroup( "General" ); |
253 | con->writeEntry( "ResourceKeys", QString("sync") ); | 253 | con->writeEntry( "ResourceKeys", QString("sync") ); |
254 | con->writeEntry( "Standard", QString("sync") ); | 254 | con->writeEntry( "Standard", QString("sync") ); |
255 | con->setGroup( "Resource_sync" ); | 255 | con->setGroup( "Resource_sync" ); |
256 | con->writeEntry( "FileName", config ); | 256 | con->writeEntry( "FileName", config ); |
257 | con->writeEntry( "FileFormat", QString("vcard") ); | 257 | con->writeEntry( "FileFormat", QString("vcard") ); |
258 | con->writeEntry( "ResourceIdentifier", QString("sync") ); | 258 | con->writeEntry( "ResourceIdentifier", QString("sync") ); |
259 | con->writeEntry( "ResourceName", QString("sync_res") ); | 259 | con->writeEntry( "ResourceName", QString("sync_res") ); |
260 | if ( config.right(4) == ".xml" ) | 260 | if ( config.right(4) == ".xml" ) |
261 | con->writeEntry( "ResourceType", QString("qtopia") ); | 261 | con->writeEntry( "ResourceType", QString("qtopia") ); |
262 | else if ( config == "sharp" ) { | 262 | else if ( config == "sharp" ) { |
263 | con->writeEntry( "ResourceType", QString("sharp") ); | 263 | con->writeEntry( "ResourceType", QString("sharp") ); |
264 | } else { | 264 | } else { |
265 | con->writeEntry( "ResourceType", QString("file") ); | 265 | con->writeEntry( "ResourceType", QString("file") ); |
266 | } | 266 | } |
267 | //con->sync(); | 267 | //con->sync(); |
268 | d->mConfig = con; | 268 | d->mConfig = con; |
269 | } | 269 | } |
270 | else | 270 | else |
271 | d->mConfig = new KConfig( locateLocal("config", config) ); | 271 | d->mConfig = new KConfig( locateLocal("config", config) ); |
272 | // qDebug("AddressBook::init 1 config=%s",config.latin1() ); | 272 | // qDebug("AddressBook::init 1 config=%s",config.latin1() ); |
273 | } | 273 | } |
274 | else { | 274 | else { |
275 | d->mConfig = 0; | 275 | d->mConfig = 0; |
276 | // qDebug("AddressBook::init 1 config=0"); | 276 | // qDebug("AddressBook::init 1 config=0"); |
277 | } | 277 | } |
278 | 278 | ||
279 | //US d->mErrorHandler = 0; | 279 | //US d->mErrorHandler = 0; |
280 | d->mManager = new KRES::Manager<Resource>( fami, false ); | 280 | d->mManager = new KRES::Manager<Resource>( fami, false ); |
281 | d->mManager->readConfig( d->mConfig ); | 281 | d->mManager->readConfig( d->mConfig ); |
282 | if ( family == "syncContact" ) { | 282 | if ( family == "syncContact" ) { |
283 | KRES::Manager<Resource> *manager = d->mManager; | 283 | KRES::Manager<Resource> *manager = d->mManager; |
284 | KRES::Manager<Resource>::ActiveIterator it; | 284 | KRES::Manager<Resource>::ActiveIterator it; |
285 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { | 285 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { |
286 | (*it)->setAddressBook( this ); | 286 | (*it)->setAddressBook( this ); |
287 | if ( !(*it)->open() ) | 287 | if ( !(*it)->open() ) |
288 | error( QString( "Unable to open resource '%1'!" ).arg( (*it)->resourceName() ) ); | 288 | error( QString( "Unable to open resource '%1'!" ).arg( (*it)->resourceName() ) ); |
289 | } | 289 | } |
290 | Resource *res = standardResource(); | 290 | Resource *res = standardResource(); |
291 | if ( !res ) { | 291 | if ( !res ) { |
292 | qDebug("ERROR: no standard resource"); | 292 | qDebug("ERROR: no standard resource"); |
293 | res = manager->createResource( "file" ); | 293 | res = manager->createResource( "file" ); |
294 | if ( res ) | 294 | if ( res ) |
295 | { | 295 | { |
296 | addResource( res ); | 296 | addResource( res ); |
297 | } | 297 | } |
298 | else | 298 | else |
299 | qDebug(" No resource available!!!"); | 299 | qDebug(" No resource available!!!"); |
300 | } | 300 | } |
301 | setStandardResource( res ); | 301 | setStandardResource( res ); |
302 | manager->writeConfig(); | 302 | manager->writeConfig(); |
303 | } | 303 | } |
304 | addCustomField( i18n( "Department" ), KABC::Field::Organization, | 304 | addCustomField( i18n( "Department" ), KABC::Field::Organization, |
305 | "X-Department", "KADDRESSBOOK" ); | 305 | "X-Department", "KADDRESSBOOK" ); |
306 | addCustomField( i18n( "Profession" ), KABC::Field::Organization, | 306 | addCustomField( i18n( "Profession" ), KABC::Field::Organization, |
307 | "X-Profession", "KADDRESSBOOK" ); | 307 | "X-Profession", "KADDRESSBOOK" ); |
308 | addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, | 308 | addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, |
309 | "X-AssistantsName", "KADDRESSBOOK" ); | 309 | "X-AssistantsName", "KADDRESSBOOK" ); |
310 | addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, | 310 | addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, |
311 | "X-ManagersName", "KADDRESSBOOK" ); | 311 | "X-ManagersName", "KADDRESSBOOK" ); |
312 | addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, | 312 | addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, |
313 | "X-SpousesName", "KADDRESSBOOK" ); | 313 | "X-SpousesName", "KADDRESSBOOK" ); |
314 | addCustomField( i18n( "Office" ), KABC::Field::Personal, | 314 | addCustomField( i18n( "Office" ), KABC::Field::Personal, |
315 | "X-Office", "KADDRESSBOOK" ); | 315 | "X-Office", "KADDRESSBOOK" ); |
316 | addCustomField( i18n( "IM Address" ), KABC::Field::Personal, | 316 | addCustomField( i18n( "IM Address" ), KABC::Field::Personal, |
317 | "X-IMAddress", "KADDRESSBOOK" ); | 317 | "X-IMAddress", "KADDRESSBOOK" ); |
318 | addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, | 318 | addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, |
319 | "X-Anniversary", "KADDRESSBOOK" ); | 319 | "X-Anniversary", "KADDRESSBOOK" ); |
320 | 320 | ||
321 | //US added this field to become compatible with Opie/qtopia addressbook | 321 | //US added this field to become compatible with Opie/qtopia addressbook |
322 | // values can be "female" or "male" or "". An empty field represents undefined. | 322 | // values can be "female" or "male" or "". An empty field represents undefined. |
323 | addCustomField( i18n( "Gender" ), KABC::Field::Personal, | 323 | addCustomField( i18n( "Gender" ), KABC::Field::Personal, |
324 | "X-Gender", "KADDRESSBOOK" ); | 324 | "X-Gender", "KADDRESSBOOK" ); |
325 | addCustomField( i18n( "Children" ), KABC::Field::Personal, | 325 | addCustomField( i18n( "Children" ), KABC::Field::Personal, |
326 | "X-Children", "KADDRESSBOOK" ); | 326 | "X-Children", "KADDRESSBOOK" ); |
327 | addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, | 327 | addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, |
328 | "X-FreeBusyUrl", "KADDRESSBOOK" ); | 328 | "X-FreeBusyUrl", "KADDRESSBOOK" ); |
329 | addCustomField( i18n( "ExternalID" ), KABC::Field::Personal, | 329 | addCustomField( i18n( "ExternalID" ), KABC::Field::Personal, |
330 | "X-ExternalID", "KADDRESSBOOK" ); | 330 | "X-ExternalID", "KADDRESSBOOK" ); |
331 | } | 331 | } |
332 | 332 | ||
333 | AddressBook::~AddressBook() | 333 | AddressBook::~AddressBook() |
334 | { | 334 | { |
335 | delete d->mConfig; d->mConfig = 0; | 335 | delete d->mConfig; d->mConfig = 0; |
336 | delete d->mManager; d->mManager = 0; | 336 | delete d->mManager; d->mManager = 0; |
337 | //US delete d->mErrorHandler; d->mErrorHandler = 0; | 337 | //US delete d->mErrorHandler; d->mErrorHandler = 0; |
338 | delete d; d = 0; | 338 | delete d; d = 0; |
339 | } | 339 | } |
340 | 340 | ||
341 | bool AddressBook::load() | 341 | bool AddressBook::load() |
342 | { | 342 | { |
343 | 343 | ||
344 | |||
345 | clear(); | 344 | clear(); |
346 | |||
347 | KRES::Manager<Resource>::ActiveIterator it; | 345 | KRES::Manager<Resource>::ActiveIterator it; |
348 | bool ok = true; | 346 | bool ok = true; |
349 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) | 347 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) |
350 | if ( !(*it)->load() ) { | 348 | if ( !(*it)->load() ) { |
351 | error( i18n("Unable to load resource '%1'").arg( (*it)->resourceName() ) ); | 349 | qDebug( i18n("Unable to load resource '%1'").arg( (*it)->resourceName() ) ); |
352 | ok = false; | 350 | ok = false; |
351 | } else { | ||
352 | qDebug( i18n("Resource loaded: '%1'").arg( (*it)->resourceName() ) ); | ||
353 | } | 353 | } |
354 | |||
355 | // mark all addressees as unchanged | 354 | // mark all addressees as unchanged |
356 | Addressee::List::Iterator addrIt; | 355 | Addressee::List::Iterator addrIt; |
357 | for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt ) { | 356 | for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt ) { |
358 | (*addrIt).setChanged( false ); | 357 | (*addrIt).setChanged( false ); |
359 | QString id = (*addrIt).custom( "KADDRESSBOOK", "X-ExternalID" ); | 358 | QString id = (*addrIt).custom( "KADDRESSBOOK", "X-ExternalID" ); |
360 | if ( !id.isEmpty() ) { | 359 | if ( !id.isEmpty() ) { |
361 | //qDebug("setId aa %s ", id.latin1()); | 360 | //qDebug("setId aa %s ", id.latin1()); |
362 | (*addrIt).setIDStr(id ); | 361 | (*addrIt).setIDStr(id ); |
363 | } | 362 | } |
364 | } | 363 | } |
365 | blockLSEchange = true; | 364 | blockLSEchange = true; |
366 | return ok; | 365 | return ok; |
367 | } | 366 | } |
368 | 367 | ||
369 | bool AddressBook::save( Ticket *ticket ) | 368 | bool AddressBook::save( Ticket *ticket ) |
370 | { | 369 | { |
371 | kdDebug(5700) << "AddressBook::save()"<< endl; | 370 | kdDebug(5700) << "AddressBook::save()"<< endl; |
372 | 371 | ||
373 | if ( ticket->resource() ) { | 372 | if ( ticket->resource() ) { |
374 | deleteRemovedAddressees(); | 373 | deleteRemovedAddressees(); |
375 | return ticket->resource()->save( ticket ); | 374 | return ticket->resource()->save( ticket ); |
376 | } | 375 | } |
377 | 376 | ||
378 | return false; | 377 | return false; |
379 | } | 378 | } |
380 | void AddressBook::export2File( QString fileName ) | 379 | void AddressBook::export2File( QString fileName ) |
381 | { | 380 | { |
382 | 381 | ||
383 | QFile outFile( fileName ); | 382 | QFile outFile( fileName ); |
384 | if ( !outFile.open( IO_WriteOnly ) ) { | 383 | if ( !outFile.open( IO_WriteOnly ) ) { |
385 | QString text = i18n( "<qt>Unable to open file <b>%1</b> for export.</qt>" ); | 384 | QString text = i18n( "<qt>Unable to open file <b>%1</b> for export.</qt>" ); |
386 | KMessageBox::error( 0, text.arg( fileName ) ); | 385 | KMessageBox::error( 0, text.arg( fileName ) ); |
387 | return ; | 386 | return ; |
388 | } | 387 | } |
389 | QTextStream t( &outFile ); | 388 | QTextStream t( &outFile ); |
390 | t.setEncoding( QTextStream::UnicodeUTF8 ); | 389 | t.setEncoding( QTextStream::UnicodeUTF8 ); |
391 | Iterator it; | 390 | Iterator it; |
392 | KABC::VCardConverter::Version version; | 391 | KABC::VCardConverter::Version version; |
393 | version = KABC::VCardConverter::v3_0; | 392 | version = KABC::VCardConverter::v3_0; |
394 | for ( it = begin(); it != end(); ++it ) { | 393 | for ( it = begin(); it != end(); ++it ) { |
395 | if ( !(*it).IDStr().isEmpty() ) { | 394 | if ( !(*it).IDStr().isEmpty() ) { |
396 | (*it).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*it).IDStr() ); | 395 | (*it).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*it).IDStr() ); |
397 | } | 396 | } |
398 | KABC::VCardConverter converter; | 397 | KABC::VCardConverter converter; |
399 | QString vcard; | 398 | QString vcard; |
400 | //Resource *resource() const; | 399 | //Resource *resource() const; |
401 | converter.addresseeToVCard( *it, vcard, version ); | 400 | converter.addresseeToVCard( *it, vcard, version ); |
402 | t << vcard << "\r\n"; | 401 | t << vcard << "\r\n"; |
403 | } | 402 | } |
404 | t << "\r\n\r\n"; | 403 | t << "\r\n\r\n"; |
405 | outFile.close(); | 404 | outFile.close(); |
406 | } | 405 | } |
406 | // if QStringList uids is empty, all are exported | ||
407 | bool AddressBook::export2PhoneFormat( QStringList uids ,QString fileName ) | ||
408 | { | ||
409 | KABC::VCardConverter converter; | ||
410 | QString datastream; | ||
411 | Iterator it; | ||
412 | bool all = uids.isEmpty(); | ||
413 | for ( it = begin(); it != end(); ++it ) { | ||
414 | // for( QStringList::ConstIterator it = uids.begin(); it != uids.end(); ++it ) { | ||
415 | if ( ! all ) { | ||
416 | if ( ! ( uids.contains((*it).uid() ) )) | ||
417 | continue; | ||
418 | } | ||
419 | KABC::Addressee a = ( *it ); | ||
420 | if ( a.isEmpty() ) | ||
421 | continue; | ||
422 | a.simplifyEmails(); | ||
423 | a.simplifyPhoneNumbers(); | ||
424 | a.simplifyPhoneNumberTypes(); | ||
425 | a.simplifyAddresses(); | ||
426 | |||
427 | QString vcard; | ||
428 | QString vcardnew; | ||
429 | converter.addresseeToVCard( a, vcard ); | ||
430 | int start = 0; | ||
431 | int next; | ||
432 | while ( (next = vcard.find("TYPE=", start) )>= 0 ) { | ||
433 | int semi = vcard.find(";", next); | ||
434 | int dopp = vcard.find(":", next); | ||
435 | int sep; | ||
436 | if ( semi < dopp && semi >= 0 ) | ||
437 | sep = semi ; | ||
438 | else | ||
439 | sep = dopp; | ||
440 | vcardnew +=vcard.mid( start, next - start); | ||
441 | vcardnew +=vcard.mid( next+5,sep -next -5 ).upper(); | ||
442 | start = sep; | ||
443 | } | ||
444 | vcardnew += vcard.mid( start,vcard.length() ); | ||
445 | vcard = ""; | ||
446 | start = 0; | ||
447 | while ( (next = vcardnew.find("ADR", start) )>= 0 ) { | ||
448 | int sep = vcardnew.find(":", next); | ||
449 | vcard +=vcardnew.mid( start, next - start+3); | ||
450 | start = sep; | ||
451 | } | ||
452 | vcard += vcardnew.mid( start,vcardnew.length() ); | ||
453 | vcard.replace ( QRegExp(";;;") , "" ); | ||
454 | vcard.replace ( QRegExp(";;") , "" ); | ||
455 | datastream += vcard; | ||
456 | |||
457 | } | ||
458 | |||
459 | QFile outFile(fileName); | ||
460 | if ( outFile.open(IO_WriteOnly) ) { | ||
461 | datastream.replace ( QRegExp("VERSION:3.0") , "VERSION:2.1" ); | ||
462 | QTextStream t( &outFile ); // use a text stream | ||
463 | t.setEncoding( QTextStream::UnicodeUTF8 ); | ||
464 | t <<datastream; | ||
465 | t << "\r\n\r\n"; | ||
466 | outFile.close(); | ||
467 | |||
468 | } else { | ||
469 | qDebug("Error open temp file "); | ||
470 | return false; | ||
471 | } | ||
472 | return true; | ||
473 | |||
474 | } | ||
407 | void AddressBook::importFromFile( QString fileName, bool replaceLabel, bool removeOld ) | 475 | void AddressBook::importFromFile( QString fileName, bool replaceLabel, bool removeOld ) |
408 | { | 476 | { |
409 | 477 | ||
410 | if ( removeOld ) | 478 | if ( removeOld ) |
411 | setUntagged(); | 479 | setUntagged(); |
412 | KABC::Addressee::List list; | 480 | KABC::Addressee::List list; |
413 | QFile file( fileName ); | 481 | QFile file( fileName ); |
414 | file.open( IO_ReadOnly ); | 482 | file.open( IO_ReadOnly ); |
415 | QByteArray rawData = file.readAll(); | 483 | QByteArray rawData = file.readAll(); |
416 | file.close(); | 484 | file.close(); |
417 | QString data; | 485 | QString data; |
418 | if ( replaceLabel ) { | 486 | if ( replaceLabel ) { |
419 | data = QString::fromLatin1( rawData.data(), rawData.size() + 1 ); | 487 | data = QString::fromLatin1( rawData.data(), rawData.size() + 1 ); |
420 | data.replace ( QRegExp("LABEL") , "ADR" ); | 488 | data.replace ( QRegExp("LABEL") , "ADR" ); |
421 | data.replace ( QRegExp("CHARSET=ISO-8859-1") , "" ); | 489 | data.replace ( QRegExp("CHARSET=ISO-8859-1") , "" ); |
422 | } else | 490 | } else |
423 | data = QString::fromUtf8( rawData.data(), rawData.size() + 1 ); | 491 | data = QString::fromUtf8( rawData.data(), rawData.size() + 1 ); |
424 | KABC::VCardTool tool; | 492 | KABC::VCardTool tool; |
425 | list = tool.parseVCards( data ); | 493 | list = tool.parseVCards( data ); |
426 | KABC::Addressee::List::Iterator it; | 494 | KABC::Addressee::List::Iterator it; |
427 | for ( it = list.begin(); it != list.end(); ++it ) { | 495 | for ( it = list.begin(); it != list.end(); ++it ) { |
496 | QString id = (*it).custom( "KADDRESSBOOK", "X-ExternalID" ); | ||
497 | if ( !id.isEmpty() ) | ||
498 | (*it).setIDStr(id ); | ||
428 | (*it).setResource( 0 ); | 499 | (*it).setResource( 0 ); |
429 | if ( replaceLabel ) | 500 | if ( replaceLabel ) |
430 | (*it).removeVoice(); | 501 | (*it).removeVoice(); |
431 | if ( removeOld ) | 502 | if ( removeOld ) |
432 | (*it).setTagged( true ); | 503 | (*it).setTagged( true ); |
433 | insertAddressee( (*it), false, true ); | 504 | insertAddressee( (*it), false, true ); |
434 | } | 505 | } |
435 | if ( removeOld ) | 506 | if ( removeOld ) |
436 | removeUntagged(); | 507 | removeUntagged(); |
437 | } | 508 | } |
438 | void AddressBook::setUntagged() | 509 | void AddressBook::setUntagged() |
439 | { | 510 | { |
440 | Iterator ait; | 511 | Iterator ait; |
441 | for ( ait = begin(); ait != end(); ++ait ) { | 512 | for ( ait = begin(); ait != end(); ++ait ) { |
442 | (*ait).setTagged( false ); | 513 | (*ait).setTagged( false ); |
443 | } | 514 | } |
444 | } | 515 | } |
445 | void AddressBook::removeUntagged() | 516 | void AddressBook::removeUntagged() |
446 | { | 517 | { |
447 | Iterator ait; | 518 | Iterator ait; |
448 | bool todelete = false; | 519 | bool todelete = false; |
449 | Iterator todel; | 520 | Iterator todel; |
450 | for ( ait = begin(); ait != end(); ++ait ) { | 521 | for ( ait = begin(); ait != end(); ++ait ) { |
451 | if ( todelete ) | 522 | if ( todelete ) |
452 | removeAddressee( todel ); | 523 | removeAddressee( todel ); |
453 | if (!(*ait).tagged()) { | 524 | if (!(*ait).tagged()) { |
454 | todelete = true; | 525 | todelete = true; |
455 | todel = ait; | 526 | todel = ait; |
456 | } else | 527 | } else |
457 | todelete = false; | 528 | todelete = false; |
458 | } | 529 | } |
459 | if ( todelete ) | 530 | if ( todelete ) |
460 | removeAddressee( todel ); | 531 | removeAddressee( todel ); |
461 | deleteRemovedAddressees(); | 532 | deleteRemovedAddressees(); |
462 | } | 533 | } |
463 | void AddressBook::smplifyAddressees() | 534 | void AddressBook::smplifyAddressees() |
464 | { | 535 | { |
465 | Iterator ait; | 536 | Iterator ait; |
466 | for ( ait = begin(); ait != end(); ++ait ) { | 537 | for ( ait = begin(); ait != end(); ++ait ) { |
467 | (*ait).simplifyEmails(); | 538 | (*ait).simplifyEmails(); |
468 | (*ait).simplifyPhoneNumbers(); | 539 | (*ait).simplifyPhoneNumbers(); |
469 | (*ait).simplifyPhoneNumberTypes(); | 540 | (*ait).simplifyPhoneNumberTypes(); |
470 | (*ait).simplifyAddresses(); | 541 | (*ait).simplifyAddresses(); |
471 | } | 542 | } |
472 | } | 543 | } |
473 | void AddressBook::preparePhoneSync( QString currentSyncDevice, bool isPreSync ) | 544 | void AddressBook::preparePhoneSync( QString currentSyncDevice, bool isPreSync ) |
474 | { | 545 | { |
475 | Iterator ait; | 546 | Iterator ait; |
476 | for ( ait = begin(); ait != end(); ++ait ) { | 547 | for ( ait = begin(); ait != end(); ++ait ) { |
477 | QString id = (*ait).IDStr(); | 548 | QString id = (*ait).IDStr(); |
478 | (*ait).setIDStr( ":"); | 549 | (*ait).setIDStr( ":"); |
479 | (*ait).setExternalUID( id ); | 550 | (*ait).setExternalUID( id ); |
480 | (*ait).setOriginalExternalUID( id ); | 551 | (*ait).setOriginalExternalUID( id ); |
481 | if ( isPreSync ) | 552 | if ( isPreSync ) |
482 | (*ait).setTempSyncStat( SYNC_TEMPSTATE_NEW_EXTERNAL ); | 553 | (*ait).setTempSyncStat( SYNC_TEMPSTATE_NEW_EXTERNAL ); |
483 | else | 554 | else { |
484 | (*ait).setTempSyncStat( SYNC_TEMPSTATE_NEW_ID ); | 555 | (*ait).setTempSyncStat( SYNC_TEMPSTATE_NEW_ID ); |
556 | (*ait).setID( currentSyncDevice,id ); | ||
557 | |||
558 | } | ||
559 | } | ||
560 | } | ||
561 | void AddressBook::findNewExtIds( QString fileName, QString currentSyncDevice ) | ||
562 | { | ||
563 | |||
564 | setUntagged(); | ||
565 | KABC::Addressee::List list; | ||
566 | QFile file( fileName ); | ||
567 | file.open( IO_ReadOnly ); | ||
568 | QByteArray rawData = file.readAll(); | ||
569 | file.close(); | ||
570 | QString data; | ||
571 | |||
572 | data = QString::fromUtf8( rawData.data(), rawData.size() + 1 ); | ||
573 | KABC::VCardTool tool; | ||
574 | list = tool.parseVCards( data ); | ||
575 | KABC::Addressee::List::Iterator it; | ||
576 | for ( it = list.begin(); it != list.end(); ++it ) { | ||
577 | Iterator ait; | ||
578 | for ( ait = begin(); ait != end(); ++ait ) { | ||
579 | if ( !(*ait).tagged() ) { | ||
580 | if ( (*ait).containsAdr(*it)) { | ||
581 | (*ait).setTagged(true); | ||
582 | QString id = (*it).custom( "KADDRESSBOOK", "X-ExternalID" ); | ||
583 | (*it).setIDStr( ":"); | ||
584 | (*it).setID( currentSyncDevice,id ); | ||
585 | (*it).setExternalUID( id ); | ||
586 | (*it).setTempSyncStat( SYNC_TEMPSTATE_NEW_ID ); | ||
587 | (*it).setUid( ( (*ait).uid() )); | ||
588 | break; | ||
589 | } | ||
590 | } | ||
591 | |||
592 | } | ||
593 | if ( ait == end() ) | ||
594 | qDebug("ERROR:: no ext ID found for uid: %s", (*it).uid().latin1()); | ||
595 | } | ||
596 | clear(); | ||
597 | for ( it = list.begin(); it != list.end(); ++it ) { | ||
598 | insertAddressee( (*it) ); | ||
485 | } | 599 | } |
486 | } | 600 | } |
601 | |||
487 | bool AddressBook::saveABphone( QString fileName ) | 602 | bool AddressBook::saveABphone( QString fileName ) |
488 | { | 603 | { |
489 | smplifyAddressees(); | 604 | //smplifyAddressees(); |
490 | qDebug("saveABphone:: saving AB... "); | 605 | qDebug("saveABphone:: saving AB... "); |
491 | if ( ! saveAB() ) | 606 | if ( ! export2PhoneFormat( QStringList() ,fileName ) ) |
492 | return false; | 607 | return false; |
493 | qDebug("saveABphone:: writing to phone... "); | 608 | qDebug("saveABphone:: writing to phone... "); |
494 | if ( !PhoneAccess::writeToPhone( fileName) ) { | 609 | if ( !PhoneAccess::writeToPhone( fileName) ) { |
495 | return false; | 610 | return false; |
496 | } | 611 | } |
497 | qDebug("saveABphone:: re-reading from phone... "); | 612 | qDebug("saveABphone:: re-reading from phone... "); |
498 | if ( !PhoneAccess::readFromPhone( fileName) ) { | 613 | if ( !PhoneAccess::readFromPhone( fileName) ) { |
499 | return false; | 614 | return false; |
500 | } | 615 | } |
501 | qDebug("reloading phone book... "); | ||
502 | if ( !load() ) | ||
503 | return false; | ||
504 | return true; | 616 | return true; |
505 | } | 617 | } |
506 | bool AddressBook::saveAB() | 618 | bool AddressBook::saveAB() |
507 | { | 619 | { |
508 | bool ok = true; | 620 | bool ok = true; |
509 | 621 | ||
510 | deleteRemovedAddressees(); | 622 | deleteRemovedAddressees(); |
511 | Iterator ait; | 623 | Iterator ait; |
512 | for ( ait = begin(); ait != end(); ++ait ) { | 624 | for ( ait = begin(); ait != end(); ++ait ) { |
513 | if ( !(*ait).IDStr().isEmpty() ) { | 625 | if ( !(*ait).IDStr().isEmpty() ) { |
514 | (*ait).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*ait).IDStr() ); | 626 | (*ait).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*ait).IDStr() ); |
515 | } | 627 | } |
516 | } | 628 | } |
517 | KRES::Manager<Resource>::ActiveIterator it; | 629 | KRES::Manager<Resource>::ActiveIterator it; |
518 | KRES::Manager<Resource> *manager = d->mManager; | 630 | KRES::Manager<Resource> *manager = d->mManager; |
631 | qDebug("SaveAB::saving..." ); | ||
519 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { | 632 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { |
633 | qDebug("SaveAB::checking resource..." ); | ||
634 | if ( (*it)->readOnly() ) | ||
635 | qDebug("readonly." ); | ||
636 | if ( (*it)->isOpen() ) | ||
637 | qDebug("open" ); | ||
638 | |||
520 | if ( !(*it)->readOnly() && (*it)->isOpen() ) { | 639 | if ( !(*it)->readOnly() && (*it)->isOpen() ) { |
521 | Ticket *ticket = requestSaveTicket( *it ); | 640 | Ticket *ticket = requestSaveTicket( *it ); |
522 | // qDebug("StdAddressBook::save '%s'", (*it)->resourceName().latin1() ); | 641 | qDebug("StdAddressBook::save '%s'", (*it)->resourceName().latin1() ); |
523 | if ( !ticket ) { | 642 | if ( !ticket ) { |
524 | error( i18n( "Unable to save to resource '%1'. It is locked." ) | 643 | qDebug( i18n( "Unable to save to resource '%1'. It is locked." ) |
525 | .arg( (*it)->resourceName() ) ); | 644 | .arg( (*it)->resourceName() ) ); |
526 | return false; | 645 | return false; |
527 | } | 646 | } |
528 | 647 | ||
529 | //if ( !save( ticket ) ) | 648 | //if ( !save( ticket ) ) |
530 | if ( ticket->resource() ) { | 649 | if ( ticket->resource() ) { |
531 | if ( ! ticket->resource()->save( ticket ) ) | 650 | if ( ! ticket->resource()->save( ticket ) ) |
532 | ok = false; | 651 | ok = false; |
652 | else | ||
653 | qDebug("StdAddressBook::saved '%s'", ticket->resource()->resourceName().latin1() ); | ||
654 | |||
533 | } else | 655 | } else |
534 | ok = false; | 656 | ok = false; |
535 | 657 | ||
536 | } | 658 | } |
537 | } | 659 | } |
538 | return ok; | 660 | return ok; |
539 | } | 661 | } |
540 | 662 | ||
541 | AddressBook::Iterator AddressBook::begin() | 663 | AddressBook::Iterator AddressBook::begin() |
542 | { | 664 | { |
543 | Iterator it = Iterator(); | 665 | Iterator it = Iterator(); |
544 | it.d->mIt = d->mAddressees.begin(); | 666 | it.d->mIt = d->mAddressees.begin(); |
545 | return it; | 667 | return it; |
546 | } | 668 | } |
547 | 669 | ||
548 | AddressBook::ConstIterator AddressBook::begin() const | 670 | AddressBook::ConstIterator AddressBook::begin() const |
549 | { | 671 | { |
550 | ConstIterator it = ConstIterator(); | 672 | ConstIterator it = ConstIterator(); |
551 | it.d->mIt = d->mAddressees.begin(); | 673 | it.d->mIt = d->mAddressees.begin(); |
552 | return it; | 674 | return it; |
553 | } | 675 | } |
554 | 676 | ||
555 | AddressBook::Iterator AddressBook::end() | 677 | AddressBook::Iterator AddressBook::end() |
556 | { | 678 | { |
557 | Iterator it = Iterator(); | 679 | Iterator it = Iterator(); |
558 | it.d->mIt = d->mAddressees.end(); | 680 | it.d->mIt = d->mAddressees.end(); |
559 | return it; | 681 | return it; |
560 | } | 682 | } |
561 | 683 | ||
562 | AddressBook::ConstIterator AddressBook::end() const | 684 | AddressBook::ConstIterator AddressBook::end() const |
563 | { | 685 | { |
564 | ConstIterator it = ConstIterator(); | 686 | ConstIterator it = ConstIterator(); |
565 | it.d->mIt = d->mAddressees.end(); | 687 | it.d->mIt = d->mAddressees.end(); |
566 | return it; | 688 | return it; |
567 | } | 689 | } |
568 | 690 | ||
569 | void AddressBook::clear() | 691 | void AddressBook::clear() |
570 | { | 692 | { |
571 | d->mAddressees.clear(); | 693 | d->mAddressees.clear(); |
572 | } | 694 | } |
573 | 695 | ||
574 | Ticket *AddressBook::requestSaveTicket( Resource *resource ) | 696 | Ticket *AddressBook::requestSaveTicket( Resource *resource ) |
575 | { | 697 | { |
576 | kdDebug(5700) << "AddressBook::requestSaveTicket()" << endl; | 698 | kdDebug(5700) << "AddressBook::requestSaveTicket()" << endl; |
577 | 699 | ||
578 | if ( !resource ) | 700 | if ( !resource ) |
579 | { | 701 | { |
580 | qDebug("AddressBook::requestSaveTicket no resource" ); | 702 | qDebug("AddressBook::requestSaveTicket no resource" ); |
581 | resource = standardResource(); | 703 | resource = standardResource(); |
582 | } | 704 | } |
583 | 705 | ||
584 | KRES::Manager<Resource>::ActiveIterator it; | 706 | KRES::Manager<Resource>::ActiveIterator it; |
585 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { | 707 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { |
586 | if ( (*it) == resource ) { | 708 | if ( (*it) == resource ) { |
587 | if ( (*it)->readOnly() || !(*it)->isOpen() ) | 709 | if ( (*it)->readOnly() || !(*it)->isOpen() ) |
588 | return 0; | 710 | return 0; |
589 | else | 711 | else |
590 | return (*it)->requestSaveTicket(); | 712 | return (*it)->requestSaveTicket(); |
591 | } | 713 | } |
592 | } | 714 | } |
593 | 715 | ||
594 | return 0; | 716 | return 0; |
595 | } | 717 | } |
596 | 718 | //void insertAddressee( const Addressee &, bool setRev = true, bool takeResource = false); | |
597 | void AddressBook::insertAddressee( const Addressee &a, bool setRev, bool takeResource ) | 719 | void AddressBook::insertAddressee( const Addressee &a, bool setRev, bool takeResource ) |
598 | { | 720 | { |
599 | if ( blockLSEchange && setRev && a.uid().left( 19 ) == QString("last-syncAddressee-") ) { | 721 | if ( blockLSEchange && setRev && a.uid().left( 19 ) == QString("last-syncAddressee-") ) { |
600 | //qDebug("block insert "); | 722 | //qDebug("block insert "); |
601 | return; | 723 | return; |
602 | } | 724 | } |
603 | //qDebug("inserting.... %s ",a.uid().latin1() ); | 725 | //qDebug("inserting.... %s ",a.uid().latin1() ); |
604 | bool found = false; | 726 | bool found = false; |
605 | Addressee::List::Iterator it; | 727 | Addressee::List::Iterator it; |
606 | for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) { | 728 | for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) { |
607 | if ( a.uid() == (*it).uid() ) { | 729 | if ( a.uid() == (*it).uid() ) { |
608 | 730 | ||
609 | bool changed = false; | 731 | bool changed = false; |
610 | Addressee addr = a; | 732 | Addressee addr = a; |
611 | if ( addr != (*it) ) | 733 | if ( addr != (*it) ) |
612 | changed = true; | 734 | changed = true; |
613 | 735 | ||
614 | if ( takeResource ) { | 736 | if ( takeResource ) { |
615 | Resource * res = (*it).resource(); | 737 | Resource * res = (*it).resource(); |
616 | (*it) = a; | 738 | (*it) = a; |
617 | (*it).setResource( res ); | 739 | (*it).setResource( res ); |
618 | } else { | 740 | } else { |
619 | (*it) = a; | 741 | (*it) = a; |
620 | if ( (*it).resource() == 0 ) | 742 | if ( (*it).resource() == 0 ) |
621 | (*it).setResource( standardResource() ); | 743 | (*it).setResource( standardResource() ); |
622 | } | 744 | } |
623 | if ( changed ) { | 745 | if ( changed ) { |
624 | if ( setRev ) { | 746 | if ( setRev ) { |
625 | 747 | ||
626 | // get rid of micro seconds | 748 | // get rid of micro seconds |
627 | QDateTime dt = QDateTime::currentDateTime(); | 749 | QDateTime dt = QDateTime::currentDateTime(); |
628 | QTime t = dt.time(); | 750 | QTime t = dt.time(); |
629 | dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); | 751 | dt.setTime( QTime (t.hour (), t.minute (), t.second () ) ); |
630 | (*it).setRevision( dt ); | 752 | (*it).setRevision( dt ); |
631 | } | 753 | } |
632 | (*it).setChanged( true ); | 754 | (*it).setChanged( true ); |
633 | } | 755 | } |
634 | 756 | ||
635 | found = true; | 757 | found = true; |
636 | } else { | 758 | } else { |
637 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { | 759 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { |
638 | QString name = (*it).uid().mid( 19 ); | 760 | QString name = (*it).uid().mid( 19 ); |
639 | Addressee b = a; | 761 | Addressee b = a; |
640 | QString id = b.getID( name ); | 762 | QString id = b.getID( name ); |
641 | if ( ! id.isEmpty() ) { | 763 | if ( ! id.isEmpty() ) { |
642 | QString des = (*it).note(); | 764 | QString des = (*it).note(); |
643 | int startN; | 765 | int startN; |
644 | if( (startN = des.find( id ) ) >= 0 ) { | 766 | if( (startN = des.find( id ) ) >= 0 ) { |
645 | int endN = des.find( ",", startN+1 ); | 767 | int endN = des.find( ",", startN+1 ); |
646 | des = des.left( startN ) + des.mid( endN+1 ); | 768 | des = des.left( startN ) + des.mid( endN+1 ); |
647 | (*it).setNote( des ); | 769 | (*it).setNote( des ); |
648 | } | 770 | } |
649 | } | 771 | } |
650 | } | 772 | } |
651 | } | 773 | } |
652 | } | 774 | } |
653 | if ( found ) | 775 | if ( found ) |
654 | return; | 776 | return; |
655 | d->mAddressees.append( a ); | 777 | d->mAddressees.append( a ); |
656 | Addressee& addr = d->mAddressees.last(); | 778 | Addressee& addr = d->mAddressees.last(); |
657 | if ( addr.resource() == 0 ) | 779 | if ( addr.resource() == 0 ) |
658 | addr.setResource( standardResource() ); | 780 | addr.setResource( standardResource() ); |
659 | 781 | ||
660 | addr.setChanged( true ); | 782 | addr.setChanged( true ); |
661 | } | 783 | } |
662 | 784 | ||
663 | void AddressBook::removeAddressee( const Addressee &a ) | 785 | void AddressBook::removeAddressee( const Addressee &a ) |
664 | { | 786 | { |
665 | Iterator it; | 787 | Iterator it; |
666 | Iterator it2; | 788 | Iterator it2; |
667 | bool found = false; | 789 | bool found = false; |
668 | for ( it = begin(); it != end(); ++it ) { | 790 | for ( it = begin(); it != end(); ++it ) { |
669 | if ( a.uid() == (*it).uid() ) { | 791 | if ( a.uid() == (*it).uid() ) { |
670 | found = true; | 792 | found = true; |
671 | it2 = it; | 793 | it2 = it; |
672 | } else { | 794 | } else { |
673 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { | 795 | if ( (*it).uid().left( 19 ) == QString("last-syncAddressee-") ) { |
674 | QString name = (*it).uid().mid( 19 ); | 796 | QString name = (*it).uid().mid( 19 ); |
675 | Addressee b = a; | 797 | Addressee b = a; |
676 | QString id = b.getID( name ); | 798 | QString id = b.getID( name ); |
677 | if ( ! id.isEmpty() ) { | 799 | if ( ! id.isEmpty() ) { |
678 | QString des = (*it).note(); | 800 | QString des = (*it).note(); |
679 | if( des.find( id ) < 0 ) { | 801 | if( des.find( id ) < 0 ) { |
680 | des += id + ","; | 802 | des += id + ","; |
681 | (*it).setNote( des ); | 803 | (*it).setNote( des ); |
682 | } | 804 | } |
683 | } | 805 | } |
684 | } | 806 | } |
685 | 807 | ||
686 | } | 808 | } |
687 | } | 809 | } |
688 | 810 | ||
689 | if ( found ) | 811 | if ( found ) |
690 | removeAddressee( it2 ); | 812 | removeAddressee( it2 ); |
691 | 813 | ||
692 | } | 814 | } |
diff --git a/kabc/addressbook.h b/kabc/addressbook.h index cc755d1..df9048b 100644 --- a/kabc/addressbook.h +++ b/kabc/addressbook.h | |||
@@ -53,195 +53,197 @@ class AddressBook : public QObject | |||
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 | bool saveABphone( QString fileName ); | 145 | bool saveABphone( QString fileName ); |
146 | void smplifyAddressees(); | 146 | void smplifyAddressees(); |
147 | void preparePhoneSync( QString currentSyncDevice, bool isPreSync ); | 147 | void preparePhoneSync( QString currentSyncDevice, bool isPreSync ); |
148 | void export2File( QString fileName ); | 148 | void export2File( QString fileName ); |
149 | bool export2PhoneFormat( QStringList uids ,QString fileName ); | ||
149 | void importFromFile( QString fileName, bool replaceLabel = false, bool removeOld = false ); | 150 | void importFromFile( QString fileName, bool replaceLabel = false, bool removeOld = false ); |
150 | void setUntagged(); | 151 | void setUntagged(); |
151 | void removeUntagged(); | 152 | void removeUntagged(); |
153 | void findNewExtIds( QString fileName, QString currentSyncDevice ); | ||
152 | /** | 154 | /** |
153 | Returns a iterator for first entry of address book. | 155 | Returns a iterator for first entry of address book. |
154 | */ | 156 | */ |
155 | Iterator begin(); | 157 | Iterator begin(); |
156 | 158 | ||
157 | /** | 159 | /** |
158 | Returns a const iterator for first entry of address book. | 160 | Returns a const iterator for first entry of address book. |
159 | */ | 161 | */ |
160 | ConstIterator begin() const; | 162 | ConstIterator begin() const; |
161 | 163 | ||
162 | /** | 164 | /** |
163 | Returns a iterator for first entry of address book. | 165 | Returns a iterator for first entry of address book. |
164 | */ | 166 | */ |
165 | Iterator end(); | 167 | Iterator end(); |
166 | 168 | ||
167 | /** | 169 | /** |
168 | Returns a const iterator for first entry of address book. | 170 | Returns a const iterator for first entry of address book. |
169 | */ | 171 | */ |
170 | ConstIterator end() const; | 172 | ConstIterator end() const; |
171 | 173 | ||
172 | /** | 174 | /** |
173 | Removes all entries from address book. | 175 | Removes all entries from address book. |
174 | */ | 176 | */ |
175 | void clear(); | 177 | void clear(); |
176 | 178 | ||
177 | /** | 179 | /** |
178 | Insert an Addressee object into address book. If an object with the same | 180 | Insert an Addressee object into address book. If an object with the same |
179 | unique id already exists in the address book it it replaced by the new | 181 | unique id already exists in the address book it it replaced by the new |
180 | one. If not the new object is appended to the address book. | 182 | one. If not the new object is appended to the address book. |
181 | */ | 183 | */ |
182 | void insertAddressee( const Addressee &, bool setRev = true, bool takeResource = false); | 184 | void insertAddressee( const Addressee &, bool setRev = true, bool takeResource = false); |
183 | 185 | ||
184 | /** | 186 | /** |
185 | Removes entry from the address book. | 187 | Removes entry from the address book. |
186 | */ | 188 | */ |
187 | void removeAddressee( const Addressee & ); | 189 | void removeAddressee( const Addressee & ); |
188 | 190 | ||
189 | /** | 191 | /** |
190 | This is like @ref removeAddressee() just above, with the difference that | 192 | This is like @ref removeAddressee() just above, with the difference that |
191 | the first element is a iterator, returned by @ref begin(). | 193 | the first element is a iterator, returned by @ref begin(). |
192 | */ | 194 | */ |
193 | void removeAddressee( const Iterator & ); | 195 | void removeAddressee( const Iterator & ); |
194 | 196 | ||
195 | /** | 197 | /** |
196 | Find the specified entry in address book. Returns end(), if the entry | 198 | Find the specified entry in address book. Returns end(), if the entry |
197 | couldn't be found. | 199 | couldn't be found. |
198 | */ | 200 | */ |
199 | Iterator find( const Addressee & ); | 201 | Iterator find( const Addressee & ); |
200 | 202 | ||
201 | /** | 203 | /** |
202 | Find the entry specified by an unique id. Returns an empty Addressee | 204 | Find the entry specified by an unique id. Returns an empty Addressee |
203 | object, if the address book does not contain an entry with this id. | 205 | object, if the address book does not contain an entry with this id. |
204 | */ | 206 | */ |
205 | Addressee findByUid( const QString & ); | 207 | Addressee findByUid( const QString & ); |
206 | 208 | ||
207 | 209 | ||
208 | /** | 210 | /** |
209 | Returns a list of all addressees in the address book. This list can | 211 | Returns a list of all addressees in the address book. This list can |
210 | be sorted with @ref KABC::AddresseeList for example. | 212 | be sorted with @ref KABC::AddresseeList for example. |
211 | */ | 213 | */ |
212 | Addressee::List allAddressees(); | 214 | Addressee::List allAddressees(); |
213 | 215 | ||
214 | /** | 216 | /** |
215 | Find all entries with the specified name in the address book. Returns | 217 | Find all entries with the specified name in the address book. Returns |
216 | an empty list, if no entries could be found. | 218 | an empty list, if no entries could be found. |
217 | */ | 219 | */ |
218 | Addressee::List findByName( const QString & ); | 220 | Addressee::List findByName( const QString & ); |
219 | 221 | ||
220 | /** | 222 | /** |
221 | Find all entries with the specified email address in the address book. | 223 | Find all entries with the specified email address in the address book. |
222 | Returns an empty list, if no entries could be found. | 224 | Returns an empty list, if no entries could be found. |
223 | */ | 225 | */ |
224 | Addressee::List findByEmail( const QString & ); | 226 | Addressee::List findByEmail( const QString & ); |
225 | 227 | ||
226 | /** | 228 | /** |
227 | Find all entries wich have the specified category in the address book. | 229 | Find all entries wich have the specified category in the address book. |
228 | Returns an empty list, if no entries could be found. | 230 | Returns an empty list, if no entries could be found. |
229 | */ | 231 | */ |
230 | Addressee::List findByCategory( const QString & ); | 232 | Addressee::List findByCategory( const QString & ); |
231 | 233 | ||
232 | /** | 234 | /** |
233 | Return a string identifying this addressbook. | 235 | Return a string identifying this addressbook. |
234 | */ | 236 | */ |
235 | virtual QString identifier(); | 237 | virtual QString identifier(); |
236 | 238 | ||
237 | /** | 239 | /** |
238 | Used for debug output. | 240 | Used for debug output. |
239 | */ | 241 | */ |
240 | void dump() const; | 242 | void dump() const; |
241 | 243 | ||
242 | void emitAddressBookLocked() { emit addressBookLocked( this ); } | 244 | void emitAddressBookLocked() { emit addressBookLocked( this ); } |
243 | void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); } | 245 | void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); } |
244 | void emitAddressBookChanged() { emit addressBookChanged( this ); } | 246 | void emitAddressBookChanged() { emit addressBookChanged( this ); } |
245 | 247 | ||
246 | /** | 248 | /** |
247 | Return list of all Fields known to the address book which are associated | 249 | Return list of all Fields known to the address book which are associated |
diff --git a/kabc/addressee.cpp b/kabc/addressee.cpp index 607ae26..548305a 100644 --- a/kabc/addressee.cpp +++ b/kabc/addressee.cpp | |||
@@ -210,230 +210,270 @@ void Addressee::computeCsum(const QString &dev) | |||
210 | { | 210 | { |
211 | QStringList l; | 211 | QStringList l; |
212 | if ( !mData->name.isEmpty() ) l.append(mData->name); | 212 | if ( !mData->name.isEmpty() ) l.append(mData->name); |
213 | if ( !mData->formattedName.isEmpty() ) l.append(mData->formattedName ); | 213 | if ( !mData->formattedName.isEmpty() ) l.append(mData->formattedName ); |
214 | if ( !mData->familyName.isEmpty() ) l.append( mData->familyName ); | 214 | if ( !mData->familyName.isEmpty() ) l.append( mData->familyName ); |
215 | if ( !mData->givenName.isEmpty() ) l.append(mData->givenName ); | 215 | if ( !mData->givenName.isEmpty() ) l.append(mData->givenName ); |
216 | if ( !mData->additionalName ) l.append( mData->additionalName ); | 216 | if ( !mData->additionalName ) l.append( mData->additionalName ); |
217 | if ( !mData->prefix.isEmpty() ) l.append( mData->prefix ); | 217 | if ( !mData->prefix.isEmpty() ) l.append( mData->prefix ); |
218 | if ( !mData->suffix.isEmpty() ) l.append( mData->suffix ); | 218 | if ( !mData->suffix.isEmpty() ) l.append( mData->suffix ); |
219 | if ( !mData->nickName.isEmpty() ) l.append( mData->nickName ); | 219 | if ( !mData->nickName.isEmpty() ) l.append( mData->nickName ); |
220 | if ( mData->birthday.isValid() ) l.append( mData->birthday.toString() ); | 220 | if ( mData->birthday.isValid() ) l.append( mData->birthday.toString() ); |
221 | if ( !mData->mailer.isEmpty() ) l.append( mData->mailer ); | 221 | if ( !mData->mailer.isEmpty() ) l.append( mData->mailer ); |
222 | if ( mData->timeZone.isValid() ) l.append( mData->timeZone.asString() ); | 222 | if ( mData->timeZone.isValid() ) l.append( mData->timeZone.asString() ); |
223 | if ( mData->geo.isValid() ) l.append( mData->geo.asString() ); | 223 | if ( mData->geo.isValid() ) l.append( mData->geo.asString() ); |
224 | if ( !mData->title .isEmpty() ) l.append( mData->title ); | 224 | if ( !mData->title .isEmpty() ) l.append( mData->title ); |
225 | if ( !mData->role.isEmpty() ) l.append( mData->role ); | 225 | if ( !mData->role.isEmpty() ) l.append( mData->role ); |
226 | if ( !mData->organization.isEmpty() ) l.append( mData->organization ); | 226 | if ( !mData->organization.isEmpty() ) l.append( mData->organization ); |
227 | if ( !mData->note.isEmpty() ) l.append( mData->note ); | 227 | if ( !mData->note.isEmpty() ) l.append( mData->note ); |
228 | if ( !mData->productId.isEmpty() ) l.append(mData->productId ); | 228 | if ( !mData->productId.isEmpty() ) l.append(mData->productId ); |
229 | if ( !mData->sortString.isEmpty() ) l.append( mData->sortString ); | 229 | if ( !mData->sortString.isEmpty() ) l.append( mData->sortString ); |
230 | if ( mData->secrecy.isValid() ) l.append( mData->secrecy.asString()); | 230 | if ( mData->secrecy.isValid() ) l.append( mData->secrecy.asString()); |
231 | // if ( !mData->logo.isEmpty() ) l.append( ); | 231 | // if ( !mData->logo.isEmpty() ) l.append( ); |
232 | //if ( !mData->photo.isEmpty() ) l.append( ); | 232 | //if ( !mData->photo.isEmpty() ) l.append( ); |
233 | //if ( !mData->sound.isEmpty() ) l.append( ); | 233 | //if ( !mData->sound.isEmpty() ) l.append( ); |
234 | //if ( !mData->agent.isEmpty() ) l.append( ); | 234 | //if ( !mData->agent.isEmpty() ) l.append( ); |
235 | //if ( mData->url.isValid() ) l.append( ); | 235 | //if ( mData->url.isValid() ) l.append( ); |
236 | #if 0 | 236 | #if 0 |
237 | if ( !mData->phoneNumbers.isEmpty() ) l.append( ); | 237 | if ( !mData->phoneNumbers.isEmpty() ) l.append( ); |
238 | if ( !mData->addresses.isEmpty() ) l.append( ); | 238 | if ( !mData->addresses.isEmpty() ) l.append( ); |
239 | //if ( !mData->keys.isEmpty() ) l.append( ); | 239 | //if ( !mData->keys.isEmpty() ) l.append( ); |
240 | if ( !mData->emails.isEmpty() ) l.append( ); | 240 | if ( !mData->emails.isEmpty() ) l.append( ); |
241 | if ( !mData->categories .isEmpty() ) l.append( ); | 241 | if ( !mData->categories .isEmpty() ) l.append( ); |
242 | if ( !mData->custom.isEmpty() ) l.append( ); | 242 | if ( !mData->custom.isEmpty() ) l.append( ); |
243 | #endif | 243 | #endif |
244 | KABC::PhoneNumber::List phoneNumbers; | 244 | KABC::PhoneNumber::List phoneNumbers; |
245 | KABC::PhoneNumber::List::Iterator phoneIter; | 245 | KABC::PhoneNumber::List::Iterator phoneIter; |
246 | 246 | ||
247 | QStringList t; | 247 | QStringList t; |
248 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | 248 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); |
249 | ++phoneIter ) | 249 | ++phoneIter ) |
250 | t.append( ( *phoneIter ).number()+QString::number( ( *phoneIter ).type() ) ); | 250 | t.append( ( *phoneIter ).number()+QString::number( ( *phoneIter ).type() ) ); |
251 | t.sort(); | 251 | t.sort(); |
252 | uint iii; | 252 | uint iii; |
253 | for ( iii = 0; iii < t.count(); ++iii) | 253 | for ( iii = 0; iii < t.count(); ++iii) |
254 | l.append( t[iii] ); | 254 | l.append( t[iii] ); |
255 | t = mData->emails; | 255 | t = mData->emails; |
256 | t.sort(); | 256 | t.sort(); |
257 | for ( iii = 0; iii < t.count(); ++iii) | 257 | for ( iii = 0; iii < t.count(); ++iii) |
258 | l.append( t[iii] ); | 258 | l.append( t[iii] ); |
259 | t = mData->categories; | 259 | t = mData->categories; |
260 | t.sort(); | 260 | t.sort(); |
261 | for ( iii = 0; iii < t.count(); ++iii) | 261 | for ( iii = 0; iii < t.count(); ++iii) |
262 | l.append( t[iii] ); | 262 | l.append( t[iii] ); |
263 | t = mData->custom; | 263 | t = mData->custom; |
264 | t.sort(); | 264 | t.sort(); |
265 | for ( iii = 0; iii < t.count(); ++iii) | 265 | for ( iii = 0; iii < t.count(); ++iii) |
266 | l.append( t[iii] ); | 266 | l.append( t[iii] ); |
267 | KABC::Address::List::Iterator addressIter; | 267 | KABC::Address::List::Iterator addressIter; |
268 | for ( addressIter = mData->addresses.begin(); addressIter != mData->addresses.end(); | 268 | for ( addressIter = mData->addresses.begin(); addressIter != mData->addresses.end(); |
269 | ++addressIter ) { | 269 | ++addressIter ) { |
270 | t = (*addressIter).asList(); | 270 | t = (*addressIter).asList(); |
271 | t.sort(); | 271 | t.sort(); |
272 | for ( iii = 0; iii < t.count(); ++iii) | 272 | for ( iii = 0; iii < t.count(); ++iii) |
273 | l.append( t[iii] ); | 273 | l.append( t[iii] ); |
274 | } | 274 | } |
275 | uint cs = getCsum4List(l); | 275 | uint cs = getCsum4List(l); |
276 | // qDebug("CSUM computed %d %s %s", cs,QString::number (cs ).latin1(), uid().latin1() ); | 276 | // qDebug("CSUM computed %d %s %s", cs,QString::number (cs ).latin1(), uid().latin1() ); |
277 | setCsum( dev, QString::number (cs )); | 277 | setCsum( dev, QString::number (cs )); |
278 | } | 278 | } |
279 | 279 | ||
280 | void Addressee::mergeContact( const Addressee& ad ) | 280 | void Addressee::mergeContact( const Addressee& ad ) |
281 | { | 281 | { |
282 | 282 | ||
283 | detach(); | 283 | detach(); |
284 | if ( mData->name.isEmpty() ) mData->name = ad.mData->name; | 284 | if ( mData->name.isEmpty() ) mData->name = ad.mData->name; |
285 | if ( mData->formattedName.isEmpty() ) mData->formattedName = ad.mData->formattedName; | 285 | if ( mData->formattedName.isEmpty() ) mData->formattedName = ad.mData->formattedName; |
286 | if ( mData->familyName.isEmpty() ) mData->familyName = ad.mData->familyName; | 286 | if ( mData->familyName.isEmpty() ) mData->familyName = ad.mData->familyName; |
287 | if ( mData->givenName.isEmpty() ) mData->givenName = ad.mData->givenName ; | 287 | if ( mData->givenName.isEmpty() ) mData->givenName = ad.mData->givenName ; |
288 | if ( mData->additionalName ) mData->additionalName = ad.mData->additionalName; | 288 | if ( mData->additionalName ) mData->additionalName = ad.mData->additionalName; |
289 | if ( mData->prefix.isEmpty() ) mData->prefix = ad.mData->prefix; | 289 | if ( mData->prefix.isEmpty() ) mData->prefix = ad.mData->prefix; |
290 | if ( mData->suffix.isEmpty() ) mData->suffix = ad.mData->suffix; | 290 | if ( mData->suffix.isEmpty() ) mData->suffix = ad.mData->suffix; |
291 | if ( mData->nickName.isEmpty() ) mData->nickName = ad.mData->nickName; | 291 | if ( mData->nickName.isEmpty() ) mData->nickName = ad.mData->nickName; |
292 | if ( !mData->birthday.isValid() ) | 292 | if ( !mData->birthday.isValid() ) |
293 | if ( ad.mData->birthday.isValid()) | 293 | if ( ad.mData->birthday.isValid()) |
294 | mData->birthday = ad.mData->birthday; | 294 | mData->birthday = ad.mData->birthday; |
295 | if ( mData->mailer.isEmpty() ) mData->mailer = ad.mData->mailer; | 295 | if ( mData->mailer.isEmpty() ) mData->mailer = ad.mData->mailer; |
296 | if ( !mData->timeZone.isValid() ) mData->timeZone = ad.mData->timeZone; | 296 | if ( !mData->timeZone.isValid() ) mData->timeZone = ad.mData->timeZone; |
297 | if ( !mData->geo.isValid() ) mData->geo = ad.mData->geo; | 297 | if ( !mData->geo.isValid() ) mData->geo = ad.mData->geo; |
298 | if ( mData->title .isEmpty() ) mData->title = ad.mData->title ; | 298 | if ( mData->title .isEmpty() ) mData->title = ad.mData->title ; |
299 | if ( mData->role.isEmpty() ) mData->role = ad.mData->role ; | 299 | if ( mData->role.isEmpty() ) mData->role = ad.mData->role ; |
300 | if ( mData->organization.isEmpty() ) mData->organization = ad.mData->organization ; | 300 | if ( mData->organization.isEmpty() ) mData->organization = ad.mData->organization ; |
301 | if ( mData->note.isEmpty() ) mData->note = ad.mData->note ; | 301 | if ( mData->note.isEmpty() ) mData->note = ad.mData->note ; |
302 | if ( mData->productId.isEmpty() ) mData->productId = ad.mData->productId; | 302 | if ( mData->productId.isEmpty() ) mData->productId = ad.mData->productId; |
303 | if ( mData->sortString.isEmpty() ) mData->sortString = ad.mData->sortString; | 303 | if ( mData->sortString.isEmpty() ) mData->sortString = ad.mData->sortString; |
304 | if ( !mData->secrecy.isValid() ) mData->secrecy = ad.mData->secrecy; | 304 | if ( !mData->secrecy.isValid() ) mData->secrecy = ad.mData->secrecy; |
305 | if ( ( !mData->url.isValid() && ad.mData->url.isValid() ) ) mData->url = ad.mData->url ; | 305 | if ( ( !mData->url.isValid() && ad.mData->url.isValid() ) ) mData->url = ad.mData->url ; |
306 | PhoneNumber::List phoneAD = phoneNumbers(); | ||
307 | PhoneNumber::List::Iterator phoneItAD; | ||
308 | bool found = false; | ||
309 | for ( phoneItAD = phoneAD.begin(); phoneItAD != phoneAD.end(); ++phoneItAD ) { | ||
306 | 310 | ||
311 | |||
312 | } | ||
307 | // pending: | 313 | // pending: |
308 | // merging phonenumbers | 314 | // merging phonenumbers |
309 | // merging addresses | 315 | // merging addresses |
310 | // merging emails; | 316 | // merging emails; |
311 | // merging categories; | 317 | // merging categories; |
312 | // merging custom; | 318 | // merging custom; |
313 | // merging keys | 319 | // merging keys |
314 | qDebug("merge contact %s ", ad.uid().latin1()); | 320 | //qDebug("merge contact %s ", ad.uid().latin1()); |
315 | setUid( ad.uid() ); | 321 | setUid( ad.uid() ); |
316 | setRevision( ad.revision() ); | 322 | setRevision( ad.revision() ); |
317 | } | 323 | } |
318 | 324 | ||
319 | bool Addressee::removeVoice() | 325 | bool Addressee::removeVoice() |
320 | { | 326 | { |
321 | PhoneNumber::List phoneN = phoneNumbers(); | 327 | PhoneNumber::List phoneN = phoneNumbers(); |
322 | PhoneNumber::List::Iterator phoneIt; | 328 | PhoneNumber::List::Iterator phoneIt; |
323 | bool found = false; | 329 | bool found = false; |
324 | for ( phoneIt = phoneN.begin(); phoneIt != phoneN.end(); ++phoneIt ) { | 330 | for ( phoneIt = phoneN.begin(); phoneIt != phoneN.end(); ++phoneIt ) { |
325 | if ( (*phoneIt).type() & PhoneNumber::Voice) { // voice found | 331 | if ( (*phoneIt).type() & PhoneNumber::Voice) { // voice found |
326 | if ((*phoneIt).type() - PhoneNumber::Voice ) { | 332 | if ((*phoneIt).type() - PhoneNumber::Voice ) { |
327 | (*phoneIt).setType((*phoneIt).type() - PhoneNumber::Voice ); | 333 | (*phoneIt).setType((*phoneIt).type() - PhoneNumber::Voice ); |
328 | insertPhoneNumber( (*phoneIt) ); | 334 | insertPhoneNumber( (*phoneIt) ); |
329 | found = true; | 335 | found = true; |
330 | } | 336 | } |
331 | } | 337 | } |
332 | 338 | ||
333 | } | 339 | } |
334 | return found; | 340 | return found; |
335 | } | 341 | } |
342 | |||
343 | bool Addressee::containsAdr(const Addressee& ad ) | ||
344 | { | ||
345 | if ( ! ad.mData->familyName.isEmpty() ) if ( mData->familyName != ad.mData->familyName) return false; | ||
346 | if ( ! ad.mData->givenName.isEmpty() )if ( mData->givenName != ad.mData->givenName ) return false; | ||
347 | if ( ad.mData->url.isValid() ) if (mData->url != ad.mData->url) return false ; | ||
348 | if ( ! ad.mData->role.isEmpty() ) if (mData->role != ad.mData->role) return false ; | ||
349 | if ( ! ad.mData->organization.isEmpty() ) if (mData->organization != ad.mData->organization) return false ; | ||
350 | if ( ! ad.mData->note.isEmpty() ) if (mData->note != ad.mData->note) return false ; | ||
351 | if ( ! ad.mData->title .isEmpty() ) if (mData->title != ad.mData->title ) return false ; | ||
352 | |||
353 | // compare phone numbers | ||
354 | PhoneNumber::List phoneN = ad.phoneNumbers(); | ||
355 | PhoneNumber::List::Iterator phoneIt; | ||
356 | bool found = false; | ||
357 | for ( phoneIt = phoneN.begin(); phoneIt != phoneN.end(); ++phoneIt ) { | ||
358 | bool found = false; | ||
359 | PhoneNumber::List phoneL = ad.phoneNumbers(); | ||
360 | PhoneNumber::List::Iterator phoneItL; | ||
361 | for ( phoneItL = phoneL.begin(); phoneItL != phoneL.end(); ++phoneItL ) { | ||
362 | if ( ( *phoneItL ).number() == ( *phoneIt ).number() ) { | ||
363 | found = true; | ||
364 | break; | ||
365 | } | ||
366 | } | ||
367 | if ( ! found ) | ||
368 | return false; | ||
369 | } | ||
370 | return true; | ||
371 | |||
372 | } | ||
336 | void Addressee::simplifyAddresses() | 373 | void Addressee::simplifyAddresses() |
337 | { | 374 | { |
338 | if ( mData->addresses.count() < 3 ) return ; | 375 | int max = 2; |
376 | if ( mData->url.isValid() ) | ||
377 | max = 1; | ||
378 | if ( mData->addresses.count() <= max ) return ; | ||
339 | int count = 0; | 379 | int count = 0; |
340 | Address::List list; | 380 | Address::List list; |
341 | Address::List::Iterator it; | 381 | Address::List::Iterator it; |
342 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { | 382 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { |
343 | if ( count > 1 ) | 383 | if ( count >= max ) |
344 | list.append( *it ); | 384 | list.append( *it ); |
345 | ++count; | 385 | ++count; |
346 | } | 386 | } |
347 | for( it = list.begin(); it != list.end(); ++it ) { | 387 | for( it = list.begin(); it != list.end(); ++it ) { |
348 | removeAddress( (*it) ); | 388 | removeAddress( (*it) ); |
349 | } | 389 | } |
350 | } | 390 | } |
351 | 391 | ||
352 | // removes all emails but the first | 392 | // removes all emails but the first |
353 | // needed by phone sync | 393 | // needed by phone sync |
354 | void Addressee::simplifyEmails() | 394 | void Addressee::simplifyEmails() |
355 | { | 395 | { |
356 | if ( mData->emails.count() == 0 ) return ; | 396 | if ( mData->emails.count() == 0 ) return ; |
357 | QString email = mData->emails.first(); | 397 | QString email = mData->emails.first(); |
358 | detach(); | 398 | detach(); |
359 | mData->emails.clear(); | 399 | mData->emails.clear(); |
360 | mData->emails.append( email ); | 400 | mData->emails.append( email ); |
361 | } | 401 | } |
362 | 402 | ||
363 | void Addressee::simplifyPhoneNumbers() | 403 | void Addressee::simplifyPhoneNumbers() |
364 | { | 404 | { |
365 | KABC::PhoneNumber::List removeNumbers; | 405 | KABC::PhoneNumber::List removeNumbers; |
366 | KABC::PhoneNumber::List::Iterator phoneIter; | 406 | KABC::PhoneNumber::List::Iterator phoneIter; |
367 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | 407 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); |
368 | ++phoneIter ) { | 408 | ++phoneIter ) { |
369 | if ( ! ( *phoneIter ).simplifyNumber() ) | 409 | if ( ! ( *phoneIter ).simplifyNumber() ) |
370 | removeNumbers.append( ( *phoneIter ) ); | 410 | removeNumbers.append( ( *phoneIter ) ); |
371 | } | 411 | } |
372 | for ( phoneIter = removeNumbers.begin(); phoneIter != removeNumbers.end(); | 412 | for ( phoneIter = removeNumbers.begin(); phoneIter != removeNumbers.end(); |
373 | ++phoneIter ) { | 413 | ++phoneIter ) { |
374 | removePhoneNumber(( *phoneIter )); | 414 | removePhoneNumber(( *phoneIter )); |
375 | } | 415 | } |
376 | } | 416 | } |
377 | void Addressee::simplifyPhoneNumberTypes() | 417 | void Addressee::simplifyPhoneNumberTypes() |
378 | { | 418 | { |
379 | KABC::PhoneNumber::List::Iterator phoneIter; | 419 | KABC::PhoneNumber::List::Iterator phoneIter; |
380 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | 420 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); |
381 | ++phoneIter ) | 421 | ++phoneIter ) |
382 | ( *phoneIter ).simplifyType(); | 422 | ( *phoneIter ).simplifyType(); |
383 | } | 423 | } |
384 | void Addressee::removeID(const QString &prof) | 424 | void Addressee::removeID(const QString &prof) |
385 | { | 425 | { |
386 | detach(); | 426 | detach(); |
387 | mData->mExternalId = KIdManager::removeId ( mData->mExternalId, prof); | 427 | mData->mExternalId = KIdManager::removeId ( mData->mExternalId, prof); |
388 | 428 | ||
389 | } | 429 | } |
390 | void Addressee::setID( const QString & prof , const QString & id ) | 430 | void Addressee::setID( const QString & prof , const QString & id ) |
391 | { | 431 | { |
392 | detach(); | 432 | detach(); |
393 | mData->mExternalId = KIdManager::setId ( mData->mExternalId, prof, id ); | 433 | mData->mExternalId = KIdManager::setId ( mData->mExternalId, prof, id ); |
394 | //qDebug("setID2 %s %s %s",mData->mExternalId.latin1(), prof.latin1(), id.latin1() ); | 434 | //qDebug("setID2 %s %s %s",mData->mExternalId.latin1(), prof.latin1(), id.latin1() ); |
395 | } | 435 | } |
396 | void Addressee::setTempSyncStat( int id ) | 436 | void Addressee::setTempSyncStat( int id ) |
397 | { | 437 | { |
398 | if ( mData->mTempSyncStat == id ) return; | 438 | if ( mData->mTempSyncStat == id ) return; |
399 | detach(); | 439 | detach(); |
400 | mData->mTempSyncStat = id; | 440 | mData->mTempSyncStat = id; |
401 | } | 441 | } |
402 | int Addressee::tempSyncStat() const | 442 | int Addressee::tempSyncStat() const |
403 | { | 443 | { |
404 | return mData->mTempSyncStat; | 444 | return mData->mTempSyncStat; |
405 | } | 445 | } |
406 | 446 | ||
407 | QString Addressee::getID( const QString & prof) | 447 | QString Addressee::getID( const QString & prof) |
408 | { | 448 | { |
409 | return KIdManager::getId ( mData->mExternalId, prof ); | 449 | return KIdManager::getId ( mData->mExternalId, prof ); |
410 | } | 450 | } |
411 | 451 | ||
412 | void Addressee::setCsum( const QString & prof , const QString & id ) | 452 | void Addressee::setCsum( const QString & prof , const QString & id ) |
413 | { | 453 | { |
414 | detach(); | 454 | detach(); |
415 | //qDebug("setcsum1 %s %s %s",mData->mExternalId.latin1(), prof.latin1(), id.latin1() ); | 455 | //qDebug("setcsum1 %s %s %s",mData->mExternalId.latin1(), prof.latin1(), id.latin1() ); |
416 | mData->mExternalId = KIdManager::setCsum ( mData->mExternalId, prof, id ); | 456 | mData->mExternalId = KIdManager::setCsum ( mData->mExternalId, prof, id ); |
417 | //qDebug("setcsum2 %s ",mData->mExternalId.latin1() ); | 457 | //qDebug("setcsum2 %s ",mData->mExternalId.latin1() ); |
418 | } | 458 | } |
419 | 459 | ||
420 | QString Addressee::getCsum( const QString & prof) | 460 | QString Addressee::getCsum( const QString & prof) |
421 | { | 461 | { |
422 | return KIdManager::getCsum ( mData->mExternalId, prof ); | 462 | return KIdManager::getCsum ( mData->mExternalId, prof ); |
423 | } | 463 | } |
424 | 464 | ||
425 | void Addressee::setIDStr( const QString & s ) | 465 | void Addressee::setIDStr( const QString & s ) |
426 | { | 466 | { |
427 | detach(); | 467 | detach(); |
428 | mData->mExternalId = s; | 468 | mData->mExternalId = s; |
429 | } | 469 | } |
430 | 470 | ||
431 | QString Addressee::IDStr() const | 471 | QString Addressee::IDStr() const |
432 | { | 472 | { |
433 | return mData->mExternalId; | 473 | return mData->mExternalId; |
434 | } | 474 | } |
435 | 475 | ||
436 | void Addressee::setExternalUID( const QString &id ) | 476 | void Addressee::setExternalUID( const QString &id ) |
437 | { | 477 | { |
438 | if ( id == mData->externalUID ) return; | 478 | if ( id == mData->externalUID ) return; |
439 | detach(); | 479 | detach(); |
diff --git a/kabc/addressee.h b/kabc/addressee.h index 0aa2c51..03138f6 100644 --- a/kabc/addressee.h +++ b/kabc/addressee.h | |||
@@ -29,192 +29,193 @@ $Id$ | |||
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 ); |
diff --git a/kabc/phonenumber.cpp b/kabc/phonenumber.cpp index e5abc0e..6e94c7e 100644 --- a/kabc/phonenumber.cpp +++ b/kabc/phonenumber.cpp | |||
@@ -1,174 +1,172 @@ | |||
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 | #include <kapplication.h> | 28 | #include <kapplication.h> |
29 | #include <klocale.h> | 29 | #include <klocale.h> |
30 | 30 | ||
31 | #include "phonenumber.h" | 31 | #include "phonenumber.h" |
32 | 32 | ||
33 | using namespace KABC; | 33 | using namespace KABC; |
34 | 34 | ||
35 | PhoneNumber::PhoneNumber() : | 35 | PhoneNumber::PhoneNumber() : |
36 | mType( Home ) | 36 | mType( Home ) |
37 | { | 37 | { |
38 | init(); | 38 | init(); |
39 | } | 39 | } |
40 | 40 | ||
41 | PhoneNumber::PhoneNumber( const QString &number, int type ) : | 41 | PhoneNumber::PhoneNumber( const QString &number, int type ) : |
42 | mType( type ), mNumber( number ) | 42 | mType( type ), mNumber( number ) |
43 | { | 43 | { |
44 | init(); | 44 | init(); |
45 | } | 45 | } |
46 | 46 | ||
47 | PhoneNumber::~PhoneNumber() | 47 | PhoneNumber::~PhoneNumber() |
48 | { | 48 | { |
49 | } | 49 | } |
50 | 50 | ||
51 | void PhoneNumber::init() | 51 | void PhoneNumber::init() |
52 | { | 52 | { |
53 | mId = KApplication::randomString( 8 ); | 53 | mId = KApplication::randomString( 8 ); |
54 | } | 54 | } |
55 | 55 | ||
56 | bool PhoneNumber::operator==( const PhoneNumber &p ) const | 56 | bool PhoneNumber::operator==( const PhoneNumber &p ) const |
57 | { | 57 | { |
58 | if ( mNumber != p.mNumber ) return false; | 58 | if ( mNumber != p.mNumber ) return false; |
59 | if ( mType != p.mType ) return false; | 59 | if ( mType != p.mType ) return false; |
60 | 60 | ||
61 | return true; | 61 | return true; |
62 | } | 62 | } |
63 | 63 | ||
64 | bool PhoneNumber::operator!=( const PhoneNumber &p ) const | 64 | bool PhoneNumber::operator!=( const PhoneNumber &p ) const |
65 | { | 65 | { |
66 | return !( p == *this ); | 66 | return !( p == *this ); |
67 | } | 67 | } |
68 | 68 | ||
69 | bool PhoneNumber::simplifyNumber() | 69 | bool PhoneNumber::simplifyNumber() |
70 | { | 70 | { |
71 | QString Number; | 71 | QString Number; |
72 | int i; | 72 | int i; |
73 | Number = mNumber.stripWhiteSpace (); | 73 | Number = mNumber.stripWhiteSpace (); |
74 | mNumber = ""; | 74 | mNumber = ""; |
75 | if ( Number.at(0) == '+' ) | ||
76 | mNumber += "+"; | ||
77 | for ( i = 0; i < Number.length(); ++i) { | 75 | for ( i = 0; i < Number.length(); ++i) { |
78 | if ( Number.at(i).isDigit() ) | 76 | if ( Number.at(i).isDigit() || Number.at(i) == '+'|| Number.at(i) == '*'|| Number.at(i) == '#' ) |
79 | mNumber += Number.at(i); | 77 | mNumber += Number.at(i); |
80 | } | 78 | } |
81 | return ( mNumber.length() > 0 ); | 79 | return ( mNumber.length() > 0 ); |
82 | } | 80 | } |
83 | // make cellphone compatible | 81 | // make cellphone compatible |
84 | void PhoneNumber::simplifyType() | 82 | void PhoneNumber::simplifyType() |
85 | { | 83 | { |
86 | if ( mType & Fax ) mType = Fax; | 84 | if ( mType & Fax ) mType = Fax; |
87 | else if ( mType & Cell ) mType = Cell; | 85 | else if ( mType & Cell ) mType = Cell; |
88 | else if ( mType & Work ) mType = Work ; | 86 | else if ( mType & Work ) mType = Work ; |
89 | else if ( mType & Home ) mType = Home; | 87 | else if ( mType & Home ) mType = Home; |
90 | else mType = Pref; | 88 | else mType = Pref; |
91 | } | 89 | } |
92 | void PhoneNumber::setId( const QString &id ) | 90 | void PhoneNumber::setId( const QString &id ) |
93 | { | 91 | { |
94 | mId = id; | 92 | mId = id; |
95 | } | 93 | } |
96 | 94 | ||
97 | QString PhoneNumber::id() const | 95 | QString PhoneNumber::id() const |
98 | { | 96 | { |
99 | return mId; | 97 | return mId; |
100 | } | 98 | } |
101 | 99 | ||
102 | void PhoneNumber::setNumber( const QString &number ) | 100 | void PhoneNumber::setNumber( const QString &number ) |
103 | { | 101 | { |
104 | mNumber = number; | 102 | mNumber = number; |
105 | } | 103 | } |
106 | 104 | ||
107 | QString PhoneNumber::number() const | 105 | QString PhoneNumber::number() const |
108 | { | 106 | { |
109 | return mNumber; | 107 | return mNumber; |
110 | } | 108 | } |
111 | 109 | ||
112 | void PhoneNumber::setType( int type ) | 110 | void PhoneNumber::setType( int type ) |
113 | { | 111 | { |
114 | mType = type; | 112 | mType = type; |
115 | } | 113 | } |
116 | 114 | ||
117 | int PhoneNumber::type() const | 115 | int PhoneNumber::type() const |
118 | { | 116 | { |
119 | return mType; | 117 | return mType; |
120 | } | 118 | } |
121 | 119 | ||
122 | QString PhoneNumber::typeLabel() const | 120 | QString PhoneNumber::typeLabel() const |
123 | { | 121 | { |
124 | QString label; | 122 | QString label; |
125 | bool first = true; | 123 | bool first = true; |
126 | 124 | ||
127 | TypeList list = typeList(); | 125 | TypeList list = typeList(); |
128 | 126 | ||
129 | TypeList::Iterator it; | 127 | TypeList::Iterator it; |
130 | for ( it = list.begin(); it != list.end(); ++it ) { | 128 | for ( it = list.begin(); it != list.end(); ++it ) { |
131 | if ( ( type() & (*it) ) && ( (*it) != Pref ) ) { | 129 | if ( ( type() & (*it) ) && ( (*it) != Pref ) ) { |
132 | label.append( ( first ? "" : "/" ) + typeLabel( *it ) ); | 130 | label.append( ( first ? "" : "/" ) + typeLabel( *it ) ); |
133 | if ( first ) | 131 | if ( first ) |
134 | first = false; | 132 | first = false; |
135 | } | 133 | } |
136 | } | 134 | } |
137 | 135 | ||
138 | return label; | 136 | return label; |
139 | } | 137 | } |
140 | 138 | ||
141 | QString PhoneNumber::label() const | 139 | QString PhoneNumber::label() const |
142 | { | 140 | { |
143 | return typeLabel( type() ); | 141 | return typeLabel( type() ); |
144 | } | 142 | } |
145 | 143 | ||
146 | PhoneNumber::TypeList PhoneNumber::typeList() | 144 | PhoneNumber::TypeList PhoneNumber::typeList() |
147 | { | 145 | { |
148 | TypeList list; | 146 | TypeList list; |
149 | 147 | ||
150 | list << Home << Work << Msg << Pref << Voice << Fax << Cell << Video | 148 | list << Home << Work << Msg << Pref << Voice << Fax << Cell << Video |
151 | << Bbs << Modem << Car << Isdn << Pcs << Pager << Sip; | 149 | << Bbs << Modem << Car << Isdn << Pcs << Pager << Sip; |
152 | 150 | ||
153 | return list; | 151 | return list; |
154 | } | 152 | } |
155 | 153 | ||
156 | QString PhoneNumber::label( int type ) | 154 | QString PhoneNumber::label( int type ) |
157 | { | 155 | { |
158 | return typeLabel( type ); | 156 | return typeLabel( type ); |
159 | } | 157 | } |
160 | 158 | ||
161 | QString PhoneNumber::typeLabel( int type ) | 159 | QString PhoneNumber::typeLabel( int type ) |
162 | { | 160 | { |
163 | QString typeString; | 161 | QString typeString; |
164 | 162 | ||
165 | if ((type & Home) == Home) | 163 | if ((type & Home) == Home) |
166 | typeString += i18n("Home"); | 164 | typeString += i18n("Home"); |
167 | else if ((type & Work) == Work) | 165 | else if ((type & Work) == Work) |
168 | typeString += i18n("Work"); | 166 | typeString += i18n("Work"); |
169 | 167 | ||
170 | if (!typeString.isEmpty()) | 168 | if (!typeString.isEmpty()) |
171 | typeString += " "; | 169 | typeString += " "; |
172 | 170 | ||
173 | if ((type & Cell) == Cell) | 171 | if ((type & Cell) == Cell) |
174 | typeString += i18n("Mobile"); | 172 | typeString += i18n("Mobile"); |