-rw-r--r-- | kabc/syncprefwidget.h | 138 |
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 @@ -17,105 +17,123 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. As a special exception, permission is given to link this program with any edition of Qt, and distribute the resulting executable, without including the source code for Qt in the source distribution. */ /* $Id$ */ #ifndef _SYNCPREFWIDGET_H #define _SYNCPREFWIDGET_H #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 |