From c3a704f5acda9cf9fee66e5c0b1b864f3b7dd852 Mon Sep 17 00:00:00 2001 From: ulf69 Date: Wed, 04 Aug 2004 22:45:22 +0000 Subject: final changes for addressbook sync config dialog --- (limited to 'kabc/syncprefwidget.cpp') diff --git a/kabc/syncprefwidget.cpp b/kabc/syncprefwidget.cpp index 51a8040..a2bde72 100644 --- a/kabc/syncprefwidget.cpp +++ b/kabc/syncprefwidget.cpp @@ -25,50 +25,6 @@ $Id$ */ -/*US -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include - - -#include "koprefs.h" - -#include "kosyncprefsdialog.h" -#include "koglobals.h" -*/ #include #include @@ -79,417 +35,376 @@ $Id$ #include #include #include +#include +#include #include #include - +#include "ksyncprofile.h" +#include "resource.h" #include "syncprefwidget.h" -SyncPrefWidget::SyncPrefWidget(QWidget *parent) : - KRES::SyncWidget(parent) +SyncPrefWidget_Settings::SyncPrefWidget_Settings(QWidget *parent, const char *name) : + KRES::SyncWidget(parent, name) { - -//US setCaption( i18n("Synchronization Preferences")); - -//US mSyncProfiles.setAutoDelete( true ); - init(); + init(); } -SyncPrefWidget::~SyncPrefWidget() +SyncPrefWidget_Settings::~SyncPrefWidget_Settings() { } -//US #include -//US #include -void SyncPrefWidget::init() +void SyncPrefWidget_Settings::init() { - QLabel * lab; - QPushButton* button; - -/*US - //QFrame *page = addPage(i18n("Sync Prefs"),0,0); - QVBox * mainbox = new QVBox( this ); - QScrollView* sv = new QScrollView( mainbox ); - QHBoxLayout * lay = new QHBoxLayout( this ); - lay->addWidget( mainbox ); - QHBox * b_box = new QHBox( mainbox ); -*/ -/*US - QPushButton* button = new QPushButton( i18n("Ok"), b_box ); - connect ( button, SIGNAL( clicked()), this, SLOT (slotOK() ) ); - button = new QPushButton( i18n("Cancel"), b_box ); - connect ( button, SIGNAL( clicked()), this, SLOT (reject() ) ); -*/ - //QBoxLayout * sl = new QVBoxLayout(this ); - //sl->addWidget ( sv ); -/*US - sv->setResizePolicy ( QScrollView::AutoOneFit ); - QFrame *topFrame = new QFrame ( sv ); - sv->addChild( topFrame ); - mSetupSyncAlgTab = topFrame; - QGridLayout *topLayout = new QGridLayout(topFrame,6,2); - topLayout->setSpacing(spacingHint()); - topLayout->setMargin(marginHint()); -*/ -//US new code for the layout QGridLayout *topLayout = new QGridLayout( this, 6,2 ); topLayout->setMargin( KDialog::marginHint() ); topLayout->setSpacing( KDialog::spacingHint() ); - //lab = new QLabel(i18n("Sync settings not yet implemented. DO NOT USE!"), topFrame); - int iii = 0; - //topLayout->addMultiCellWidget(lab , iii,iii,0,1); - //++iii; - -/*US - mMyMachineName = new QLineEdit(topFrame); - lab = new QLabel(mMyMachineName, i18n("Local device name:"), topFrame); - topLayout->addWidget(lab ,iii,0); - topLayout->addWidget(mMyMachineName,iii,1); - ++iii; - - QHBox* buttonbox = new QHBox( topFrame); - topLayout->addMultiCellWidget(buttonbox, iii,iii,0,1); - ++iii; - button = new QPushButton( i18n("New profile"), buttonbox ); - connect ( button, SIGNAL( clicked()), this, SLOT (newProfile() ) ); - - button = new QPushButton( i18n("Clone profile"), buttonbox ); - connect ( button, SIGNAL( clicked()), this, SLOT ( cloneProfile() ) ); - - button = new QPushButton( i18n("Delete profile"), buttonbox ); - connect ( button, SIGNAL( clicked()), this, SLOT (deleteProfile() ) ); - - mProfileBox = new QComboBox(topFrame); - mProfileBox->setEditable ( true ); - connect ( mProfileBox, SIGNAL(activated ( int ) ), this, SLOT (profileChanged( int ) ) ); - connect ( mProfileBox, SIGNAL( textChanged ( const QString & ) ), this, SLOT (textChanged( const QString & ) ) ); - - lab = new QLabel(mProfileBox, i18n("Profile:"), topFrame); - topLayout->addWidget(lab ,iii,0); - topLayout->addWidget(mProfileBox, iii,1); - ++iii; -*/ - mIncludeInRing = new QCheckBox( i18n("Include in multiple sync"), this ); - topLayout->addMultiCellWidget(mIncludeInRing, iii,iii,0,1); - ++iii; - - mAskForPreferences = new QCheckBox( i18n("Ask for preferences before sync"), this ); - topLayout->addMultiCellWidget(mAskForPreferences, iii,iii,0,1); - ++iii; - QButtonGroup* gr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Sync preferences"), this); - topLayout->addMultiCellWidget(gr, iii,iii,0,1); - ++iii; - loc = new QRadioButton ( i18n("Take local entry on conflict"), gr ); - rem = new QRadioButton ( i18n("Take remote entry on conflict"), gr ); - newest = new QRadioButton ( i18n("Take newest entry on conflict"), gr ); - ask = new QRadioButton ( i18n("Ask for every entry on conflict"), gr ); - f_loc= new QRadioButton ( i18n("Force: Take local entry always"), gr ); - f_rem = new QRadioButton ( i18n("Force: Take remote entry always"), gr ); - // both = new QRadioButton ( i18n("Take both on conflict"), gr ); + int iii = 0; + mIncludeInRing = new QCheckBox( i18n("Include in multiple sync"), this ); + topLayout->addMultiCellWidget(mIncludeInRing, iii,iii,0,1); + ++iii; - mShowSummaryAfterSync = new QCheckBox( i18n("Show summary after sync"), this ); - topLayout->addMultiCellWidget(mShowSummaryAfterSync, iii,iii,0,1); - ++iii; - - mWriteBackExisting= new QCheckBox( i18n("Write back existing entries only"), this ); - topLayout->addMultiCellWidget(mWriteBackExisting, iii,iii,0,1); - ++iii; - - mWriteBackFile = new QCheckBox( i18n("Write back file"), this ); - topLayout->addMultiCellWidget(mWriteBackFile, iii,iii,0,1); - ++iii; - - mIsNotLocal = new QCheckBox( i18n("Remote file (w down/upload command)"), this ); - topLayout->addMultiCellWidget(mIsNotLocal, iii,iii,0,1); - connect (mIsNotLocal, SIGNAL( checked(bool)), this, SLOT (kindChanged(bool) ) ); -/*US - proGr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Profile kind"), this); - gr = proGr; - topLayout->addMultiCellWidget(gr, iii,iii,0,1); - ++iii; - mIsLocal = new QRadioButton ( i18n("Local file"), gr ); - mIsNotLocal = new QRadioButton ( i18n("Remote file (w down/upload command)"), gr ); - connect (mIsLocal, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); -*/ + mAskForPreferences = new QCheckBox( i18n("Ask for preferences before sync"), this ); + topLayout->addMultiCellWidget(mAskForPreferences, iii,iii,0,1); + ++iii; -/*US - localFileWidget = new QVBox( topFrame); - topLayout->addMultiCellWidget(localFileWidget, iii,iii,0,1); - ++iii; - QHBox* temphb = new QHBox( localFileWidget ); - lab = new QLabel( i18n("Local file:"), temphb); - mRemoteFile = new QLineEdit(localFileWidget); + mShowSummaryAfterSync = new QCheckBox( i18n("Show summary after sync"), this ); + topLayout->addMultiCellWidget(mShowSummaryAfterSync, iii,iii,0,1); + ++iii; - button = new QPushButton( i18n("Choose..."), temphb ); - connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFile() ) ); -*/ - QHBox* temphb; + mWriteBackExisting= new QCheckBox( i18n("Write back existing entries only"), this ); + topLayout->addMultiCellWidget(mWriteBackExisting, iii,iii,0,1); + ++iii; - remoteFileWidget = new QVBox( this); - topLayout->addMultiCellWidget(remoteFileWidget, iii,iii,0,1); - ++iii; - lab = new QLabel( i18n("Pre sync (download) command:"), remoteFileWidget); - mRemotePrecommand = new QLineEdit(remoteFileWidget); + mWriteBackFile = new QCheckBox( i18n("Write back synced data"), this ); + topLayout->addMultiCellWidget(mWriteBackFile, iii,iii,0,1); + ++iii; - lab = new QLabel( i18n("Local temp file:"), remoteFileWidget); - mLocalTempFile = new QLineEdit(remoteFileWidget); +} +void SyncPrefWidget_Settings::loadSettings( KRES::Resource *res ) +{ + KABC::Resource* resource = (KABC::Resource*)( res ); + KSyncProfile* prof = resource->getSyncProfile(); + + if (prof == 0) + { + qDebug("SyncPrefWidget_Settings::loadSettings: something is wrong, because resource does have no syncprofile" ); + return; + } + + mIncludeInRing->setChecked( prof->getIncludeInRingSync() ); + mAskForPreferences->setChecked( prof->getAskForPreferences()); + mShowSummaryAfterSync->setChecked( prof->getShowSummaryAfterSync()); + mWriteBackExisting->setChecked( prof->getWriteBackExisting() ); + mWriteBackFile->setChecked( prof->getWriteBackFile()); +} - lab = new QLabel( i18n("Post sync (upload) command:"), remoteFileWidget); - mRemotePostcommand = new QLineEdit(remoteFileWidget); +void SyncPrefWidget_Settings::saveSettings( KRES::Resource *res ) +{ + KABC::Resource* resource = (KABC::Resource*)( res ); + KSyncProfile* prof = resource->getSyncProfile(); + + if (prof == 0) + { + qDebug("SyncPrefWidget_Settings::saveSettings: something is wrong, because resource does have no syncprofile" ); + return; + } + + prof->setIncludeInRingSync( mIncludeInRing->isChecked() ); + prof->setAskForPreferences( mAskForPreferences->isChecked()); + prof->setShowSummaryAfterSync( mShowSummaryAfterSync->isChecked() ); + prof->setWriteBackExisting(mWriteBackExisting->isChecked() ); + prof->setWriteBackFile( mWriteBackFile->isChecked()); +} - lab = new QLabel( i18n("Fill in default values for:"), remoteFileWidget); - temphb = new QHBox( remoteFileWidget ); - button = new QPushButton( i18n("ssh/scp"), temphb ); - connect ( button, SIGNAL( clicked()), this, SLOT (fillSSH() ) ); - button = new QPushButton( i18n("ftp"), temphb ); - connect ( button, SIGNAL( clicked()), this, SLOT (fillFTP() ) ); - lab = new QLabel( i18n("Hint: Use $PWD$ for placeholder of password!"), remoteFileWidget); +/*********************************************************************** + * + * + **********************************************************************/ -} -/*US -void SyncPrefWidget::slotOK() +SyncPrefWidget_Conflict::SyncPrefWidget_Conflict(QWidget *parent, const char *name) : + KRES::SyncWidget(parent, name) { - if ( mMyMachineName->text() == "undefined" ) { - KMessageBox::error(this,i18n("Local device name undefined!\nPlease define device name!"),i18n("KO/Pi config error")); - return; - } - int i; - for (i = 0; i < mSyncProfileNames.count(); ++ i) { - if ( mSyncProfileNames.contains( mSyncProfileNames[i]) > 1 ) { - KMessageBox::error(this,i18n("Multiple profiles with same name!\nPlease use unique profile names!"),i18n("KO/Pi config error")); - return; - } - } - usrWriteConfig(); - QDialog::accept(); + init(); } -void SyncPrefWidget::accept() + + +SyncPrefWidget_Conflict::~SyncPrefWidget_Conflict() { - slotOK(); } -void KOSyncPrefsDialog::chooseFile() + +void SyncPrefWidget_Conflict::init() { - QString fn =KOPrefs::instance()->mLastSyncedLocalFile; + QGridLayout *topLayout = new QGridLayout( this, 6,2 ); + topLayout->setMargin( KDialog::marginHint() ); + topLayout->setSpacing( KDialog::spacingHint() ); - fn =KFileDialog:: getOpenFileName( fn, i18n("Sync filename(*.ics/*.vcs)"), this ); - if ( fn == "" ) - return; - mRemoteFile->setText( fn ); + int iii = 0; + + QButtonGroup* gr = new QButtonGroup ( 1, Qt::Horizontal, i18n("In case of conflicts"), this); + topLayout->addMultiCellWidget(gr, iii,iii,0,1); + ++iii; + loc = new QRadioButton ( i18n("Take local entry on conflict"), gr ); + rem = new QRadioButton ( i18n("Take remote entry on conflict"), gr ); + newest = new QRadioButton ( i18n("Take newest entry on conflict"), gr ); + ask = new QRadioButton ( i18n("Ask for every entry on conflict"), gr ); + f_loc= new QRadioButton ( i18n("Force: Take local entry always"), gr ); + f_rem = new QRadioButton ( i18n("Force: Take remote entry always"), gr ); + // both = new QRadioButton ( i18n("Take both on conflict"), gr ); } -void KOSyncPrefsDialog::textChanged( const QString & s ) +void SyncPrefWidget_Conflict::loadSettings( KRES::Resource *res ) { - if ( mProfileBox->count() == 0 ) - return; - if ( currentSelection < 3 ) { - //KMessageBox::error(this,i18n("This profil name\ncannot be edited!\n"),i18n("KO/Pi config error")); - mProfileBox->blockSignals( true ); - mProfileBox->setCurrentItem(mProfileBox-> currentItem ()); - mProfileBox->blockSignals( false ); - return; - } - //qDebug("cur i %d ",mProfileBox-> currentItem () ); - mProfileBox->changeItem ( s, mProfileBox-> currentItem () ) ; - KSyncProfile* prof = mSyncProfiles.at(mProfileBox-> currentItem ()) ; - prof->setName( s ); - mSyncProfileNames[mProfileBox-> currentItem ()] = s; + KABC::Resource* resource = (KABC::Resource*)( res ); + KSyncProfile* prof = resource->getSyncProfile(); + + if (prof == 0) + { + qDebug("SyncPrefWidget_Conflict::loadSettings: something is wrong, because resource does have no syncprofile" ); + return; + } + + switch ( prof->getSyncPrefs() ) { + case 0: + loc->setChecked( true); + break; + case 1: + rem->setChecked( true ); + break; + case 2: + newest->setChecked( true); + break; + case 3: + ask->setChecked( true); + break; + case 4: + f_loc->setChecked( true); + break; + case 5: + f_rem->setChecked( true); + break; + case 6: + //both->setChecked( true); + break; + default: + break; + } } -void KOSyncPrefsDialog::profileChanged( int item ) + +void SyncPrefWidget_Conflict::saveSettings( KRES::Resource *res ) { - //qDebug("KOSyncPrefsDialog::profileChanged %d ", item ); - KSyncProfile* prof; - saveProfile(); - currentSelection = item; - prof = mSyncProfiles.at(item) ; - mRemotePrecommand->setText(prof->getPreSyncCommand()); - mRemotePostcommand->setText(prof->getPostSyncCommand()); - mLocalTempFile->setText(prof->getLocalTempFile()); - mRemoteFile->setText(prof->getRemoteFileName()) ; - mShowSummaryAfterSync->setChecked( prof->getShowSummaryAfterSync()); - mAskForPreferences->setChecked( prof->getAskForPreferences()); - mWriteBackExisting->setChecked( prof->getWriteBackExisting() ); - mWriteBackFile->setChecked( prof->getWriteBackFile()); - mIncludeInRing->setChecked( prof->getIncludeInRingSync() ); - - switch ( prof->getSyncPrefs() ) { - case 0: - loc->setChecked( true); - break; - case 1: - rem->setChecked( true ); - break; - case 2: - newest->setChecked( true); - break; - case 3: - ask->setChecked( true); - break; - case 4: - f_loc->setChecked( true); - break; - case 5: - f_rem->setChecked( true); - break; - case 6: - //both->setChecked( true); - break; - default: - break; - } - mIsLocal->setChecked(prof->getIsLocalFileSync()) ; - mIsNotLocal->setChecked(!prof->getIsLocalFileSync()); - proGr->setEnabled( item > 2 ); - if ( item < 3 ) { - localFileWidget->setEnabled(false); - remoteFileWidget->setEnabled(false); - - } else - kindChanged( prof->getIsLocalFileSync() ); + KABC::Resource* resource = (KABC::Resource*)( res ); + KSyncProfile* prof = resource->getSyncProfile(); + + if (prof == 0) + { + qDebug("SyncPrefWidget_Conftlict::saveSettings: something is wrong, because resource does have no syncprofile" ); + return; + } + + int syncprefs = rem->isChecked()*1+newest->isChecked()*2+ ask->isChecked()*3+ f_loc->isChecked()*4+ f_rem->isChecked()*5 ;//+ both->isChecked()*6 ; + prof->setSyncPrefs( syncprefs ); + +} + + +/*********************************************************************** + * + * + **********************************************************************/ + +SyncPrefWidget_Remote::SyncPrefWidget_Remote(QWidget *parent, const char *name) : + KRES::SyncWidget(parent, name) +{ + init(); } -void KOSyncPrefsDialog::fillSSH() + +SyncPrefWidget_Remote::~SyncPrefWidget_Remote() { - mRemotePrecommand->setText("scp zaurus@192.168.0.65:/home/zaurus/kdepim/apps/korganizer/mycalendar.ics /tmp/mycalendar.ics" ); - mLocalTempFile->setText("/tmp/mycalendar.ics" ); - mRemotePostcommand->setText("scp /tmp/mycalendar.ics zaurus@192.168.0.65:/home/zaurus/kdepim/apps/korganizer/mycalendar.ics" ); } -void KOSyncPrefsDialog::fillFTP() + +void SyncPrefWidget_Remote::init() { - mRemotePrecommand->setText("cd /tmp;ftp ftp://zaurus:a@192.168.0.65/kdepim/apps/korganizer/mycalendar.ics" ); - mLocalTempFile->setText("/tmp/mycalendar.ics" ); - mRemotePostcommand->setText("ftp -u ftp://zaurus:a@192.168.0.65/kdepim/apps/korganizer/mycalendar.ics /tmp/mycalendar.ics" ); + QLabel * lab; + QPushButton* button; + + + QGridLayout *topLayout = new QGridLayout( this, 6,2 ); + topLayout->setMargin( KDialog::marginHint() ); + topLayout->setSpacing( KDialog::spacingHint() ); + + int iii = 0; + + QButtonGroup* gr; + + QButtonGroup *proGr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Profile kind"), this); + gr = proGr; + topLayout->addMultiCellWidget(gr, iii,iii,0,1); + ++iii; + mProfileKind = new QComboBox( gr ); + + mProfileKind->insertItem( i18n("Local file"), Local ); + mProfileKind->insertItem( i18n("Remote file (w down/upload cmd)"),Remote ); + mProfileKind->insertItem( i18n("Mobile device (cell phone)"), Mobile ); + + connect( mProfileKind, SIGNAL( activated( int ) ), + this, SLOT (kindChanged( int ) ) ); + + + QHBox* temphb; + + remoteFileWidget = new QVBox( this); + topLayout->addMultiCellWidget(remoteFileWidget, iii,iii,0,1); + ++iii; + lab = new QLabel( i18n("Pre sync (download) command:"), remoteFileWidget); + mRemotePrecommand = new QLineEdit(remoteFileWidget); + + lab = new QLabel( i18n("Local temp file (=Location):"), remoteFileWidget); + mLocalTempFile = new QLineEdit(remoteFileWidget); + mLocalTempFile->setEnabled(false); + + + lab = new QLabel( i18n("Post sync (upload) command:"), remoteFileWidget); + mRemotePostcommand = new QLineEdit(remoteFileWidget); + + lab = new QLabel( i18n("Fill in default values for:"), remoteFileWidget); + temphb = new QHBox( remoteFileWidget ); + button = new QPushButton( i18n("ssh/scp"), temphb ); + connect ( button, SIGNAL( clicked()), this, SLOT (fillSSH() ) ); + button = new QPushButton( i18n("ftp"), temphb ); + connect ( button, SIGNAL( clicked()), this, SLOT (fillFTP() ) ); + lab = new QLabel( i18n("Hint: Use $PWD$ for placeholder of password!"), remoteFileWidget); } -void KOSyncPrefsDialog::kindChanged( bool b ) + +void SyncPrefWidget_Remote::loadSettings( KRES::Resource *res ) { + KABC::Resource* resource = (KABC::Resource*)( res ); + KSyncProfile* prof = resource->getSyncProfile(); + + if (prof == 0) + { + qDebug("SyncPrefWidget_Remote::loadSettings: something is wrong, because resource does have no syncprofile" ); + return; + } - localFileWidget->setEnabled(b); - remoteFileWidget->setEnabled(!b); + int val; + if (prof->getIsPhoneSync()) + val = Mobile; + else if (!prof->getIsLocalFileSync()) + val = Remote; + else // default value + val = Local; + + mProfileKind->setCurrentItem( val ); + kindChanged( val ); + + + mRemotePrecommand->setText(prof->getPreSyncCommand()); + mLocalTempFile->setText(resource->fileName()); + mRemotePostcommand->setText(prof->getPostSyncCommand()); } -void KOSyncPrefsDialog::deleteProfile() + +void SyncPrefWidget_Remote::saveSettings( KRES::Resource *res ) { - //qDebug("KOSyncPrefsDialog::deleteProfile() "); - if ( currentSelection >= 0 ) { - if ( currentSelection < 3 ) { - KMessageBox::error(this,i18n("This profil cannot be deleted!\n"),i18n("KO/Pi config error")); - return; - } - KSyncProfile* temp = mSyncProfiles.at(currentSelection); - mSyncProfiles.remove( temp ); - mSyncProfileNames.remove( mSyncProfileNames.at( currentSelection )); - insertProfiles(); - } + KABC::Resource* resource = (KABC::Resource*)( res ); + KSyncProfile* prof = resource->getSyncProfile(); + + if (prof == 0) + { + qDebug("SyncPrefWidget_Remote::saveSettings: something is wrong, because resource does have no syncprofile" ); + return; + } + + int val = mProfileKind->currentItem(); + + if (val == Mobile) + { + prof->setIsLocalFileSync(true); + prof->setIsPhoneSync(true); + } + else if (val == Remote) + { + prof->setIsLocalFileSync(false); + prof->setIsPhoneSync(false); + } + else // default value is Local + { + prof->setIsLocalFileSync(true); + prof->setIsPhoneSync(false); + } + + + prof->setPreSyncCommand( mRemotePrecommand->text()); +//US prof->setLocalTempFile( mLocalTempFile->text()); + prof->setPostSyncCommand( mRemotePostcommand->text() ); } -void KOSyncPrefsDialog::saveProfile() + +void SyncPrefWidget_Remote::fillSSH() { - KSyncProfile* prof; - if ( currentSelection >= 0 ) { - prof = mSyncProfiles.at(currentSelection) ; - prof->setPreSyncCommand( mRemotePrecommand->text()); - prof->setPostSyncCommand( mRemotePostcommand->text() ); - prof->setLocalTempFile( mLocalTempFile->text()); - prof->setRemoteFileName( mRemoteFile->text() ); - prof->setShowSummaryAfterSync( mShowSummaryAfterSync->isChecked() ); - prof->setAskForPreferences( mAskForPreferences->isChecked()); - prof->setWriteBackExisting(mWriteBackExisting->isChecked() ); - prof->setWriteBackFile( mWriteBackFile->isChecked()); - prof->setIncludeInRingSync( mIncludeInRing->isChecked() ); - int syncprefs = rem->isChecked()*1+newest->isChecked()*2+ ask->isChecked()*3+ f_loc->isChecked()*4+ f_rem->isChecked()*5 ;//+ both->isChecked()*6 ; - prof->setSyncPrefs( syncprefs); - prof->setIsLocalFileSync( mIsLocal->isChecked() ); - } + QString location = mLocalTempFile->text(); + mRemotePrecommand->setText("scp zaurus@192.168.0.65:/home/zaurus/kdepim/"+location + " " + location ); +//US mLocalTempFile->setText("/tmp/mycalendar.ics" ); + mRemotePostcommand->setText("scp " + location + " zaurus@192.168.0.65:/home/zaurus/kdepim/"+location ); } -void KOSyncPrefsDialog::insertProfiles() +void SyncPrefWidget_Remote::fillFTP() { - int curItem = mProfileBox->currentItem(); - mProfileBox->blockSignals( true ); - mProfileBox->clear(); - mProfileBox->insertStringList (mSyncProfileNames ); - int item = mSyncProfileNames.count() -1; - if ( curItem >= 0 && mSyncProfileNames.count() > 0 && curItem < mSyncProfileNames.count() ) - mProfileBox->setCurrentItem( curItem ); - else if ( item >= 0 ) { - mProfileBox->setCurrentItem( item ); - } - currentSelection = -1; - if ( mSyncProfileNames.count() > 0 ) { - //qDebug(" profileChanged( mProfileBox->currentItem() "); - profileChanged( mProfileBox->currentItem() ); - currentSelection = mProfileBox->currentItem(); - } - mProfileBox->blockSignals( false ); + QString location = mLocalTempFile->text(); + + mRemotePrecommand->setText("cd /tmp;ftp ftp://zaurus:a@192.168.0.65/kdepim/" + location ); +//US mLocalTempFile->setText("/tmp/mycalendar.ics" ); + mRemotePostcommand->setText("ftp -u ftp://zaurus:a@192.168.0.65/kdepim/"+location+ " " + location); + } -void KOSyncPrefsDialog::addProfile ( KSyncProfile* temp ) + +void SyncPrefWidget_Remote::kindChanged( int newKind ) { - saveProfile(); - mSyncProfiles.append( temp ); - mSyncProfileNames << temp->getName(); - insertProfiles(); - int last = mProfileBox->count() -1; - mProfileBox->blockSignals( true ); - mProfileBox->setCurrentItem( last ); - mProfileBox->blockSignals( false ); - profileChanged(last); + + if (newKind == Mobile) + remoteFileWidget->setEnabled(false); + else if (newKind == Remote) + remoteFileWidget->setEnabled(true); + else // default value is local + remoteFileWidget->setEnabled(false); + } -void KOSyncPrefsDialog::newProfile() + +/*********************************************************************** + * + * + **********************************************************************/ + + +SyncPrefWidgetContainer::SyncPrefWidgetContainer() + : SyncWidgetContainer() { - addProfile ( new KSyncProfile () ); } -void KOSyncPrefsDialog::cloneProfile() +KRES::SyncWidget* SyncPrefWidgetContainer::generateSettingsTab(QWidget *parent = 0, const char *name = 0) { - if ( currentSelection >= 0 ) - addProfile (mSyncProfiles.at(currentSelection)->clone()) ; - else - newProfile(); + return new SyncPrefWidget_Settings(parent, name); } - -void KOSyncPrefsDialog::usrReadConfig() +KRES::SyncWidget* SyncPrefWidgetContainer::generateConflictsTab(QWidget *parent = 0, const char *name = 0) { - KConfig *config = KOGlobals::config(); - config->setGroup("SyncProfiles"); - mSyncProfileNames = KOPrefs::instance()->mSyncProfileNames; - int i; - KSyncProfile* temp ; - mSyncProfiles.clear(); - for ( i = 0; i < mSyncProfileNames.count();++i ) { - temp = new KSyncProfile (); - temp->setName( mSyncProfileNames[i] ); - temp->readConfig( config ); - mSyncProfiles.append( temp ); - } - insertProfiles(); - mMyMachineName->setText(KOPrefs::instance()->mLocalMachineName ); + return new SyncPrefWidget_Conflict(parent, name); } - -void KOSyncPrefsDialog::usrWriteConfig() +KRES::SyncWidget* SyncPrefWidgetContainer::generateRemoteTab(QWidget *parent = 0, const char *name = 0) { - saveProfile(); - if ( currentSelection >= 0 ) - profileChanged(currentSelection); - KConfig *config = KOGlobals::config(); - config->setGroup("SyncProfiles"); - KSyncProfile* prof = mSyncProfiles.first(); - while ( prof ) { - prof->writeConfig(config); - prof = mSyncProfiles.next(); - } - KOPrefs::instance()->mSyncProfileNames = mSyncProfileNames; - KOPrefs::instance()->mLocalMachineName = mMyMachineName->text(); - config->writeEntry("SyncProfileNames",&mSyncProfileNames); + return new SyncPrefWidget_Remote(parent, name); } -*/ + -- cgit v0.9.0.2