author | zautrix <zautrix> | 2005-11-25 23:24:37 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-11-25 23:24:37 (UTC) |
commit | 3cd0013c04172b312ee21e80224a3b7734b4d413 (patch) (unidiff) | |
tree | 9c5557ecfe874a8a4901a674c5eddcc91f585b0c /libkdepim | |
parent | 0e18027f386280bf427ef9d0ffec61a5516cebda (diff) | |
download | kdepimpi-3cd0013c04172b312ee21e80224a3b7734b4d413.zip kdepimpi-3cd0013c04172b312ee21e80224a3b7734b4d413.tar.gz kdepimpi-3cd0013c04172b312ee21e80224a3b7734b4d413.tar.bz2 |
sync
-rw-r--r-- | libkdepim/ksyncmanager.cpp | 2 | ||||
-rw-r--r-- | libkdepim/ksyncprefsdialog.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libkdepim/ksyncmanager.cpp b/libkdepim/ksyncmanager.cpp index fa7804e..0109c02 100644 --- a/libkdepim/ksyncmanager.cpp +++ b/libkdepim/ksyncmanager.cpp | |||
@@ -671,1025 +671,1025 @@ int KSyncManager::ringSync() | |||
671 | mActiveSyncIP = temp->getRemoteIP(); | 671 | mActiveSyncIP = temp->getRemoteIP(); |
672 | } else { | 672 | } else { |
673 | mPassWordPiSync = temp->getRemotePwPWM(); | 673 | mPassWordPiSync = temp->getRemotePwPWM(); |
674 | mActiveSyncPort = temp->getRemotePortPWM(); | 674 | mActiveSyncPort = temp->getRemotePortPWM(); |
675 | mActiveSyncIP = temp->getRemoteIPPWM(); | 675 | mActiveSyncIP = temp->getRemoteIPPWM(); |
676 | } | 676 | } |
677 | syncPi(); | 677 | syncPi(); |
678 | while ( !mPisyncFinished ) { | 678 | while ( !mPisyncFinished ) { |
679 | //qDebug("waiting "); | 679 | //qDebug("waiting "); |
680 | qApp->processEvents(); | 680 | qApp->processEvents(); |
681 | } | 681 | } |
682 | timer.start(); | 682 | timer.start(); |
683 | while ( timer.elapsed () < 2000 ) { | 683 | while ( timer.elapsed () < 2000 ) { |
684 | qApp->processEvents(); | 684 | qApp->processEvents(); |
685 | } | 685 | } |
686 | } else | 686 | } else |
687 | syncRemote( temp, false ); | 687 | syncRemote( temp, false ); |
688 | 688 | ||
689 | } | 689 | } |
690 | } | 690 | } |
691 | timer.start(); | 691 | timer.start(); |
692 | mParent->topLevelWidget()->setCaption(i18n("Multiple sync in progress ... please wait!") ); | 692 | mParent->topLevelWidget()->setCaption(i18n("Multiple sync in progress ... please wait!") ); |
693 | while ( timer.elapsed () < 2000 ) { | 693 | while ( timer.elapsed () < 2000 ) { |
694 | qApp->processEvents(); | 694 | qApp->processEvents(); |
695 | #ifndef _WIN32_ | 695 | #ifndef _WIN32_ |
696 | sleep (1); | 696 | sleep (1); |
697 | #endif | 697 | #endif |
698 | } | 698 | } |
699 | 699 | ||
700 | } | 700 | } |
701 | 701 | ||
702 | } | 702 | } |
703 | delete temp; | 703 | delete temp; |
704 | return syncedProfiles; | 704 | return syncedProfiles; |
705 | } | 705 | } |
706 | 706 | ||
707 | void KSyncManager::syncRemote( KSyncProfile* prof, bool ask) | 707 | void KSyncManager::syncRemote( KSyncProfile* prof, bool ask) |
708 | { | 708 | { |
709 | QString question; | 709 | QString question; |
710 | if ( ask ) { | 710 | if ( ask ) { |
711 | question = i18n("Do you really want\nto remote sync\nwith profile \n")+ prof->getName()+" ?\n"; | 711 | question = i18n("Do you really want\nto remote sync\nwith profile \n")+ prof->getName()+" ?\n"; |
712 | if ( QMessageBox::information( mParent, i18n("Sync"), | 712 | if ( QMessageBox::information( mParent, i18n("Sync"), |
713 | question, | 713 | question, |
714 | i18n("Yes"), i18n("No"), | 714 | i18n("Yes"), i18n("No"), |
715 | 0, 0 ) != 0 ) | 715 | 0, 0 ) != 0 ) |
716 | return; | 716 | return; |
717 | } | 717 | } |
718 | 718 | ||
719 | QString preCommand; | 719 | QString preCommand; |
720 | QString localTempFile; | 720 | QString localTempFile; |
721 | QString postCommand; | 721 | QString postCommand; |
722 | 722 | ||
723 | switch(mTargetApp) | 723 | switch(mTargetApp) |
724 | { | 724 | { |
725 | case (KAPI): | 725 | case (KAPI): |
726 | preCommand = prof->getPreSyncCommandAB(); | 726 | preCommand = prof->getPreSyncCommandAB(); |
727 | postCommand = prof->getPostSyncCommandAB(); | 727 | postCommand = prof->getPostSyncCommandAB(); |
728 | localTempFile = prof->getLocalTempFileAB(); | 728 | localTempFile = prof->getLocalTempFileAB(); |
729 | break; | 729 | break; |
730 | case (KOPI): | 730 | case (KOPI): |
731 | preCommand = prof->getPreSyncCommand(); | 731 | preCommand = prof->getPreSyncCommand(); |
732 | postCommand = prof->getPostSyncCommand(); | 732 | postCommand = prof->getPostSyncCommand(); |
733 | localTempFile = prof->getLocalTempFile(); | 733 | localTempFile = prof->getLocalTempFile(); |
734 | break; | 734 | break; |
735 | case (PWMPI): | 735 | case (PWMPI): |
736 | preCommand = prof->getPreSyncCommandPWM(); | 736 | preCommand = prof->getPreSyncCommandPWM(); |
737 | postCommand = prof->getPostSyncCommandPWM(); | 737 | postCommand = prof->getPostSyncCommandPWM(); |
738 | localTempFile = prof->getLocalTempFilePWM(); | 738 | localTempFile = prof->getLocalTempFilePWM(); |
739 | break; | 739 | break; |
740 | default: | 740 | default: |
741 | qDebug("KSM::syncRemote: invalid apptype selected"); | 741 | qDebug("KSM::syncRemote: invalid apptype selected"); |
742 | break; | 742 | break; |
743 | } | 743 | } |
744 | 744 | ||
745 | 745 | ||
746 | int fi; | 746 | int fi; |
747 | if ( (fi = preCommand.find("$PWD$")) > 0 ) { | 747 | if ( (fi = preCommand.find("$PWD$")) > 0 ) { |
748 | QString pwd = getPassword(); | 748 | QString pwd = getPassword(); |
749 | preCommand = preCommand.left( fi )+ pwd + preCommand.mid( fi+5 ); | 749 | preCommand = preCommand.left( fi )+ pwd + preCommand.mid( fi+5 ); |
750 | 750 | ||
751 | } | 751 | } |
752 | int maxlen = 30; | 752 | int maxlen = 30; |
753 | if ( QApplication::desktop()->width() > 320 ) | 753 | if ( QApplication::desktop()->width() > 320 ) |
754 | maxlen += 25; | 754 | maxlen += 25; |
755 | mParent->topLevelWidget()->setCaption ( i18n( "Copy remote file to local machine..." ) ); | 755 | mParent->topLevelWidget()->setCaption ( i18n( "Copy remote file to local machine..." ) ); |
756 | int fileSize = 0; | 756 | int fileSize = 0; |
757 | int result = system ( preCommand ); | 757 | int result = system ( preCommand ); |
758 | // 0 : okay | 758 | // 0 : okay |
759 | // 256: no such file or dir | 759 | // 256: no such file or dir |
760 | // | 760 | // |
761 | qDebug("KSM::Sync: Remote copy result(0 = okay): %d ",result ); | 761 | qDebug("KSM::Sync: Remote copy result(0 = okay): %d ",result ); |
762 | if ( result != 0 ) { | 762 | if ( result != 0 ) { |
763 | unsigned int len = maxlen; | 763 | unsigned int len = maxlen; |
764 | while ( len < preCommand.length() ) { | 764 | while ( len < preCommand.length() ) { |
765 | preCommand.insert( len , "\n" ); | 765 | preCommand.insert( len , "\n" ); |
766 | len += maxlen +2; | 766 | len += maxlen +2; |
767 | } | 767 | } |
768 | question = i18n("Sorry, the copy command failed!\nCommand was:\n%1\n \nTry command on console to get more\ndetailed info about the reason.\n").arg (preCommand) ; | 768 | question = i18n("Sorry, the copy command failed!\nCommand was:\n%1\n \nTry command on console to get more\ndetailed info about the reason.\n").arg (preCommand) ; |
769 | QMessageBox::information( mParent, i18n("Sync - ERROR"), | 769 | QMessageBox::information( mParent, i18n("Sync - ERROR"), |
770 | question, | 770 | question, |
771 | i18n("Okay!")) ; | 771 | i18n("Okay!")) ; |
772 | mParent->topLevelWidget()->setCaption ("KDE-Pim"); | 772 | mParent->topLevelWidget()->setCaption ("KDE-Pim"); |
773 | return; | 773 | return; |
774 | } | 774 | } |
775 | mParent->topLevelWidget()->setCaption ( i18n( "Copying succeed." ) ); | 775 | mParent->topLevelWidget()->setCaption ( i18n( "Copying succeed." ) ); |
776 | //qDebug(" file **%s** ",prof->getLocalTempFile().latin1() ); | 776 | //qDebug(" file **%s** ",prof->getLocalTempFile().latin1() ); |
777 | 777 | ||
778 | if ( syncWithFile( localTempFile, true ) ) { | 778 | if ( syncWithFile( localTempFile, true ) ) { |
779 | 779 | ||
780 | if ( mWriteBackFile ) { | 780 | if ( mWriteBackFile ) { |
781 | int fi; | 781 | int fi; |
782 | if ( (fi = postCommand.find("$PWD$")) > 0 ) { | 782 | if ( (fi = postCommand.find("$PWD$")) > 0 ) { |
783 | QString pwd = getPassword(); | 783 | QString pwd = getPassword(); |
784 | postCommand = postCommand.left( fi )+ pwd + postCommand.mid( fi+5 ); | 784 | postCommand = postCommand.left( fi )+ pwd + postCommand.mid( fi+5 ); |
785 | 785 | ||
786 | } | 786 | } |
787 | mParent->topLevelWidget()->setCaption ( i18n( "Writing back file ..." ) ); | 787 | mParent->topLevelWidget()->setCaption ( i18n( "Writing back file ..." ) ); |
788 | result = system ( postCommand ); | 788 | result = system ( postCommand ); |
789 | qDebug("KSM::Sync:Writing back file result: %d ", result); | 789 | qDebug("KSM::Sync:Writing back file result: %d ", result); |
790 | if ( result != 0 ) { | 790 | if ( result != 0 ) { |
791 | mParent->topLevelWidget()->setCaption ( i18n( "Writing back file result: " )+QString::number( result ) ); | 791 | mParent->topLevelWidget()->setCaption ( i18n( "Writing back file result: " )+QString::number( result ) ); |
792 | return; | 792 | return; |
793 | } else { | 793 | } else { |
794 | mParent->topLevelWidget()->setCaption ( i18n( "Syncronization sucessfully completed" ) ); | 794 | mParent->topLevelWidget()->setCaption ( i18n( "Syncronization sucessfully completed" ) ); |
795 | } | 795 | } |
796 | } | 796 | } |
797 | } | 797 | } |
798 | return; | 798 | return; |
799 | } | 799 | } |
800 | bool KSyncManager::edit_pisync_options() | 800 | bool KSyncManager::edit_pisync_options() |
801 | { | 801 | { |
802 | QDialog dia( mParent, "dia", true ); | 802 | QDialog dia( mParent, "dia", true ); |
803 | dia.setCaption( i18n("Pi-Sync options for device: " ) +mCurrentSyncDevice ); | 803 | dia.setCaption( i18n("Pi-Sync options for device: " ) +mCurrentSyncDevice ); |
804 | QVBoxLayout lay ( &dia ); | 804 | QVBoxLayout lay ( &dia ); |
805 | lay.setSpacing( 5 ); | 805 | lay.setSpacing( 5 ); |
806 | lay.setMargin( 3 ); | 806 | lay.setMargin( 3 ); |
807 | QLabel lab1 ( i18n("Password for remote access:"), &dia); | 807 | QLabel lab1 ( i18n("Password for remote access:"), &dia); |
808 | lay.addWidget( &lab1 ); | 808 | lay.addWidget( &lab1 ); |
809 | QLineEdit le1 (&dia ); | 809 | QLineEdit le1 (&dia ); |
810 | lay.addWidget( &le1 ); | 810 | lay.addWidget( &le1 ); |
811 | QLabel lab2 ( i18n("Remote IP address:"), &dia); | 811 | QLabel lab2 ( i18n("Remote IP address:"), &dia); |
812 | lay.addWidget( &lab2 ); | 812 | lay.addWidget( &lab2 ); |
813 | QLineEdit le2 (&dia ); | 813 | QLineEdit le2 (&dia ); |
814 | lay.addWidget( &le2 ); | 814 | lay.addWidget( &le2 ); |
815 | QLabel lab3 ( i18n("Remote port number:\n(May be: 1 - 65535)"), &dia); | 815 | QLabel lab3 ( i18n("Remote port number:\n(May be: 1 - 65535)"), &dia); |
816 | lay.addWidget( &lab3 ); | 816 | lay.addWidget( &lab3 ); |
817 | QLineEdit le3 (&dia ); | 817 | QLineEdit le3 (&dia ); |
818 | lay.addWidget( &le3 ); | 818 | lay.addWidget( &le3 ); |
819 | QPushButton pb ( "OK", &dia); | 819 | QPushButton pb ( "OK", &dia); |
820 | lay.addWidget( &pb ); | 820 | lay.addWidget( &pb ); |
821 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); | 821 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); |
822 | le1.setText( mPassWordPiSync ); | 822 | le1.setText( mPassWordPiSync ); |
823 | le2.setText( mActiveSyncIP ); | 823 | le2.setText( mActiveSyncIP ); |
824 | le3.setText( mActiveSyncPort ); | 824 | le3.setText( mActiveSyncPort ); |
825 | if ( dia.exec() ) { | 825 | if ( dia.exec() ) { |
826 | mPassWordPiSync = le1.text(); | 826 | mPassWordPiSync = le1.text(); |
827 | mActiveSyncPort = le3.text(); | 827 | mActiveSyncPort = le3.text(); |
828 | mActiveSyncIP = le2.text(); | 828 | mActiveSyncIP = le2.text(); |
829 | return true; | 829 | return true; |
830 | } | 830 | } |
831 | return false; | 831 | return false; |
832 | } | 832 | } |
833 | bool KSyncManager::edit_sync_options() | 833 | bool KSyncManager::edit_sync_options() |
834 | { | 834 | { |
835 | 835 | ||
836 | QDialog dia( mParent, "dia", true ); | 836 | QDialog dia( mParent, "dia", true ); |
837 | dia.setCaption( i18n("Device: " ) +mCurrentSyncDevice ); | 837 | dia.setCaption( i18n("Device: " ) +mCurrentSyncDevice ); |
838 | QButtonGroup gr ( 1, Qt::Horizontal, i18n("Sync preferences"), &dia); | 838 | QButtonGroup gr ( 1, Qt::Horizontal, i18n("Sync preferences"), &dia); |
839 | QVBoxLayout lay ( &dia ); | 839 | QVBoxLayout lay ( &dia ); |
840 | lay.setSpacing( 2 ); | 840 | lay.setSpacing( 2 ); |
841 | lay.setMargin( 3 ); | 841 | lay.setMargin( 3 ); |
842 | lay.addWidget(&gr); | 842 | lay.addWidget(&gr); |
843 | QRadioButton loc ( i18n("Take local entry on conflict"), &gr ); | 843 | QRadioButton loc ( i18n("Take local entry on conflict"), &gr ); |
844 | QRadioButton rem ( i18n("Take remote entry on conflict"), &gr ); | 844 | QRadioButton rem ( i18n("Take remote entry on conflict"), &gr ); |
845 | QRadioButton newest( i18n("Take newest entry on conflict"), &gr ); | 845 | QRadioButton newest( i18n("Take newest entry on conflict"), &gr ); |
846 | QRadioButton ask( i18n("Ask for every entry on conflict"), &gr ); | 846 | QRadioButton ask( i18n("Ask for every entry on conflict"), &gr ); |
847 | QRadioButton f_loc( i18n("Force: Take local entry always"), &gr ); | 847 | QRadioButton f_loc( i18n("Force: Take local entry always"), &gr ); |
848 | QRadioButton f_rem( i18n("Force: Take remote entry always"), &gr ); | 848 | QRadioButton f_rem( i18n("Force: Take remote entry always"), &gr ); |
849 | //QRadioButton both( i18n("Take both on conflict"), &gr ); | 849 | //QRadioButton both( i18n("Take both on conflict"), &gr ); |
850 | QPushButton pb ( "OK", &dia); | 850 | QPushButton pb ( "OK", &dia); |
851 | lay.addWidget( &pb ); | 851 | lay.addWidget( &pb ); |
852 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); | 852 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); |
853 | switch ( mSyncAlgoPrefs ) { | 853 | switch ( mSyncAlgoPrefs ) { |
854 | case 0: | 854 | case 0: |
855 | loc.setChecked( true); | 855 | loc.setChecked( true); |
856 | break; | 856 | break; |
857 | case 1: | 857 | case 1: |
858 | rem.setChecked( true ); | 858 | rem.setChecked( true ); |
859 | break; | 859 | break; |
860 | case 2: | 860 | case 2: |
861 | newest.setChecked( true); | 861 | newest.setChecked( true); |
862 | break; | 862 | break; |
863 | case 3: | 863 | case 3: |
864 | ask.setChecked( true); | 864 | ask.setChecked( true); |
865 | break; | 865 | break; |
866 | case 4: | 866 | case 4: |
867 | f_loc.setChecked( true); | 867 | f_loc.setChecked( true); |
868 | break; | 868 | break; |
869 | case 5: | 869 | case 5: |
870 | f_rem.setChecked( true); | 870 | f_rem.setChecked( true); |
871 | break; | 871 | break; |
872 | case 6: | 872 | case 6: |
873 | // both.setChecked( true); | 873 | // both.setChecked( true); |
874 | break; | 874 | break; |
875 | default: | 875 | default: |
876 | break; | 876 | break; |
877 | } | 877 | } |
878 | if ( dia.exec() ) { | 878 | if ( dia.exec() ) { |
879 | mSyncAlgoPrefs = rem.isChecked()*1+newest.isChecked()*2+ ask.isChecked()*3+ f_loc.isChecked()*4+ f_rem.isChecked()*5;//+ both.isChecked()*6 ; | 879 | mSyncAlgoPrefs = rem.isChecked()*1+newest.isChecked()*2+ ask.isChecked()*3+ f_loc.isChecked()*4+ f_rem.isChecked()*5;//+ both.isChecked()*6 ; |
880 | return true; | 880 | return true; |
881 | } | 881 | } |
882 | return false; | 882 | return false; |
883 | } | 883 | } |
884 | 884 | ||
885 | QString KSyncManager::getPassword( ) | 885 | QString KSyncManager::getPassword( ) |
886 | { | 886 | { |
887 | QString retfile = ""; | 887 | QString retfile = ""; |
888 | QDialog dia ( mParent, "input-dialog", true ); | 888 | QDialog dia ( mParent, "input-dialog", true ); |
889 | QLineEdit lab ( &dia ); | 889 | QLineEdit lab ( &dia ); |
890 | lab.setEchoMode( QLineEdit::Password ); | 890 | lab.setEchoMode( QLineEdit::Password ); |
891 | QVBoxLayout lay( &dia ); | 891 | QVBoxLayout lay( &dia ); |
892 | lay.setMargin(7); | 892 | lay.setMargin(7); |
893 | lay.setSpacing(7); | 893 | lay.setSpacing(7); |
894 | lay.addWidget( &lab); | 894 | lay.addWidget( &lab); |
895 | dia.setFixedSize( 230,50 ); | 895 | dia.setFixedSize( 230,50 ); |
896 | dia.setCaption( i18n("Enter password") ); | 896 | dia.setCaption( i18n("Enter password") ); |
897 | QPushButton pb ( "OK", &dia); | 897 | QPushButton pb ( "OK", &dia); |
898 | lay.addWidget( &pb ); | 898 | lay.addWidget( &pb ); |
899 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); | 899 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); |
900 | dia.show(); | 900 | dia.show(); |
901 | int res = dia.exec(); | 901 | int res = dia.exec(); |
902 | if ( res ) | 902 | if ( res ) |
903 | retfile = lab.text(); | 903 | retfile = lab.text(); |
904 | dia.hide(); | 904 | dia.hide(); |
905 | qApp->processEvents(); | 905 | qApp->processEvents(); |
906 | return retfile; | 906 | return retfile; |
907 | 907 | ||
908 | } | 908 | } |
909 | 909 | ||
910 | 910 | ||
911 | void KSyncManager::confSync() | 911 | void KSyncManager::confSync() |
912 | { | 912 | { |
913 | static KSyncPrefsDialog* sp = 0; | 913 | static KSyncPrefsDialog* sp = 0; |
914 | if ( ! sp ) { | 914 | if ( ! sp ) { |
915 | sp = new KSyncPrefsDialog( mParent, "syncprefs", true ); | 915 | sp = new KSyncPrefsDialog( mParent, "syncprefs", true ); |
916 | } | 916 | } |
917 | sp->usrReadConfig(); | 917 | sp->usrReadConfig(); |
918 | #ifndef DESKTOP_VERSION | 918 | #ifndef DESKTOP_VERSION |
919 | sp->showMaximized(); | 919 | sp->showMaximized(); |
920 | #else | 920 | #else |
921 | sp->show(); | 921 | sp->show(); |
922 | #endif | 922 | #endif |
923 | sp->exec(); | 923 | sp->exec(); |
924 | QStringList oldSyncProfileNames = mSyncProfileNames; | 924 | QStringList oldSyncProfileNames = mSyncProfileNames; |
925 | mSyncProfileNames = sp->getSyncProfileNames(); | 925 | mSyncProfileNames = sp->getSyncProfileNames(); |
926 | mLocalMachineName = sp->getLocalMachineName (); | 926 | mLocalMachineName = sp->getLocalMachineName (); |
927 | int ii; | 927 | int ii; |
928 | for ( ii = 0; ii < oldSyncProfileNames.count(); ++ii ) { | 928 | for ( ii = 0; ii < oldSyncProfileNames.count(); ++ii ) { |
929 | if ( ! mSyncProfileNames.contains( oldSyncProfileNames[ii] ) ) | 929 | if ( ! mSyncProfileNames.contains( oldSyncProfileNames[ii] ) ) |
930 | mImplementation->removeSyncInfo( oldSyncProfileNames[ii] ); | 930 | mImplementation->removeSyncInfo( oldSyncProfileNames[ii] ); |
931 | } | 931 | } |
932 | QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) ); | 932 | QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) ); |
933 | } | 933 | } |
934 | void KSyncManager::syncKDE() | 934 | void KSyncManager::syncKDE() |
935 | { | 935 | { |
936 | mSyncWithDesktop = true; | 936 | mSyncWithDesktop = true; |
937 | emit save(); | 937 | emit save(); |
938 | switch(mTargetApp) | 938 | switch(mTargetApp) |
939 | { | 939 | { |
940 | case (KAPI): | 940 | case (KAPI): |
941 | { | 941 | { |
942 | #ifdef DESKTOP_VERSION | 942 | #ifdef DESKTOP_VERSION |
943 | QString command = "kdeabdump33"; | 943 | QString command = "kdeabdump33"; |
944 | QString commandfile = "kdeabdump33"; | 944 | QString commandfile = "kdeabdump33"; |
945 | QString commandpath = qApp->applicationDirPath () + "/"; | 945 | QString commandpath = qApp->applicationDirPath () + "/"; |
946 | #else | 946 | #else |
947 | QString command = "kdeabdump33"; | 947 | QString command = "kdeabdump33"; |
948 | QString commandfile = "kdeabdump33"; | 948 | QString commandfile = "kdeabdump33"; |
949 | QString commandpath = QDir::homeDirPath ()+"/"; | 949 | QString commandpath = QDir::homeDirPath ()+"/"; |
950 | #endif | 950 | #endif |
951 | if ( ! QFile::exists ( commandpath+commandfile ) ) | 951 | if ( ! QFile::exists ( commandpath+commandfile ) ) |
952 | command = commandfile; | 952 | command = commandfile; |
953 | else | 953 | else |
954 | command = commandpath+commandfile; | 954 | command = commandpath+commandfile; |
955 | 955 | ||
956 | QString fileName = QDir::homeDirPath ()+"/.kdeaddressbookdump.vcf"; | 956 | QString fileName = QDir::homeDirPath ()+"/.kdeaddressbookdump.vcf"; |
957 | int result = system ( command.latin1()); | 957 | int result = system ( command.latin1()); |
958 | qDebug("AB dump 33 command call result: %d ", result); | 958 | qDebug("AB dump 33 command call result: %d ", result); |
959 | if ( result != 0 ) { | 959 | if ( result != 0 ) { |
960 | qDebug("Calling AB dump version 33 failed. Trying 34... "); | 960 | qDebug("Calling AB dump version 33 failed. Trying 34... "); |
961 | commandfile = "kdeabdump34"; | 961 | commandfile = "kdeabdump34"; |
962 | if ( ! QFile::exists ( commandpath+commandfile ) ) | 962 | if ( ! QFile::exists ( commandpath+commandfile ) ) |
963 | command = commandfile; | 963 | command = commandfile; |
964 | else | 964 | else |
965 | command = commandpath+commandfile; | 965 | command = commandpath+commandfile; |
966 | result = system ( command.latin1()); | 966 | result = system ( command.latin1()); |
967 | qDebug("AB dump 34 command call result: %d ", result); | 967 | qDebug("AB dump 34 command call result: %d ", result); |
968 | if ( result != 0 ) { | 968 | if ( result != 0 ) { |
969 | KMessageBox::error( 0, i18n("Error accessing KDE addressbook data.\nMake sure the file\n%1kdeabdump3x\nexists ( x = 3 or 4 ).\nSupported KDE versions are 3.3 and 3.4.\nUsed version should be auto detected.\n").arg( commandpath )); | 969 | KMessageBox::error( 0, i18n("Error accessing KDE addressbook data.\nMake sure the file\n%1kdeabdump3x\nexists ( x = 3 or 4 ).\nSupported KDE versions are 3.3 and 3.4.\nUsed version should be auto detected.\n").arg( commandpath )); |
970 | return; | 970 | return; |
971 | } | 971 | } |
972 | } | 972 | } |
973 | if ( syncWithFile( fileName,true ) ) { | 973 | if ( syncWithFile( fileName,true ) ) { |
974 | if ( mWriteBackFile ) { | 974 | if ( mWriteBackFile ) { |
975 | command += " --read"; | 975 | command += " --read"; |
976 | system ( command.latin1()); | 976 | system ( command.latin1()); |
977 | } | 977 | } |
978 | } | 978 | } |
979 | 979 | ||
980 | } | 980 | } |
981 | break; | 981 | break; |
982 | case (KOPI): | 982 | case (KOPI): |
983 | { | 983 | { |
984 | #ifdef DESKTOP_VERSION | 984 | #ifdef DESKTOP_VERSION |
985 | QString command = "kdecaldump33"; | 985 | QString command = "kdecaldump33"; |
986 | QString commandfile = "kdecaldump33"; | 986 | QString commandfile = "kdecaldump33"; |
987 | QString commandpath = qApp->applicationDirPath () + "/"; | 987 | QString commandpath = qApp->applicationDirPath () + "/"; |
988 | #else | 988 | #else |
989 | QString command = "kdecaldump33"; | 989 | QString command = "kdecaldump33"; |
990 | QString commandfile = "kdecaldump33"; | 990 | QString commandfile = "kdecaldump33"; |
991 | QString commandpath = QDir::homeDirPath ()+"/"; | 991 | QString commandpath = QDir::homeDirPath ()+"/"; |
992 | #endif | 992 | #endif |
993 | if ( ! QFile::exists ( commandpath+commandfile ) ) | 993 | if ( ! QFile::exists ( commandpath+commandfile ) ) |
994 | command = commandfile; | 994 | command = commandfile; |
995 | else | 995 | else |
996 | command = commandpath+commandfile; | 996 | command = commandpath+commandfile; |
997 | 997 | ||
998 | QString fileName = QDir::homeDirPath ()+"/.kdecalendardump.ics"; | 998 | QString fileName = QDir::homeDirPath ()+"/.kdecalendardump.ics"; |
999 | int result = system ( command.latin1()); | 999 | int result = system ( command.latin1()); |
1000 | qDebug("Cal dump 33 command call result result: %d ", result); | 1000 | qDebug("Cal dump 33 command call result result: %d ", result); |
1001 | if ( result != 0 ) { | 1001 | if ( result != 0 ) { |
1002 | qDebug("Calling CAL dump version 33 failed. Trying 34... "); | 1002 | qDebug("Calling CAL dump version 33 failed. Trying 34... "); |
1003 | commandfile = "kdecaldump34"; | 1003 | commandfile = "kdecaldump34"; |
1004 | if ( ! QFile::exists ( commandpath+commandfile ) ) | 1004 | if ( ! QFile::exists ( commandpath+commandfile ) ) |
1005 | command = commandfile; | 1005 | command = commandfile; |
1006 | else | 1006 | else |
1007 | command = commandpath+commandfile; | 1007 | command = commandpath+commandfile; |
1008 | result = system ( command.latin1()); | 1008 | result = system ( command.latin1()); |
1009 | qDebug("Cal dump 34 command call result result: %d ", result); | 1009 | qDebug("Cal dump 34 command call result result: %d ", result); |
1010 | if ( result != 0 ) { | 1010 | if ( result != 0 ) { |
1011 | KMessageBox::error( 0, i18n("Error accessing KDE calendar data.\nMake sure the file\n%1kdecaldump3x\nexists ( x = 3 or 4 ).\nSupported KDE versions are 3.3 and 3.4.\nUsed version should be auto detected.\n").arg( commandpath )); | 1011 | KMessageBox::error( 0, i18n("Error accessing KDE calendar data.\nMake sure the file\n%1kdecaldump3x\nexists ( x = 3 or 4 ).\nSupported KDE versions are 3.3 and 3.4.\nUsed version should be auto detected.\n").arg( commandpath )); |
1012 | return; | 1012 | return; |
1013 | } | 1013 | } |
1014 | } | 1014 | } |
1015 | if ( syncWithFile( fileName,true ) ) { | 1015 | if ( syncWithFile( fileName,true ) ) { |
1016 | if ( mWriteBackFile ) { | 1016 | if ( mWriteBackFile ) { |
1017 | command += " --read"; | 1017 | command += " --read"; |
1018 | system ( command.latin1()); | 1018 | system ( command.latin1()); |
1019 | } | 1019 | } |
1020 | } | 1020 | } |
1021 | 1021 | ||
1022 | } | 1022 | } |
1023 | break; | 1023 | break; |
1024 | case (PWMPI): | 1024 | case (PWMPI): |
1025 | 1025 | ||
1026 | break; | 1026 | break; |
1027 | default: | 1027 | default: |
1028 | qDebug("KSM::slotSyncMenu: invalid apptype selected"); | 1028 | qDebug("KSM::slotSyncMenu: invalid apptype selected"); |
1029 | break; | 1029 | break; |
1030 | 1030 | ||
1031 | } | 1031 | } |
1032 | } | 1032 | } |
1033 | 1033 | ||
1034 | void KSyncManager::syncSharp() | 1034 | void KSyncManager::syncSharp() |
1035 | { | 1035 | { |
1036 | 1036 | ||
1037 | if ( ! syncExternalApplication("sharp") ) | 1037 | if ( ! syncExternalApplication("sharp") ) |
1038 | qDebug("KSM::ERROR sync sharp "); | 1038 | qDebug("KSM::ERROR sync sharp "); |
1039 | } | 1039 | } |
1040 | 1040 | ||
1041 | bool KSyncManager::syncExternalApplication(QString resource) | 1041 | bool KSyncManager::syncExternalApplication(QString resource) |
1042 | { | 1042 | { |
1043 | 1043 | ||
1044 | emit save(); | 1044 | emit save(); |
1045 | 1045 | ||
1046 | if ( mAskForPreferences ) | 1046 | if ( mAskForPreferences ) |
1047 | if ( !edit_sync_options()) { | 1047 | if ( !edit_sync_options()) { |
1048 | mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); | 1048 | mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); |
1049 | return false; | 1049 | return false; |
1050 | } | 1050 | } |
1051 | 1051 | ||
1052 | qDebug("KSM::Sync extern %s", resource.latin1()); | 1052 | qDebug("KSM::Sync extern %s", resource.latin1()); |
1053 | 1053 | ||
1054 | bool syncOK = mImplementation->syncExternal(this, resource); | 1054 | bool syncOK = mImplementation->syncExternal(this, resource); |
1055 | 1055 | ||
1056 | return syncOK; | 1056 | return syncOK; |
1057 | 1057 | ||
1058 | } | 1058 | } |
1059 | 1059 | ||
1060 | void KSyncManager::syncPhone() | 1060 | void KSyncManager::syncPhone() |
1061 | { | 1061 | { |
1062 | 1062 | ||
1063 | syncExternalApplication("phone"); | 1063 | syncExternalApplication("phone"); |
1064 | 1064 | ||
1065 | } | 1065 | } |
1066 | 1066 | ||
1067 | void KSyncManager::showProgressBar(int percentage, QString caption, int total) | 1067 | void KSyncManager::showProgressBar(int percentage, QString caption, int total) |
1068 | { | 1068 | { |
1069 | if (!bar->isVisible()) | 1069 | if (!bar->isVisible()) |
1070 | { | 1070 | { |
1071 | int w = 300; | 1071 | int w = 300; |
1072 | if ( QApplication::desktop()->width() < 320 ) | 1072 | if ( QApplication::desktop()->width() < 320 ) |
1073 | w = 220; | 1073 | w = 220; |
1074 | int h = bar->sizeHint().height() ; | 1074 | int h = bar->sizeHint().height() ; |
1075 | int dw = QApplication::desktop()->width(); | 1075 | int dw = QApplication::desktop()->width(); |
1076 | int dh = QApplication::desktop()->height(); | 1076 | int dh = QApplication::desktop()->height(); |
1077 | bar->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 1077 | bar->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
1078 | bar->setCaption (caption); | 1078 | bar->setCaption (caption); |
1079 | bar->setTotalSteps ( total ) ; | 1079 | bar->setTotalSteps ( total ) ; |
1080 | bar->show(); | 1080 | bar->show(); |
1081 | } | 1081 | } |
1082 | bar->raise(); | 1082 | bar->raise(); |
1083 | bar->setProgress( percentage ); | 1083 | bar->setProgress( percentage ); |
1084 | qApp->processEvents(); | 1084 | qApp->processEvents(); |
1085 | } | 1085 | } |
1086 | 1086 | ||
1087 | void KSyncManager::hideProgressBar() | 1087 | void KSyncManager::hideProgressBar() |
1088 | { | 1088 | { |
1089 | bar->hide(); | 1089 | bar->hide(); |
1090 | qApp->processEvents(); | 1090 | qApp->processEvents(); |
1091 | } | 1091 | } |
1092 | 1092 | ||
1093 | bool KSyncManager::isProgressBarCanceled() | 1093 | bool KSyncManager::isProgressBarCanceled() |
1094 | { | 1094 | { |
1095 | return !bar->isVisible(); | 1095 | return !bar->isVisible(); |
1096 | } | 1096 | } |
1097 | 1097 | ||
1098 | QString KSyncManager::syncFileName() | 1098 | QString KSyncManager::syncFileName() |
1099 | { | 1099 | { |
1100 | 1100 | ||
1101 | QString fn = "tempfile"; | 1101 | QString fn = "tempfile"; |
1102 | switch(mTargetApp) | 1102 | switch(mTargetApp) |
1103 | { | 1103 | { |
1104 | case (KAPI): | 1104 | case (KAPI): |
1105 | fn = "tempsyncab.vcf"; | 1105 | fn = "tempsyncab.vcf"; |
1106 | break; | 1106 | break; |
1107 | case (KOPI): | 1107 | case (KOPI): |
1108 | fn = "tempsynccal.ics"; | 1108 | fn = "tempsynccal.ics"; |
1109 | break; | 1109 | break; |
1110 | case (PWMPI): | 1110 | case (PWMPI): |
1111 | fn = "tempsyncpw.pwm"; | 1111 | fn = "tempsyncpw.pwm"; |
1112 | break; | 1112 | break; |
1113 | default: | 1113 | default: |
1114 | break; | 1114 | break; |
1115 | } | 1115 | } |
1116 | #ifdef DESKTOP_VERSION | 1116 | #ifdef DESKTOP_VERSION |
1117 | return locateLocal( "tmp", fn ); | 1117 | return locateLocal( "tmp", fn ); |
1118 | #else | 1118 | #else |
1119 | return (QString( "/tmp/" )+ fn ); | 1119 | return (QString( "/tmp/" )+ fn ); |
1120 | #endif | 1120 | #endif |
1121 | } | 1121 | } |
1122 | 1122 | ||
1123 | void KSyncManager::syncPi() | 1123 | void KSyncManager::syncPi() |
1124 | { | 1124 | { |
1125 | mIsKapiFile = true; | 1125 | mIsKapiFile = true; |
1126 | mPisyncFinished = false; | 1126 | mPisyncFinished = false; |
1127 | qApp->processEvents(); | 1127 | qApp->processEvents(); |
1128 | if ( mAskForPreferences ) | 1128 | if ( mAskForPreferences ) |
1129 | if ( !edit_pisync_options()) { | 1129 | if ( !edit_pisync_options()) { |
1130 | mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); | 1130 | mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); |
1131 | mPisyncFinished = true; | 1131 | mPisyncFinished = true; |
1132 | return; | 1132 | return; |
1133 | } | 1133 | } |
1134 | bool ok; | 1134 | bool ok; |
1135 | Q_UINT16 port = mActiveSyncPort.toUInt(&ok); | 1135 | Q_UINT16 port = mActiveSyncPort.toUInt(&ok); |
1136 | if ( ! ok ) { | 1136 | if ( ! ok ) { |
1137 | mParent->topLevelWidget()->setCaption( i18n("Sorry, no valid port.Syncing cancelled.") ); | 1137 | mParent->topLevelWidget()->setCaption( i18n("Sorry, no valid port.Syncing cancelled.") ); |
1138 | mPisyncFinished = true; | 1138 | mPisyncFinished = true; |
1139 | return; | 1139 | return; |
1140 | } | 1140 | } |
1141 | mCurrentResourceLocal = ""; | 1141 | mCurrentResourceLocal = ""; |
1142 | mCurrentResourceRemote = ""; | 1142 | mCurrentResourceRemote = ""; |
1143 | if ( mSpecificResources.count() ) { | 1143 | if ( mSpecificResources.count() ) { |
1144 | int lastSyncRes = mSpecificResources.count()/2; | 1144 | int lastSyncRes = mSpecificResources.count()/2; |
1145 | int ccc = mSpecificResources.count()-1; | 1145 | int ccc = mSpecificResources.count()-1; |
1146 | while ( lastSyncRes > 0 && ccc > 0 && mSpecificResources[ ccc ].isEmpty() ) { | 1146 | while ( lastSyncRes > 0 && ccc > 0 && mSpecificResources[ ccc ].isEmpty() ) { |
1147 | --ccc; | 1147 | --ccc; |
1148 | --lastSyncRes; | 1148 | --lastSyncRes; |
1149 | //qDebug ( "KSM: sync pi %d",ccc ); | 1149 | //qDebug ( "KSM: sync pi %d",ccc ); |
1150 | } | 1150 | } |
1151 | int startLocal = 0; | 1151 | int startLocal = 0; |
1152 | int startRemote = mSpecificResources.count()/2; | 1152 | int startRemote = mSpecificResources.count()/2; |
1153 | emit multiResourceSyncStart( true ); | 1153 | emit multiResourceSyncStart( true ); |
1154 | while ( startLocal < mSpecificResources.count()/2 ) { | 1154 | while ( startLocal < mSpecificResources.count()/2 ) { |
1155 | if ( startLocal+1 >= lastSyncRes ) | 1155 | if ( startLocal+1 >= lastSyncRes ) |
1156 | emit multiResourceSyncStart( false ); | 1156 | emit multiResourceSyncStart( false ); |
1157 | mPisyncFinished = false; | 1157 | mPisyncFinished = false; |
1158 | mCurrentResourceLocal = mSpecificResources[ startLocal ]; | 1158 | mCurrentResourceLocal = mSpecificResources[ startLocal ]; |
1159 | mCurrentResourceRemote = mSpecificResources[ startRemote ]; | 1159 | mCurrentResourceRemote = mSpecificResources[ startRemote ]; |
1160 | //qDebug ( "KSM: AAASyncing resources: Local: %s --- Remote: %s ",mCurrentResourceLocal.latin1(), mCurrentResourceRemote.latin1() ); | 1160 | //qDebug ( "KSM: AAASyncing resources: Local: %s --- Remote: %s ",mCurrentResourceLocal.latin1(), mCurrentResourceRemote.latin1() ); |
1161 | if ( !mCurrentResourceRemote.isEmpty() ) { | 1161 | if ( !mCurrentResourceRemote.isEmpty() ) { |
1162 | qDebug ( "KSM: Syncing resources: Local: %s --- Remote: %s ",mCurrentResourceLocal.latin1(), mCurrentResourceRemote.latin1() ); | 1162 | qDebug ( "KSM: Syncing resources: Local: %s --- Remote: %s ",mCurrentResourceLocal.latin1(), mCurrentResourceRemote.latin1() ); |
1163 | 1163 | ||
1164 | KCommandSocket* commandSocket = new KCommandSocket( mCurrentResourceRemote, mPassWordPiSync, port, mActiveSyncIP, this, mParent->topLevelWidget() ); | 1164 | KCommandSocket* commandSocket = new KCommandSocket( mCurrentResourceRemote, mPassWordPiSync, port, mActiveSyncIP, this, mParent->topLevelWidget() ); |
1165 | connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int )), this, SLOT(deleteCommandSocket(KCommandSocket*, int)) ); | 1165 | connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int )), this, SLOT(deleteCommandSocket(KCommandSocket*, int)) ); |
1166 | commandSocket->readFile( syncFileName() ); | 1166 | commandSocket->readFile( syncFileName() ); |
1167 | mParent->topLevelWidget()->setCaption( i18n("Syncing %1 <-> %2").arg( mCurrentResourceLocal ).arg( mCurrentResourceRemote ) ); | 1167 | mParent->topLevelWidget()->setCaption( i18n("Syncing %1 <-> %2").arg( mCurrentResourceLocal ).arg( mCurrentResourceRemote ) ); |
1168 | while ( !mPisyncFinished ) { | 1168 | while ( !mPisyncFinished ) { |
1169 | //qDebug("waiting "); | 1169 | //qDebug("waiting "); |
1170 | qApp->processEvents(); | 1170 | qApp->processEvents(); |
1171 | } | 1171 | } |
1172 | if ( startLocal+1 < mSpecificResources.count()/2 ) { | 1172 | if ( startLocal+1 < mSpecificResources.count()/2 ) { |
1173 | mParent->topLevelWidget()->setCaption( i18n("Waiting 2 secs before syncing next resource...") ); | 1173 | mParent->topLevelWidget()->setCaption( i18n("Waiting 2 secs before syncing next resource...") ); |
1174 | QTime timer; | 1174 | QTime timer; |
1175 | timer.start(); | 1175 | timer.start(); |
1176 | while ( timer.elapsed () < 2000 ) { | 1176 | while ( timer.elapsed () < 2000 ) { |
1177 | qApp->processEvents(); | 1177 | qApp->processEvents(); |
1178 | } | 1178 | } |
1179 | } | 1179 | } |
1180 | } | 1180 | } |
1181 | ++startRemote; | 1181 | ++startRemote; |
1182 | ++startLocal; | 1182 | ++startLocal; |
1183 | 1183 | mAskForPreferences = false; | |
1184 | } | 1184 | } |
1185 | mPisyncFinished = true; | 1185 | mPisyncFinished = true; |
1186 | } else { | 1186 | } else { |
1187 | KCommandSocket* commandSocket = new KCommandSocket( "", mPassWordPiSync, port, mActiveSyncIP, this, mParent->topLevelWidget() ); | 1187 | KCommandSocket* commandSocket = new KCommandSocket( "", mPassWordPiSync, port, mActiveSyncIP, this, mParent->topLevelWidget() ); |
1188 | connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int )), this, SLOT(deleteCommandSocket(KCommandSocket*, int)) ); | 1188 | connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int )), this, SLOT(deleteCommandSocket(KCommandSocket*, int)) ); |
1189 | commandSocket->readFile( syncFileName() ); | 1189 | commandSocket->readFile( syncFileName() ); |
1190 | } | 1190 | } |
1191 | } | 1191 | } |
1192 | 1192 | ||
1193 | void KSyncManager::deleteCommandSocket(KCommandSocket*s, int state) | 1193 | void KSyncManager::deleteCommandSocket(KCommandSocket*s, int state) |
1194 | { | 1194 | { |
1195 | //enum { success, errorW, errorR, quiet }; | 1195 | //enum { success, errorW, errorR, quiet }; |
1196 | 1196 | ||
1197 | 1197 | ||
1198 | 1198 | ||
1199 | if ( state == KCommandSocket::errorR ||state == KCommandSocket::errorTO ||state == KCommandSocket::errorPW || | 1199 | if ( state == KCommandSocket::errorR ||state == KCommandSocket::errorTO ||state == KCommandSocket::errorPW || |
1200 | state == KCommandSocket::errorCA ||state == KCommandSocket::errorFI ||state == KCommandSocket::errorUN||state == KCommandSocket::errorED ) { | 1200 | state == KCommandSocket::errorCA ||state == KCommandSocket::errorFI ||state == KCommandSocket::errorUN||state == KCommandSocket::errorED ) { |
1201 | if ( state == KCommandSocket::errorPW ) | 1201 | if ( state == KCommandSocket::errorPW ) |
1202 | mParent->topLevelWidget()->setCaption( i18n("Wrong password: Receiving remote file failed.") ); | 1202 | mParent->topLevelWidget()->setCaption( i18n("Wrong password: Receiving remote file failed.") ); |
1203 | else if ( state == KCommandSocket::errorR ||state == KCommandSocket::errorTO ) | 1203 | else if ( state == KCommandSocket::errorR ||state == KCommandSocket::errorTO ) |
1204 | mParent->topLevelWidget()->setCaption( i18n("ERROR: Receiving remote file failed.") ); | 1204 | mParent->topLevelWidget()->setCaption( i18n("ERROR: Receiving remote file failed.") ); |
1205 | else if ( state == KCommandSocket::errorCA ) | 1205 | else if ( state == KCommandSocket::errorCA ) |
1206 | mParent->topLevelWidget()->setCaption( i18n("Sync cancelled from remote.") ); | 1206 | mParent->topLevelWidget()->setCaption( i18n("Sync cancelled from remote.") ); |
1207 | else if ( state == KCommandSocket::errorFI ) | 1207 | else if ( state == KCommandSocket::errorFI ) |
1208 | mParent->topLevelWidget()->setCaption( i18n("File error on remote.") ); | 1208 | mParent->topLevelWidget()->setCaption( i18n("File error on remote.") ); |
1209 | else if ( state == KCommandSocket::errorED ) | 1209 | else if ( state == KCommandSocket::errorED ) |
1210 | mParent->topLevelWidget()->setCaption( i18n("Please close error dialog on remote.") ); | 1210 | mParent->topLevelWidget()->setCaption( i18n("Please close error dialog on remote.") ); |
1211 | else if ( state == KCommandSocket::errorUN ) | 1211 | else if ( state == KCommandSocket::errorUN ) |
1212 | mParent->topLevelWidget()->setCaption( i18n("Unknown error on remote.") ); | 1212 | mParent->topLevelWidget()->setCaption( i18n("Unknown error on remote.") ); |
1213 | delete s; | 1213 | delete s; |
1214 | if ( state == KCommandSocket::errorR ) { | 1214 | if ( state == KCommandSocket::errorR ) { |
1215 | KCommandSocket* commandSocket = new KCommandSocket( "",mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this, mParent->topLevelWidget()); | 1215 | KCommandSocket* commandSocket = new KCommandSocket( "",mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this, mParent->topLevelWidget()); |
1216 | connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) ); | 1216 | connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) ); |
1217 | commandSocket->sendStop(); | 1217 | commandSocket->sendStop(); |
1218 | } | 1218 | } |
1219 | mPisyncFinished = true; | 1219 | mPisyncFinished = true; |
1220 | return; | 1220 | return; |
1221 | 1221 | ||
1222 | } else if ( state == KCommandSocket::errorW ) { | 1222 | } else if ( state == KCommandSocket::errorW ) { |
1223 | mParent->topLevelWidget()->setCaption( i18n("ERROR:Writing back file failed.") ); | 1223 | mParent->topLevelWidget()->setCaption( i18n("ERROR:Writing back file failed.") ); |
1224 | mPisyncFinished = true; | 1224 | mPisyncFinished = true; |
1225 | 1225 | ||
1226 | } else if ( state == KCommandSocket::successR ) { | 1226 | } else if ( state == KCommandSocket::successR ) { |
1227 | QTimer::singleShot( 1, this , SLOT ( readFileFromSocket())); | 1227 | QTimer::singleShot( 1, this , SLOT ( readFileFromSocket())); |
1228 | 1228 | ||
1229 | } else if ( state == KCommandSocket::successW ) { | 1229 | } else if ( state == KCommandSocket::successW ) { |
1230 | mParent->topLevelWidget()->setCaption( i18n("Pi-Sync successful!") ); | 1230 | mParent->topLevelWidget()->setCaption( i18n("Pi-Sync successful!") ); |
1231 | mPisyncFinished = true; | 1231 | mPisyncFinished = true; |
1232 | } else if ( state == KCommandSocket::quiet ){ | 1232 | } else if ( state == KCommandSocket::quiet ){ |
1233 | qDebug("KSS: quiet "); | 1233 | qDebug("KSS: quiet "); |
1234 | mPisyncFinished = true; | 1234 | mPisyncFinished = true; |
1235 | } else { | 1235 | } else { |
1236 | qDebug("KSS: Error: unknown state: %d ", state); | 1236 | qDebug("KSS: Error: unknown state: %d ", state); |
1237 | mPisyncFinished = true; | 1237 | mPisyncFinished = true; |
1238 | } | 1238 | } |
1239 | 1239 | ||
1240 | delete s; | 1240 | delete s; |
1241 | } | 1241 | } |
1242 | 1242 | ||
1243 | void KSyncManager::readFileFromSocket() | 1243 | void KSyncManager::readFileFromSocket() |
1244 | { | 1244 | { |
1245 | QString fileName = syncFileName(); | 1245 | QString fileName = syncFileName(); |
1246 | bool syncOK = true; | 1246 | bool syncOK = true; |
1247 | mParent->topLevelWidget()->setCaption( i18n("Remote file saved to temp file.") ); | 1247 | mParent->topLevelWidget()->setCaption( i18n("Remote file saved to temp file.") ); |
1248 | if ( ! syncWithFile( fileName , true ) ) { | 1248 | if ( ! syncWithFile( fileName , true ) ) { |
1249 | mParent->topLevelWidget()->setCaption( i18n("Syncing failed.") ); | 1249 | mParent->topLevelWidget()->setCaption( i18n("Syncing failed.") ); |
1250 | syncOK = false; | 1250 | syncOK = false; |
1251 | } | 1251 | } |
1252 | KCommandSocket* commandSocket = new KCommandSocket( mCurrentResourceRemote,mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this, mParent->topLevelWidget() ); | 1252 | KCommandSocket* commandSocket = new KCommandSocket( mCurrentResourceRemote,mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this, mParent->topLevelWidget() ); |
1253 | connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) ); | 1253 | connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) ); |
1254 | if ( mWriteBackFile && syncOK ) { | 1254 | if ( mWriteBackFile && syncOK ) { |
1255 | mParent->topLevelWidget()->setCaption( i18n("Sending back file ...") ); | 1255 | mParent->topLevelWidget()->setCaption( i18n("Sending back file ...") ); |
1256 | commandSocket->writeFile( fileName ); | 1256 | commandSocket->writeFile( fileName ); |
1257 | } | 1257 | } |
1258 | else { | 1258 | else { |
1259 | commandSocket->sendStop(); | 1259 | commandSocket->sendStop(); |
1260 | if ( syncOK ) | 1260 | if ( syncOK ) |
1261 | mParent->topLevelWidget()->setCaption( i18n("Pi-Sync succesful!") ); | 1261 | mParent->topLevelWidget()->setCaption( i18n("Pi-Sync succesful!") ); |
1262 | mPisyncFinished = true; | 1262 | mPisyncFinished = true; |
1263 | } | 1263 | } |
1264 | } | 1264 | } |
1265 | 1265 | ||
1266 | KServerSocket:: KServerSocket ( QString pw, Q_UINT16 port, int backlog, QObject * parent, const char * name ) : QServerSocket( port, backlog, parent, name ) | 1266 | KServerSocket:: KServerSocket ( QString pw, Q_UINT16 port, int backlog, QObject * parent, const char * name ) : QServerSocket( port, backlog, parent, name ) |
1267 | { | 1267 | { |
1268 | mPendingConnect = 0; | 1268 | mPendingConnect = 0; |
1269 | mPassWord = pw; | 1269 | mPassWord = pw; |
1270 | mSocket = 0; | 1270 | mSocket = 0; |
1271 | mSyncActionDialog = 0; | 1271 | mSyncActionDialog = 0; |
1272 | blockRC = false; | 1272 | blockRC = false; |
1273 | mErrorMessage = 0; | 1273 | mErrorMessage = 0; |
1274 | } | 1274 | } |
1275 | void KServerSocket::waitForSocketFinish() | 1275 | void KServerSocket::waitForSocketFinish() |
1276 | { | 1276 | { |
1277 | if ( mSocket ) { | 1277 | if ( mSocket ) { |
1278 | //qDebug("KSS:: waiting for finish operation"); | 1278 | //qDebug("KSS:: waiting for finish operation"); |
1279 | QTimer::singleShot( 250, this , SLOT ( waitForSocketFinish())); | 1279 | QTimer::singleShot( 250, this , SLOT ( waitForSocketFinish())); |
1280 | return; | 1280 | return; |
1281 | } | 1281 | } |
1282 | mSocket = new QSocket( this ); | 1282 | mSocket = new QSocket( this ); |
1283 | connect( mSocket , SIGNAL(readyRead()), this, SLOT(readClient()) ); | 1283 | connect( mSocket , SIGNAL(readyRead()), this, SLOT(readClient()) ); |
1284 | connect( mSocket , SIGNAL(delayedCloseFinished()), this, SLOT(discardClient()) ); | 1284 | connect( mSocket , SIGNAL(delayedCloseFinished()), this, SLOT(discardClient()) ); |
1285 | mSocket->setSocket( mPendingConnect ); | 1285 | mSocket->setSocket( mPendingConnect ); |
1286 | mPendingConnect = 0; | 1286 | mPendingConnect = 0; |
1287 | } | 1287 | } |
1288 | void KServerSocket::newConnection ( int socket ) | 1288 | void KServerSocket::newConnection ( int socket ) |
1289 | { | 1289 | { |
1290 | // qDebug("KServerSocket:New connection %d ", socket); | 1290 | // qDebug("KServerSocket:New connection %d ", socket); |
1291 | if ( mPendingConnect ) { | 1291 | if ( mPendingConnect ) { |
1292 | qDebug("KSS::Error : new Connection"); | 1292 | qDebug("KSS::Error : new Connection"); |
1293 | return; | 1293 | return; |
1294 | } | 1294 | } |
1295 | if ( mSocket ) { | 1295 | if ( mSocket ) { |
1296 | mPendingConnect = socket; | 1296 | mPendingConnect = socket; |
1297 | QTimer::singleShot( 250, this , SLOT ( waitForSocketFinish())); | 1297 | QTimer::singleShot( 250, this , SLOT ( waitForSocketFinish())); |
1298 | return; | 1298 | return; |
1299 | qDebug("KSS::newConnection Socket deleted! "); | 1299 | qDebug("KSS::newConnection Socket deleted! "); |
1300 | delete mSocket; | 1300 | delete mSocket; |
1301 | mSocket = 0; | 1301 | mSocket = 0; |
1302 | } | 1302 | } |
1303 | mPendingConnect = 0; | 1303 | mPendingConnect = 0; |
1304 | mSocket = new QSocket( this ); | 1304 | mSocket = new QSocket( this ); |
1305 | connect( mSocket , SIGNAL(readyRead()), this, SLOT(readClient()) ); | 1305 | connect( mSocket , SIGNAL(readyRead()), this, SLOT(readClient()) ); |
1306 | connect( mSocket , SIGNAL(delayedCloseFinished()), this, SLOT(discardClient()) ); | 1306 | connect( mSocket , SIGNAL(delayedCloseFinished()), this, SLOT(discardClient()) ); |
1307 | mSocket->setSocket( socket ); | 1307 | mSocket->setSocket( socket ); |
1308 | } | 1308 | } |
1309 | 1309 | ||
1310 | void KServerSocket::discardClient() | 1310 | void KServerSocket::discardClient() |
1311 | { | 1311 | { |
1312 | QTimer::singleShot( 10, this , SLOT ( deleteSocket())); | 1312 | QTimer::singleShot( 10, this , SLOT ( deleteSocket())); |
1313 | } | 1313 | } |
1314 | void KServerSocket::deleteSocket() | 1314 | void KServerSocket::deleteSocket() |
1315 | { | 1315 | { |
1316 | qDebug("KSS::deleteSocket"); | 1316 | qDebug("KSS::deleteSocket"); |
1317 | if ( mSocket ) { | 1317 | if ( mSocket ) { |
1318 | delete mSocket; | 1318 | delete mSocket; |
1319 | mSocket = 0; | 1319 | mSocket = 0; |
1320 | } | 1320 | } |
1321 | if ( mErrorMessage ) | 1321 | if ( mErrorMessage ) |
1322 | QTimer::singleShot( 10, this , SLOT ( displayErrorMessage())); | 1322 | QTimer::singleShot( 10, this , SLOT ( displayErrorMessage())); |
1323 | } | 1323 | } |
1324 | void KServerSocket::readClient() | 1324 | void KServerSocket::readClient() |
1325 | { | 1325 | { |
1326 | if ( blockRC ) | 1326 | if ( blockRC ) |
1327 | return; | 1327 | return; |
1328 | if ( mSocket == 0 ) { | 1328 | if ( mSocket == 0 ) { |
1329 | qDebug("ERROR::KSS::readClient(): mSocket == 0 "); | 1329 | qDebug("ERROR::KSS::readClient(): mSocket == 0 "); |
1330 | return; | 1330 | return; |
1331 | } | 1331 | } |
1332 | if ( mErrorMessage ) { | 1332 | if ( mErrorMessage ) { |
1333 | mErrorMessage = 999; | 1333 | mErrorMessage = 999; |
1334 | error_connect("ERROR_ED\r\n\r\n"); | 1334 | error_connect("ERROR_ED\r\n\r\n"); |
1335 | return; | 1335 | return; |
1336 | } | 1336 | } |
1337 | mResource = ""; | 1337 | mResource = ""; |
1338 | mErrorMessage = 0; | 1338 | mErrorMessage = 0; |
1339 | //qDebug("KServerSocket::readClient()"); | 1339 | //qDebug("KServerSocket::readClient()"); |
1340 | if ( mSocket->canReadLine() ) { | 1340 | if ( mSocket->canReadLine() ) { |
1341 | QString line = mSocket->readLine(); | 1341 | QString line = mSocket->readLine(); |
1342 | //qDebug("KServerSocket readline: %s ", line.latin1()); | 1342 | //qDebug("KServerSocket readline: %s ", line.latin1()); |
1343 | QStringList tokens = QStringList::split( QRegExp("[ \r\n][ \r\n]*"), line ); | 1343 | QStringList tokens = QStringList::split( QRegExp("[ \r\n][ \r\n]*"), line ); |
1344 | if ( tokens[0] == "GET" ) { | 1344 | if ( tokens[0] == "GET" ) { |
1345 | if ( tokens[1] == mPassWord ) { | 1345 | if ( tokens[1] == mPassWord ) { |
1346 | //emit sendFile( mSocket ); | 1346 | //emit sendFile( mSocket ); |
1347 | bool ok = false; | 1347 | bool ok = false; |
1348 | QDateTime dt = KGlobal::locale()->readDateTime( tokens[2], KLocale::ISODate, &ok); | 1348 | QDateTime dt = KGlobal::locale()->readDateTime( tokens[2], KLocale::ISODate, &ok); |
1349 | if ( ok ) { | 1349 | if ( ok ) { |
1350 | KSyncManager::mRequestedSyncEvent = dt; | 1350 | KSyncManager::mRequestedSyncEvent = dt; |
1351 | } | 1351 | } |
1352 | else | 1352 | else |
1353 | KSyncManager::mRequestedSyncEvent = QDateTime(); | 1353 | KSyncManager::mRequestedSyncEvent = QDateTime(); |
1354 | mResource =tokens[3]; | 1354 | mResource =tokens[3]; |
1355 | send_file(); | 1355 | send_file(); |
1356 | } | 1356 | } |
1357 | else { | 1357 | else { |
1358 | mErrorMessage = 1; | 1358 | mErrorMessage = 1; |
1359 | error_connect("ERROR_PW\r\n\r\n"); | 1359 | error_connect("ERROR_PW\r\n\r\n"); |
1360 | } | 1360 | } |
1361 | } | 1361 | } |
1362 | if ( tokens[0] == "PUT" ) { | 1362 | if ( tokens[0] == "PUT" ) { |
1363 | if ( tokens[1] == mPassWord ) { | 1363 | if ( tokens[1] == mPassWord ) { |
1364 | //emit getFile( mSocket ); | 1364 | //emit getFile( mSocket ); |
1365 | blockRC = true; | 1365 | blockRC = true; |
1366 | mResource =tokens[2]; | 1366 | mResource =tokens[2]; |
1367 | get_file(); | 1367 | get_file(); |
1368 | } | 1368 | } |
1369 | else { | 1369 | else { |
1370 | mErrorMessage = 2; | 1370 | mErrorMessage = 2; |
1371 | error_connect("ERROR_PW\r\n\r\n"); | 1371 | error_connect("ERROR_PW\r\n\r\n"); |
1372 | end_connect(); | 1372 | end_connect(); |
1373 | } | 1373 | } |
1374 | } | 1374 | } |
1375 | if ( tokens[0] == "STOP" ) { | 1375 | if ( tokens[0] == "STOP" ) { |
1376 | //emit endConnect(); | 1376 | //emit endConnect(); |
1377 | end_connect(); | 1377 | end_connect(); |
1378 | } | 1378 | } |
1379 | } | 1379 | } |
1380 | } | 1380 | } |
1381 | void KServerSocket::displayErrorMessage() | 1381 | void KServerSocket::displayErrorMessage() |
1382 | { | 1382 | { |
1383 | if ( mErrorMessage == 1 ) { | 1383 | if ( mErrorMessage == 1 ) { |
1384 | KMessageBox::error( 0, i18n("Got send file request\nwith invalid password"), i18n("Pi-Sync Error")); | 1384 | KMessageBox::error( 0, i18n("Got send file request\nwith invalid password"), i18n("Pi-Sync Error")); |
1385 | mErrorMessage = 0; | 1385 | mErrorMessage = 0; |
1386 | } | 1386 | } |
1387 | else if ( mErrorMessage == 2 ) { | 1387 | else if ( mErrorMessage == 2 ) { |
1388 | KMessageBox::error( 0, i18n("Got receive file request\nwith invalid password"), i18n("Pi-Sync Error")); | 1388 | KMessageBox::error( 0, i18n("Got receive file request\nwith invalid password"), i18n("Pi-Sync Error")); |
1389 | mErrorMessage = 0; | 1389 | mErrorMessage = 0; |
1390 | } | 1390 | } |
1391 | } | 1391 | } |
1392 | void KServerSocket::error_connect( QString errmess ) | 1392 | void KServerSocket::error_connect( QString errmess ) |
1393 | { | 1393 | { |
1394 | QTextStream os( mSocket ); | 1394 | QTextStream os( mSocket ); |
1395 | os.setEncoding( QTextStream::Latin1 ); | 1395 | os.setEncoding( QTextStream::Latin1 ); |
1396 | os << errmess ; | 1396 | os << errmess ; |
1397 | mSocket->close(); | 1397 | mSocket->close(); |
1398 | if ( mSocket->state() == QSocket::Idle ) { | 1398 | if ( mSocket->state() == QSocket::Idle ) { |
1399 | QTimer::singleShot( 0, this , SLOT ( discardClient())); | 1399 | QTimer::singleShot( 0, this , SLOT ( discardClient())); |
1400 | } | 1400 | } |
1401 | } | 1401 | } |
1402 | void KServerSocket::end_connect() | 1402 | void KServerSocket::end_connect() |
1403 | { | 1403 | { |
1404 | delete mSyncActionDialog; | 1404 | delete mSyncActionDialog; |
1405 | mSyncActionDialog = 0; | 1405 | mSyncActionDialog = 0; |
1406 | } | 1406 | } |
1407 | void KServerSocket::send_file() | 1407 | void KServerSocket::send_file() |
1408 | { | 1408 | { |
1409 | //qDebug("MainWindow::sendFile(QSocket* s) "); | 1409 | //qDebug("MainWindow::sendFile(QSocket* s) "); |
1410 | if ( mSyncActionDialog ) | 1410 | if ( mSyncActionDialog ) |
1411 | delete mSyncActionDialog; | 1411 | delete mSyncActionDialog; |
1412 | mSyncActionDialog = new QDialog ( 0, "input-dialog", true ); | 1412 | mSyncActionDialog = new QDialog ( 0, "input-dialog", true ); |
1413 | mSyncActionDialog->setCaption(i18n("Received sync request")); | 1413 | mSyncActionDialog->setCaption(i18n("Received sync request")); |
1414 | QLabel* label = new QLabel( i18n("Synchronizing from remote ...\n\nDo not use this application!\n\nIf syncing fails\nyou can close this dialog."), mSyncActionDialog ); | 1414 | QLabel* label = new QLabel( i18n("Synchronizing from remote ...\n\nDo not use this application!\n\nIf syncing fails\nyou can close this dialog."), mSyncActionDialog ); |
1415 | label->setAlignment ( Qt::AlignHCenter ); | 1415 | label->setAlignment ( Qt::AlignHCenter ); |
1416 | QVBoxLayout* lay = new QVBoxLayout( mSyncActionDialog ); | 1416 | QVBoxLayout* lay = new QVBoxLayout( mSyncActionDialog ); |
1417 | lay->addWidget( label); | 1417 | lay->addWidget( label); |
1418 | lay->setMargin(7); | 1418 | lay->setMargin(7); |
1419 | lay->setSpacing(7); | 1419 | lay->setSpacing(7); |
1420 | if ( KSyncManager::mRequestedSyncEvent.isValid() ) { | 1420 | if ( KSyncManager::mRequestedSyncEvent.isValid() ) { |
1421 | int secs = QDateTime::currentDateTime().secsTo( KSyncManager::mRequestedSyncEvent ); | 1421 | int secs = QDateTime::currentDateTime().secsTo( KSyncManager::mRequestedSyncEvent ); |
1422 | //secs = 333; | 1422 | //secs = 333; |
1423 | if ( secs < 0 ) | 1423 | if ( secs < 0 ) |
1424 | secs = secs * (-1); | 1424 | secs = secs * (-1); |
1425 | if ( secs > 30 ) | 1425 | if ( secs > 30 ) |
1426 | //if ( true ) | 1426 | //if ( true ) |
1427 | { | 1427 | { |
1428 | QString warning = i18n("Clock skew of\nsyncing devices\nis %1 seconds!").arg( secs ); | 1428 | QString warning = i18n("Clock skew of\nsyncing devices\nis %1 seconds!").arg( secs ); |
1429 | QLabel* label = new QLabel( warning, mSyncActionDialog ); | 1429 | QLabel* label = new QLabel( warning, mSyncActionDialog ); |
1430 | label->setAlignment ( Qt::AlignHCenter ); | 1430 | label->setAlignment ( Qt::AlignHCenter ); |
1431 | lay->addWidget( label); | 1431 | lay->addWidget( label); |
1432 | if ( secs > 180 ) | 1432 | if ( secs > 180 ) |
1433 | { | 1433 | { |
1434 | if ( secs > 300 ) { | 1434 | if ( secs > 300 ) { |
1435 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(0, i18n("The clocks of the syncing\ndevices have a difference\nof more than 5 minutes.\nPlease adjust your clocks.\nYou may get wrong syncing results!\nPlease confirm synchronization!"), i18n("High clock skew!"),i18n("Synchronize!"))) { | 1435 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(0, i18n("The clocks of the syncing\ndevices have a difference\nof more than 5 minutes.\nPlease adjust your clocks.\nYou may get wrong syncing results!\nPlease confirm synchronization!"), i18n("High clock skew!"),i18n("Synchronize!"))) { |
1436 | qDebug("KSS::Sync cancelled ,cs"); | 1436 | qDebug("KSS::Sync cancelled ,cs"); |
1437 | mErrorMessage = 0; | 1437 | mErrorMessage = 0; |
1438 | end_connect(); | 1438 | end_connect(); |
1439 | error_connect("ERROR_CA\r\n\r\n"); | 1439 | error_connect("ERROR_CA\r\n\r\n"); |
1440 | return ; | 1440 | return ; |
1441 | } | 1441 | } |
1442 | } | 1442 | } |
1443 | QFont f = label->font(); | 1443 | QFont f = label->font(); |
1444 | f.setPointSize ( f.pointSize() *2 ); | 1444 | f.setPointSize ( f.pointSize() *2 ); |
1445 | f. setBold (true ); | 1445 | f. setBold (true ); |
1446 | QLabel* label = new QLabel( warning, mSyncActionDialog ); | 1446 | QLabel* label = new QLabel( warning, mSyncActionDialog ); |
1447 | label->setFont( f ); | 1447 | label->setFont( f ); |
1448 | warning = i18n("ADJUST\nYOUR\nCLOCKS!"); | 1448 | warning = i18n("ADJUST\nYOUR\nCLOCKS!"); |
1449 | label->setText( warning ); | 1449 | label->setText( warning ); |
1450 | label->setAlignment ( Qt::AlignHCenter ); | 1450 | label->setAlignment ( Qt::AlignHCenter ); |
1451 | lay->addWidget( label); | 1451 | lay->addWidget( label); |
1452 | mSyncActionDialog->setFixedSize( 230, 300); | 1452 | mSyncActionDialog->setFixedSize( 230, 300); |
1453 | } else { | 1453 | } else { |
1454 | mSyncActionDialog->setFixedSize( 230, 200); | 1454 | mSyncActionDialog->setFixedSize( 230, 200); |
1455 | } | 1455 | } |
1456 | } else { | 1456 | } else { |
1457 | mSyncActionDialog->setFixedSize( 230, 120); | 1457 | mSyncActionDialog->setFixedSize( 230, 120); |
1458 | } | 1458 | } |
1459 | } else | 1459 | } else |
1460 | mSyncActionDialog->setFixedSize( 230, 120); | 1460 | mSyncActionDialog->setFixedSize( 230, 120); |
1461 | mSyncActionDialog->show(); | 1461 | mSyncActionDialog->show(); |
1462 | mSyncActionDialog->raise(); | 1462 | mSyncActionDialog->raise(); |
1463 | emit request_file(mResource); | 1463 | emit request_file(mResource); |
1464 | emit request_file(); | 1464 | emit request_file(); |
1465 | qApp->processEvents(); | 1465 | qApp->processEvents(); |
1466 | QString fileName = mFileName; | 1466 | QString fileName = mFileName; |
1467 | QFile file( fileName ); | 1467 | QFile file( fileName ); |
1468 | if (!file.open( IO_ReadOnly ) ) { | 1468 | if (!file.open( IO_ReadOnly ) ) { |
1469 | mErrorMessage = 0; | 1469 | mErrorMessage = 0; |
1470 | end_connect(); | 1470 | end_connect(); |
1471 | error_connect("ERROR_FI\r\n\r\n"); | 1471 | error_connect("ERROR_FI\r\n\r\n"); |
1472 | return ; | 1472 | return ; |
1473 | } | 1473 | } |
1474 | mSyncActionDialog->setCaption( i18n("Sending file...") ); | 1474 | mSyncActionDialog->setCaption( i18n("Sending file...") ); |
1475 | QTextStream ts( &file ); | 1475 | QTextStream ts( &file ); |
1476 | ts.setEncoding( QTextStream::Latin1 ); | 1476 | ts.setEncoding( QTextStream::Latin1 ); |
1477 | 1477 | ||
1478 | QTextStream os( mSocket ); | 1478 | QTextStream os( mSocket ); |
1479 | os.setEncoding( QTextStream::Latin1 ); | 1479 | os.setEncoding( QTextStream::Latin1 ); |
1480 | while ( ! ts.atEnd() ) { | 1480 | while ( ! ts.atEnd() ) { |
1481 | os << ts.readLine() << "\r\n"; | 1481 | os << ts.readLine() << "\r\n"; |
1482 | } | 1482 | } |
1483 | os << "\r\n"; | 1483 | os << "\r\n"; |
1484 | //os << ts.read(); | 1484 | //os << ts.read(); |
1485 | file.close(); | 1485 | file.close(); |
1486 | mSyncActionDialog->setCaption( i18n("Waiting for synced file...") ); | 1486 | mSyncActionDialog->setCaption( i18n("Waiting for synced file...") ); |
1487 | mSocket->close(); | 1487 | mSocket->close(); |
1488 | if ( mSocket->state() == QSocket::Idle ) | 1488 | if ( mSocket->state() == QSocket::Idle ) |
1489 | QTimer::singleShot( 10, this , SLOT ( discardClient())); | 1489 | QTimer::singleShot( 10, this , SLOT ( discardClient())); |
1490 | } | 1490 | } |
1491 | void KServerSocket::get_file() | 1491 | void KServerSocket::get_file() |
1492 | { | 1492 | { |
1493 | mSyncActionDialog->setCaption( i18n("Receiving synced file...") ); | 1493 | mSyncActionDialog->setCaption( i18n("Receiving synced file...") ); |
1494 | 1494 | ||
1495 | piTime.start(); | 1495 | piTime.start(); |
1496 | piFileString = ""; | 1496 | piFileString = ""; |
1497 | QTimer::singleShot( 1, this , SLOT (readBackFileFromSocket( ) )); | 1497 | QTimer::singleShot( 1, this , SLOT (readBackFileFromSocket( ) )); |
1498 | } | 1498 | } |
1499 | 1499 | ||
1500 | 1500 | ||
1501 | void KServerSocket::readBackFileFromSocket() | 1501 | void KServerSocket::readBackFileFromSocket() |
1502 | { | 1502 | { |
1503 | //qDebug("readBackFileFromSocket() %d ", piTime.elapsed ()); | 1503 | //qDebug("readBackFileFromSocket() %d ", piTime.elapsed ()); |
1504 | while ( mSocket->canReadLine () ) { | 1504 | while ( mSocket->canReadLine () ) { |
1505 | piTime.restart(); | 1505 | piTime.restart(); |
1506 | QString line = mSocket->readLine (); | 1506 | QString line = mSocket->readLine (); |
1507 | piFileString += line; | 1507 | piFileString += line; |
1508 | //qDebug("readline: %s ", line.latin1()); | 1508 | //qDebug("readline: %s ", line.latin1()); |
1509 | mSyncActionDialog->setCaption( i18n("Received %1 bytes").arg( piFileString.length() ) ); | 1509 | mSyncActionDialog->setCaption( i18n("Received %1 bytes").arg( piFileString.length() ) ); |
1510 | 1510 | ||
1511 | } | 1511 | } |
1512 | if ( piTime.elapsed () < 3000 ) { | 1512 | if ( piTime.elapsed () < 3000 ) { |
1513 | // wait for more | 1513 | // wait for more |
1514 | //qDebug("waitformore "); | 1514 | //qDebug("waitformore "); |
1515 | QTimer::singleShot( 100, this , SLOT (readBackFileFromSocket( ) )); | 1515 | QTimer::singleShot( 100, this , SLOT (readBackFileFromSocket( ) )); |
1516 | return; | 1516 | return; |
1517 | } | 1517 | } |
1518 | QString fileName = mFileName; | 1518 | QString fileName = mFileName; |
1519 | QFile file ( fileName ); | 1519 | QFile file ( fileName ); |
1520 | if (!file.open( IO_WriteOnly ) ) { | 1520 | if (!file.open( IO_WriteOnly ) ) { |
1521 | delete mSyncActionDialog; | 1521 | delete mSyncActionDialog; |
1522 | mSyncActionDialog = 0; | 1522 | mSyncActionDialog = 0; |
1523 | qDebug("KSS:Error open read back file "); | 1523 | qDebug("KSS:Error open read back file "); |
1524 | piFileString = ""; | 1524 | piFileString = ""; |
1525 | emit file_received( false, mResource); | 1525 | emit file_received( false, mResource); |
1526 | emit file_received( false); | 1526 | emit file_received( false); |
1527 | blockRC = false; | 1527 | blockRC = false; |
1528 | return ; | 1528 | return ; |
1529 | 1529 | ||
1530 | } | 1530 | } |
1531 | 1531 | ||
1532 | // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1)); | 1532 | // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1)); |
1533 | QTextStream ts ( &file ); | 1533 | QTextStream ts ( &file ); |
1534 | ts.setEncoding( QTextStream::Latin1 ); | 1534 | ts.setEncoding( QTextStream::Latin1 ); |
1535 | mSyncActionDialog->setCaption( i18n("Writing file to disk...") ); | 1535 | mSyncActionDialog->setCaption( i18n("Writing file to disk...") ); |
1536 | ts << piFileString; | 1536 | ts << piFileString; |
1537 | mSocket->close(); | 1537 | mSocket->close(); |
1538 | if ( mSocket->state() == QSocket::Idle ) | 1538 | if ( mSocket->state() == QSocket::Idle ) |
1539 | QTimer::singleShot( 10, this , SLOT ( discardClient())); | 1539 | QTimer::singleShot( 10, this , SLOT ( discardClient())); |
1540 | file.close(); | 1540 | file.close(); |
1541 | piFileString = ""; | 1541 | piFileString = ""; |
1542 | emit file_received( true, mResource ); | 1542 | emit file_received( true, mResource ); |
1543 | emit file_received( true); | 1543 | emit file_received( true); |
1544 | delete mSyncActionDialog; | 1544 | delete mSyncActionDialog; |
1545 | mSyncActionDialog = 0; | 1545 | mSyncActionDialog = 0; |
1546 | blockRC = false; | 1546 | blockRC = false; |
1547 | 1547 | ||
1548 | } | 1548 | } |
1549 | 1549 | ||
1550 | KCommandSocket::KCommandSocket ( QString remres, QString password, Q_UINT16 port, QString host, QObject * parent, QWidget * cap, const char * name ): QObject( parent, name ) | 1550 | KCommandSocket::KCommandSocket ( QString remres, QString password, Q_UINT16 port, QString host, QObject * parent, QWidget * cap, const char * name ): QObject( parent, name ) |
1551 | { | 1551 | { |
1552 | mRemoteResource = remres; | 1552 | mRemoteResource = remres; |
1553 | if ( mRemoteResource.isEmpty() ) | 1553 | if ( mRemoteResource.isEmpty() ) |
1554 | mRemoteResource = "ALL"; | 1554 | mRemoteResource = "ALL"; |
1555 | else | 1555 | else |
1556 | mRemoteResource.replace (QRegExp (" "),"_" ); | 1556 | mRemoteResource.replace (QRegExp (" "),"_" ); |
1557 | mPassWord = password; | 1557 | mPassWord = password; |
1558 | mSocket = 0; | 1558 | mSocket = 0; |
1559 | mFirst = false; | 1559 | mFirst = false; |
1560 | mFirstLine = true; | 1560 | mFirstLine = true; |
1561 | mPort = port; | 1561 | mPort = port; |
1562 | mHost = host; | 1562 | mHost = host; |
1563 | tlw = cap; | 1563 | tlw = cap; |
1564 | mRetVal = quiet; | 1564 | mRetVal = quiet; |
1565 | mTimerSocket = new QTimer ( this ); | 1565 | mTimerSocket = new QTimer ( this ); |
1566 | connect( mTimerSocket, SIGNAL ( timeout () ), this, SLOT ( updateConnectDialog() ) ); | 1566 | connect( mTimerSocket, SIGNAL ( timeout () ), this, SLOT ( updateConnectDialog() ) ); |
1567 | mConnectProgress.setCaption( i18n("Pi-Sync") ); | 1567 | mConnectProgress.setCaption( i18n("Pi-Sync") ); |
1568 | connect( &mConnectProgress, SIGNAL ( cancelled () ), this, SLOT ( deleteSocket() ) ); | 1568 | connect( &mConnectProgress, SIGNAL ( cancelled () ), this, SLOT ( deleteSocket() ) ); |
1569 | mConnectCount = -1; | 1569 | mConnectCount = -1; |
1570 | } | 1570 | } |
1571 | void KCommandSocket::sendFileRequest() | 1571 | void KCommandSocket::sendFileRequest() |
1572 | { | 1572 | { |
1573 | if ( tlw ) | 1573 | if ( tlw ) |
1574 | tlw->setCaption( i18n("Connected! Sending request for remote file ...") ); | 1574 | tlw->setCaption( i18n("Connected! Sending request for remote file ...") ); |
1575 | mConnectProgress.hide(); | 1575 | mConnectProgress.hide(); |
1576 | mConnectCount = 300;mConnectMax = 300; | 1576 | mConnectCount = 300;mConnectMax = 300; |
1577 | mConnectProgress.setCaption( i18n("Pi-Sync: Connected!") ); | 1577 | mConnectProgress.setCaption( i18n("Pi-Sync: Connected!") ); |
1578 | mConnectProgress.setLabelText( i18n("Waiting for remote file...") ); | 1578 | mConnectProgress.setLabelText( i18n("Waiting for remote file...") ); |
1579 | mTimerSocket->start( 100, true ); | 1579 | mTimerSocket->start( 100, true ); |
1580 | QTextStream os( mSocket ); | 1580 | QTextStream os( mSocket ); |
1581 | os.setEncoding( QTextStream::Latin1 ); | 1581 | os.setEncoding( QTextStream::Latin1 ); |
1582 | 1582 | ||
1583 | QString curDt = " " +KGlobal::locale()->formatDateTime(QDateTime::currentDateTime().addSecs(-1),true, true,KLocale::ISODate ); | 1583 | QString curDt = " " +KGlobal::locale()->formatDateTime(QDateTime::currentDateTime().addSecs(-1),true, true,KLocale::ISODate ); |
1584 | os << "GET " << mPassWord << curDt << " " << mRemoteResource << "\r\n\r\n"; | 1584 | os << "GET " << mPassWord << curDt << " " << mRemoteResource << "\r\n\r\n"; |
1585 | } | 1585 | } |
1586 | 1586 | ||
1587 | void KCommandSocket::readFile( QString fn ) | 1587 | void KCommandSocket::readFile( QString fn ) |
1588 | { | 1588 | { |
1589 | if ( !mSocket ) { | 1589 | if ( !mSocket ) { |
1590 | mSocket = new QSocket( this ); | 1590 | mSocket = new QSocket( this ); |
1591 | //qDebug("KCS: read file - new socket"); | 1591 | //qDebug("KCS: read file - new socket"); |
1592 | connect( mSocket, SIGNAL(readyRead()), this, SLOT(startReadFileFromSocket()) ); | 1592 | connect( mSocket, SIGNAL(readyRead()), this, SLOT(startReadFileFromSocket()) ); |
1593 | connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); | 1593 | connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); |
1594 | connect( mSocket, SIGNAL(connected ()), this, SLOT(sendFileRequest() )); | 1594 | connect( mSocket, SIGNAL(connected ()), this, SLOT(sendFileRequest() )); |
1595 | } | 1595 | } |
1596 | mFileString = ""; | 1596 | mFileString = ""; |
1597 | mFileName = fn; | 1597 | mFileName = fn; |
1598 | mFirst = true; | 1598 | mFirst = true; |
1599 | if ( tlw ) | 1599 | if ( tlw ) |
1600 | tlw->setCaption( i18n("Trying to connect to remote...") ); | 1600 | tlw->setCaption( i18n("Trying to connect to remote...") ); |
1601 | mConnectCount = 30;mConnectMax = 30; | 1601 | mConnectCount = 30;mConnectMax = 30; |
1602 | mTimerSocket->start( 1000, true ); | 1602 | mTimerSocket->start( 1000, true ); |
1603 | mSocket->connectToHost( mHost, mPort ); | 1603 | mSocket->connectToHost( mHost, mPort ); |
1604 | qDebug("KCS: Waiting for connection"); | 1604 | qDebug("KCS: Waiting for connection"); |
1605 | } | 1605 | } |
1606 | void KCommandSocket::updateConnectDialog() | 1606 | void KCommandSocket::updateConnectDialog() |
1607 | { | 1607 | { |
1608 | 1608 | ||
1609 | if ( mConnectCount == mConnectMax ) { | 1609 | if ( mConnectCount == mConnectMax ) { |
1610 | //qDebug("MAXX %d", mConnectMax); | 1610 | //qDebug("MAXX %d", mConnectMax); |
1611 | mConnectProgress.setTotalSteps ( 30 ); | 1611 | mConnectProgress.setTotalSteps ( 30 ); |
1612 | mConnectProgress.show(); | 1612 | mConnectProgress.show(); |
1613 | mConnectProgress.setLabelText( i18n("Trying to connect to remote...") ); | 1613 | mConnectProgress.setLabelText( i18n("Trying to connect to remote...") ); |
1614 | } | 1614 | } |
1615 | //qDebug("updateConnectDialog() %d", mConnectCount); | 1615 | //qDebug("updateConnectDialog() %d", mConnectCount); |
1616 | mConnectProgress.raise(); | 1616 | mConnectProgress.raise(); |
1617 | mConnectProgress.setProgress( (mConnectMax - mConnectCount)%30 ); | 1617 | mConnectProgress.setProgress( (mConnectMax - mConnectCount)%30 ); |
1618 | --mConnectCount; | 1618 | --mConnectCount; |
1619 | if ( mConnectCount > 0 ) | 1619 | if ( mConnectCount > 0 ) |
1620 | mTimerSocket->start( 1000, true ); | 1620 | mTimerSocket->start( 1000, true ); |
1621 | else | 1621 | else |
1622 | deleteSocket(); | 1622 | deleteSocket(); |
1623 | 1623 | ||
1624 | } | 1624 | } |
1625 | void KCommandSocket::writeFile( QString fileName ) | 1625 | void KCommandSocket::writeFile( QString fileName ) |
1626 | { | 1626 | { |
1627 | if ( !mSocket ) { | 1627 | if ( !mSocket ) { |
1628 | mSocket = new QSocket( this ); | 1628 | mSocket = new QSocket( this ); |
1629 | connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); | 1629 | connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); |
1630 | connect( mSocket, SIGNAL(connected ()), this, SLOT(writeFileToSocket()) ); | 1630 | connect( mSocket, SIGNAL(connected ()), this, SLOT(writeFileToSocket()) ); |
1631 | } | 1631 | } |
1632 | mFileName = fileName ; | 1632 | mFileName = fileName ; |
1633 | mConnectCount = 30;mConnectMax = 30; | 1633 | mConnectCount = 30;mConnectMax = 30; |
1634 | mTimerSocket->start( 1000, true ); | 1634 | mTimerSocket->start( 1000, true ); |
1635 | mSocket->connectToHost( mHost, mPort ); | 1635 | mSocket->connectToHost( mHost, mPort ); |
1636 | } | 1636 | } |
1637 | void KCommandSocket::writeFileToSocket() | 1637 | void KCommandSocket::writeFileToSocket() |
1638 | { | 1638 | { |
1639 | mTimerSocket->stop(); | 1639 | mTimerSocket->stop(); |
1640 | QFile file2( mFileName ); | 1640 | QFile file2( mFileName ); |
1641 | if (!file2.open( IO_ReadOnly ) ) { | 1641 | if (!file2.open( IO_ReadOnly ) ) { |
1642 | mConnectProgress.hide(); | 1642 | mConnectProgress.hide(); |
1643 | mConnectCount = -1; | 1643 | mConnectCount = -1; |
1644 | mRetVal= errorW; | 1644 | mRetVal= errorW; |
1645 | mSocket->close(); | 1645 | mSocket->close(); |
1646 | if ( mSocket->state() == QSocket::Idle ) | 1646 | if ( mSocket->state() == QSocket::Idle ) |
1647 | QTimer::singleShot( 10, this , SLOT ( deleteSocket())); | 1647 | QTimer::singleShot( 10, this , SLOT ( deleteSocket())); |
1648 | return ; | 1648 | return ; |
1649 | } | 1649 | } |
1650 | mConnectProgress.setTotalSteps ( file2.size() ); | 1650 | mConnectProgress.setTotalSteps ( file2.size() ); |
1651 | mConnectProgress.show(); | 1651 | mConnectProgress.show(); |
1652 | int count = 0; | 1652 | int count = 0; |
1653 | mConnectProgress.setLabelText( i18n("Sending back synced file...") ); | 1653 | mConnectProgress.setLabelText( i18n("Sending back synced file...") ); |
1654 | mConnectProgress.setProgress( count ); | 1654 | mConnectProgress.setProgress( count ); |
1655 | mConnectProgress.blockSignals( true ); | 1655 | mConnectProgress.blockSignals( true ); |
1656 | QTextStream ts2( &file2 ); | 1656 | QTextStream ts2( &file2 ); |
1657 | ts2.setEncoding( QTextStream::Latin1 ); | 1657 | ts2.setEncoding( QTextStream::Latin1 ); |
1658 | QTextStream os2( mSocket ); | 1658 | QTextStream os2( mSocket ); |
1659 | os2.setEncoding( QTextStream::Latin1 ); | 1659 | os2.setEncoding( QTextStream::Latin1 ); |
1660 | os2 << "PUT " << mPassWord << " " << mRemoteResource << "\r\n\r\n";; | 1660 | os2 << "PUT " << mPassWord << " " << mRemoteResource << "\r\n\r\n";; |
1661 | int byteCount = 0; | 1661 | int byteCount = 0; |
1662 | int byteMax = file2.size()/53; | 1662 | int byteMax = file2.size()/53; |
1663 | while ( ! ts2.atEnd() ) { | 1663 | while ( ! ts2.atEnd() ) { |
1664 | qApp->processEvents(); | 1664 | qApp->processEvents(); |
1665 | if ( byteCount > byteMax ) { | 1665 | if ( byteCount > byteMax ) { |
1666 | byteCount = 0; | 1666 | byteCount = 0; |
1667 | mConnectProgress.setProgress( count ); | 1667 | mConnectProgress.setProgress( count ); |
1668 | } | 1668 | } |
1669 | QString temp = ts2.readLine(); | 1669 | QString temp = ts2.readLine(); |
1670 | count += temp.length(); | 1670 | count += temp.length(); |
1671 | byteCount += temp.length(); | 1671 | byteCount += temp.length(); |
1672 | os2 << temp << "\r\n"; | 1672 | os2 << temp << "\r\n"; |
1673 | } | 1673 | } |
1674 | file2.close(); | 1674 | file2.close(); |
1675 | mConnectProgress.hide(); | 1675 | mConnectProgress.hide(); |
1676 | mConnectCount = -1; | 1676 | mConnectCount = -1; |
1677 | os2 << "\r\n"; | 1677 | os2 << "\r\n"; |
1678 | mRetVal= successW; | 1678 | mRetVal= successW; |
1679 | mSocket->close(); | 1679 | mSocket->close(); |
1680 | if ( mSocket->state() == QSocket::Idle ) | 1680 | if ( mSocket->state() == QSocket::Idle ) |
1681 | QTimer::singleShot( 10, this , SLOT ( deleteSocket())); | 1681 | QTimer::singleShot( 10, this , SLOT ( deleteSocket())); |
1682 | mConnectProgress.blockSignals( false ); | 1682 | mConnectProgress.blockSignals( false ); |
1683 | } | 1683 | } |
1684 | void KCommandSocket::sendStop() | 1684 | void KCommandSocket::sendStop() |
1685 | { | 1685 | { |
1686 | if ( !mSocket ) { | 1686 | if ( !mSocket ) { |
1687 | mSocket = new QSocket( this ); | 1687 | mSocket = new QSocket( this ); |
1688 | connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); | 1688 | connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); |
1689 | } | 1689 | } |
1690 | mSocket->connectToHost( mHost, mPort ); | 1690 | mSocket->connectToHost( mHost, mPort ); |
1691 | QTextStream os2( mSocket ); | 1691 | QTextStream os2( mSocket ); |
1692 | os2.setEncoding( QTextStream::Latin1 ); | 1692 | os2.setEncoding( QTextStream::Latin1 ); |
1693 | os2 << "STOP\r\n\r\n"; | 1693 | os2 << "STOP\r\n\r\n"; |
1694 | mSocket->close(); | 1694 | mSocket->close(); |
1695 | if ( mSocket->state() == QSocket::Idle ) | 1695 | if ( mSocket->state() == QSocket::Idle ) |
diff --git a/libkdepim/ksyncprefsdialog.cpp b/libkdepim/ksyncprefsdialog.cpp index 744a914..1f9afcb 100644 --- a/libkdepim/ksyncprefsdialog.cpp +++ b/libkdepim/ksyncprefsdialog.cpp | |||
@@ -1,884 +1,884 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2004 Lutz Rogowski <rogowski@kde.org> | 3 | Copyright (c) 2004 Lutz Rogowski <rogowski@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program 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 | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <qlayout.h> | 24 | #include <qlayout.h> |
25 | #include <qlabel.h> | 25 | #include <qlabel.h> |
26 | #include <qgroupbox.h> | 26 | #include <qgroupbox.h> |
27 | #include <qbuttongroup.h> | 27 | #include <qbuttongroup.h> |
28 | #include <qlineedit.h> | 28 | #include <qlineedit.h> |
29 | #include <qfont.h> | 29 | #include <qfont.h> |
30 | #include <qslider.h> | 30 | #include <qslider.h> |
31 | #include <qfile.h> | 31 | #include <qfile.h> |
32 | #include <qdir.h> | 32 | #include <qdir.h> |
33 | #include <qtextstream.h> | 33 | #include <qtextstream.h> |
34 | #include <qcombobox.h> | 34 | #include <qcombobox.h> |
35 | #include <qvbox.h> | 35 | #include <qvbox.h> |
36 | #include <qhbox.h> | 36 | #include <qhbox.h> |
37 | #include <qspinbox.h> | 37 | #include <qspinbox.h> |
38 | #include <qdatetime.h> | 38 | #include <qdatetime.h> |
39 | #include <qcheckbox.h> | 39 | #include <qcheckbox.h> |
40 | #include <qradiobutton.h> | 40 | #include <qradiobutton.h> |
41 | #include <qpushbutton.h> | 41 | #include <qpushbutton.h> |
42 | #include <qstrlist.h> | 42 | #include <qstrlist.h> |
43 | #include <qapplication.h> | 43 | #include <qapplication.h> |
44 | #include <qlayout.h> | 44 | #include <qlayout.h> |
45 | #include <qscrollview.h> | 45 | #include <qscrollview.h> |
46 | #include <qvgroupbox.h> | 46 | #include <qvgroupbox.h> |
47 | #include <qhgroupbox.h> | 47 | #include <qhgroupbox.h> |
48 | 48 | ||
49 | #include <kcolorbutton.h> | 49 | #include <kcolorbutton.h> |
50 | #include <kdebug.h> | 50 | #include <kdebug.h> |
51 | #include <klocale.h> | 51 | #include <klocale.h> |
52 | #include <kglobal.h> | 52 | #include <kglobal.h> |
53 | #include <kfontdialog.h> | 53 | #include <kfontdialog.h> |
54 | #include <kmessagebox.h> | 54 | #include <kmessagebox.h> |
55 | #include <kcolordialog.h> | 55 | #include <kcolordialog.h> |
56 | #include <kiconloader.h> | 56 | #include <kiconloader.h> |
57 | #include <kemailsettings.h> | 57 | #include <kemailsettings.h> |
58 | #include <kstandarddirs.h> | 58 | #include <kstandarddirs.h> |
59 | #include <kfiledialog.h> | 59 | #include <kfiledialog.h> |
60 | #include <kmessagebox.h> | 60 | #include <kmessagebox.h> |
61 | 61 | ||
62 | //#include <kurlrequester.h> | 62 | //#include <kurlrequester.h> |
63 | #include <klineedit.h> | 63 | #include <klineedit.h> |
64 | #include "ksyncprofile.h" | 64 | #include "ksyncprofile.h" |
65 | 65 | ||
66 | 66 | ||
67 | //#include "koprefs.h" | 67 | //#include "koprefs.h" |
68 | 68 | ||
69 | #include "ksyncprefsdialog.h" | 69 | #include "ksyncprefsdialog.h" |
70 | //#include "koglobals.h" | 70 | //#include "koglobals.h" |
71 | 71 | ||
72 | 72 | ||
73 | KSyncPrefsDialog::KSyncPrefsDialog(QWidget *parent, char *name, bool modal) : | 73 | KSyncPrefsDialog::KSyncPrefsDialog(QWidget *parent, char *name, bool modal) : |
74 | KDialog(parent,name,true) | 74 | KDialog(parent,name,true) |
75 | { | 75 | { |
76 | 76 | ||
77 | setCaption( i18n("Synchronization Preferences")); | 77 | setCaption( i18n("Synchronization Preferences")); |
78 | 78 | ||
79 | mSyncProfiles.setAutoDelete( true ); | 79 | mSyncProfiles.setAutoDelete( true ); |
80 | setupSyncAlgTab(); | 80 | setupSyncAlgTab(); |
81 | } | 81 | } |
82 | 82 | ||
83 | 83 | ||
84 | KSyncPrefsDialog::~KSyncPrefsDialog() | 84 | KSyncPrefsDialog::~KSyncPrefsDialog() |
85 | { | 85 | { |
86 | } | 86 | } |
87 | 87 | ||
88 | void KSyncPrefsDialog::setupSyncAlgTab() | 88 | void KSyncPrefsDialog::setupSyncAlgTab() |
89 | { | 89 | { |
90 | QLabel * lab; | 90 | QLabel * lab; |
91 | //QFrame *page = addPage(i18n("Sync Prefs"),0,0); | 91 | //QFrame *page = addPage(i18n("Sync Prefs"),0,0); |
92 | QVBox * mainbox = new QVBox( this ); | 92 | QVBox * mainbox = new QVBox( this ); |
93 | QScrollView* sv = new QScrollView( mainbox ); | 93 | QScrollView* sv = new QScrollView( mainbox ); |
94 | QHBoxLayout * lay = new QHBoxLayout( this ); | 94 | QHBoxLayout * lay = new QHBoxLayout( this ); |
95 | lay->addWidget( mainbox ); | 95 | lay->addWidget( mainbox ); |
96 | QHBox * b_box = new QHBox( mainbox ); | 96 | QHBox * b_box = new QHBox( mainbox ); |
97 | 97 | ||
98 | QPushButton* button = new QPushButton( i18n("Ok"), b_box ); | 98 | QPushButton* button = new QPushButton( i18n("Ok"), b_box ); |
99 | connect ( button, SIGNAL( clicked()), this, SLOT (slotOK() ) ); | 99 | connect ( button, SIGNAL( clicked()), this, SLOT (slotOK() ) ); |
100 | button = new QPushButton( i18n("Cancel"), b_box ); | 100 | button = new QPushButton( i18n("Cancel"), b_box ); |
101 | connect ( button, SIGNAL( clicked()), this, SLOT (reject() ) ); | 101 | connect ( button, SIGNAL( clicked()), this, SLOT (reject() ) ); |
102 | //QBoxLayout * sl = new QVBoxLayout(this ); | 102 | //QBoxLayout * sl = new QVBoxLayout(this ); |
103 | //sl->addWidget ( sv ); | 103 | //sl->addWidget ( sv ); |
104 | sv->setResizePolicy ( QScrollView::AutoOneFit ); | 104 | sv->setResizePolicy ( QScrollView::AutoOneFit ); |
105 | QFrame *topFrame = new QFrame ( sv ); | 105 | QFrame *topFrame = new QFrame ( sv ); |
106 | sv->addChild( topFrame ); | 106 | sv->addChild( topFrame ); |
107 | mSetupSyncAlgTab = topFrame; | 107 | mSetupSyncAlgTab = topFrame; |
108 | QGridLayout *topLayout = new QGridLayout(topFrame,6,2); | 108 | QGridLayout *topLayout = new QGridLayout(topFrame,6,2); |
109 | topLayout->setSpacing(spacingHint()); | 109 | topLayout->setSpacing(spacingHint()); |
110 | topLayout->setMargin(marginHint()); | 110 | topLayout->setMargin(marginHint()); |
111 | 111 | ||
112 | //lab = new QLabel(i18n("Sync settings not yet implemented. DO NOT USE!"), topFrame); | 112 | //lab = new QLabel(i18n("Sync settings not yet implemented. DO NOT USE!"), topFrame); |
113 | int iii = 0; | 113 | int iii = 0; |
114 | //topLayout->addMultiCellWidget(lab , iii,iii,0,1); | 114 | //topLayout->addMultiCellWidget(lab , iii,iii,0,1); |
115 | //++iii; | 115 | //++iii; |
116 | 116 | ||
117 | mMyMachineName = new QLineEdit(topFrame); | 117 | mMyMachineName = new QLineEdit(topFrame); |
118 | lab = new QLabel(mMyMachineName, i18n("Local device name:"), topFrame); | 118 | lab = new QLabel(mMyMachineName, i18n("Local device name:"), topFrame); |
119 | topLayout->addWidget(lab ,iii,0); | 119 | topLayout->addWidget(lab ,iii,0); |
120 | topLayout->addWidget(mMyMachineName,iii,1); | 120 | topLayout->addWidget(mMyMachineName,iii,1); |
121 | ++iii; | 121 | ++iii; |
122 | 122 | ||
123 | QHBox* buttonbox = new QHBox( topFrame); | 123 | QHBox* buttonbox = new QHBox( topFrame); |
124 | topLayout->addMultiCellWidget(buttonbox, iii,iii,0,1); | 124 | topLayout->addMultiCellWidget(buttonbox, iii,iii,0,1); |
125 | ++iii; | 125 | ++iii; |
126 | button = new QPushButton( i18n("New profile"), buttonbox ); | 126 | button = new QPushButton( i18n("New profile"), buttonbox ); |
127 | connect ( button, SIGNAL( clicked()), this, SLOT (newProfile() ) ); | 127 | connect ( button, SIGNAL( clicked()), this, SLOT (newProfile() ) ); |
128 | 128 | ||
129 | button = new QPushButton( i18n("Clone profile"), buttonbox ); | 129 | button = new QPushButton( i18n("Clone profile"), buttonbox ); |
130 | connect ( button, SIGNAL( clicked()), this, SLOT ( cloneProfile() ) ); | 130 | connect ( button, SIGNAL( clicked()), this, SLOT ( cloneProfile() ) ); |
131 | 131 | ||
132 | button = new QPushButton( i18n("Delete profile"), buttonbox ); | 132 | button = new QPushButton( i18n("Delete profile"), buttonbox ); |
133 | connect ( button, SIGNAL( clicked()), this, SLOT (deleteProfile() ) ); | 133 | connect ( button, SIGNAL( clicked()), this, SLOT (deleteProfile() ) ); |
134 | 134 | ||
135 | mProfileBox = new QComboBox(topFrame); | 135 | mProfileBox = new QComboBox(topFrame); |
136 | mProfileBox->setEditable ( true ); | 136 | mProfileBox->setEditable ( true ); |
137 | mProfileBox->setInsertionPolicy(QComboBox::NoInsertion); | 137 | mProfileBox->setInsertionPolicy(QComboBox::NoInsertion); |
138 | connect ( mProfileBox, SIGNAL(activated ( int ) ), this, SLOT (profileChanged( int ) ) ); | 138 | connect ( mProfileBox, SIGNAL(activated ( int ) ), this, SLOT (profileChanged( int ) ) ); |
139 | connect ( mProfileBox, SIGNAL( textChanged ( const QString & ) ), this, SLOT (textChanged( const QString & ) ) ); | 139 | connect ( mProfileBox, SIGNAL( textChanged ( const QString & ) ), this, SLOT (textChanged( const QString & ) ) ); |
140 | 140 | ||
141 | lab = new QLabel(mProfileBox, i18n("Profile:"), topFrame); | 141 | lab = new QLabel(mProfileBox, i18n("Profile:"), topFrame); |
142 | topLayout->addWidget(lab ,iii,0); | 142 | topLayout->addWidget(lab ,iii,0); |
143 | topLayout->addWidget(mProfileBox, iii,1); | 143 | topLayout->addWidget(mProfileBox, iii,1); |
144 | ++iii; | 144 | ++iii; |
145 | 145 | ||
146 | 146 | ||
147 | 147 | ||
148 | QHGroupBox *iims = new QHGroupBox( i18n("Multiple Sync options"), topFrame); | 148 | QHGroupBox *iims = new QHGroupBox( i18n("Multiple Sync options"), topFrame); |
149 | new QLabel( i18n("Include in multiple "), iims ); | 149 | new QLabel( i18n("Include in multiple "), iims ); |
150 | mIncludeInRing = new QCheckBox( i18n("calendar "), iims ); | 150 | mIncludeInRing = new QCheckBox( i18n("calendar "), iims ); |
151 | mIncludeInRingAB = new QCheckBox( i18n("addressbook "), iims ); | 151 | mIncludeInRingAB = new QCheckBox( i18n("addressbook "), iims ); |
152 | mIncludeInRingPWM = new QCheckBox( i18n("pwmanager"), iims ); | 152 | mIncludeInRingPWM = new QCheckBox( i18n("pwmanager"), iims ); |
153 | new QLabel( i18n(" sync"), iims ); | 153 | new QLabel( i18n(" sync"), iims ); |
154 | topLayout->addMultiCellWidget(iims, iii,iii,0,1); | 154 | topLayout->addMultiCellWidget(iims, iii,iii,0,1); |
155 | ++iii; | 155 | ++iii; |
156 | QVGroupBox* gb0 = new QVGroupBox( i18n("Sync algo options"), topFrame); | 156 | QVGroupBox* gb0 = new QVGroupBox( i18n("Sync algo options"), topFrame); |
157 | topLayout->addMultiCellWidget(gb0, iii,iii,0,1); | 157 | topLayout->addMultiCellWidget(gb0, iii,iii,0,1); |
158 | ++iii; | 158 | ++iii; |
159 | QButtonGroup* gr; | 159 | QButtonGroup* gr; |
160 | { | 160 | { |
161 | QVGroupBox* topFrame = gb0; | 161 | QVGroupBox* topFrame = gb0; |
162 | 162 | ||
163 | 163 | ||
164 | 164 | ||
165 | mAskForPreferences = new QCheckBox( i18n("Ask for preferences before sync"), topFrame ); | 165 | mAskForPreferences = new QCheckBox( i18n("Ask for preferences before sync"), topFrame ); |
166 | //topLayout->addMultiCellWidget(mAskForPreferences, iii,iii,0,1); | 166 | //topLayout->addMultiCellWidget(mAskForPreferences, iii,iii,0,1); |
167 | //++iii; | 167 | //++iii; |
168 | gr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Sync preferences"), topFrame); | 168 | gr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Sync preferences"), topFrame); |
169 | //topLayout->addMultiCellWidget(gr, iii,iii,0,1); | 169 | //topLayout->addMultiCellWidget(gr, iii,iii,0,1); |
170 | //++iii; | 170 | //++iii; |
171 | loc = new QRadioButton ( i18n("Take local entry on conflict"), gr ); | 171 | loc = new QRadioButton ( i18n("Take local entry on conflict"), gr ); |
172 | rem = new QRadioButton ( i18n("Take remote entry on conflict"), gr ); | 172 | rem = new QRadioButton ( i18n("Take remote entry on conflict"), gr ); |
173 | newest = new QRadioButton ( i18n("Take newest entry on conflict"), gr ); | 173 | newest = new QRadioButton ( i18n("Take newest entry on conflict"), gr ); |
174 | ask = new QRadioButton ( i18n("Ask for every entry on conflict"), gr ); | 174 | ask = new QRadioButton ( i18n("Ask for every entry on conflict"), gr ); |
175 | f_loc= new QRadioButton ( i18n("Force: Take local entry always"), gr ); | 175 | f_loc= new QRadioButton ( i18n("Force: Take local entry always"), gr ); |
176 | f_rem = new QRadioButton ( i18n("Force: Take remote entry always"), gr ); | 176 | f_rem = new QRadioButton ( i18n("Force: Take remote entry always"), gr ); |
177 | // both = new QRadioButton ( i18n("Take both on conflict"), gr ); | 177 | // both = new QRadioButton ( i18n("Take both on conflict"), gr ); |
178 | 178 | ||
179 | mShowSummaryAfterSync = new QCheckBox( i18n("Show summary after sync"), topFrame ); | 179 | mShowSummaryAfterSync = new QCheckBox( i18n("Show summary after sync"), topFrame ); |
180 | //topLayout->addMultiCellWidget(mShowSummaryAfterSync, iii,iii,0,1); | 180 | //topLayout->addMultiCellWidget(mShowSummaryAfterSync, iii,iii,0,1); |
181 | //++iii; | 181 | //++iii; |
182 | 182 | ||
183 | #if 0 | 183 | #if 0 |
184 | QHGroupBox* gb51 = new QHGroupBox( i18n("Local resources to sync with:"), topFrame); | 184 | QHGroupBox* gb51 = new QHGroupBox( i18n("Local resources to sync with:"), topFrame); |
185 | { | 185 | { |
186 | QVBox * fibo2 = new QVBox ( gb51 ); | 186 | QVBox * fibo2 = new QVBox ( gb51 ); |
187 | new QLabel ( i18n("Calendar resources:"), fibo2 ); | 187 | new QLabel ( i18n("Calendar resources:"), fibo2 ); |
188 | //mFilterInCal = new QComboBox( fibo2 ); | 188 | //mFilterInCal = new QComboBox( fibo2 ); |
189 | fibo2 = new QVBox ( gb51 ); | 189 | fibo2 = new QVBox ( gb51 ); |
190 | new QLabel ( i18n("Addressbook resources:"), fibo2 ); | 190 | new QLabel ( i18n("Addressbook resources:"), fibo2 ); |
191 | //mFilterInAB = new QComboBox( fibo2 ); | 191 | //mFilterInAB = new QComboBox( fibo2 ); |
192 | } | 192 | } |
193 | #endif | 193 | #endif |
194 | QHGroupBox* gb5 = new QHGroupBox( i18n("Apply filter when adding data to local:"), topFrame); | 194 | QHGroupBox* gb5 = new QHGroupBox( i18n("Apply filter when adding data to local:"), topFrame); |
195 | QVBox * fibo2 = new QVBox ( gb5 ); | 195 | QVBox * fibo2 = new QVBox ( gb5 ); |
196 | new QLabel ( i18n("Incoming calendar filter:"), fibo2 ); | 196 | new QLabel ( i18n("Incoming calendar filter:"), fibo2 ); |
197 | mFilterInCal = new QComboBox( fibo2 ); | 197 | mFilterInCal = new QComboBox( fibo2 ); |
198 | fibo2 = new QVBox ( gb5 ); | 198 | fibo2 = new QVBox ( gb5 ); |
199 | new QLabel ( i18n("Incoming addressbook filter:"), fibo2 ); | 199 | new QLabel ( i18n("Incoming addressbook filter:"), fibo2 ); |
200 | mFilterInAB = new QComboBox( fibo2 ); | 200 | mFilterInAB = new QComboBox( fibo2 ); |
201 | 201 | ||
202 | mWriteBackFile = new QCheckBox( i18n("Write back synced data"), topFrame ); | 202 | mWriteBackFile = new QCheckBox( i18n("Write back synced data"), topFrame ); |
203 | // topLayout->addMultiCellWidget(mWriteBackFile, iii,iii,0,1); | 203 | // topLayout->addMultiCellWidget(mWriteBackFile, iii,iii,0,1); |
204 | // ++iii; | 204 | // ++iii; |
205 | 205 | ||
206 | QVGroupBox* gb2 = new QVGroupBox( i18n("Write back options"), topFrame); | 206 | QVGroupBox* gb2 = new QVGroupBox( i18n("Write back options"), topFrame); |
207 | //topLayout->addMultiCellWidget(gb2, iii,iii,0,1); | 207 | //topLayout->addMultiCellWidget(gb2, iii,iii,0,1); |
208 | //++iii; | 208 | //++iii; |
209 | { | 209 | { |
210 | QVGroupBox*topFrame = gb2; | 210 | QVGroupBox*topFrame = gb2; |
211 | mWriteBackExisting= new QCheckBox( i18n("Write back (on remote) existing entries only"), topFrame ); | 211 | mWriteBackExisting= new QCheckBox( i18n("Write back (on remote) existing entries only"), topFrame ); |
212 | QHGroupBox* gb4 = new QHGroupBox( i18n("Apply filter when adding data to remote:"), topFrame); | 212 | QHGroupBox* gb4 = new QHGroupBox( i18n("Apply filter when adding data to remote:"), topFrame); |
213 | QVBox * fibo = new QVBox ( gb4 ); | 213 | QVBox * fibo = new QVBox ( gb4 ); |
214 | new QLabel ( i18n("Outgoing calendar filter:"), fibo ); | 214 | new QLabel ( i18n("Outgoing calendar filter:"), fibo ); |
215 | mFilterOutCal = new QComboBox( fibo ); | 215 | mFilterOutCal = new QComboBox( fibo ); |
216 | fibo = new QVBox ( gb4 ); | 216 | fibo = new QVBox ( gb4 ); |
217 | new QLabel ( i18n("Outgoing addressbook filter:"), fibo ); | 217 | new QLabel ( i18n("Outgoing addressbook filter:"), fibo ); |
218 | mFilterOutAB = new QComboBox( fibo ); | 218 | mFilterOutAB = new QComboBox( fibo ); |
219 | //topLayout->addMultiCellWidget(mWriteBackExisting, iii,iii,0,1); | 219 | //topLayout->addMultiCellWidget(mWriteBackExisting, iii,iii,0,1); |
220 | //++iii; | 220 | //++iii; |
221 | mWriteBackFuture= new QCheckBox( i18n("Write back (calendar) entries for time period only"), topFrame ); | 221 | mWriteBackFuture= new QCheckBox( i18n("Write back (calendar) entries for time period only"), topFrame ); |
222 | //topLayout->addMultiCellWidget(mWriteBackFuture, iii,iii,0,1); | 222 | //topLayout->addMultiCellWidget(mWriteBackFuture, iii,iii,0,1); |
223 | //++iii; | 223 | //++iii; |
224 | QHGroupBox* gb3 = new QHGroupBox( i18n("Time period"), topFrame); | 224 | QHGroupBox* gb3 = new QHGroupBox( i18n("Time period"), topFrame); |
225 | connect ( mWriteBackFuture, SIGNAL( toggled ( bool ) ), gb3, SLOT ( setEnabled ( bool ) ) ); | 225 | connect ( mWriteBackFuture, SIGNAL( toggled ( bool ) ), gb3, SLOT ( setEnabled ( bool ) ) ); |
226 | new QLabel( i18n("From ") , gb3 ); | 226 | new QLabel( i18n("From ") , gb3 ); |
227 | mWriteBackPastWeeks= new QSpinBox(1,104, 1, gb3); | 227 | mWriteBackPastWeeks= new QSpinBox(1,104, 1, gb3); |
228 | new QLabel( i18n(" weeks in the past to ") , gb3 ); | 228 | new QLabel( i18n(" weeks in the past to ") , gb3 ); |
229 | mWriteBackFutureWeeks= new QSpinBox(1,104, 1, gb3); | 229 | mWriteBackFutureWeeks= new QSpinBox(1,104, 1, gb3); |
230 | new QLabel( i18n(" weeks in the future ") , gb3 ); | 230 | new QLabel( i18n(" weeks in the future ") , gb3 ); |
231 | //topLayout->addMultiCellWidget(mWriteBackFutureWeeks, iii,iii,1,1); | 231 | //topLayout->addMultiCellWidget(mWriteBackFutureWeeks, iii,iii,1,1); |
232 | //++iii; | 232 | //++iii; |
233 | gb3->setEnabled( false ); | 233 | gb3->setEnabled( false ); |
234 | connect ( mWriteBackExisting, SIGNAL( toggled ( bool ) ), gb4, SLOT ( setDisabled ( bool ) ) ); | 234 | connect ( mWriteBackExisting, SIGNAL( toggled ( bool ) ), gb4, SLOT ( setDisabled ( bool ) ) ); |
235 | } | 235 | } |
236 | connect ( mWriteBackFile, SIGNAL( toggled ( bool ) ), gb2, SLOT ( setEnabled ( bool ) ) ); | 236 | connect ( mWriteBackFile, SIGNAL( toggled ( bool ) ), gb2, SLOT ( setEnabled ( bool ) ) ); |
237 | 237 | ||
238 | } | 238 | } |
239 | proGr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Profile kind"), topFrame); | 239 | proGr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Profile kind"), topFrame); |
240 | gr = proGr; | 240 | gr = proGr; |
241 | topLayout->addMultiCellWidget(gr, iii,iii,0,1); | 241 | topLayout->addMultiCellWidget(gr, iii,iii,0,1); |
242 | ++iii; | 242 | ++iii; |
243 | mIsLocal = new QRadioButton ( i18n("Local file"), gr ); | 243 | mIsLocal = new QRadioButton ( i18n("Local file"), gr ); |
244 | mIsPi = new QRadioButton ( i18n("Pi-Sync - all resources ( direct Kx/Pi to Kx/Pi sync )"), gr ); | 244 | mIsPi = new QRadioButton ( i18n("Pi-Sync - all resources ( direct Kx/Pi to Kx/Pi sync )"), gr ); |
245 | connect (mIsPi, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); | 245 | connect (mIsPi, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); |
246 | mIsPiSpecific = new QRadioButton ( i18n("Pi-Sync - selected resources ( direct Kx/Pi to Kx/Pi sync )"), gr ); | 246 | mIsPiSpecific = new QRadioButton ( i18n("Pi-Sync - selected resources ( direct Kx/Pi to Kx/Pi sync )"), gr ); |
247 | connect (mIsPiSpecific, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); | 247 | connect (mIsPiSpecific, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); |
248 | mIsNotLocal = new QRadioButton ( i18n("Remote file (w down/upload command)"), gr ); | 248 | mIsNotLocal = new QRadioButton ( i18n("Remote file (w down/upload command)"), gr ); |
249 | connect (mIsLocal, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); | 249 | connect (mIsLocal, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); |
250 | mIsPhone = new QRadioButton ( i18n("Mobile device (cell phone)"), gr ); | 250 | mIsPhone = new QRadioButton ( i18n("Mobile device (cell phone)"), gr ); |
251 | connect (mIsPhone, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); | 251 | connect (mIsPhone, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); |
252 | 252 | ||
253 | QVGroupBox* gb1 = new QVGroupBox( i18n("Profile kind specific settings"), topFrame); | 253 | QVGroupBox* gb1 = new QVGroupBox( i18n("Profile kind specific settings"), topFrame); |
254 | topLayout->addMultiCellWidget(gb1, iii,iii,0,1); | 254 | topLayout->addMultiCellWidget(gb1, iii,iii,0,1); |
255 | ++iii; | 255 | ++iii; |
256 | 256 | ||
257 | // ****************************************** | 257 | // ****************************************** |
258 | // Profile kind specific settings | 258 | // Profile kind specific settings |
259 | { | 259 | { |
260 | // *** phone ******************************* | 260 | // *** phone ******************************* |
261 | QVGroupBox* topFrame = gb1; | 261 | QVGroupBox* topFrame = gb1; |
262 | phoneWidget = new QVBox( topFrame); | 262 | phoneWidget = new QVBox( topFrame); |
263 | //topLayout->addMultiCellWidget(phoneWidget, iii,iii,0,1); | 263 | //topLayout->addMultiCellWidget(phoneWidget, iii,iii,0,1); |
264 | //++iii; | 264 | //++iii; |
265 | mWriteContactToSIM = 0;//new QCheckBox( i18n("Sync contacts with phone SIM card (If not, sync with phone memory)"), phoneWidget ); | 265 | mWriteContactToSIM = 0;//new QCheckBox( i18n("Sync contacts with phone SIM card (If not, sync with phone memory)"), phoneWidget ); |
266 | QHBox* temphb = new QHBox( phoneWidget ); | 266 | QHBox* temphb = new QHBox( phoneWidget ); |
267 | new QLabel( i18n("I/O device: "), temphb ); | 267 | new QLabel( i18n("I/O device: "), temphb ); |
268 | mPhoneDevice = new QLineEdit( temphb); | 268 | mPhoneDevice = new QLineEdit( temphb); |
269 | button = new QPushButton( i18n("Help..."), temphb ); | 269 | button = new QPushButton( i18n("Help..."), temphb ); |
270 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpDevice() ) ); | 270 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpDevice() ) ); |
271 | 271 | ||
272 | 272 | ||
273 | temphb = new QHBox( phoneWidget ); | 273 | temphb = new QHBox( phoneWidget ); |
274 | new QLabel( i18n("Connection: "), temphb ); | 274 | new QLabel( i18n("Connection: "), temphb ); |
275 | mPhoneConnection = new QLineEdit( temphb); | 275 | mPhoneConnection = new QLineEdit( temphb); |
276 | button = new QPushButton( i18n("Help..."), temphb ); | 276 | button = new QPushButton( i18n("Help..."), temphb ); |
277 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpConnection() ) ); | 277 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpConnection() ) ); |
278 | 278 | ||
279 | 279 | ||
280 | temphb = new QHBox( phoneWidget ); | 280 | temphb = new QHBox( phoneWidget ); |
281 | new QLabel( i18n("Model(opt.): "), temphb ); | 281 | new QLabel( i18n("Model(opt.): "), temphb ); |
282 | mPhoneModel = new QLineEdit( temphb); | 282 | mPhoneModel = new QLineEdit( temphb); |
283 | button = new QPushButton( i18n("Help..."), temphb ); | 283 | button = new QPushButton( i18n("Help..."), temphb ); |
284 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpModel() ) ); | 284 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpModel() ) ); |
285 | 285 | ||
286 | // *** local******************************* | 286 | // *** local******************************* |
287 | localFileWidget = new QVBox( topFrame); | 287 | localFileWidget = new QVBox( topFrame); |
288 | //topLayout->addMultiCellWidget(localFileWidget, iii,iii,0,1); | 288 | //topLayout->addMultiCellWidget(localFileWidget, iii,iii,0,1); |
289 | //++iii; | 289 | //++iii; |
290 | temphb = new QHBox( localFileWidget ); | 290 | temphb = new QHBox( localFileWidget ); |
291 | 291 | ||
292 | lab = new QLabel( i18n("Local file Cal:"), temphb ); | 292 | lab = new QLabel( i18n("Local file Cal:"), temphb ); |
293 | lab = new QLabel( i18n("Local file ABook:"), temphb ); | 293 | lab = new QLabel( i18n("Local file ABook:"), temphb ); |
294 | lab = new QLabel( i18n("Local file PWMgr:"), temphb ); | 294 | lab = new QLabel( i18n("Local file PWMgr:"), temphb ); |
295 | temphb = new QHBox( localFileWidget ); | 295 | temphb = new QHBox( localFileWidget ); |
296 | button = new QPushButton( i18n("Choose..."), temphb ); | 296 | button = new QPushButton( i18n("Choose..."), temphb ); |
297 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFile() ) ); | 297 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFile() ) ); |
298 | button = new QPushButton( i18n("Choose..."), temphb ); | 298 | button = new QPushButton( i18n("Choose..."), temphb ); |
299 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFileAB() ) ); | 299 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFileAB() ) ); |
300 | button = new QPushButton( i18n("Choose..."), temphb ); | 300 | button = new QPushButton( i18n("Choose..."), temphb ); |
301 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFilePWM() ) ); | 301 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFilePWM() ) ); |
302 | temphb = new QHBox( localFileWidget ); | 302 | temphb = new QHBox( localFileWidget ); |
303 | 303 | ||
304 | mRemoteFile = new QLineEdit( temphb); | 304 | mRemoteFile = new QLineEdit( temphb); |
305 | mRemoteFileAB = new QLineEdit( temphb); | 305 | mRemoteFileAB = new QLineEdit( temphb); |
306 | mRemoteFilePWM = new QLineEdit( temphb); | 306 | mRemoteFilePWM = new QLineEdit( temphb); |
307 | mIsKapiFileL = new QCheckBox( i18n("Addressbook file (*.vcf) is used by KA/Pi"), localFileWidget ); | 307 | mIsKapiFileL = new QCheckBox( i18n("Addressbook file (*.vcf) is used by KA/Pi"), localFileWidget ); |
308 | 308 | ||
309 | 309 | ||
310 | // *** remote******************************* | 310 | // *** remote******************************* |
311 | remoteFileWidget = new QVBox( topFrame); | 311 | remoteFileWidget = new QVBox( topFrame); |
312 | //topLayout->addMultiCellWidget(remoteFileWidget, iii,iii,0,1); | 312 | //topLayout->addMultiCellWidget(remoteFileWidget, iii,iii,0,1); |
313 | //++iii; | 313 | //++iii; |
314 | temphb = new QHBox( remoteFileWidget ); | 314 | temphb = new QHBox( remoteFileWidget ); |
315 | new QLabel( i18n("Calendar:"), temphb); | 315 | new QLabel( i18n("Calendar:"), temphb); |
316 | new QLabel( i18n("AddressBook:"), temphb); | 316 | new QLabel( i18n("AddressBook:"), temphb); |
317 | new QLabel( i18n("PWManager:"), temphb); | 317 | new QLabel( i18n("PWManager:"), temphb); |
318 | 318 | ||
319 | lab = new QLabel( i18n("Pre sync (download) command:"), remoteFileWidget); | 319 | lab = new QLabel( i18n("Pre sync (download) command:"), remoteFileWidget); |
320 | temphb = new QHBox( remoteFileWidget ); | 320 | temphb = new QHBox( remoteFileWidget ); |
321 | mRemotePrecommand = new QLineEdit(temphb); | 321 | mRemotePrecommand = new QLineEdit(temphb); |
322 | mRemotePrecommandAB = new QLineEdit(temphb); | 322 | mRemotePrecommandAB = new QLineEdit(temphb); |
323 | mRemotePrecommandPWM = new QLineEdit(temphb); | 323 | mRemotePrecommandPWM = new QLineEdit(temphb); |
324 | 324 | ||
325 | lab = new QLabel( i18n("Local temp file:"), remoteFileWidget); | 325 | lab = new QLabel( i18n("Local temp file:"), remoteFileWidget); |
326 | temphb = new QHBox( remoteFileWidget ); | 326 | temphb = new QHBox( remoteFileWidget ); |
327 | mLocalTempFile = new QLineEdit(temphb); | 327 | mLocalTempFile = new QLineEdit(temphb); |
328 | mLocalTempFileAB = new QLineEdit(temphb); | 328 | mLocalTempFileAB = new QLineEdit(temphb); |
329 | mLocalTempFilePWM = new QLineEdit(temphb); | 329 | mLocalTempFilePWM = new QLineEdit(temphb); |
330 | 330 | ||
331 | lab = new QLabel( i18n("Post sync (upload) command:"), remoteFileWidget); | 331 | lab = new QLabel( i18n("Post sync (upload) command:"), remoteFileWidget); |
332 | temphb = new QHBox( remoteFileWidget ); | 332 | temphb = new QHBox( remoteFileWidget ); |
333 | mRemotePostcommand = new QLineEdit(temphb ); | 333 | mRemotePostcommand = new QLineEdit(temphb ); |
334 | mRemotePostcommandAB = new QLineEdit(temphb ); | 334 | mRemotePostcommandAB = new QLineEdit(temphb ); |
335 | mRemotePostcommandPWM = new QLineEdit(temphb ); | 335 | mRemotePostcommandPWM = new QLineEdit(temphb ); |
336 | mIsKapiFileR = new QCheckBox( i18n("Addressbook file is used by KA/Pi"), remoteFileWidget ); | 336 | mIsKapiFileR = new QCheckBox( i18n("Addressbook file is used by KA/Pi"), remoteFileWidget ); |
337 | lab = new QLabel( i18n("Fill in default values for:"), remoteFileWidget); | 337 | lab = new QLabel( i18n("Fill in default values for:"), remoteFileWidget); |
338 | temphb = new QHBox( remoteFileWidget ); | 338 | temphb = new QHBox( remoteFileWidget ); |
339 | button = new QPushButton( i18n("ssh/scp"), temphb ); | 339 | button = new QPushButton( i18n("ssh/scp"), temphb ); |
340 | connect ( button, SIGNAL( clicked()), this, SLOT (fillSSH() ) ); | 340 | connect ( button, SIGNAL( clicked()), this, SLOT (fillSSH() ) ); |
341 | button = new QPushButton( i18n("ftp"), temphb ); | 341 | button = new QPushButton( i18n("ftp"), temphb ); |
342 | connect ( button, SIGNAL( clicked()), this, SLOT (fillFTP() ) ); | 342 | connect ( button, SIGNAL( clicked()), this, SLOT (fillFTP() ) ); |
343 | lab = new QLabel( i18n("Hint: Use $PWD$ for placeholder of password!"), remoteFileWidget); | 343 | lab = new QLabel( i18n("Hint: Use $PWD$ for placeholder of password!"), remoteFileWidget); |
344 | 344 | ||
345 | // *** pi-sync******************************* | 345 | // *** pi-sync******************************* |
346 | piWidget = new QVBox( topFrame); | 346 | piWidget = new QVBox( topFrame); |
347 | //topLayout->addMultiCellWidget(piWidget, iii,iii,0,1); | 347 | //topLayout->addMultiCellWidget(piWidget, iii,iii,0,1); |
348 | //++iii; | 348 | //++iii; |
349 | temphb = new QHBox( piWidget ); | 349 | temphb = new QHBox( piWidget ); |
350 | new QLabel( i18n("Calendar:"), temphb); | 350 | new QLabel( i18n("Calendar:"), temphb); |
351 | new QLabel( i18n("AddressBook:"), temphb); | 351 | new QLabel( i18n("AddressBook:"), temphb); |
352 | new QLabel( i18n("PWManager:"), temphb); | 352 | new QLabel( i18n("PWManager:"), temphb); |
353 | 353 | ||
354 | lab = new QLabel( i18n("Password for remote access: (could be the same for each)"), piWidget); | 354 | lab = new QLabel( i18n("Password for remote access: (could be the same for each)"), piWidget); |
355 | temphb = new QHBox( piWidget ); | 355 | temphb = new QHBox( piWidget ); |
356 | mRemotePw = new QLineEdit(temphb); | 356 | mRemotePw = new QLineEdit(temphb); |
357 | mRemotePwAB = new QLineEdit(temphb); | 357 | mRemotePwAB = new QLineEdit(temphb); |
358 | mRemotePwPWM = new QLineEdit(temphb); | 358 | mRemotePwPWM = new QLineEdit(temphb); |
359 | 359 | ||
360 | lab = new QLabel( i18n("Remote IP address: (could be the same for each)"), piWidget); | 360 | lab = new QLabel( i18n("Remote IP address: (could be the same for each)"), piWidget); |
361 | temphb = new QHBox( piWidget ); | 361 | temphb = new QHBox( piWidget ); |
362 | mRemoteIP = new QLineEdit(temphb); | 362 | mRemoteIP = new QLineEdit(temphb); |
363 | mRemoteIPAB = new QLineEdit(temphb); | 363 | mRemoteIPAB = new QLineEdit(temphb); |
364 | mRemoteIPPWM = new QLineEdit(temphb); | 364 | mRemoteIPPWM = new QLineEdit(temphb); |
365 | 365 | ||
366 | lab = new QLabel( i18n("Remote port number: (should be different for each)"), piWidget); | 366 | lab = new QLabel( i18n("Remote port number: (should be different for each)"), piWidget); |
367 | temphb = new QHBox( piWidget ); | 367 | temphb = new QHBox( piWidget ); |
368 | mRemotePort = new QLineEdit(temphb); | 368 | mRemotePort = new QLineEdit(temphb); |
369 | mRemotePortAB = new QLineEdit(temphb); | 369 | mRemotePortAB = new QLineEdit(temphb); |
370 | mRemotePortPWM = new QLineEdit(temphb); | 370 | mRemotePortPWM = new QLineEdit(temphb); |
371 | 371 | ||
372 | lab = new QLabel( i18n("Local/remote Resource sync partners"), piWidget); | 372 | lab = new QLabel( i18n("Local/remote Resource sync partners (Leave empty to not sync)"), piWidget); |
373 | mTableBox = new QHBox( piWidget ); | 373 | mTableBox = new QHBox( piWidget ); |
374 | mResTableKopi = new QTable( 1, 1, mTableBox ); | 374 | mResTableKopi = new QTable( 1, 1, mTableBox ); |
375 | mResTableKapi = new QTable( 1, 1, mTableBox ); | 375 | mResTableKapi = new QTable( 1, 1, mTableBox ); |
376 | mResTablePwmpi = new QTable( 1, 1, mTableBox ); | 376 | mResTablePwmpi = new QTable( 1, 1, mTableBox ); |
377 | mResTableKopi->horizontalHeader()->setLabel( 0, i18n("Remote") ); | 377 | mResTableKopi->horizontalHeader()->setLabel( 0, i18n("Remote") ); |
378 | mResTableKapi->horizontalHeader()->setLabel( 0, i18n("Remote") ); | 378 | mResTableKapi->horizontalHeader()->setLabel( 0, i18n("Remote") ); |
379 | mResTablePwmpi->horizontalHeader()->setLabel( 0, i18n("Remote") ); | 379 | mResTablePwmpi->horizontalHeader()->setLabel( 0, i18n("Remote") ); |
380 | mResTableKopi->setLeftMargin( 80 ); | 380 | mResTableKopi->setLeftMargin( 80 ); |
381 | } | 381 | } |
382 | // ****************************************** | 382 | // ****************************************** |
383 | // Profile kind specific settings END | 383 | // Profile kind specific settings END |
384 | 384 | ||
385 | } | 385 | } |
386 | 386 | ||
387 | void KSyncPrefsDialog::readResources() | 387 | void KSyncPrefsDialog::readResources() |
388 | { | 388 | { |
389 | mResourcesKopi.clear(); | 389 | mResourcesKopi.clear(); |
390 | mResourcesKapi.clear(); | 390 | mResourcesKapi.clear(); |
391 | KConfig fc(locateLocal("config","kopicalendarrc")); | 391 | KConfig fc(locateLocal("config","kopicalendarrc")); |
392 | fc.setGroup("CC"); | 392 | fc.setGroup("CC"); |
393 | int numCals = fc.readNumEntry("NumberCalendars",0 ); | 393 | int numCals = fc.readNumEntry("NumberCalendars",0 ); |
394 | int curCal = 1; | 394 | int curCal = 1; |
395 | while ( curCal <= numCals ) { | 395 | while ( curCal <= numCals ) { |
396 | QString prefix = "Cal_" +QString::number( curCal ); | 396 | QString prefix = "Cal_" +QString::number( curCal ); |
397 | QString name = fc.readEntry( prefix+"_Name", "Calendar"); | 397 | QString name = fc.readEntry( prefix+"_Name", "Calendar"); |
398 | mResourcesKopi.append( name ); | 398 | mResourcesKopi.append( name ); |
399 | ++curCal; | 399 | ++curCal; |
400 | } | 400 | } |
401 | mResTableKopi->setNumRows( mResourcesKopi.count() ); | 401 | mResTableKopi->setNumRows( mResourcesKopi.count() ); |
402 | int i; | 402 | int i; |
403 | for ( i = 0;i < mResourcesKopi.count(); ++i ) { | 403 | for ( i = 0;i < mResourcesKopi.count(); ++i ) { |
404 | mResTableKopi->verticalHeader ()->setLabel( i, mResourcesKopi[i] ); | 404 | mResTableKopi->verticalHeader ()->setLabel( i, mResourcesKopi[i] ); |
405 | } | 405 | } |
406 | } | 406 | } |
407 | void KSyncPrefsDialog::readFilter() | 407 | void KSyncPrefsDialog::readFilter() |
408 | { | 408 | { |
409 | mFilterKapi.clear(); | 409 | mFilterKapi.clear(); |
410 | mFilterKopi.clear(); | 410 | mFilterKopi.clear(); |
411 | KConfig cfgko(locateLocal("config","korganizerrc")); | 411 | KConfig cfgko(locateLocal("config","korganizerrc")); |
412 | KConfig cfgka(locateLocal("config","kaddressbookrc")); | 412 | KConfig cfgka(locateLocal("config","kaddressbookrc")); |
413 | cfgko.setGroup("General"); | 413 | cfgko.setGroup("General"); |
414 | mFilterKopi = cfgko.readListEntry("CalendarFilters"); | 414 | mFilterKopi = cfgko.readListEntry("CalendarFilters"); |
415 | cfgka.setGroup("Filter"); | 415 | cfgka.setGroup("Filter"); |
416 | int count = cfgka.readNumEntry( "Count", 0 ); | 416 | int count = cfgka.readNumEntry( "Count", 0 ); |
417 | for ( int i = 0; i < count; i++ ) { | 417 | for ( int i = 0; i < count; i++ ) { |
418 | cfgka.setGroup("Filter_"+QString::number( i ) ); | 418 | cfgka.setGroup("Filter_"+QString::number( i ) ); |
419 | mFilterKapi.append( cfgka.readEntry("Name", "internal error") ); | 419 | mFilterKapi.append( cfgka.readEntry("Name", "internal error") ); |
420 | } | 420 | } |
421 | mFilterOutCal->clear(); | 421 | mFilterOutCal->clear(); |
422 | mFilterInCal->clear(); | 422 | mFilterInCal->clear(); |
423 | mFilterOutAB->clear(); | 423 | mFilterOutAB->clear(); |
424 | mFilterInAB->clear(); | 424 | mFilterInAB->clear(); |
425 | QStringList temp = mFilterKopi; | 425 | QStringList temp = mFilterKopi; |
426 | temp.prepend(i18n("No Filter") ); | 426 | temp.prepend(i18n("No Filter") ); |
427 | mFilterOutCal->insertStringList( temp ); | 427 | mFilterOutCal->insertStringList( temp ); |
428 | mFilterInCal->insertStringList( temp ); | 428 | mFilterInCal->insertStringList( temp ); |
429 | temp = mFilterKapi; | 429 | temp = mFilterKapi; |
430 | temp.prepend(i18n("No Filter") ); | 430 | temp.prepend(i18n("No Filter") ); |
431 | mFilterOutAB->insertStringList( temp ); | 431 | mFilterOutAB->insertStringList( temp ); |
432 | mFilterInAB->insertStringList( temp ); | 432 | mFilterInAB->insertStringList( temp ); |
433 | } | 433 | } |
434 | 434 | ||
435 | void KSyncPrefsDialog::slotOK() | 435 | void KSyncPrefsDialog::slotOK() |
436 | { | 436 | { |
437 | if ( mMyMachineName->text() == "undefined" ) { | 437 | if ( mMyMachineName->text() == "undefined" ) { |
438 | KMessageBox::error(this,i18n("Local device name undefined!\nPlease define device name!"),i18n("KO/Pi config error")); | 438 | KMessageBox::error(this,i18n("Local device name undefined!\nPlease define device name!"),i18n("KO/Pi config error")); |
439 | return; | 439 | return; |
440 | } | 440 | } |
441 | int i; | 441 | int i; |
442 | for (i = 0; i < mSyncProfileNames.count(); ++ i) { | 442 | for (i = 0; i < mSyncProfileNames.count(); ++ i) { |
443 | if ( mSyncProfileNames.contains( mSyncProfileNames[i]) > 1 ) { | 443 | if ( mSyncProfileNames.contains( mSyncProfileNames[i]) > 1 ) { |
444 | KMessageBox::error(this,i18n("Multiple profiles with same name!\nPlease use unique profile names!"),i18n("KO/Pi config error")); | 444 | KMessageBox::error(this,i18n("Multiple profiles with same name!\nPlease use unique profile names!"),i18n("KO/Pi config error")); |
445 | return; | 445 | return; |
446 | } | 446 | } |
447 | } | 447 | } |
448 | usrWriteConfig(); | 448 | usrWriteConfig(); |
449 | QDialog::accept(); | 449 | QDialog::accept(); |
450 | } | 450 | } |
451 | void KSyncPrefsDialog::accept() | 451 | void KSyncPrefsDialog::accept() |
452 | { | 452 | { |
453 | slotOK(); | 453 | slotOK(); |
454 | } | 454 | } |
455 | void KSyncPrefsDialog::chooseFile() | 455 | void KSyncPrefsDialog::chooseFile() |
456 | { | 456 | { |
457 | QString fn = QDir::homeDirPath(); | 457 | QString fn = QDir::homeDirPath(); |
458 | 458 | ||
459 | fn =KFileDialog:: getOpenFileName( fn, i18n("Sync filename(*.ics/*.vcs)"), this ); | 459 | fn =KFileDialog:: getOpenFileName( fn, i18n("Sync filename(*.ics/*.vcs)"), this ); |
460 | if ( fn == "" ) | 460 | if ( fn == "" ) |
461 | return; | 461 | return; |
462 | mRemoteFile->setText( fn ); | 462 | mRemoteFile->setText( fn ); |
463 | } | 463 | } |
464 | 464 | ||
465 | void KSyncPrefsDialog::chooseFileAB() | 465 | void KSyncPrefsDialog::chooseFileAB() |
466 | { | 466 | { |
467 | QString fn = QDir::homeDirPath(); | 467 | QString fn = QDir::homeDirPath(); |
468 | 468 | ||
469 | fn =KFileDialog:: getOpenFileName( fn, i18n("Sync filename(*.vcf)"), this ); | 469 | fn =KFileDialog:: getOpenFileName( fn, i18n("Sync filename(*.vcf)"), this ); |
470 | if ( fn == "" ) | 470 | if ( fn == "" ) |
471 | return; | 471 | return; |
472 | mRemoteFileAB->setText( fn ); | 472 | mRemoteFileAB->setText( fn ); |
473 | } | 473 | } |
474 | 474 | ||
475 | void KSyncPrefsDialog::chooseFilePWM() | 475 | void KSyncPrefsDialog::chooseFilePWM() |
476 | { | 476 | { |
477 | QString fn = QDir::homeDirPath(); | 477 | QString fn = QDir::homeDirPath(); |
478 | 478 | ||
479 | fn =KFileDialog:: getOpenFileName( fn, i18n("Sync filename(*.pwm)"), this ); | 479 | fn =KFileDialog:: getOpenFileName( fn, i18n("Sync filename(*.pwm)"), this ); |
480 | if ( fn == "" ) | 480 | if ( fn == "" ) |
481 | return; | 481 | return; |
482 | mRemoteFilePWM->setText( fn ); | 482 | mRemoteFilePWM->setText( fn ); |
483 | } | 483 | } |
484 | 484 | ||
485 | void KSyncPrefsDialog::textChanged( const QString & s ) | 485 | void KSyncPrefsDialog::textChanged( const QString & s ) |
486 | { | 486 | { |
487 | if ( mProfileBox->count() == 0 ) | 487 | if ( mProfileBox->count() == 0 ) |
488 | return; | 488 | return; |
489 | if ( currentSelection < 3 ) { | 489 | if ( currentSelection < 3 ) { |
490 | //KMessageBox::error(this,i18n("This profil name\ncannot be edited!\n"),i18n("KO/Pi config error")); | 490 | //KMessageBox::error(this,i18n("This profil name\ncannot be edited!\n"),i18n("KO/Pi config error")); |
491 | mProfileBox->blockSignals( true ); | 491 | mProfileBox->blockSignals( true ); |
492 | mProfileBox->setCurrentItem(mProfileBox-> currentItem ()); | 492 | mProfileBox->setCurrentItem(mProfileBox-> currentItem ()); |
493 | mProfileBox->blockSignals( false ); | 493 | mProfileBox->blockSignals( false ); |
494 | return; | 494 | return; |
495 | } | 495 | } |
496 | //qDebug("cur i %d ",mProfileBox-> currentItem () ); | 496 | //qDebug("cur i %d ",mProfileBox-> currentItem () ); |
497 | mProfileBox->changeItem ( s, mProfileBox-> currentItem () ) ; | 497 | mProfileBox->changeItem ( s, mProfileBox-> currentItem () ) ; |
498 | KSyncProfile* prof = mSyncProfiles.at(mProfileBox-> currentItem ()) ; | 498 | KSyncProfile* prof = mSyncProfiles.at(mProfileBox-> currentItem ()) ; |
499 | prof->setName( s ); | 499 | prof->setName( s ); |
500 | mSyncProfileNames[mProfileBox-> currentItem ()] = s; | 500 | mSyncProfileNames[mProfileBox-> currentItem ()] = s; |
501 | } | 501 | } |
502 | void KSyncPrefsDialog::profileChanged( int item ) | 502 | void KSyncPrefsDialog::profileChanged( int item ) |
503 | { | 503 | { |
504 | //qDebug("KSyncPrefsDialog::profileChanged before %d, count %d ", item, mProfileBox->count() ); | 504 | //qDebug("KSyncPrefsDialog::profileChanged before %d, count %d ", item, mProfileBox->count() ); |
505 | KSyncProfile* prof; | 505 | KSyncProfile* prof; |
506 | saveProfile(); | 506 | saveProfile(); |
507 | readFilter(); | 507 | readFilter(); |
508 | readResources(); | 508 | readResources(); |
509 | currentSelection = item; | 509 | currentSelection = item; |
510 | prof = mSyncProfiles.at(item) ; | 510 | prof = mSyncProfiles.at(item) ; |
511 | 511 | ||
512 | mRemotePw->setText(prof->getRemotePw()); | 512 | mRemotePw->setText(prof->getRemotePw()); |
513 | mRemoteIP->setText(prof->getRemoteIP()); | 513 | mRemoteIP->setText(prof->getRemoteIP()); |
514 | mRemotePort->setText(prof->getRemotePort()); | 514 | mRemotePort->setText(prof->getRemotePort()); |
515 | 515 | ||
516 | mRemotePwAB->setText(prof->getRemotePwAB()); | 516 | mRemotePwAB->setText(prof->getRemotePwAB()); |
517 | mRemoteIPAB->setText(prof->getRemoteIPAB()); | 517 | mRemoteIPAB->setText(prof->getRemoteIPAB()); |
518 | mRemotePortAB->setText(prof->getRemotePortAB()); | 518 | mRemotePortAB->setText(prof->getRemotePortAB()); |
519 | 519 | ||
520 | mRemotePwPWM->setText(prof->getRemotePwPWM()); | 520 | mRemotePwPWM->setText(prof->getRemotePwPWM()); |
521 | mRemoteIPPWM->setText(prof->getRemoteIPPWM()); | 521 | mRemoteIPPWM->setText(prof->getRemoteIPPWM()); |
522 | mRemotePortPWM->setText(prof->getRemotePortPWM()); | 522 | mRemotePortPWM->setText(prof->getRemotePortPWM()); |
523 | 523 | ||
524 | mRemotePrecommand->setText(prof->getPreSyncCommand()); | 524 | mRemotePrecommand->setText(prof->getPreSyncCommand()); |
525 | mRemotePostcommand->setText(prof->getPostSyncCommand()); | 525 | mRemotePostcommand->setText(prof->getPostSyncCommand()); |
526 | mLocalTempFile->setText(prof->getLocalTempFile()); | 526 | mLocalTempFile->setText(prof->getLocalTempFile()); |
527 | mRemoteFile->setText(prof->getRemoteFileName()) ; | 527 | mRemoteFile->setText(prof->getRemoteFileName()) ; |
528 | 528 | ||
529 | mRemotePrecommandAB->setText(prof->getPreSyncCommandAB()); | 529 | mRemotePrecommandAB->setText(prof->getPreSyncCommandAB()); |
530 | mRemotePostcommandAB->setText(prof->getPostSyncCommandAB()); | 530 | mRemotePostcommandAB->setText(prof->getPostSyncCommandAB()); |
531 | mLocalTempFileAB->setText(prof->getLocalTempFileAB()); | 531 | mLocalTempFileAB->setText(prof->getLocalTempFileAB()); |
532 | mRemoteFileAB->setText(prof->getRemoteFileNameAB()) ; | 532 | mRemoteFileAB->setText(prof->getRemoteFileNameAB()) ; |
533 | 533 | ||
534 | mRemotePrecommandPWM->setText(prof->getPreSyncCommandPWM()); | 534 | mRemotePrecommandPWM->setText(prof->getPreSyncCommandPWM()); |
535 | mRemotePostcommandPWM->setText(prof->getPostSyncCommandPWM()); | 535 | mRemotePostcommandPWM->setText(prof->getPostSyncCommandPWM()); |
536 | mLocalTempFilePWM->setText(prof->getLocalTempFilePWM()); | 536 | mLocalTempFilePWM->setText(prof->getLocalTempFilePWM()); |
537 | mRemoteFilePWM->setText(prof->getRemoteFileNamePWM()) ; | 537 | mRemoteFilePWM->setText(prof->getRemoteFileNamePWM()) ; |
538 | 538 | ||
539 | if ( mWriteContactToSIM ) | 539 | if ( mWriteContactToSIM ) |
540 | mWriteContactToSIM->setChecked( prof->getWriteContactToSIM()); | 540 | mWriteContactToSIM->setChecked( prof->getWriteContactToSIM()); |
541 | mPhoneDevice->setText(prof->getPhoneDevice()); | 541 | mPhoneDevice->setText(prof->getPhoneDevice()); |
542 | mPhoneConnection->setText(prof->getPhoneConnection()); | 542 | mPhoneConnection->setText(prof->getPhoneConnection()); |
543 | mPhoneModel->setText(prof->getPhoneModel()); | 543 | mPhoneModel->setText(prof->getPhoneModel()); |
544 | 544 | ||
545 | mShowSummaryAfterSync->setChecked( prof->getShowSummaryAfterSync()); | 545 | mShowSummaryAfterSync->setChecked( prof->getShowSummaryAfterSync()); |
546 | mAskForPreferences->setChecked( prof->getAskForPreferences()); | 546 | mAskForPreferences->setChecked( prof->getAskForPreferences()); |
547 | mWriteBackExisting->setChecked( prof->getWriteBackExisting() ); | 547 | mWriteBackExisting->setChecked( prof->getWriteBackExisting() ); |
548 | mWriteBackFile->setChecked( prof->getWriteBackFile()); | 548 | mWriteBackFile->setChecked( prof->getWriteBackFile()); |
549 | mIncludeInRing->setChecked( prof->getIncludeInRingSync() ); | 549 | mIncludeInRing->setChecked( prof->getIncludeInRingSync() ); |
550 | mIncludeInRingAB->setChecked( prof->getIncludeInRingSyncAB() ); | 550 | mIncludeInRingAB->setChecked( prof->getIncludeInRingSyncAB() ); |
551 | mIncludeInRingPWM->setChecked( prof->getIncludeInRingSyncPWM() ); | 551 | mIncludeInRingPWM->setChecked( prof->getIncludeInRingSyncPWM() ); |
552 | mWriteBackFuture->setChecked( prof->getWriteBackFuture()); | 552 | mWriteBackFuture->setChecked( prof->getWriteBackFuture()); |
553 | mWriteBackFutureWeeks->setValue( prof->getWriteBackFutureWeeks() ); | 553 | mWriteBackFutureWeeks->setValue( prof->getWriteBackFutureWeeks() ); |
554 | mWriteBackPastWeeks->setValue( prof->getWriteBackPastWeeks() ); | 554 | mWriteBackPastWeeks->setValue( prof->getWriteBackPastWeeks() ); |
555 | 555 | ||
556 | mFilterInCal->setCurrentItem( mFilterKopi.findIndex(prof->getFilterInCal () ) + 1 ); | 556 | mFilterInCal->setCurrentItem( mFilterKopi.findIndex(prof->getFilterInCal () ) + 1 ); |
557 | mFilterOutCal->setCurrentItem( mFilterKopi.findIndex(prof->getFilterOutCal () ) + 1 ); | 557 | mFilterOutCal->setCurrentItem( mFilterKopi.findIndex(prof->getFilterOutCal () ) + 1 ); |
558 | mFilterInAB->setCurrentItem( mFilterKapi.findIndex(prof->getFilterInAB () ) + 1 ); | 558 | mFilterInAB->setCurrentItem( mFilterKapi.findIndex(prof->getFilterInAB () ) + 1 ); |
559 | mFilterOutAB->setCurrentItem( mFilterKapi.findIndex(prof->getFilterOutAB () ) + 1 ); | 559 | mFilterOutAB->setCurrentItem( mFilterKapi.findIndex(prof->getFilterOutAB () ) + 1 ); |
560 | 560 | ||
561 | switch ( prof->getSyncPrefs() ) { | 561 | switch ( prof->getSyncPrefs() ) { |
562 | case 0: | 562 | case 0: |
563 | loc->setChecked( true); | 563 | loc->setChecked( true); |
564 | break; | 564 | break; |
565 | case 1: | 565 | case 1: |
566 | rem->setChecked( true ); | 566 | rem->setChecked( true ); |
567 | break; | 567 | break; |
568 | case 2: | 568 | case 2: |
569 | newest->setChecked( true); | 569 | newest->setChecked( true); |
570 | break; | 570 | break; |
571 | case 3: | 571 | case 3: |
572 | ask->setChecked( true); | 572 | ask->setChecked( true); |
573 | break; | 573 | break; |
574 | case 4: | 574 | case 4: |
575 | f_loc->setChecked( true); | 575 | f_loc->setChecked( true); |
576 | break; | 576 | break; |
577 | case 5: | 577 | case 5: |
578 | f_rem->setChecked( true); | 578 | f_rem->setChecked( true); |
579 | break; | 579 | break; |
580 | case 6: | 580 | case 6: |
581 | //both->setChecked( true); | 581 | //both->setChecked( true); |
582 | break; | 582 | break; |
583 | default: | 583 | default: |
584 | break; | 584 | break; |
585 | } | 585 | } |
586 | mIsLocal->setChecked(prof->getIsLocalFileSync()) ; | 586 | mIsLocal->setChecked(prof->getIsLocalFileSync()) ; |
587 | mIsPhone->setChecked(prof->getIsPhoneSync()) ; | 587 | mIsPhone->setChecked(prof->getIsPhoneSync()) ; |
588 | mIsPi->setChecked(prof->getIsPiSync()) ; | 588 | mIsPi->setChecked(prof->getIsPiSync()) ; |
589 | mIsPiSpecific->setChecked(prof->getIsPiSyncSpec()) ; | 589 | mIsPiSpecific->setChecked(prof->getIsPiSyncSpec()) ; |
590 | mIsKapiFileL->setChecked(prof->getIsKapiFile()) ; | 590 | mIsKapiFileL->setChecked(prof->getIsKapiFile()) ; |
591 | mIsKapiFileR->setChecked(prof->getIsKapiFile()) ; | 591 | mIsKapiFileR->setChecked(prof->getIsKapiFile()) ; |
592 | 592 | ||
593 | 593 | ||
594 | QStringList res = QStringList::split( ":",prof->getResSpecKopi(), true ); | 594 | QStringList res = QStringList::split( ":",prof->getResSpecKopi(), true ); |
595 | int add = res.count()/2; | 595 | int add = res.count()/2; |
596 | int i; | 596 | int i; |
597 | for ( i = 0;i < add ; ++i ) { | 597 | for ( i = 0;i < add ; ++i ) { |
598 | mResTableKopi->setText( i, 0, res[i+add] ); | 598 | mResTableKopi->setText( i, 0, res[i+add] ); |
599 | } | 599 | } |
600 | res = QStringList::split( ":",prof->getResSpecKapi(), true); | 600 | res = QStringList::split( ":",prof->getResSpecKapi(), true); |
601 | add = res.count()/2; | 601 | add = res.count()/2; |
602 | for ( i = 0;i < add; ++i ) { | 602 | for ( i = 0;i < add; ++i ) { |
603 | mResTableKapi->setText( i, 0, res[i+add] ); | 603 | mResTableKapi->setText( i, 0, res[i+add] ); |
604 | } | 604 | } |
605 | mIsNotLocal->setChecked(!prof->getIsLocalFileSync() && !prof->getIsPhoneSync() &&!prof->getIsPiSync() &&!prof->getIsPiSyncSpec()); | 605 | mIsNotLocal->setChecked(!prof->getIsLocalFileSync() && !prof->getIsPhoneSync() &&!prof->getIsPiSync() &&!prof->getIsPiSyncSpec()); |
606 | proGr->setEnabled( item > 2 ); | 606 | proGr->setEnabled( item > 2 ); |
607 | if ( item < 3 ) { | 607 | if ( item < 3 ) { |
608 | localFileWidget->hide(); | 608 | localFileWidget->hide(); |
609 | remoteFileWidget->hide(); | 609 | remoteFileWidget->hide(); |
610 | phoneWidget->hide(); | 610 | phoneWidget->hide(); |
611 | piWidget->hide(); | 611 | piWidget->hide(); |
612 | 612 | ||
613 | } else | 613 | } else |
614 | kindChanged( prof->getIsLocalFileSync() ); | 614 | kindChanged( prof->getIsLocalFileSync() ); |
615 | } | 615 | } |
616 | 616 | ||
617 | void KSyncPrefsDialog::fillSSH() | 617 | void KSyncPrefsDialog::fillSSH() |
618 | { | 618 | { |
619 | mRemotePrecommand->setText("scp zaurus@192.168.0.65:/home/zaurus/kdepim/apps/korganizer/mycalendar.ics /tmp/mycalendar.ics" ); | 619 | mRemotePrecommand->setText("scp zaurus@192.168.0.65:/home/zaurus/kdepim/apps/korganizer/mycalendar.ics /tmp/mycalendar.ics" ); |
620 | mLocalTempFile->setText("/tmp/mycalendar.ics" ); | 620 | mLocalTempFile->setText("/tmp/mycalendar.ics" ); |
621 | mRemotePostcommand->setText("scp /tmp/mycalendar.ics zaurus@192.168.0.65:/home/zaurus/kdepim/apps/korganizer/mycalendar.ics" ); | 621 | mRemotePostcommand->setText("scp /tmp/mycalendar.ics zaurus@192.168.0.65:/home/zaurus/kdepim/apps/korganizer/mycalendar.ics" ); |
622 | mRemotePrecommandAB->setText("scp zaurus@192.168.0.65:/home/zaurus/kdepim/apps/kabc/std.vcf /tmp/std.vcf" ); | 622 | mRemotePrecommandAB->setText("scp zaurus@192.168.0.65:/home/zaurus/kdepim/apps/kabc/std.vcf /tmp/std.vcf" ); |
623 | mLocalTempFileAB->setText("/tmp/std.vcf" ); | 623 | mLocalTempFileAB->setText("/tmp/std.vcf" ); |
624 | mRemotePostcommandAB->setText("scp /tmp/std.vcf zaurus@192.168.0.65:/home/zaurus/kdepim/apps/kabc/std.vcf" ); | 624 | mRemotePostcommandAB->setText("scp /tmp/std.vcf zaurus@192.168.0.65:/home/zaurus/kdepim/apps/kabc/std.vcf" ); |
625 | mRemotePrecommandPWM->setText("scp zaurus@192.168.0.65:/home/zaurus/kdepim/apps/pwmanager/passwords.pwm /tmp/passwords.pwm" ); | 625 | mRemotePrecommandPWM->setText("scp zaurus@192.168.0.65:/home/zaurus/kdepim/apps/pwmanager/passwords.pwm /tmp/passwords.pwm" ); |
626 | mLocalTempFilePWM->setText("/tmp/passwords.pwm" ); | 626 | mLocalTempFilePWM->setText("/tmp/passwords.pwm" ); |
627 | mRemotePostcommandPWM->setText("scp /tmp/passwords.pwm zaurus@192.168.0.65:/home/zaurus/kdepim/apps/pwmanager/pwmanager.pwm" ); | 627 | mRemotePostcommandPWM->setText("scp /tmp/passwords.pwm zaurus@192.168.0.65:/home/zaurus/kdepim/apps/pwmanager/pwmanager.pwm" ); |
628 | } | 628 | } |
629 | void KSyncPrefsDialog::fillFTP() | 629 | void KSyncPrefsDialog::fillFTP() |
630 | { | 630 | { |
631 | mRemotePrecommand->setText("cd /tmp;ftp ftp://zaurus:a@192.168.0.65/kdepim/apps/korganizer/mycalendar.ics" ); | 631 | mRemotePrecommand->setText("cd /tmp;ftp ftp://zaurus:a@192.168.0.65/kdepim/apps/korganizer/mycalendar.ics" ); |
632 | mLocalTempFile->setText("/tmp/mycalendar.ics" ); | 632 | mLocalTempFile->setText("/tmp/mycalendar.ics" ); |
633 | mRemotePostcommand->setText("ftp -u ftp://zaurus:a@192.168.0.65/kdepim/apps/korganizer/mycalendar.ics /tmp/mycalendar.ics" ); | 633 | mRemotePostcommand->setText("ftp -u ftp://zaurus:a@192.168.0.65/kdepim/apps/korganizer/mycalendar.ics /tmp/mycalendar.ics" ); |
634 | mRemotePrecommandAB->setText("cd /tmp;ftp ftp://zaurus:a@192.168.0.65/kdepim/apps/kabc/std.vcf" ); | 634 | mRemotePrecommandAB->setText("cd /tmp;ftp ftp://zaurus:a@192.168.0.65/kdepim/apps/kabc/std.vcf" ); |
635 | mLocalTempFileAB->setText("/tmp/std.vcf" ); | 635 | mLocalTempFileAB->setText("/tmp/std.vcf" ); |
636 | mRemotePostcommandAB->setText("ftp -u ftp://zaurus:a@192.168.0.65/kdepim/apps/kabc/std.vcf /tmp/std.vcf" ); | 636 | mRemotePostcommandAB->setText("ftp -u ftp://zaurus:a@192.168.0.65/kdepim/apps/kabc/std.vcf /tmp/std.vcf" ); |
637 | 637 | ||
638 | mRemotePrecommandPWM->setText("cd /tmp;ftp ftp://zaurus:a@192.168.0.65/kdepim/apps/pwmanager/passwords.pwm" ); | 638 | mRemotePrecommandPWM->setText("cd /tmp;ftp ftp://zaurus:a@192.168.0.65/kdepim/apps/pwmanager/passwords.pwm" ); |
639 | mLocalTempFilePWM->setText("/tmp/passwords.pwm" ); | 639 | mLocalTempFilePWM->setText("/tmp/passwords.pwm" ); |
640 | mRemotePostcommandPWM->setText("ftp -u ftp://zaurus:a@192.168.0.65/kdepim/apps/pwmanager/passwords.pwm /tmp/passwords.pwm" ); | 640 | mRemotePostcommandPWM->setText("ftp -u ftp://zaurus:a@192.168.0.65/kdepim/apps/pwmanager/passwords.pwm /tmp/passwords.pwm" ); |
641 | 641 | ||
642 | } | 642 | } |
643 | void KSyncPrefsDialog::kindChanged( bool b ) | 643 | void KSyncPrefsDialog::kindChanged( bool b ) |
644 | { | 644 | { |
645 | 645 | ||
646 | if ( mIsLocal->isChecked () ) { | 646 | if ( mIsLocal->isChecked () ) { |
647 | mIsKapiFileL->setChecked( mIsKapiFileR->isChecked() ); | 647 | mIsKapiFileL->setChecked( mIsKapiFileR->isChecked() ); |
648 | } else { | 648 | } else { |
649 | mIsKapiFileR->setChecked( mIsKapiFileL->isChecked() ); | 649 | mIsKapiFileR->setChecked( mIsKapiFileL->isChecked() ); |
650 | } | 650 | } |
651 | 651 | ||
652 | if ( mIsLocal->isChecked () ) | 652 | if ( mIsLocal->isChecked () ) |
653 | localFileWidget->show(); | 653 | localFileWidget->show(); |
654 | else | 654 | else |
655 | localFileWidget->hide(); | 655 | localFileWidget->hide(); |
656 | 656 | ||
657 | if ( mIsNotLocal->isChecked () ) | 657 | if ( mIsNotLocal->isChecked () ) |
658 | remoteFileWidget->show(); | 658 | remoteFileWidget->show(); |
659 | else | 659 | else |
660 | remoteFileWidget->hide(); | 660 | remoteFileWidget->hide(); |
661 | 661 | ||
662 | if ( mIsPhone->isChecked () ) { | 662 | if ( mIsPhone->isChecked () ) { |
663 | phoneWidget->show(); | 663 | phoneWidget->show(); |
664 | } | 664 | } |
665 | else { | 665 | else { |
666 | phoneWidget->hide(); | 666 | phoneWidget->hide(); |
667 | } | 667 | } |
668 | 668 | ||
669 | if ( mIsPi->isChecked () || mIsPiSpecific->isChecked () ) { | 669 | if ( mIsPi->isChecked () || mIsPiSpecific->isChecked () ) { |
670 | piWidget->show(); | 670 | piWidget->show(); |
671 | if (mIsPiSpecific->isChecked () ) { | 671 | if (mIsPiSpecific->isChecked () ) { |
672 | mTableBox->show(); | 672 | mTableBox->show(); |
673 | } | 673 | } |
674 | else { | 674 | else { |
675 | mTableBox->hide(); | 675 | mTableBox->hide(); |
676 | } | 676 | } |
677 | } | 677 | } |
678 | else { | 678 | else { |
679 | piWidget->hide(); | 679 | piWidget->hide(); |
680 | } | 680 | } |
681 | 681 | ||
682 | 682 | ||
683 | } | 683 | } |
684 | void KSyncPrefsDialog::deleteProfile() | 684 | void KSyncPrefsDialog::deleteProfile() |
685 | { | 685 | { |
686 | //qDebug("KSyncPrefsDialog::deleteProfile() "); | 686 | //qDebug("KSyncPrefsDialog::deleteProfile() "); |
687 | if ( currentSelection >= 0 ) { | 687 | if ( currentSelection >= 0 ) { |
688 | if ( currentSelection < 3 ) { | 688 | if ( currentSelection < 3 ) { |
689 | KMessageBox::error(this,i18n("This profil cannot be deleted!\n"),i18n("KO/Pi config error")); | 689 | KMessageBox::error(this,i18n("This profil cannot be deleted!\n"),i18n("KO/Pi config error")); |
690 | return; | 690 | return; |
691 | } | 691 | } |
692 | KSyncProfile* temp = mSyncProfiles.at(currentSelection); | 692 | KSyncProfile* temp = mSyncProfiles.at(currentSelection); |
693 | mSyncProfiles.remove( temp ); | 693 | mSyncProfiles.remove( temp ); |
694 | mSyncProfileNames.remove( mSyncProfileNames.at( currentSelection )); | 694 | mSyncProfileNames.remove( mSyncProfileNames.at( currentSelection )); |
695 | insertProfiles(); | 695 | insertProfiles(); |
696 | } | 696 | } |
697 | } | 697 | } |
698 | 698 | ||
699 | void KSyncPrefsDialog::saveProfile() | 699 | void KSyncPrefsDialog::saveProfile() |
700 | { | 700 | { |
701 | KSyncProfile* prof; | 701 | KSyncProfile* prof; |
702 | if ( currentSelection >= 0 ) { | 702 | if ( currentSelection >= 0 ) { |
703 | prof = mSyncProfiles.at(currentSelection) ; | 703 | prof = mSyncProfiles.at(currentSelection) ; |
704 | 704 | ||
705 | prof->setRemotePw( mRemotePw->text()); | 705 | prof->setRemotePw( mRemotePw->text()); |
706 | prof->setRemoteIP( mRemoteIP->text()); | 706 | prof->setRemoteIP( mRemoteIP->text()); |
707 | prof->setRemotePort( mRemotePort->text()); | 707 | prof->setRemotePort( mRemotePort->text()); |
708 | 708 | ||
709 | prof->setRemotePwAB( mRemotePwAB->text()); | 709 | prof->setRemotePwAB( mRemotePwAB->text()); |
710 | prof->setRemoteIPAB( mRemoteIPAB->text()); | 710 | prof->setRemoteIPAB( mRemoteIPAB->text()); |
711 | prof->setRemotePortAB( mRemotePortAB->text()); | 711 | prof->setRemotePortAB( mRemotePortAB->text()); |
712 | 712 | ||
713 | prof->setRemotePwPWM( mRemotePwPWM->text()); | 713 | prof->setRemotePwPWM( mRemotePwPWM->text()); |
714 | prof->setRemoteIPPWM( mRemoteIPPWM->text()); | 714 | prof->setRemoteIPPWM( mRemoteIPPWM->text()); |
715 | prof->setRemotePortPWM( mRemotePortPWM->text()); | 715 | prof->setRemotePortPWM( mRemotePortPWM->text()); |
716 | 716 | ||
717 | prof->setPreSyncCommand( mRemotePrecommand->text()); | 717 | prof->setPreSyncCommand( mRemotePrecommand->text()); |
718 | prof->setPostSyncCommand( mRemotePostcommand->text() ); | 718 | prof->setPostSyncCommand( mRemotePostcommand->text() ); |
719 | prof->setLocalTempFile( mLocalTempFile->text()); | 719 | prof->setLocalTempFile( mLocalTempFile->text()); |
720 | prof->setRemoteFileName( mRemoteFile->text() ); | 720 | prof->setRemoteFileName( mRemoteFile->text() ); |
721 | prof->setPreSyncCommandAB( mRemotePrecommandAB->text()); | 721 | prof->setPreSyncCommandAB( mRemotePrecommandAB->text()); |
722 | prof->setPostSyncCommandAB( mRemotePostcommandAB->text() ); | 722 | prof->setPostSyncCommandAB( mRemotePostcommandAB->text() ); |
723 | prof->setLocalTempFileAB( mLocalTempFileAB->text()); | 723 | prof->setLocalTempFileAB( mLocalTempFileAB->text()); |
724 | prof->setRemoteFileNameAB( mRemoteFileAB->text() ); | 724 | prof->setRemoteFileNameAB( mRemoteFileAB->text() ); |
725 | prof->setPreSyncCommandPWM( mRemotePrecommandPWM->text()); | 725 | prof->setPreSyncCommandPWM( mRemotePrecommandPWM->text()); |
726 | prof->setPostSyncCommandPWM( mRemotePostcommandPWM->text() ); | 726 | prof->setPostSyncCommandPWM( mRemotePostcommandPWM->text() ); |
727 | prof->setLocalTempFilePWM( mLocalTempFilePWM->text()); | 727 | prof->setLocalTempFilePWM( mLocalTempFilePWM->text()); |
728 | prof->setRemoteFileNamePWM( mRemoteFilePWM->text() ); | 728 | prof->setRemoteFileNamePWM( mRemoteFilePWM->text() ); |
729 | prof->setShowSummaryAfterSync( mShowSummaryAfterSync->isChecked() ); | 729 | prof->setShowSummaryAfterSync( mShowSummaryAfterSync->isChecked() ); |
730 | prof->setAskForPreferences( mAskForPreferences->isChecked()); | 730 | prof->setAskForPreferences( mAskForPreferences->isChecked()); |
731 | prof->setWriteBackExisting(mWriteBackExisting->isChecked() ); | 731 | prof->setWriteBackExisting(mWriteBackExisting->isChecked() ); |
732 | prof->setWriteBackFile( mWriteBackFile->isChecked()); | 732 | prof->setWriteBackFile( mWriteBackFile->isChecked()); |
733 | prof->setIncludeInRingSync( mIncludeInRing->isChecked() ); | 733 | prof->setIncludeInRingSync( mIncludeInRing->isChecked() ); |
734 | prof->setIncludeInRingSyncAB( mIncludeInRingAB->isChecked() ); | 734 | prof->setIncludeInRingSyncAB( mIncludeInRingAB->isChecked() ); |
735 | prof->setIncludeInRingSyncPWM( mIncludeInRingPWM->isChecked() ); | 735 | prof->setIncludeInRingSyncPWM( mIncludeInRingPWM->isChecked() ); |
736 | int syncprefs = rem->isChecked()*1+newest->isChecked()*2+ ask->isChecked()*3+ f_loc->isChecked()*4+ f_rem->isChecked()*5 ;//+ both->isChecked()*6 ; | 736 | int syncprefs = rem->isChecked()*1+newest->isChecked()*2+ ask->isChecked()*3+ f_loc->isChecked()*4+ f_rem->isChecked()*5 ;//+ both->isChecked()*6 ; |
737 | prof->setSyncPrefs( syncprefs); | 737 | prof->setSyncPrefs( syncprefs); |
738 | prof->setIsLocalFileSync( mIsLocal->isChecked() ); | 738 | prof->setIsLocalFileSync( mIsLocal->isChecked() ); |
739 | prof->setIsPhoneSync( mIsPhone->isChecked() ); | 739 | prof->setIsPhoneSync( mIsPhone->isChecked() ); |
740 | prof->setIsPiSync( mIsPi->isChecked() ); | 740 | prof->setIsPiSync( mIsPi->isChecked() ); |
741 | prof->setIsPiSyncSpec( mIsPiSpecific->isChecked() ); | 741 | prof->setIsPiSyncSpec( mIsPiSpecific->isChecked() ); |
742 | prof->setIsKapiFile( mIsKapiFileL->isChecked() ); | 742 | prof->setIsKapiFile( mIsKapiFileL->isChecked() ); |
743 | prof->setWriteBackFuture(mWriteBackFuture->isChecked()); | 743 | prof->setWriteBackFuture(mWriteBackFuture->isChecked()); |
744 | prof->setWriteBackFutureWeeks(mWriteBackFutureWeeks->value()); | 744 | prof->setWriteBackFutureWeeks(mWriteBackFutureWeeks->value()); |
745 | prof->setWriteBackPastWeeks(mWriteBackPastWeeks->value()); | 745 | prof->setWriteBackPastWeeks(mWriteBackPastWeeks->value()); |
746 | if ( mWriteContactToSIM ) | 746 | if ( mWriteContactToSIM ) |
747 | prof->setWriteContactToSIM(mWriteContactToSIM->isChecked()); | 747 | prof->setWriteContactToSIM(mWriteContactToSIM->isChecked()); |
748 | prof->setPhoneDevice( mPhoneDevice->text() ); | 748 | prof->setPhoneDevice( mPhoneDevice->text() ); |
749 | prof->setPhoneConnection( mPhoneConnection->text() ); | 749 | prof->setPhoneConnection( mPhoneConnection->text() ); |
750 | prof->setPhoneModel( mPhoneModel->text() ); | 750 | prof->setPhoneModel( mPhoneModel->text() ); |
751 | prof->setFilterInCal ( mFilterInCal->currentText ()); | 751 | prof->setFilterInCal ( mFilterInCal->currentText ()); |
752 | prof->setFilterOutCal ( mFilterOutCal ->currentText ()); | 752 | prof->setFilterOutCal ( mFilterOutCal ->currentText ()); |
753 | prof->setFilterInAB ( mFilterInAB ->currentText ()); | 753 | prof->setFilterInAB ( mFilterInAB ->currentText ()); |
754 | prof->setFilterOutAB ( mFilterOutAB ->currentText ()); | 754 | prof->setFilterOutAB ( mFilterOutAB ->currentText ()); |
755 | if ( mIsPiSpecific->isChecked() ) { | 755 | if ( mIsPiSpecific->isChecked() ) { |
756 | 756 | ||
757 | QStringList res = mResourcesKopi; | 757 | QStringList res = mResourcesKopi; |
758 | int i; | 758 | int i; |
759 | for ( i = 0;i < mResourcesKopi.count(); ++i ) { | 759 | for ( i = 0;i < mResourcesKopi.count(); ++i ) { |
760 | res.append( mResTableKopi->text( i, 0 )); | 760 | res.append( mResTableKopi->text( i, 0 )); |
761 | } | 761 | } |
762 | prof->setResSpecKopi( res.join(":")); | 762 | prof->setResSpecKopi( res.join(":")); |
763 | } | 763 | } |
764 | } | 764 | } |
765 | } | 765 | } |
766 | 766 | ||
767 | void KSyncPrefsDialog::insertProfiles() | 767 | void KSyncPrefsDialog::insertProfiles() |
768 | { | 768 | { |
769 | int curItem = mProfileBox->currentItem(); | 769 | int curItem = mProfileBox->currentItem(); |
770 | mProfileBox->blockSignals( true ); | 770 | mProfileBox->blockSignals( true ); |
771 | mProfileBox->clear(); | 771 | mProfileBox->clear(); |
772 | mProfileBox->insertStringList (mSyncProfileNames ); | 772 | mProfileBox->insertStringList (mSyncProfileNames ); |
773 | int item = mSyncProfileNames.count() -1; | 773 | int item = mSyncProfileNames.count() -1; |
774 | if ( curItem >= 0 && mSyncProfileNames.count() > 0 && curItem < mSyncProfileNames.count() ) | 774 | if ( curItem >= 0 && mSyncProfileNames.count() > 0 && curItem < mSyncProfileNames.count() ) |
775 | mProfileBox->setCurrentItem( curItem ); | 775 | mProfileBox->setCurrentItem( curItem ); |
776 | else if ( item >= 0 ) { | 776 | else if ( item >= 0 ) { |
777 | mProfileBox->setCurrentItem( item ); | 777 | mProfileBox->setCurrentItem( item ); |
778 | } | 778 | } |
779 | currentSelection = -1; | 779 | currentSelection = -1; |
780 | if ( mSyncProfileNames.count() > 0 ) { | 780 | if ( mSyncProfileNames.count() > 0 ) { |
781 | //qDebug(" profileChanged( mProfileBox->currentItem() "); | 781 | //qDebug(" profileChanged( mProfileBox->currentItem() "); |
782 | profileChanged( mProfileBox->currentItem() ); | 782 | profileChanged( mProfileBox->currentItem() ); |
783 | currentSelection = mProfileBox->currentItem(); | 783 | currentSelection = mProfileBox->currentItem(); |
784 | } | 784 | } |
785 | mProfileBox->blockSignals( false ); | 785 | mProfileBox->blockSignals( false ); |
786 | } | 786 | } |
787 | 787 | ||
788 | void KSyncPrefsDialog::addProfile ( KSyncProfile* temp ) | 788 | void KSyncPrefsDialog::addProfile ( KSyncProfile* temp ) |
789 | { | 789 | { |
790 | saveProfile(); | 790 | saveProfile(); |
791 | mSyncProfiles.append( temp ); | 791 | mSyncProfiles.append( temp ); |
792 | mSyncProfileNames << temp->getName(); | 792 | mSyncProfileNames << temp->getName(); |
793 | insertProfiles(); | 793 | insertProfiles(); |
794 | int last = mProfileBox->count() -1; | 794 | int last = mProfileBox->count() -1; |
795 | mProfileBox->blockSignals( true ); | 795 | mProfileBox->blockSignals( true ); |
796 | mProfileBox->setCurrentItem( last ); | 796 | mProfileBox->setCurrentItem( last ); |
797 | mProfileBox->blockSignals( false ); | 797 | mProfileBox->blockSignals( false ); |
798 | profileChanged(last); | 798 | profileChanged(last); |
799 | } | 799 | } |
800 | void KSyncPrefsDialog::newProfile() | 800 | void KSyncPrefsDialog::newProfile() |
801 | { | 801 | { |
802 | addProfile ( new KSyncProfile () ); | 802 | addProfile ( new KSyncProfile () ); |
803 | } | 803 | } |
804 | 804 | ||
805 | void KSyncPrefsDialog::cloneProfile() | 805 | void KSyncPrefsDialog::cloneProfile() |
806 | { | 806 | { |
807 | if ( currentSelection >= 0 ) | 807 | if ( currentSelection >= 0 ) |
808 | addProfile (mSyncProfiles.at(currentSelection)->clone()) ; | 808 | addProfile (mSyncProfiles.at(currentSelection)->clone()) ; |
809 | else | 809 | else |
810 | newProfile(); | 810 | newProfile(); |
811 | } | 811 | } |
812 | 812 | ||
813 | void KSyncPrefsDialog::setLocalMachineName ( const QString& name ) | 813 | void KSyncPrefsDialog::setLocalMachineName ( const QString& name ) |
814 | { | 814 | { |
815 | mMyMachineName->setText( name ); | 815 | mMyMachineName->setText( name ); |
816 | 816 | ||
817 | } | 817 | } |
818 | QString KSyncPrefsDialog::getLocalMachineName ( ) | 818 | QString KSyncPrefsDialog::getLocalMachineName ( ) |
819 | { | 819 | { |
820 | return mMyMachineName->text(); | 820 | return mMyMachineName->text(); |
821 | } | 821 | } |
822 | 822 | ||
823 | QStringList KSyncPrefsDialog::getSyncProfileNames() | 823 | QStringList KSyncPrefsDialog::getSyncProfileNames() |
824 | { | 824 | { |
825 | return mSyncProfileNames; | 825 | return mSyncProfileNames; |
826 | } | 826 | } |
827 | void KSyncPrefsDialog::usrReadConfig() | 827 | void KSyncPrefsDialog::usrReadConfig() |
828 | { | 828 | { |
829 | //KConfig *config = KOGlobals::config(); | 829 | //KConfig *config = KOGlobals::config(); |
830 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); | 830 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); |
831 | config.setGroup("General"); | 831 | config.setGroup("General"); |
832 | mSyncProfileNames =config.readListEntry("SyncProfileNames"); | 832 | mSyncProfileNames =config.readListEntry("SyncProfileNames"); |
833 | mMyMachineName->setText(config.readEntry("LocalMachineName","undefined")); | 833 | mMyMachineName->setText(config.readEntry("LocalMachineName","undefined")); |
834 | int i; | 834 | int i; |
835 | KSyncProfile* temp ; | 835 | KSyncProfile* temp ; |
836 | mSyncProfiles.clear(); | 836 | mSyncProfiles.clear(); |
837 | for ( i = 0; i < mSyncProfileNames.count();++i ) { | 837 | for ( i = 0; i < mSyncProfileNames.count();++i ) { |
838 | temp = new KSyncProfile (); | 838 | temp = new KSyncProfile (); |
839 | temp->setName( mSyncProfileNames[i] ); | 839 | temp->setName( mSyncProfileNames[i] ); |
840 | temp->readConfig( &config ); | 840 | temp->readConfig( &config ); |
841 | mSyncProfiles.append( temp ); | 841 | mSyncProfiles.append( temp ); |
842 | } | 842 | } |
843 | insertProfiles(); | 843 | insertProfiles(); |
844 | //mMyMachineName->setText(KOPrefs::instance()->mLocalMachineName ); | 844 | //mMyMachineName->setText(KOPrefs::instance()->mLocalMachineName ); |
845 | } | 845 | } |
846 | 846 | ||
847 | 847 | ||
848 | void KSyncPrefsDialog::usrWriteConfig() | 848 | void KSyncPrefsDialog::usrWriteConfig() |
849 | { | 849 | { |
850 | saveProfile(); | 850 | saveProfile(); |
851 | if ( currentSelection >= 0 ) | 851 | if ( currentSelection >= 0 ) |
852 | profileChanged(currentSelection); | 852 | profileChanged(currentSelection); |
853 | //KConfig *config = KOGlobals::config(); | 853 | //KConfig *config = KOGlobals::config(); |
854 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); | 854 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); |
855 | KSyncProfile* prof = mSyncProfiles.first(); | 855 | KSyncProfile* prof = mSyncProfiles.first(); |
856 | QStringList externalSyncProfileNames; | 856 | QStringList externalSyncProfileNames; |
857 | externalSyncProfileNames.append("Sharp_DTM");; | 857 | externalSyncProfileNames.append("Sharp_DTM");; |
858 | while ( prof ) { | 858 | while ( prof ) { |
859 | prof->writeConfig(&config); | 859 | prof->writeConfig(&config); |
860 | if ( prof->getIsPhoneSync( ) ) | 860 | if ( prof->getIsPhoneSync( ) ) |
861 | externalSyncProfileNames.append(prof->getName( ) ); | 861 | externalSyncProfileNames.append(prof->getName( ) ); |
862 | prof = mSyncProfiles.next(); | 862 | prof = mSyncProfiles.next(); |
863 | } | 863 | } |
864 | //KOPrefs::instance()->mSyncProfileNames = mSyncProfileNames; | 864 | //KOPrefs::instance()->mSyncProfileNames = mSyncProfileNames; |
865 | //KOPrefs::instance()->mLocalMachineName = mMyMachineName->text(); | 865 | //KOPrefs::instance()->mLocalMachineName = mMyMachineName->text(); |
866 | config.setGroup("General"); | 866 | config.setGroup("General"); |
867 | config.writeEntry("SyncProfileNames",mSyncProfileNames); | 867 | config.writeEntry("SyncProfileNames",mSyncProfileNames); |
868 | config.writeEntry("ExternSyncProfiles",externalSyncProfileNames); | 868 | config.writeEntry("ExternSyncProfiles",externalSyncProfileNames); |
869 | config.writeEntry("LocalMachineName",mMyMachineName->text()); | 869 | config.writeEntry("LocalMachineName",mMyMachineName->text()); |
870 | config.sync(); | 870 | config.sync(); |
871 | } | 871 | } |
872 | 872 | ||
873 | void KSyncPrefsDialog::helpDevice() | 873 | void KSyncPrefsDialog::helpDevice() |
874 | { | 874 | { |
875 | QString hint = i18n("Insert device where\nphone is connected. E.g.:\n"); | 875 | QString hint = i18n("Insert device where\nphone is connected. E.g.:\n"); |
876 | #ifdef _WIN32_ | 876 | #ifdef _WIN32_ |
877 | hint += "Leave empty for Irda.\n" | 877 | hint += "Leave empty for Irda.\n" |
878 | "com1:\n(first serial port)\n" | 878 | "com1:\n(first serial port)\n" |
879 | "usb not supported\n" | 879 | "usb not supported\n" |
880 | "???\n(bluetooth device address)\n"; | 880 | "???\n(bluetooth device address)\n"; |
881 | 881 | ||
882 | #else | 882 | #else |
883 | hint += "/dev/ircomm\n(Irda)\n" | 883 | hint += "/dev/ircomm\n(Irda)\n" |
884 | "/dev/ttyS0\n(first serial port)\n" | 884 | "/dev/ttyS0\n(first serial port)\n" |