-rw-r--r-- | libkdepim/ksyncmanager.cpp | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/libkdepim/ksyncmanager.cpp b/libkdepim/ksyncmanager.cpp index 40d8e47..75c0b2b 100644 --- a/libkdepim/ksyncmanager.cpp +++ b/libkdepim/ksyncmanager.cpp @@ -49,4 +49,5 @@ #include <qtextcodec.h> #include <qlabel.h> +#include <qcheckbox.h> #include <klocale.h> @@ -69,4 +70,6 @@ KSyncManager::KSyncManager(QWidget* parent, KSyncInterface* implementation, Targ int dh = QApplication::desktop()->height(); bar->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); + if ( mPrefs->mPassiveSyncAutoStart ) + enableQuick( false ); } @@ -268,6 +271,8 @@ void KSyncManager::slotSyncMenu( int action ) } -void KSyncManager::enableQuick() +void KSyncManager::enableQuick( bool ask ) { + bool autoStart; + if ( ask ) { QDialog dia ( 0, "input-dialog", true ); QLineEdit lab ( &dia ); @@ -286,5 +291,21 @@ void KSyncManager::enableQuick() lay.addWidget( &label2); lay.addWidget( &lepw); - dia.setFixedSize( 230,80 ); + QCheckBox autostart(i18n("Automatically start\nat application startup"), &dia ); + lay.addWidget( &autostart); + autostart.setChecked( mPrefs->mPassiveSyncAutoStart ); +#ifdef DESKTOP_VERSION +#ifdef _WIN32_ + QCheckBox syncdesktop( i18n("Automatically sync with Outlook\nwhen receiving sync request"),&dia ); +#else + QCheckBox syncdesktop( i18n("Automatically sync with KDE-Desktop\nwhen receiving sync request"),&dia ); +#endif + lay.addWidget( &syncdesktop); +#else + QCheckBox syncdesktop( i18n("Automatically sync\nwith KDE-Desktop"),&dia ); + syncdesktop.hide(); +#endif + syncdesktop.setChecked( mPrefs->mPassiveSyncWithDesktop ); + + dia.setFixedSize( 230,120 ); dia.setCaption( i18n("Enter port for Pi-Sync") ); QPushButton pb ( "OK", &dia); @@ -298,5 +319,11 @@ void KSyncManager::enableQuick() mPrefs->mPassiveSyncPw = lepw.text(); mPrefs->mPassiveSyncPort = lab.text(); + autoStart = autostart.isChecked(); + mPrefs->mPassiveSyncWithDesktop = syncdesktop.isChecked(); + } + else + autoStart = mPrefs->mPassiveSyncAutoStart; bool ok; + mPrefs->mPassiveSyncAutoStart = false; Q_UINT16 port = mPrefs->mPassiveSyncPort.toUInt(&ok); if ( ! ok ) { @@ -314,4 +341,6 @@ void KSyncManager::enableQuick() return; } + + mPrefs->mPassiveSyncAutoStart = autoStart; connect( mServerSocket, SIGNAL ( request_file() ),this, SIGNAL ( request_file() ) ); connect( mServerSocket, SIGNAL ( file_received( bool ) ), this, SIGNAL ( getFile( bool ) ) ); |