-rw-r--r-- | kaddressbook/kabcore.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 590cc82..ae0a068 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -406,70 +406,70 @@ void KABCore::updateToolBar() | |||
406 | { | 406 | { |
407 | static int iii = 0; | 407 | static int iii = 0; |
408 | ++iii; | 408 | ++iii; |
409 | mMainWindow->toolBar()->repaintMe(); | 409 | mMainWindow->toolBar()->repaintMe(); |
410 | if ( iii < 3 ) | 410 | if ( iii < 3 ) |
411 | QTimer::singleShot( 10, this , SLOT ( updateToolBar())); | 411 | QTimer::singleShot( 10, this , SLOT ( updateToolBar())); |
412 | } | 412 | } |
413 | KABCore::~KABCore() | 413 | KABCore::~KABCore() |
414 | { | 414 | { |
415 | // save(); | 415 | // save(); |
416 | //saveSettings(); | 416 | //saveSettings(); |
417 | //KABPrefs::instance()->writeConfig(); | 417 | //KABPrefs::instance()->writeConfig(); |
418 | delete AddresseeConfig::instance(); | 418 | delete AddresseeConfig::instance(); |
419 | mAddressBook = 0; | 419 | mAddressBook = 0; |
420 | KABC::StdAddressBook::close(); | 420 | KABC::StdAddressBook::close(); |
421 | 421 | ||
422 | delete syncManager; | 422 | delete syncManager; |
423 | #ifndef DESKTOP_VERSION | 423 | #ifndef DESKTOP_VERSION |
424 | if ( infrared ) | 424 | if ( infrared ) |
425 | delete infrared; | 425 | delete infrared; |
426 | #endif | 426 | #endif |
427 | } | 427 | } |
428 | void KABCore::receive( const QCString& cmsg, const QByteArray& data ) | 428 | void KABCore::receive( const QCString& cmsg, const QByteArray& data ) |
429 | { | 429 | { |
430 | qDebug("KA: QCOP message received: %s ", cmsg.data() ); | 430 | //qDebug("KA: QCOP message received: %s ", cmsg.data() ); |
431 | if ( cmsg == "setDocument(QString)" ) { | 431 | if ( cmsg == "setDocument(QString)" ) { |
432 | QDataStream stream( data, IO_ReadOnly ); | 432 | QDataStream stream( data, IO_ReadOnly ); |
433 | QString fileName; | 433 | QString fileName; |
434 | stream >> fileName; | 434 | stream >> fileName; |
435 | recieve( fileName ); | 435 | recieve( fileName ); |
436 | return; | 436 | return; |
437 | } | 437 | } |
438 | } | 438 | } |
439 | void KABCore::toggleBeamReceive( ) | 439 | void KABCore::toggleBeamReceive( ) |
440 | { | 440 | { |
441 | if ( mBRdisabled ) | 441 | if ( mBRdisabled ) |
442 | return; | 442 | return; |
443 | #ifndef DESKTOP_VERSION | 443 | #ifndef DESKTOP_VERSION |
444 | if ( infrared ) { | 444 | if ( infrared ) { |
445 | qDebug("AB disable BeamReceive "); | 445 | qDebug("KA: AB disable BeamReceive "); |
446 | delete infrared; | 446 | delete infrared; |
447 | infrared = 0; | 447 | infrared = 0; |
448 | mActionBR->setChecked(false); | 448 | mActionBR->setChecked(false); |
449 | return; | 449 | return; |
450 | } | 450 | } |
451 | qDebug("AB enable BeamReceive "); | 451 | qDebug("KA: AB enable BeamReceive "); |
452 | mActionBR->setChecked(true); | 452 | mActionBR->setChecked(true); |
453 | 453 | ||
454 | infrared = new QCopChannel("QPE/Application/addressbook",this, "channelAB" ) ; | 454 | infrared = new QCopChannel("QPE/Application/addressbook",this, "channelAB" ) ; |
455 | QObject::connect( infrared, SIGNAL (received ( const QCString &, const QByteArray & )),this, SLOT(receive( const QCString&, const QByteArray& ))); | 455 | QObject::connect( infrared, SIGNAL (received ( const QCString &, const QByteArray & )),this, SLOT(receive( const QCString&, const QByteArray& ))); |
456 | #endif | 456 | #endif |
457 | } | 457 | } |
458 | 458 | ||
459 | 459 | ||
460 | void KABCore::disableBR(bool b) | 460 | void KABCore::disableBR(bool b) |
461 | { | 461 | { |
462 | #ifndef DESKTOP_VERSION | 462 | #ifndef DESKTOP_VERSION |
463 | if ( b ) { | 463 | if ( b ) { |
464 | if ( infrared ) { | 464 | if ( infrared ) { |
465 | toggleBeamReceive( ); | 465 | toggleBeamReceive( ); |
466 | } | 466 | } |
467 | mBRdisabled = true; | 467 | mBRdisabled = true; |
468 | } else { | 468 | } else { |
469 | if ( mBRdisabled ) { | 469 | if ( mBRdisabled ) { |
470 | mBRdisabled = false; | 470 | mBRdisabled = false; |
471 | //toggleBeamReceive( ); | 471 | //toggleBeamReceive( ); |
472 | } | 472 | } |
473 | } | 473 | } |
474 | #endif | 474 | #endif |
475 | 475 | ||
@@ -547,49 +547,49 @@ void KABCore::restoreSettings() | |||
547 | mExtensionBarSplitter->setSizes( splitterSize ); | 547 | mExtensionBarSplitter->setSizes( splitterSize ); |
548 | 548 | ||
549 | } | 549 | } |
550 | 550 | ||
551 | 551 | ||
552 | } | 552 | } |
553 | 553 | ||
554 | void KABCore::saveSettings() | 554 | void KABCore::saveSettings() |
555 | { | 555 | { |
556 | KABPrefs::instance()->mJumpButtonBarVisible = mActionJumpBar->isChecked(); | 556 | KABPrefs::instance()->mJumpButtonBarVisible = mActionJumpBar->isChecked(); |
557 | if ( mExtensionBarSplitter ) | 557 | if ( mExtensionBarSplitter ) |
558 | KABPrefs::instance()->mExtensionsSplitter = mExtensionBarSplitter->sizes(); | 558 | KABPrefs::instance()->mExtensionsSplitter = mExtensionBarSplitter->sizes(); |
559 | KABPrefs::instance()->mDetailsPageVisible = mActionDetails->isChecked(); | 559 | KABPrefs::instance()->mDetailsPageVisible = mActionDetails->isChecked(); |
560 | KABPrefs::instance()->mDetailsSplitter = mMiniSplitter->sizes(); | 560 | KABPrefs::instance()->mDetailsSplitter = mMiniSplitter->sizes(); |
561 | #ifndef KAB_EMBEDDED | 561 | #ifndef KAB_EMBEDDED |
562 | 562 | ||
563 | KABPrefs::instance()->mExtensionsSplitter = mExtensionBarSplitter->sizes(); | 563 | KABPrefs::instance()->mExtensionsSplitter = mExtensionBarSplitter->sizes(); |
564 | KABPrefs::instance()->mDetailsSplitter = mDetailsSplitter->sizes(); | 564 | KABPrefs::instance()->mDetailsSplitter = mDetailsSplitter->sizes(); |
565 | #endif //KAB_EMBEDDED | 565 | #endif //KAB_EMBEDDED |
566 | mExtensionManager->saveSettings(); | 566 | mExtensionManager->saveSettings(); |
567 | mViewManager->saveSettings(); | 567 | mViewManager->saveSettings(); |
568 | 568 | ||
569 | KABPrefs::instance()->mCurrentIncSearchField = mIncSearchWidget->currentItem(); | 569 | KABPrefs::instance()->mCurrentIncSearchField = mIncSearchWidget->currentItem(); |
570 | KABPrefs::instance()->writeConfig(); | 570 | KABPrefs::instance()->writeConfig(); |
571 | qDebug("KABCore::saveSettings() "); | 571 | qDebug("KA: KABCore::saveSettings() "); |
572 | } | 572 | } |
573 | 573 | ||
574 | KABC::AddressBook *KABCore::addressBook() const | 574 | KABC::AddressBook *KABCore::addressBook() const |
575 | { | 575 | { |
576 | return mAddressBook; | 576 | return mAddressBook; |
577 | } | 577 | } |
578 | 578 | ||
579 | KConfig *KABCore::config() | 579 | KConfig *KABCore::config() |
580 | { | 580 | { |
581 | #ifndef KAB_EMBEDDED | 581 | #ifndef KAB_EMBEDDED |
582 | return KABPrefs::instance()->config(); | 582 | return KABPrefs::instance()->config(); |
583 | #else //KAB_EMBEDDED | 583 | #else //KAB_EMBEDDED |
584 | return KABPrefs::instance()->getConfig(); | 584 | return KABPrefs::instance()->getConfig(); |
585 | #endif //KAB_EMBEDDED | 585 | #endif //KAB_EMBEDDED |
586 | } | 586 | } |
587 | 587 | ||
588 | KActionCollection *KABCore::actionCollection() const | 588 | KActionCollection *KABCore::actionCollection() const |
589 | { | 589 | { |
590 | return mGUIClient->actionCollection(); | 590 | return mGUIClient->actionCollection(); |
591 | } | 591 | } |
592 | 592 | ||
593 | KABC::Field *KABCore::currentSearchField() const | 593 | KABC::Field *KABCore::currentSearchField() const |
594 | { | 594 | { |
595 | if (mIncSearchWidget) | 595 | if (mIncSearchWidget) |
@@ -885,49 +885,49 @@ void KABCore::export2phone() | |||
885 | KPimGlobalPrefs::instance()->mEx2PhoneModel ); | 885 | KPimGlobalPrefs::instance()->mEx2PhoneModel ); |
886 | 886 | ||
887 | QString fileName = getPhoneFile(); | 887 | QString fileName = getPhoneFile(); |
888 | if ( ! mAddressBook->export2PhoneFormat( uids ,fileName ) ) | 888 | if ( ! mAddressBook->export2PhoneFormat( uids ,fileName ) ) |
889 | return; | 889 | return; |
890 | 890 | ||
891 | message(i18n("Exporting to phone...")); | 891 | message(i18n("Exporting to phone...")); |
892 | QTimer::singleShot( 1, this , SLOT ( writeToPhone())); | 892 | QTimer::singleShot( 1, this , SLOT ( writeToPhone())); |
893 | 893 | ||
894 | } | 894 | } |
895 | QString KABCore::getPhoneFile() | 895 | QString KABCore::getPhoneFile() |
896 | { | 896 | { |
897 | #ifdef DESKTOP_VERSION | 897 | #ifdef DESKTOP_VERSION |
898 | return locateLocal("tmp", "phonefile.vcf"); | 898 | return locateLocal("tmp", "phonefile.vcf"); |
899 | #else | 899 | #else |
900 | return "/tmp/phonefile.vcf"; | 900 | return "/tmp/phonefile.vcf"; |
901 | #endif | 901 | #endif |
902 | 902 | ||
903 | } | 903 | } |
904 | void KABCore::writeToPhone( ) | 904 | void KABCore::writeToPhone( ) |
905 | { | 905 | { |
906 | if ( PhoneAccess::writeToPhone( getPhoneFile() ) ) | 906 | if ( PhoneAccess::writeToPhone( getPhoneFile() ) ) |
907 | message(i18n("Export to phone finished!")); | 907 | message(i18n("Export to phone finished!")); |
908 | else | 908 | else |
909 | qDebug(i18n("Error exporting to phone")); | 909 | qDebug(i18n("KA: Error exporting to phone")); |
910 | } | 910 | } |
911 | void KABCore::beamVCard() | 911 | void KABCore::beamVCard() |
912 | { | 912 | { |
913 | QStringList uids; | 913 | QStringList uids; |
914 | XXPortSelectDialog dlg( this, false, this ); | 914 | XXPortSelectDialog dlg( this, false, this ); |
915 | if ( dlg.exec() ) | 915 | if ( dlg.exec() ) |
916 | uids = dlg.uids(); | 916 | uids = dlg.uids(); |
917 | else | 917 | else |
918 | return; | 918 | return; |
919 | if ( uids.isEmpty() ) | 919 | if ( uids.isEmpty() ) |
920 | return; | 920 | return; |
921 | beamVCard( uids ); | 921 | beamVCard( uids ); |
922 | } | 922 | } |
923 | 923 | ||
924 | 924 | ||
925 | void KABCore::beamVCard(const QStringList& uids) | 925 | void KABCore::beamVCard(const QStringList& uids) |
926 | { | 926 | { |
927 | 927 | ||
928 | // LR: we should use the /tmp dir on the Zaurus, | 928 | // LR: we should use the /tmp dir on the Zaurus, |
929 | // because: /tmp = RAM, (HOME)/kdepim = flash memory | 929 | // because: /tmp = RAM, (HOME)/kdepim = flash memory |
930 | 930 | ||
931 | #ifdef DESKTOP_VERSION | 931 | #ifdef DESKTOP_VERSION |
932 | QString fileName = locateLocal("tmp", "kapibeamfile.vcf"); | 932 | QString fileName = locateLocal("tmp", "kapibeamfile.vcf"); |
933 | #else | 933 | #else |
@@ -956,49 +956,49 @@ void KABCore::beamVCard(const QStringList& uids) | |||
956 | int sep; | 956 | int sep; |
957 | if ( semi < dopp && semi >= 0 ) | 957 | if ( semi < dopp && semi >= 0 ) |
958 | sep = semi ; | 958 | sep = semi ; |
959 | else | 959 | else |
960 | sep = dopp; | 960 | sep = dopp; |
961 | datastream +=vcard.mid( start, next - start); | 961 | datastream +=vcard.mid( start, next - start); |
962 | datastream +=vcard.mid( next+5,sep -next -5 ).upper(); | 962 | datastream +=vcard.mid( next+5,sep -next -5 ).upper(); |
963 | start = sep; | 963 | start = sep; |
964 | } | 964 | } |
965 | datastream += vcard.mid( start,vcard.length() ); | 965 | datastream += vcard.mid( start,vcard.length() ); |
966 | } | 966 | } |
967 | #ifndef DESKTOP_VERSION | 967 | #ifndef DESKTOP_VERSION |
968 | QFile outFile(fileName); | 968 | QFile outFile(fileName); |
969 | if ( outFile.open(IO_WriteOnly) ) { | 969 | if ( outFile.open(IO_WriteOnly) ) { |
970 | datastream.replace ( QRegExp("VERSION:3.0") , "VERSION:2.1" ); | 970 | datastream.replace ( QRegExp("VERSION:3.0") , "VERSION:2.1" ); |
971 | QTextStream t( &outFile ); // use a text stream | 971 | QTextStream t( &outFile ); // use a text stream |
972 | //t.setEncoding( QTextStream::UnicodeUTF8 ); | 972 | //t.setEncoding( QTextStream::UnicodeUTF8 ); |
973 | t.setEncoding( QTextStream::Latin1 ); | 973 | t.setEncoding( QTextStream::Latin1 ); |
974 | t <<datastream.latin1(); | 974 | t <<datastream.latin1(); |
975 | outFile.close(); | 975 | outFile.close(); |
976 | Ir *ir = new Ir( this ); | 976 | Ir *ir = new Ir( this ); |
977 | connect( ir, SIGNAL( done(Ir*) ), this, SLOT( beamDone(Ir*) ) ); | 977 | connect( ir, SIGNAL( done(Ir*) ), this, SLOT( beamDone(Ir*) ) ); |
978 | ir->send( fileName, description, "text/x-vCard" ); | 978 | ir->send( fileName, description, "text/x-vCard" ); |
979 | } else { | 979 | } else { |
980 | qDebug("Error open temp beam file "); | 980 | qDebug("KA: Error open temp beam file "); |
981 | return; | 981 | return; |
982 | } | 982 | } |
983 | #endif | 983 | #endif |
984 | 984 | ||
985 | } | 985 | } |
986 | 986 | ||
987 | void KABCore::beamDone( Ir *ir ) | 987 | void KABCore::beamDone( Ir *ir ) |
988 | { | 988 | { |
989 | #ifndef DESKTOP_VERSION | 989 | #ifndef DESKTOP_VERSION |
990 | delete ir; | 990 | delete ir; |
991 | #endif | 991 | #endif |
992 | topLevelWidget()->raise(); | 992 | topLevelWidget()->raise(); |
993 | message( i18n("Beaming finished!") ); | 993 | message( i18n("Beaming finished!") ); |
994 | } | 994 | } |
995 | 995 | ||
996 | 996 | ||
997 | void KABCore::browse( const QString& url ) | 997 | void KABCore::browse( const QString& url ) |
998 | { | 998 | { |
999 | #ifndef KAB_EMBEDDED | 999 | #ifndef KAB_EMBEDDED |
1000 | kapp->invokeBrowser( url ); | 1000 | kapp->invokeBrowser( url ); |
1001 | #else //KAB_EMBEDDED | 1001 | #else //KAB_EMBEDDED |
1002 | qDebug("KABCore::browse must be fixed"); | 1002 | qDebug("KABCore::browse must be fixed"); |
1003 | #endif //KAB_EMBEDDED | 1003 | #endif //KAB_EMBEDDED |
1004 | } | 1004 | } |
@@ -2663,84 +2663,84 @@ void KABCore::synchowto() | |||
2663 | } | 2663 | } |
2664 | void KABCore::kdesynchowto() | 2664 | void KABCore::kdesynchowto() |
2665 | { | 2665 | { |
2666 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/Zaurus-KDE_syncHowTo.txt" ); | 2666 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/Zaurus-KDE_syncHowTo.txt" ); |
2667 | } | 2667 | } |
2668 | void KABCore::multisynchowto() | 2668 | void KABCore::multisynchowto() |
2669 | { | 2669 | { |
2670 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/MultiSyncHowTo.txt" ); | 2670 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/MultiSyncHowTo.txt" ); |
2671 | } | 2671 | } |
2672 | void KABCore::faq() | 2672 | void KABCore::faq() |
2673 | { | 2673 | { |
2674 | KApplication::showFile( "KA/Pi FAQ", "kdepim/kaddressbook/kapiFAQ.txt" ); | 2674 | KApplication::showFile( "KA/Pi FAQ", "kdepim/kaddressbook/kapiFAQ.txt" ); |
2675 | } | 2675 | } |
2676 | 2676 | ||
2677 | #include <libkcal/syncdefines.h> | 2677 | #include <libkcal/syncdefines.h> |
2678 | 2678 | ||
2679 | KABC::Addressee KABCore::getLastSyncAddressee() | 2679 | KABC::Addressee KABCore::getLastSyncAddressee() |
2680 | { | 2680 | { |
2681 | Addressee lse; | 2681 | Addressee lse; |
2682 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 2682 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
2683 | 2683 | ||
2684 | //qDebug("CurrentSyncDevice %s ",mCurrentSyncDevice .latin1() ); | 2684 | //qDebug("CurrentSyncDevice %s ",mCurrentSyncDevice .latin1() ); |
2685 | lse = mAddressBook->findByUid( "last-syncAddressee-"+mCurrentSyncDevice ); | 2685 | lse = mAddressBook->findByUid( "last-syncAddressee-"+mCurrentSyncDevice ); |
2686 | if (lse.isEmpty()) { | 2686 | if (lse.isEmpty()) { |
2687 | qDebug("Creating new last-syncAddressee "); | 2687 | qDebug("KA: Creating new last-syncAddressee "); |
2688 | lse.setUid( "last-syncAddressee-"+mCurrentSyncDevice ); | 2688 | lse.setUid( "last-syncAddressee-"+mCurrentSyncDevice ); |
2689 | QString sum = ""; | 2689 | QString sum = ""; |
2690 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) | 2690 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) |
2691 | sum = "E: "; | 2691 | sum = "E: "; |
2692 | lse.setFamilyName("!"+sum+mCurrentSyncDevice + i18n(" - sync event")); | 2692 | lse.setFamilyName("!"+sum+mCurrentSyncDevice + i18n(" - sync event")); |
2693 | lse.setRevision( mLastAddressbookSync ); | 2693 | lse.setRevision( mLastAddressbookSync ); |
2694 | lse.setCategories( i18n("SyncEvent") ); | 2694 | lse.setCategories( i18n("SyncEvent") ); |
2695 | mAddressBook->insertAddressee( lse ); | 2695 | mAddressBook->insertAddressee( lse ); |
2696 | } | 2696 | } |
2697 | return lse; | 2697 | return lse; |
2698 | } | 2698 | } |
2699 | int KABCore::takeAddressee( KABC::Addressee* local, KABC::Addressee* remote, int mode , bool full ) | 2699 | int KABCore::takeAddressee( KABC::Addressee* local, KABC::Addressee* remote, int mode , bool full ) |
2700 | { | 2700 | { |
2701 | 2701 | ||
2702 | //void setZaurusId(int id); | 2702 | //void setZaurusId(int id); |
2703 | // int zaurusId() const; | 2703 | // int zaurusId() const; |
2704 | // void setZaurusUid(int id); | 2704 | // void setZaurusUid(int id); |
2705 | // int zaurusUid() const; | 2705 | // int zaurusUid() const; |
2706 | // void setZaurusStat(int id); | 2706 | // void setZaurusStat(int id); |
2707 | // int zaurusStat() const; | 2707 | // int zaurusStat() const; |
2708 | // 0 equal | 2708 | // 0 equal |
2709 | // 1 take local | 2709 | // 1 take local |
2710 | // 2 take remote | 2710 | // 2 take remote |
2711 | // 3 cancel | 2711 | // 3 cancel |
2712 | QDateTime lastSync = mLastAddressbookSync; | 2712 | QDateTime lastSync = mLastAddressbookSync; |
2713 | QDateTime localMod = local->revision(); | 2713 | QDateTime localMod = local->revision(); |
2714 | QDateTime remoteMod = remote->revision(); | 2714 | QDateTime remoteMod = remote->revision(); |
2715 | 2715 | ||
2716 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 2716 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
2717 | 2717 | ||
2718 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2718 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2719 | bool remCh, locCh; | 2719 | bool remCh, locCh; |
2720 | remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) ); | 2720 | remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) ); |
2721 | if ( remCh ) | 2721 | //if ( remCh ) |
2722 | qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() ); | 2722 | // qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() ); |
2723 | locCh = ( localMod > mLastAddressbookSync ); | 2723 | locCh = ( localMod > mLastAddressbookSync ); |
2724 | //qDebug("cahnged rem %d loc %d",remCh, locCh ); | 2724 | //qDebug("cahnged rem %d loc %d",remCh, locCh ); |
2725 | if ( !remCh && ! locCh ) { | 2725 | if ( !remCh && ! locCh ) { |
2726 | //qDebug("both not changed "); | 2726 | //qDebug("both not changed "); |
2727 | lastSync = localMod.addDays(1); | 2727 | lastSync = localMod.addDays(1); |
2728 | if ( mode <= SYNC_PREF_ASK ) | 2728 | if ( mode <= SYNC_PREF_ASK ) |
2729 | return 0; | 2729 | return 0; |
2730 | } else { | 2730 | } else { |
2731 | if ( locCh ) { | 2731 | if ( locCh ) { |
2732 | //qDebug("loc changed %s %s", localMod.toString().latin1(), mLastAddressbookSync.toString().latin1()); | 2732 | //qDebug("loc changed %s %s", localMod.toString().latin1(), mLastAddressbookSync.toString().latin1()); |
2733 | lastSync = localMod.addDays( -1 ); | 2733 | lastSync = localMod.addDays( -1 ); |
2734 | if ( !remCh ) | 2734 | if ( !remCh ) |
2735 | remoteMod =( lastSync.addDays( -1 ) ); | 2735 | remoteMod =( lastSync.addDays( -1 ) ); |
2736 | } else { | 2736 | } else { |
2737 | //qDebug(" not loc changed "); | 2737 | //qDebug(" not loc changed "); |
2738 | lastSync = localMod.addDays( 1 ); | 2738 | lastSync = localMod.addDays( 1 ); |
2739 | if ( remCh ) { | 2739 | if ( remCh ) { |
2740 | //qDebug("rem changed "); | 2740 | //qDebug("rem changed "); |
2741 | remoteMod =( lastSync.addDays( 1 ) ); | 2741 | remoteMod =( lastSync.addDays( 1 ) ); |
2742 | } | 2742 | } |
2743 | 2743 | ||
2744 | } | 2744 | } |
2745 | } | 2745 | } |
2746 | full = true; | 2746 | full = true; |
@@ -2835,56 +2835,56 @@ bool KABCore::synchronizeAddressbooks( KABC::AddressBook* local, KABC::AddressBo | |||
2835 | int changedLocal = 0; | 2835 | int changedLocal = 0; |
2836 | int changedRemote = 0; | 2836 | int changedRemote = 0; |
2837 | int filteredIN = 0; | 2837 | int filteredIN = 0; |
2838 | int filteredOUT = 0; | 2838 | int filteredOUT = 0; |
2839 | 2839 | ||
2840 | QString mCurrentSyncName = syncManager->getCurrentSyncName(); | 2840 | QString mCurrentSyncName = syncManager->getCurrentSyncName(); |
2841 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 2841 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
2842 | 2842 | ||
2843 | //QPtrList<Addressee> el = local->rawAddressees(); | 2843 | //QPtrList<Addressee> el = local->rawAddressees(); |
2844 | Addressee addresseeR; | 2844 | Addressee addresseeR; |
2845 | QString uid; | 2845 | QString uid; |
2846 | int take; | 2846 | int take; |
2847 | Addressee addresseeL; | 2847 | Addressee addresseeL; |
2848 | Addressee addresseeRSync; | 2848 | Addressee addresseeRSync; |
2849 | Addressee addresseeLSync; | 2849 | Addressee addresseeLSync; |
2850 | // KABC::Addressee::List addresseeRSyncSharp = remote->getExternLastSyncAddressees(); | 2850 | // KABC::Addressee::List addresseeRSyncSharp = remote->getExternLastSyncAddressees(); |
2851 | //KABC::Addressee::List addresseeLSyncSharp = local->getExternLastSyncAddressees(); | 2851 | //KABC::Addressee::List addresseeLSyncSharp = local->getExternLastSyncAddressees(); |
2852 | bool fullDateRange = false; | 2852 | bool fullDateRange = false; |
2853 | local->resetTempSyncStat(); | 2853 | local->resetTempSyncStat(); |
2854 | mLastAddressbookSync = QDateTime::currentDateTime(); | 2854 | mLastAddressbookSync = QDateTime::currentDateTime(); |
2855 | if ( syncManager->syncWithDesktop() ) { | 2855 | if ( syncManager->syncWithDesktop() ) { |
2856 | // remote->removeSyncInfo( QString());//remove all info | 2856 | // remote->removeSyncInfo( QString());//remove all info |
2857 | if ( KSyncManager::mRequestedSyncEvent.isValid() ) { | 2857 | if ( KSyncManager::mRequestedSyncEvent.isValid() ) { |
2858 | mLastAddressbookSync = KSyncManager::mRequestedSyncEvent; | 2858 | mLastAddressbookSync = KSyncManager::mRequestedSyncEvent; |
2859 | qDebug("using extern time for calendar sync: %s ", mLastAddressbookSync.toString().latin1() ); | 2859 | qDebug("KA: using extern time for calendar sync: %s ", mLastAddressbookSync.toString().latin1() ); |
2860 | } else { | 2860 | } else { |
2861 | qDebug("KSyncManager::mRequestedSyncEvent has invalid datatime "); | 2861 | qDebug("KA: KSyncManager::mRequestedSyncEvent has invalid datatime "); |
2862 | } | 2862 | } |
2863 | } | 2863 | } |
2864 | QDateTime modifiedCalendar = mLastAddressbookSync; | 2864 | QDateTime modifiedCalendar = mLastAddressbookSync; |
2865 | addresseeLSync = getLastSyncAddressee(); | 2865 | addresseeLSync = getLastSyncAddressee(); |
2866 | qDebug("Last Sync %s ", addresseeLSync.revision().toString().latin1()); | 2866 | qDebug("KA: Last Sync %s ", addresseeLSync.revision().toString().latin1()); |
2867 | addresseeR = remote->findByUid("last-syncAddressee-"+mCurrentSyncName ); | 2867 | addresseeR = remote->findByUid("last-syncAddressee-"+mCurrentSyncName ); |
2868 | if ( !addresseeR.isEmpty() ) { | 2868 | if ( !addresseeR.isEmpty() ) { |
2869 | addresseeRSync = addresseeR; | 2869 | addresseeRSync = addresseeR; |
2870 | remote->removeAddressee(addresseeR ); | 2870 | remote->removeAddressee(addresseeR ); |
2871 | 2871 | ||
2872 | } else { | 2872 | } else { |
2873 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2873 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2874 | addresseeRSync = addresseeLSync ; | 2874 | addresseeRSync = addresseeLSync ; |
2875 | } else { | 2875 | } else { |
2876 | //qDebug("FULLDATE 1"); | 2876 | //qDebug("FULLDATE 1"); |
2877 | fullDateRange = true; | 2877 | fullDateRange = true; |
2878 | Addressee newAdd; | 2878 | Addressee newAdd; |
2879 | addresseeRSync = newAdd; | 2879 | addresseeRSync = newAdd; |
2880 | addresseeRSync.setFamilyName(mCurrentSyncName + i18n(" - sync addressee")); | 2880 | addresseeRSync.setFamilyName(mCurrentSyncName + i18n(" - sync addressee")); |
2881 | addresseeRSync.setUid("last-syncAddressee-"+mCurrentSyncName ); | 2881 | addresseeRSync.setUid("last-syncAddressee-"+mCurrentSyncName ); |
2882 | addresseeRSync.setRevision( mLastAddressbookSync ); | 2882 | addresseeRSync.setRevision( mLastAddressbookSync ); |
2883 | addresseeRSync.setCategories( i18n("SyncAddressee") ); | 2883 | addresseeRSync.setCategories( i18n("SyncAddressee") ); |
2884 | } | 2884 | } |
2885 | } | 2885 | } |
2886 | if ( addresseeLSync.revision() == mLastAddressbookSync ) { | 2886 | if ( addresseeLSync.revision() == mLastAddressbookSync ) { |
2887 | // qDebug("FULLDATE 2"); | 2887 | // qDebug("FULLDATE 2"); |
2888 | fullDateRange = true; | 2888 | fullDateRange = true; |
2889 | } | 2889 | } |
2890 | if ( ! fullDateRange ) { | 2890 | if ( ! fullDateRange ) { |
@@ -3104,189 +3104,189 @@ bool KABCore::synchronizeAddressbooks( KABC::AddressBook* local, KABC::AddressBo | |||
3104 | // get rid of micro seconds | 3104 | // get rid of micro seconds |
3105 | QTime t = mLastAddressbookSync.time(); | 3105 | QTime t = mLastAddressbookSync.time(); |
3106 | mLastAddressbookSync.setTime( QTime (t.hour (), t.minute (), t.second () ) ); | 3106 | mLastAddressbookSync.setTime( QTime (t.hour (), t.minute (), t.second () ) ); |
3107 | addresseeLSync.setRevision( mLastAddressbookSync ); | 3107 | addresseeLSync.setRevision( mLastAddressbookSync ); |
3108 | addresseeRSync.setRevision( mLastAddressbookSync ); | 3108 | addresseeRSync.setRevision( mLastAddressbookSync ); |
3109 | addresseeRSync.setRole( i18n("!Remote from: ")+mCurrentSyncName ) ; | 3109 | addresseeRSync.setRole( i18n("!Remote from: ")+mCurrentSyncName ) ; |
3110 | addresseeLSync.setRole(i18n("!Local from: ") + mCurrentSyncName ); | 3110 | addresseeLSync.setRole(i18n("!Local from: ") + mCurrentSyncName ); |
3111 | addresseeRSync.setGivenName( i18n("!DO NOT EDIT!") ) ; | 3111 | addresseeRSync.setGivenName( i18n("!DO NOT EDIT!") ) ; |
3112 | addresseeLSync.setGivenName(i18n("!DO NOT EDIT!") ); | 3112 | addresseeLSync.setGivenName(i18n("!DO NOT EDIT!") ); |
3113 | addresseeRSync.setOrganization( "!"+mLastAddressbookSync.toString() ) ; | 3113 | addresseeRSync.setOrganization( "!"+mLastAddressbookSync.toString() ) ; |
3114 | addresseeLSync.setOrganization("!"+ mLastAddressbookSync.toString() ); | 3114 | addresseeLSync.setOrganization("!"+ mLastAddressbookSync.toString() ); |
3115 | addresseeRSync.setNote( "" ) ; | 3115 | addresseeRSync.setNote( "" ) ; |
3116 | addresseeLSync.setNote( "" ); | 3116 | addresseeLSync.setNote( "" ); |
3117 | 3117 | ||
3118 | if ( mGlobalSyncMode == SYNC_MODE_NORMAL) | 3118 | if ( mGlobalSyncMode == SYNC_MODE_NORMAL) |
3119 | remote->insertAddressee( addresseeRSync, false ); | 3119 | remote->insertAddressee( addresseeRSync, false ); |
3120 | local->insertAddressee( addresseeLSync, false ); | 3120 | local->insertAddressee( addresseeLSync, false ); |
3121 | QString mes; | 3121 | QString mes; |
3122 | mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n %d incoming filtered out\n %d outgoing filtered out"),addedAddressee, addedAddresseeR, changedLocal, changedRemote, deletedAddresseeL, deletedAddresseeR, filteredIN, filteredOUT ); | 3122 | mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n %d incoming filtered out\n %d outgoing filtered out"),addedAddressee, addedAddresseeR, changedLocal, changedRemote, deletedAddresseeL, deletedAddresseeR, filteredIN, filteredOUT ); |
3123 | qDebug( mes ); | 3123 | qDebug( mes ); |
3124 | mes = i18n("Local addressbook changed!\n") +mes; | 3124 | mes = i18n("Local addressbook changed!\n") +mes; |
3125 | if ( syncManager->mShowSyncSummary ) { | 3125 | if ( syncManager->mShowSyncSummary ) { |
3126 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, mes, | 3126 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, mes, |
3127 | i18n("KA/Pi Synchronization"),i18n("Write back"))) { | 3127 | i18n("KA/Pi Synchronization"),i18n("Write back"))) { |
3128 | qDebug("cancelled "); | 3128 | qDebug("KA: WB cancelled "); |
3129 | return false; | 3129 | return false; |
3130 | } | 3130 | } |
3131 | } | 3131 | } |
3132 | return syncOK; | 3132 | return syncOK; |
3133 | } | 3133 | } |
3134 | 3134 | ||
3135 | 3135 | ||
3136 | //this is a overwritten callbackmethods from the syncinterface | 3136 | //this is a overwritten callbackmethods from the syncinterface |
3137 | bool KABCore::sync(KSyncManager* manager, QString filename, int mode) | 3137 | bool KABCore::sync(KSyncManager* manager, QString filename, int mode) |
3138 | { | 3138 | { |
3139 | 3139 | ||
3140 | //pending prepare addresseeview for output | 3140 | //pending prepare addresseeview for output |
3141 | //pending detect, if remote file has REV field. if not switch to external sync | 3141 | //pending detect, if remote file has REV field. if not switch to external sync |
3142 | mGlobalSyncMode = SYNC_MODE_NORMAL; | 3142 | mGlobalSyncMode = SYNC_MODE_NORMAL; |
3143 | if ( manager != syncManager ) | 3143 | if ( manager != syncManager ) |
3144 | qDebug("KABCore::sync:: ERROR! :: manager != syncManager "); | 3144 | qDebug("KABCore::sync:: ERROR! :: manager != syncManager "); |
3145 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); | 3145 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); |
3146 | 3146 | ||
3147 | AddressBook abLocal(filename,"syncContact"); | 3147 | AddressBook abLocal(filename,"syncContact"); |
3148 | bool syncOK = false; | 3148 | bool syncOK = false; |
3149 | if ( abLocal.load() ) { | 3149 | if ( abLocal.load() ) { |
3150 | qDebug("Sync:AB loaded %s,sync mode %d",filename.latin1(), mode ); | 3150 | qDebug("KA: Sync::AB loaded %s,sync mode %d",filename.latin1(), mode ); |
3151 | bool external = false; | 3151 | bool external = false; |
3152 | bool isXML = false; | 3152 | bool isXML = false; |
3153 | if ( filename.right(4) == ".xml") { | 3153 | if ( filename.right(4) == ".xml") { |
3154 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3154 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3155 | isXML = true; | 3155 | isXML = true; |
3156 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); | 3156 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); |
3157 | } else { | 3157 | } else { |
3158 | external = !manager->mIsKapiFile; | 3158 | external = !manager->mIsKapiFile; |
3159 | if ( external ) { | 3159 | if ( external ) { |
3160 | qDebug("Sync:Setting vcf mode to external "); | 3160 | qDebug("KA: Sync::Setting vcf mode to external "); |
3161 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3161 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3162 | AddressBook::Iterator it; | 3162 | AddressBook::Iterator it; |
3163 | for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { | 3163 | for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { |
3164 | (*it).setID( mCurrentSyncDevice, (*it).uid() ); | 3164 | (*it).setID( mCurrentSyncDevice, (*it).uid() ); |
3165 | (*it).computeCsum( mCurrentSyncDevice ); | 3165 | (*it).computeCsum( mCurrentSyncDevice ); |
3166 | } | 3166 | } |
3167 | } | 3167 | } |
3168 | } | 3168 | } |
3169 | //AddressBook::Iterator it; | 3169 | //AddressBook::Iterator it; |
3170 | //QStringList vcards; | 3170 | //QStringList vcards; |
3171 | //for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { | 3171 | //for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { |
3172 | // qDebug("Name %s ", (*it).familyName().latin1()); | 3172 | // qDebug("Name %s ", (*it).familyName().latin1()); |
3173 | //} | 3173 | //} |
3174 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, mode ); | 3174 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, mode ); |
3175 | if ( syncOK ) { | 3175 | if ( syncOK ) { |
3176 | if ( syncManager->mWriteBackFile ) | 3176 | if ( syncManager->mWriteBackFile ) |
3177 | { | 3177 | { |
3178 | if ( external ) | 3178 | if ( external ) |
3179 | abLocal.removeSyncAddressees( !isXML); | 3179 | abLocal.removeSyncAddressees( !isXML); |
3180 | qDebug("Sync:Saving remote AB "); | 3180 | qDebug("KA: Sync::Saving remote AB "); |
3181 | if ( ! abLocal.saveAB()) | 3181 | if ( ! abLocal.saveAB()) |
3182 | qDebug("Error writing back AB to file "); | 3182 | qDebug("KA: sync::Error writing back AB to file "); |
3183 | if ( external ) { | 3183 | if ( external ) { |
3184 | // afterwrite processing | 3184 | // afterwrite processing |
3185 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice ,isXML); | 3185 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice ,isXML); |
3186 | } | 3186 | } |
3187 | } | 3187 | } |
3188 | } | 3188 | } |
3189 | setModified(); | 3189 | setModified(); |
3190 | 3190 | ||
3191 | } | 3191 | } |
3192 | abLocal.removeResources(); | 3192 | abLocal.removeResources(); |
3193 | if ( syncOK ) | 3193 | if ( syncOK ) |
3194 | mViewManager->refreshView(); | 3194 | mViewManager->refreshView(); |
3195 | return syncOK; | 3195 | return syncOK; |
3196 | 3196 | ||
3197 | } | 3197 | } |
3198 | void KABCore::removeSyncInfo( QString syncProfile) | 3198 | void KABCore::removeSyncInfo( QString syncProfile) |
3199 | { | 3199 | { |
3200 | qDebug("AB:removeSyncInfo for profile %s ", syncProfile.latin1()); | 3200 | qDebug("KA: AB:removeSyncInfo for profile %s ", syncProfile.latin1()); |
3201 | mAddressBook->removeSyncInfo( syncProfile ); | 3201 | mAddressBook->removeSyncInfo( syncProfile ); |
3202 | setModified(); | 3202 | setModified(); |
3203 | } | 3203 | } |
3204 | 3204 | ||
3205 | 3205 | ||
3206 | //this is a overwritten callbackmethods from the syncinterface | 3206 | //this is a overwritten callbackmethods from the syncinterface |
3207 | bool KABCore::syncExternal(KSyncManager* manager, QString resource) | 3207 | bool KABCore::syncExternal(KSyncManager* manager, QString resource) |
3208 | { | 3208 | { |
3209 | if ( resource == "phone" ) | 3209 | if ( resource == "phone" ) |
3210 | return syncPhone(); | 3210 | return syncPhone(); |
3211 | disableBR( true ); | 3211 | disableBR( true ); |
3212 | if ( manager != syncManager ) | 3212 | if ( manager != syncManager ) |
3213 | qDebug("KABCore::syncExternal:: ERROR! :: manager != syncManager "); | 3213 | qDebug("KABCore::syncExternal:: ERROR! :: manager != syncManager "); |
3214 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); | 3214 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); |
3215 | 3215 | ||
3216 | AddressBook abLocal( resource,"syncContact"); | 3216 | AddressBook abLocal( resource,"syncContact"); |
3217 | bool syncOK = false; | 3217 | bool syncOK = false; |
3218 | message(i18n("Loading DTM address data..."), false); | 3218 | message(i18n("Loading DTM address data..."), false); |
3219 | if ( abLocal.load() ) { | 3219 | if ( abLocal.load() ) { |
3220 | qDebug("AB sharp loaded ,sync device %s",mCurrentSyncDevice.latin1()); | 3220 | qDebug("KA: AB sharp loaded ,sync device %s",mCurrentSyncDevice.latin1()); |
3221 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3221 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3222 | message(i18n("Sync preprocessing..."),false); | 3222 | message(i18n("Sync preprocessing..."),false); |
3223 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, false ); | 3223 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, false ); |
3224 | message(i18n("Synchronizing..."),false); | 3224 | message(i18n("Synchronizing..."),false); |
3225 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); | 3225 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); |
3226 | if ( syncOK ) { | 3226 | if ( syncOK ) { |
3227 | if ( syncManager->mWriteBackFile ) { | 3227 | if ( syncManager->mWriteBackFile ) { |
3228 | abLocal.removeSyncAddressees( false ); | 3228 | abLocal.removeSyncAddressees( false ); |
3229 | message(i18n("Saving DTM address data..."),false); | 3229 | message(i18n("Saving DTM address data..."),false); |
3230 | abLocal.saveAB(); | 3230 | abLocal.saveAB(); |
3231 | message(i18n("Sync postprocessing..."),false); | 3231 | message(i18n("Sync postprocessing..."),false); |
3232 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); | 3232 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); |
3233 | } | 3233 | } |
3234 | } else | 3234 | } else |
3235 | message( i18n("Sync cancelled or failed.") ); | 3235 | message( i18n("Sync cancelled or failed.") ); |
3236 | setModified(); | 3236 | setModified(); |
3237 | } | 3237 | } |
3238 | abLocal.removeResources(); | 3238 | abLocal.removeResources(); |
3239 | if ( syncOK ) { | 3239 | if ( syncOK ) { |
3240 | mViewManager->refreshView(); | 3240 | mViewManager->refreshView(); |
3241 | message(i18n("DTM syncing finished.")); | 3241 | message(i18n("DTM syncing finished.")); |
3242 | } | 3242 | } |
3243 | disableBR( false ); | 3243 | disableBR( false ); |
3244 | return syncOK; | 3244 | return syncOK; |
3245 | 3245 | ||
3246 | } | 3246 | } |
3247 | void KABCore::message( QString m, bool startTimer) | 3247 | void KABCore::message( QString m, bool startTimer) |
3248 | { | 3248 | { |
3249 | topLevelWidget()->setCaption( m ); | 3249 | topLevelWidget()->setCaption( m ); |
3250 | qApp->processEvents(); | 3250 | qApp->processEvents(); |
3251 | if ( startTimer ) | 3251 | if ( startTimer ) |
3252 | mMessageTimer->start( 15000, true ); | 3252 | mMessageTimer->start( 15000, true ); |
3253 | else | 3253 | else |
3254 | mMessageTimer->stop(); | 3254 | mMessageTimer->stop(); |
3255 | } | 3255 | } |
3256 | bool KABCore::syncPhone() | 3256 | bool KABCore::syncPhone() |
3257 | { | 3257 | { |
3258 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 3258 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
3259 | QString fileName = getPhoneFile(); | 3259 | QString fileName = getPhoneFile(); |
3260 | if ( !PhoneAccess::readFromPhone( fileName) ) { | 3260 | if ( !PhoneAccess::readFromPhone( fileName) ) { |
3261 | message(i18n("Phone access failed!")); | 3261 | message(i18n("Phone access failed!")); |
3262 | return false; | 3262 | return false; |
3263 | } | 3263 | } |
3264 | AddressBook abLocal( fileName,"syncContact"); | 3264 | AddressBook abLocal( fileName,"syncContact"); |
3265 | bool syncOK = false; | 3265 | bool syncOK = false; |
3266 | { | 3266 | { |
3267 | abLocal.importFromFile( fileName ); | 3267 | abLocal.importFromFile( fileName ); |
3268 | qDebug("AB phone loaded ,sync device %s",mCurrentSyncDevice.latin1()); | 3268 | qDebug("KA: AB phone loaded ,sync device %s",mCurrentSyncDevice.latin1()); |
3269 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3269 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3270 | abLocal.preparePhoneSync( mCurrentSyncDevice, true ); | 3270 | abLocal.preparePhoneSync( mCurrentSyncDevice, true ); |
3271 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); | 3271 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); |
3272 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); | 3272 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); |
3273 | if ( syncOK ) { | 3273 | if ( syncOK ) { |
3274 | if ( syncManager->mWriteBackFile ) { | 3274 | if ( syncManager->mWriteBackFile ) { |
3275 | abLocal.removeSyncAddressees( true ); | 3275 | abLocal.removeSyncAddressees( true ); |
3276 | abLocal.saveABphone( fileName ); | 3276 | abLocal.saveABphone( fileName ); |
3277 | abLocal.findNewExtIds( fileName, mCurrentSyncDevice ); | 3277 | abLocal.findNewExtIds( fileName, mCurrentSyncDevice ); |
3278 | //abLocal.preparePhoneSync( mCurrentSyncDevice, false ); | 3278 | //abLocal.preparePhoneSync( mCurrentSyncDevice, false ); |
3279 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); | 3279 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); |
3280 | } | 3280 | } |
3281 | } | 3281 | } |
3282 | setModified(); | 3282 | setModified(); |
3283 | } | 3283 | } |
3284 | abLocal.removeResources(); | 3284 | abLocal.removeResources(); |
3285 | if ( syncOK ) | 3285 | if ( syncOK ) |
3286 | mViewManager->refreshView(); | 3286 | mViewManager->refreshView(); |
3287 | return syncOK; | 3287 | return syncOK; |
3288 | } | 3288 | } |
3289 | void KABCore::getFile( bool success ) | 3289 | void KABCore::getFile( bool success ) |
3290 | { | 3290 | { |
3291 | if ( ! success ) { | 3291 | if ( ! success ) { |
3292 | message( i18n("Error receiving file. Nothing changed!") ); | 3292 | message( i18n("Error receiving file. Nothing changed!") ); |