author | ulf69 <ulf69> | 2004-08-04 22:45:22 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-04 22:45:22 (UTC) |
commit | c3a704f5acda9cf9fee66e5c0b1b864f3b7dd852 (patch) (unidiff) | |
tree | dc59744a6d59ba241e793ce051da485d0bf16d06 /kabc/syncprefwidget.h | |
parent | b83866e08ddcc5cb2734801977927f48b53a2e1c (diff) | |
download | kdepimpi-c3a704f5acda9cf9fee66e5c0b1b864f3b7dd852.zip kdepimpi-c3a704f5acda9cf9fee66e5c0b1b864f3b7dd852.tar.gz kdepimpi-c3a704f5acda9cf9fee66e5c0b1b864f3b7dd852.tar.bz2 |
final changes for addressbook sync config dialog
-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 | |||
@@ -29,93 +29,111 @@ $Id$ | |||
29 | #define _SYNCPREFWIDGET_H | 29 | #define _SYNCPREFWIDGET_H |
30 | 30 | ||
31 | #include <kresources/syncwidget.h> | 31 | #include <kresources/syncwidget.h> |
32 | 32 | ||
33 | /*US | ||
34 | //#include <qframe.h> | ||
35 | //#include <qdict.h> | ||
36 | #include <qvbox.h> | ||
37 | #include <qhbox.h> | ||
38 | //#include <qcolor.h> | ||
39 | //#include <qlistview.h> | ||
40 | |||
41 | #include <kdialogbase.h> | ||
42 | |||
43 | #include <libkdepim/kprefsdialog.h> | ||
44 | */ | ||
45 | |||
46 | //US class KColorButton; | ||
47 | //US class QSpinBox;; | ||
48 | class QRadioButton; | 33 | class QRadioButton; |
49 | class QCheckBox; | 34 | class QCheckBox; |
50 | class QVBox; | 35 | class QVBox; |
51 | //US class QSlider; | 36 | class QComboBox; |
52 | //US class KURLRequester; | ||
53 | //US class QComboBox; | ||
54 | class QLineEdit; | 37 | class QLineEdit; |
55 | //US class QStringList; | 38 | class KRES::Resource; |
56 | //US class KSyncProfile; | ||
57 | 39 | ||
58 | 40 | class SyncPrefWidget_Settings : public KRES::SyncWidget | |
59 | /** Dialog to change the korganizer configuration. | ||
60 | */ | ||
61 | class SyncPrefWidget : public KRES::SyncWidget | ||
62 | { | 41 | { |
63 | Q_OBJECT | 42 | Q_OBJECT |
64 | public: | 43 | public: |
65 | SyncPrefWidget(QWidget *parent=0); | 44 | SyncPrefWidget_Settings(QWidget *parent=0, const char *name = 0 ); |
66 | ~SyncPrefWidget(); | 45 | ~SyncPrefWidget_Settings(); |
67 | //US void usrReadConfig(); | ||
68 | 46 | ||
69 | public slots: | 47 | public slots: |
70 | protected slots: | 48 | virtual void loadSettings( KRES::Resource *resource ); |
71 | //US void accept(); | 49 | virtual void saveSettings( KRES::Resource *resource ); |
72 | //US void deleteProfile(); | ||
73 | //US void newProfile(); | ||
74 | //US void cloneProfile(); | ||
75 | //US void kindChanged(bool); | ||
76 | //US void fillSSH(); | ||
77 | //US void fillFTP(); | ||
78 | //US void textChanged( const QString & ); | ||
79 | //US void profileChanged( int ); | ||
80 | //US void chooseFile(); | ||
81 | //US void slotOK(); | ||
82 | 50 | ||
83 | protected: | ||
84 | //US void usrWriteConfig(); | ||
85 | 51 | ||
52 | protected: | ||
86 | void init(); | 53 | void init(); |
87 | 54 | ||
88 | private: | 55 | private: |
56 | QCheckBox* mIncludeInRing; | ||
57 | QCheckBox* mWriteBackFile; | ||
58 | QCheckBox* mWriteBackExisting; | ||
59 | QCheckBox* mAskForPreferences; | ||
60 | QCheckBox* mShowSummaryAfterSync; | ||
61 | }; | ||
89 | 62 | ||
90 | 63 | ||
91 | //US int currentSelection; | ||
92 | //US QPtrList<KSyncProfile> mSyncProfiles; | ||
93 | //US QStringList mSyncProfileNames; | ||
94 | //US QLineEdit * mMyMachineName; | ||
95 | //US QComboBox * mProfileBox; | ||
96 | //US QRadioButton* mIsLocal; | ||
97 | QCheckBox* mIsNotLocal; | ||
98 | QCheckBox* mIncludeInRing; | ||
99 | //US void addProfile ( KSyncProfile* ); | ||
100 | //US void insertProfiles(); | ||
101 | //US void saveProfile(); | ||
102 | //US QButtonGroup* proGr; | ||
103 | 64 | ||
65 | class SyncPrefWidget_Conflict : public KRES::SyncWidget | ||
66 | { | ||
67 | Q_OBJECT | ||
68 | public: | ||
69 | SyncPrefWidget_Conflict(QWidget *parent=0, const char *name = 0 ); | ||
70 | ~SyncPrefWidget_Conflict(); | ||
71 | |||
72 | public slots: | ||
73 | virtual void loadSettings( KRES::Resource *resource ); | ||
74 | virtual void saveSettings( KRES::Resource *resource ); | ||
75 | |||
76 | protected: | ||
77 | void init(); | ||
78 | |||
79 | private: | ||
104 | QRadioButton* loc, *rem, *newest, *ask, *f_loc,* f_rem, *both; | 80 | QRadioButton* loc, *rem, *newest, *ask, *f_loc,* f_rem, *both; |
81 | }; | ||
82 | |||
83 | |||
84 | |||
105 | 85 | ||
86 | class SyncPrefWidget_Remote : public KRES::SyncWidget | ||
87 | { | ||
88 | Q_OBJECT | ||
89 | public: | ||
90 | SyncPrefWidget_Remote(QWidget *parent=0, const char *name = 0 ); | ||
91 | ~SyncPrefWidget_Remote(); | ||
92 | |||
93 | enum Types { | ||
94 | Local = 0, | ||
95 | Remote = 1, | ||
96 | Mobile =2 | ||
97 | }; | ||
106 | 98 | ||
99 | |||
100 | public slots: | ||
101 | virtual void loadSettings( KRES::Resource *resource ); | ||
102 | virtual void saveSettings( KRES::Resource *resource ); | ||
103 | |||
104 | protected slots: | ||
105 | void fillSSH(); | ||
106 | void fillFTP(); | ||
107 | void kindChanged( int newKind ); | ||
108 | |||
109 | protected: | ||
110 | void init(); | ||
111 | |||
112 | private: | ||
113 | QComboBox* mProfileKind; | ||
107 | QLineEdit * mRemotePostcommand; | 114 | QLineEdit * mRemotePostcommand; |
108 | QLineEdit * mRemotePrecommand; | 115 | QLineEdit * mRemotePrecommand; |
109 | QLineEdit * mRemoteFile; | 116 | QLineEdit * mRemoteFile; |
110 | QLineEdit * mLocalTempFile; | 117 | QLineEdit * mLocalTempFile; |
111 | //US QWidget* mSetupSyncAlgTab; | ||
112 | |||
113 | //US QVBox* localFileWidget; | ||
114 | QVBox* remoteFileWidget; | 118 | QVBox* remoteFileWidget; |
115 | QCheckBox* mWriteBackFile; | ||
116 | QCheckBox* mWriteBackExisting; | ||
117 | QCheckBox* mAskForPreferences; | ||
118 | QCheckBox* mShowSummaryAfterSync; | ||
119 | }; | 119 | }; |
120 | 120 | ||
121 | |||
122 | |||
123 | |||
124 | |||
125 | class SyncPrefWidgetContainer : public KRES::SyncWidgetContainer | ||
126 | { | ||
127 | Q_OBJECT | ||
128 | |||
129 | public: | ||
130 | SyncPrefWidgetContainer(); | ||
131 | |||
132 | virtual KRES::SyncWidget* generateSettingsTab(QWidget *parent, const char *name); | ||
133 | virtual KRES::SyncWidget* generateConflictsTab(QWidget *parent, const char *name); | ||
134 | virtual KRES::SyncWidget* generateRemoteTab(QWidget *parent, const char *name); | ||
135 | }; | ||
136 | |||
137 | |||
138 | |||
121 | #endif | 139 | #endif |