summaryrefslogtreecommitdiffabout
path: root/kabc/syncprefwidget.h
authorulf69 <ulf69>2004-08-04 22:45:22 (UTC)
committer ulf69 <ulf69>2004-08-04 22:45:22 (UTC)
commitc3a704f5acda9cf9fee66e5c0b1b864f3b7dd852 (patch) (side-by-side diff)
treedc59744a6d59ba241e793ce051da485d0bf16d06 /kabc/syncprefwidget.h
parentb83866e08ddcc5cb2734801977927f48b53a2e1c (diff)
downloadkdepimpi-c3a704f5acda9cf9fee66e5c0b1b864f3b7dd852.zip
kdepimpi-c3a704f5acda9cf9fee66e5c0b1b864f3b7dd852.tar.gz
kdepimpi-c3a704f5acda9cf9fee66e5c0b1b864f3b7dd852.tar.bz2
final changes for addressbook sync config dialog
Diffstat (limited to 'kabc/syncprefwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/syncprefwidget.h138
1 files changed, 78 insertions, 60 deletions
diff --git a/kabc/syncprefwidget.h b/kabc/syncprefwidget.h
index 3709d78..b20a68e 100644
--- a/kabc/syncprefwidget.h
+++ b/kabc/syncprefwidget.h
@@ -30,92 +30,110 @@ $Id$
#include <kresources/syncwidget.h>
-/*US
-//#include <qframe.h>
-//#include <qdict.h>
-#include <qvbox.h>
-#include <qhbox.h>
-//#include <qcolor.h>
-//#include <qlistview.h>
-
-#include <kdialogbase.h>
-
-#include <libkdepim/kprefsdialog.h>
-*/
-
-//US class KColorButton;
-//US class QSpinBox;;
class QRadioButton;
class QCheckBox;
class QVBox;
-//US class QSlider;
-//US class KURLRequester;
-//US class QComboBox;
+class QComboBox;
class QLineEdit;
-//US class QStringList;
-//US class KSyncProfile;
+class KRES::Resource;
-
-/** Dialog to change the korganizer configuration.
- */
-class SyncPrefWidget : public KRES::SyncWidget
+class SyncPrefWidget_Settings : public KRES::SyncWidget
{
Q_OBJECT
public:
- SyncPrefWidget(QWidget *parent=0);
- ~SyncPrefWidget();
-//US void usrReadConfig();
+ SyncPrefWidget_Settings(QWidget *parent=0, const char *name = 0 );
+ ~SyncPrefWidget_Settings();
public slots:
- protected slots:
-//US void accept();
-//US void deleteProfile();
-//US void newProfile();
-//US void cloneProfile();
-//US void kindChanged(bool);
-//US void fillSSH();
-//US void fillFTP();
-//US void textChanged( const QString & );
-//US void profileChanged( int );
-//US void chooseFile();
-//US void slotOK();
+ virtual void loadSettings( KRES::Resource *resource );
+ virtual void saveSettings( KRES::Resource *resource );
- protected:
-//US void usrWriteConfig();
+ protected:
void init();
private:
+ QCheckBox* mIncludeInRing;
+ QCheckBox* mWriteBackFile;
+ QCheckBox* mWriteBackExisting;
+ QCheckBox* mAskForPreferences;
+ QCheckBox* mShowSummaryAfterSync;
+};
-//US int currentSelection;
-//US QPtrList<KSyncProfile> mSyncProfiles;
-//US QStringList mSyncProfileNames;
-//US QLineEdit * mMyMachineName;
-//US QComboBox * mProfileBox;
-//US QRadioButton* mIsLocal;
- QCheckBox* mIsNotLocal;
- QCheckBox* mIncludeInRing;
-//US void addProfile ( KSyncProfile* );
-//US void insertProfiles();
-//US void saveProfile();
-//US QButtonGroup* proGr;
+class SyncPrefWidget_Conflict : public KRES::SyncWidget
+{
+ Q_OBJECT
+ public:
+ SyncPrefWidget_Conflict(QWidget *parent=0, const char *name = 0 );
+ ~SyncPrefWidget_Conflict();
+
+ public slots:
+ virtual void loadSettings( KRES::Resource *resource );
+ virtual void saveSettings( KRES::Resource *resource );
+
+ protected:
+ void init();
+
+ private:
QRadioButton* loc, *rem, *newest, *ask, *f_loc,* f_rem, *both;
+};
+
+
+
+class SyncPrefWidget_Remote : public KRES::SyncWidget
+{
+ Q_OBJECT
+ public:
+ SyncPrefWidget_Remote(QWidget *parent=0, const char *name = 0 );
+ ~SyncPrefWidget_Remote();
+
+ enum Types {
+ Local = 0,
+ Remote = 1,
+ Mobile =2
+ };
+
+ public slots:
+ virtual void loadSettings( KRES::Resource *resource );
+ virtual void saveSettings( KRES::Resource *resource );
+
+ protected slots:
+ void fillSSH();
+ void fillFTP();
+ void kindChanged( int newKind );
+
+ protected:
+ void init();
+
+ private:
+ QComboBox* mProfileKind;
QLineEdit * mRemotePostcommand;
QLineEdit * mRemotePrecommand;
QLineEdit * mRemoteFile;
QLineEdit * mLocalTempFile;
-//US QWidget* mSetupSyncAlgTab;
-
-//US QVBox* localFileWidget;
QVBox* remoteFileWidget;
- QCheckBox* mWriteBackFile;
- QCheckBox* mWriteBackExisting;
- QCheckBox* mAskForPreferences;
- QCheckBox* mShowSummaryAfterSync;
};
+
+
+
+
+class SyncPrefWidgetContainer : public KRES::SyncWidgetContainer
+{
+ Q_OBJECT
+
+public:
+ SyncPrefWidgetContainer();
+
+ virtual KRES::SyncWidget* generateSettingsTab(QWidget *parent, const char *name);
+ virtual KRES::SyncWidget* generateConflictsTab(QWidget *parent, const char *name);
+ virtual KRES::SyncWidget* generateRemoteTab(QWidget *parent, const char *name);
+};
+
+
+
#endif