author | zautrix <zautrix> | 2005-01-13 03:53:45 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-13 03:53:45 (UTC) |
commit | 7d00f1441b5e1270dcd447bfb7920dbd3a21503d (patch) (unidiff) | |
tree | 8eb3b053e8104914021eff6f39772024784fff64 /libkdepim/ksyncprefsdialog.cpp | |
parent | 7a4a866cded40032766acb4fe8d02b6347b1d12e (diff) | |
download | kdepimpi-7d00f1441b5e1270dcd447bfb7920dbd3a21503d.zip kdepimpi-7d00f1441b5e1270dcd447bfb7920dbd3a21503d.tar.gz kdepimpi-7d00f1441b5e1270dcd447bfb7920dbd3a21503d.tar.bz2 |
sync dialog fixes
Diffstat (limited to 'libkdepim/ksyncprefsdialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libkdepim/ksyncprefsdialog.cpp | 333 |
1 files changed, 190 insertions, 143 deletions
diff --git a/libkdepim/ksyncprefsdialog.cpp b/libkdepim/ksyncprefsdialog.cpp index 03265d2..8a3f4cf 100644 --- a/libkdepim/ksyncprefsdialog.cpp +++ b/libkdepim/ksyncprefsdialog.cpp | |||
@@ -44,4 +44,6 @@ | |||
44 | #include <qlayout.h> | 44 | #include <qlayout.h> |
45 | #include <qscrollview.h> | 45 | #include <qscrollview.h> |
46 | #include <qvgroupbox.h> | ||
47 | #include <qhgroupbox.h> | ||
46 | 48 | ||
47 | #include <kcolorbutton.h> | 49 | #include <kcolorbutton.h> |
@@ -142,5 +144,7 @@ void KSyncPrefsDialog::setupSyncAlgTab() | |||
142 | ++iii; | 144 | ++iii; |
143 | 145 | ||
144 | QHBox *iims = new QHBox( topFrame ); | 146 | |
147 | |||
148 | QHGroupBox *iims = new QHGroupBox( i18n("Multiple Sync options"), topFrame); | ||
145 | new QLabel( i18n("Include in multiple "), iims ); | 149 | new QLabel( i18n("Include in multiple "), iims ); |
146 | mIncludeInRing = new QCheckBox( i18n("calendar "), iims ); | 150 | mIncludeInRing = new QCheckBox( i18n("calendar "), iims ); |
@@ -150,39 +154,57 @@ void KSyncPrefsDialog::setupSyncAlgTab() | |||
150 | topLayout->addMultiCellWidget(iims, iii,iii,0,1); | 154 | topLayout->addMultiCellWidget(iims, iii,iii,0,1); |
151 | ++iii; | 155 | ++iii; |
152 | 156 | QVGroupBox* gb0 = new QVGroupBox( i18n("Sync algo options"), topFrame); | |
153 | mAskForPreferences = new QCheckBox( i18n("Ask for preferences before sync"), topFrame ); | 157 | topLayout->addMultiCellWidget(gb0, iii,iii,0,1); |
154 | topLayout->addMultiCellWidget(mAskForPreferences, iii,iii,0,1); | ||
155 | ++iii; | ||
156 | QButtonGroup* gr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Sync preferences"), topFrame); | ||
157 | topLayout->addMultiCellWidget(gr, iii,iii,0,1); | ||
158 | ++iii; | ||
159 | loc = new QRadioButton ( i18n("Take local entry on conflict"), gr ); | ||
160 | rem = new QRadioButton ( i18n("Take remote entry on conflict"), gr ); | ||
161 | newest = new QRadioButton ( i18n("Take newest entry on conflict"), gr ); | ||
162 | ask = new QRadioButton ( i18n("Ask for every entry on conflict"), gr ); | ||
163 | f_loc= new QRadioButton ( i18n("Force: Take local entry always"), gr ); | ||
164 | f_rem = new QRadioButton ( i18n("Force: Take remote entry always"), gr ); | ||
165 | // both = new QRadioButton ( i18n("Take both on conflict"), gr ); | ||
166 | |||
167 | mShowSummaryAfterSync = new QCheckBox( i18n("Show summary after sync"), topFrame ); | ||
168 | topLayout->addMultiCellWidget(mShowSummaryAfterSync, iii,iii,0,1); | ||
169 | ++iii; | ||
170 | |||
171 | mWriteBackFile = new QCheckBox( i18n("Write back synced data"), topFrame ); | ||
172 | topLayout->addMultiCellWidget(mWriteBackFile, iii,iii,0,1); | ||
173 | ++iii; | 158 | ++iii; |
159 | QButtonGroup* gr; | ||
160 | { | ||
161 | QVGroupBox* topFrame = gb0; | ||
162 | mAskForPreferences = new QCheckBox( i18n("Ask for preferences before sync"), topFrame ); | ||
163 | //topLayout->addMultiCellWidget(mAskForPreferences, iii,iii,0,1); | ||
164 | //++iii; | ||
165 | gr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Sync preferences"), topFrame); | ||
166 | //topLayout->addMultiCellWidget(gr, iii,iii,0,1); | ||
167 | //++iii; | ||
168 | loc = new QRadioButton ( i18n("Take local entry on conflict"), gr ); | ||
169 | rem = new QRadioButton ( i18n("Take remote entry on conflict"), gr ); | ||
170 | newest = new QRadioButton ( i18n("Take newest entry on conflict"), gr ); | ||
171 | ask = new QRadioButton ( i18n("Ask for every entry on conflict"), gr ); | ||
172 | f_loc= new QRadioButton ( i18n("Force: Take local entry always"), gr ); | ||
173 | f_rem = new QRadioButton ( i18n("Force: Take remote entry always"), gr ); | ||
174 | // both = new QRadioButton ( i18n("Take both on conflict"), gr ); | ||
175 | |||
176 | mShowSummaryAfterSync = new QCheckBox( i18n("Show summary after sync"), topFrame ); | ||
177 | //topLayout->addMultiCellWidget(mShowSummaryAfterSync, iii,iii,0,1); | ||
178 | //++iii; | ||
179 | |||
180 | mWriteBackFile = new QCheckBox( i18n("Write back synced data"), topFrame ); | ||
181 | // topLayout->addMultiCellWidget(mWriteBackFile, iii,iii,0,1); | ||
182 | // ++iii; | ||
174 | 183 | ||
175 | mWriteBackExisting= new QCheckBox( i18n("-- Write back (on remote) existing entries only"), topFrame ); | 184 | QVGroupBox* gb2 = new QVGroupBox( i18n("Write back options"), topFrame); |
176 | topLayout->addMultiCellWidget(mWriteBackExisting, iii,iii,0,1); | 185 | //topLayout->addMultiCellWidget(gb2, iii,iii,0,1); |
177 | ++iii; | 186 | //++iii; |
178 | 187 | { | |
179 | mWriteBackFuture= new QCheckBox( i18n("-- Write back (calendar) entries in future only"), topFrame ); | 188 | QVGroupBox*topFrame = gb2; |
180 | topLayout->addMultiCellWidget(mWriteBackFuture, iii,iii,0,1); | 189 | mWriteBackExisting= new QCheckBox( i18n("Write back (on remote) existing entries only"), topFrame ); |
181 | ++iii; | 190 | //topLayout->addMultiCellWidget(mWriteBackExisting, iii,iii,0,1); |
182 | topLayout->addMultiCellWidget(new QLabel( i18n("---- Max. weeks in future: ") , topFrame ), iii,iii,0,0); | 191 | //++iii; |
183 | mWriteBackFutureWeeks= new QSpinBox(1,104, 1, topFrame); | 192 | mWriteBackFuture= new QCheckBox( i18n("Write back (calendar) entries for time period only"), topFrame ); |
184 | topLayout->addMultiCellWidget(mWriteBackFutureWeeks, iii,iii,1,1); | 193 | //topLayout->addMultiCellWidget(mWriteBackFuture, iii,iii,0,1); |
185 | ++iii; | 194 | //++iii; |
186 | 195 | QHGroupBox* gb3 = new QHGroupBox( i18n("Time period"), topFrame); | |
196 | connect ( mWriteBackFuture, SIGNAL( toggled ( bool ) ), gb3, SLOT ( setEnabled ( bool ) ) ); | ||
197 | new QLabel( i18n("From ") , gb3 ); | ||
198 | mWriteBackPastWeeks= new QSpinBox(1,104, 1, gb3); | ||
199 | new QLabel( i18n(" weeks in the past to ") , gb3 ); | ||
200 | mWriteBackFutureWeeks= new QSpinBox(1,104, 1, gb3); | ||
201 | new QLabel( i18n(" weeks in the future ") , gb3 ); | ||
202 | //topLayout->addMultiCellWidget(mWriteBackFutureWeeks, iii,iii,1,1); | ||
203 | //++iii; | ||
204 | gb3->setEnabled( false ); | ||
205 | } | ||
206 | connect ( mWriteBackFile, SIGNAL( toggled ( bool ) ), gb2, SLOT ( setEnabled ( bool ) ) ); | ||
207 | |||
208 | } | ||
187 | proGr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Profile kind"), topFrame); | 209 | proGr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Profile kind"), topFrame); |
188 | gr = proGr; | 210 | gr = proGr; |
@@ -197,119 +219,142 @@ void KSyncPrefsDialog::setupSyncAlgTab() | |||
197 | connect (mIsPhone, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); | 219 | connect (mIsPhone, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); |
198 | 220 | ||
199 | 221 | QVGroupBox* gb1 = new QVGroupBox( i18n("Profile kind specific settings"), topFrame); | |
200 | phoneWidget = new QVBox( topFrame); | 222 | topLayout->addMultiCellWidget(gb1, iii,iii,0,1); |
201 | topLayout->addMultiCellWidget(phoneWidget, iii,iii,0,1); | ||
202 | ++iii; | ||
203 | mWriteContactToSIM = 0;//new QCheckBox( i18n("Sync contacts with phone SIM card (If not, sync with phone memory)"), phoneWidget ); | ||
204 | QHBox* temphb = new QHBox( phoneWidget ); | ||
205 | new QLabel( i18n("I/O device: "), temphb ); | ||
206 | mPhoneDevice = new QLineEdit( temphb); | ||
207 | button = new QPushButton( i18n("Help..."), temphb ); | ||
208 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpDevice() ) ); | ||
209 | |||
210 | |||
211 | temphb = new QHBox( phoneWidget ); | ||
212 | new QLabel( i18n("Connection: "), temphb ); | ||
213 | mPhoneConnection = new QLineEdit( temphb); | ||
214 | button = new QPushButton( i18n("Help..."), temphb ); | ||
215 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpConnection() ) ); | ||
216 | |||
217 | |||
218 | temphb = new QHBox( phoneWidget ); | ||
219 | new QLabel( i18n("Model(opt.): "), temphb ); | ||
220 | mPhoneModel = new QLineEdit( temphb); | ||
221 | button = new QPushButton( i18n("Help..."), temphb ); | ||
222 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpModel() ) ); | ||
223 | |||
224 | // *** local | ||
225 | localFileWidget = new QVBox( topFrame); | ||
226 | topLayout->addMultiCellWidget(localFileWidget, iii,iii,0,1); | ||
227 | ++iii; | 223 | ++iii; |
228 | temphb = new QHBox( localFileWidget ); | ||
229 | |||
230 | lab = new QLabel( i18n("Local file Cal:"), temphb ); | ||
231 | lab = new QLabel( i18n("Local file ABook:"), temphb ); | ||
232 | lab = new QLabel( i18n("Local file PWMgr:"), temphb ); | ||
233 | temphb = new QHBox( localFileWidget ); | ||
234 | button = new QPushButton( i18n("Choose..."), temphb ); | ||
235 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFile() ) ); | ||
236 | button = new QPushButton( i18n("Choose..."), temphb ); | ||
237 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFileAB() ) ); | ||
238 | button = new QPushButton( i18n("Choose..."), temphb ); | ||
239 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFilePWM() ) ); | ||
240 | temphb = new QHBox( localFileWidget ); | ||
241 | |||
242 | mRemoteFile = new QLineEdit( temphb); | ||
243 | mRemoteFileAB = new QLineEdit( temphb); | ||
244 | mRemoteFilePWM = new QLineEdit( temphb); | ||
245 | mIsKapiFileL = new QCheckBox( i18n("Addressbook file (*.vcf) is used by KA/Pi"), localFileWidget ); | ||
246 | |||
247 | |||
248 | // *** remote | ||
249 | remoteFileWidget = new QVBox( topFrame); | ||
250 | topLayout->addMultiCellWidget(remoteFileWidget, iii,iii,0,1); | ||
251 | ++iii; | ||
252 | temphb = new QHBox( remoteFileWidget ); | ||
253 | new QLabel( i18n("Calendar:"), temphb); | ||
254 | new QLabel( i18n("AddressBook:"), temphb); | ||
255 | new QLabel( i18n("PWManager:"), temphb); | ||
256 | |||
257 | lab = new QLabel( i18n("Pre sync (download) command:"), remoteFileWidget); | ||
258 | temphb = new QHBox( remoteFileWidget ); | ||
259 | mRemotePrecommand = new QLineEdit(temphb); | ||
260 | mRemotePrecommandAB = new QLineEdit(temphb); | ||
261 | mRemotePrecommandPWM = new QLineEdit(temphb); | ||
262 | |||
263 | lab = new QLabel( i18n("Local temp file:"), remoteFileWidget); | ||
264 | temphb = new QHBox( remoteFileWidget ); | ||
265 | mLocalTempFile = new QLineEdit(temphb); | ||
266 | mLocalTempFileAB = new QLineEdit(temphb); | ||
267 | mLocalTempFilePWM = new QLineEdit(temphb); | ||
268 | |||
269 | lab = new QLabel( i18n("Post sync (upload) command:"), remoteFileWidget); | ||
270 | temphb = new QHBox( remoteFileWidget ); | ||
271 | mRemotePostcommand = new QLineEdit(temphb ); | ||
272 | mRemotePostcommandAB = new QLineEdit(temphb ); | ||
273 | mRemotePostcommandPWM = new QLineEdit(temphb ); | ||
274 | mIsKapiFileR = new QCheckBox( i18n("Addressbook file is used by KA/Pi"), remoteFileWidget ); | ||
275 | lab = new QLabel( i18n("Fill in default values for:"), remoteFileWidget); | ||
276 | temphb = new QHBox( remoteFileWidget ); | ||
277 | button = new QPushButton( i18n("ssh/scp"), temphb ); | ||
278 | connect ( button, SIGNAL( clicked()), this, SLOT (fillSSH() ) ); | ||
279 | button = new QPushButton( i18n("ftp"), temphb ); | ||
280 | connect ( button, SIGNAL( clicked()), this, SLOT (fillFTP() ) ); | ||
281 | lab = new QLabel( i18n("Hint: Use $PWD$ for placeholder of password!"), remoteFileWidget); | ||
282 | |||
283 | // *** pi-sync | ||
284 | piWidget = new QVBox( topFrame); | ||
285 | topLayout->addMultiCellWidget(piWidget, iii,iii,0,1); | ||
286 | ++iii; | ||
287 | temphb = new QHBox( piWidget ); | ||
288 | new QLabel( i18n("Calendar:"), temphb); | ||
289 | new QLabel( i18n("AddressBook:"), temphb); | ||
290 | new QLabel( i18n("PWManager:"), temphb); | ||
291 | |||
292 | lab = new QLabel( i18n("Password for remote access: (could be the same for each)"), piWidget); | ||
293 | temphb = new QHBox( piWidget ); | ||
294 | mRemotePw = new QLineEdit(temphb); | ||
295 | mRemotePwAB = new QLineEdit(temphb); | ||
296 | mRemotePwPWM = new QLineEdit(temphb); | ||
297 | |||
298 | lab = new QLabel( i18n("Remote IP address: (could be the same for each)"), piWidget); | ||
299 | temphb = new QHBox( piWidget ); | ||
300 | mRemoteIP = new QLineEdit(temphb); | ||
301 | mRemoteIPAB = new QLineEdit(temphb); | ||
302 | mRemoteIPPWM = new QLineEdit(temphb); | ||
303 | |||
304 | lab = new QLabel( i18n("Remote port number: (should be different for each)"), piWidget); | ||
305 | temphb = new QHBox( piWidget ); | ||
306 | mRemotePort = new QLineEdit(temphb); | ||
307 | mRemotePortAB = new QLineEdit(temphb); | ||
308 | mRemotePortPWM = new QLineEdit(temphb); | ||
309 | 224 | ||
225 | // ****************************************** | ||
226 | // Profile kind specific settings | ||
227 | { | ||
228 | // *** phone ******************************* | ||
229 | QVGroupBox* topFrame = gb1; | ||
230 | phoneWidget = new QVBox( topFrame); | ||
231 | //topLayout->addMultiCellWidget(phoneWidget, iii,iii,0,1); | ||
232 | //++iii; | ||
233 | mWriteContactToSIM = 0;//new QCheckBox( i18n("Sync contacts with phone SIM card (If not, sync with phone memory)"), phoneWidget ); | ||
234 | QHBox* temphb = new QHBox( phoneWidget ); | ||
235 | new QLabel( i18n("I/O device: "), temphb ); | ||
236 | mPhoneDevice = new QLineEdit( temphb); | ||
237 | button = new QPushButton( i18n("Help..."), temphb ); | ||
238 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpDevice() ) ); | ||
239 | |||
240 | |||
241 | temphb = new QHBox( phoneWidget ); | ||
242 | new QLabel( i18n("Connection: "), temphb ); | ||
243 | mPhoneConnection = new QLineEdit( temphb); | ||
244 | button = new QPushButton( i18n("Help..."), temphb ); | ||
245 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpConnection() ) ); | ||
246 | |||
247 | |||
248 | temphb = new QHBox( phoneWidget ); | ||
249 | new QLabel( i18n("Model(opt.): "), temphb ); | ||
250 | mPhoneModel = new QLineEdit( temphb); | ||
251 | button = new QPushButton( i18n("Help..."), temphb ); | ||
252 | connect ( button, SIGNAL( clicked()), this, SLOT ( helpModel() ) ); | ||
253 | |||
254 | // *** local******************************* | ||
255 | localFileWidget = new QVBox( topFrame); | ||
256 | //topLayout->addMultiCellWidget(localFileWidget, iii,iii,0,1); | ||
257 | //++iii; | ||
258 | temphb = new QHBox( localFileWidget ); | ||
259 | |||
260 | lab = new QLabel( i18n("Local file Cal:"), temphb ); | ||
261 | lab = new QLabel( i18n("Local file ABook:"), temphb ); | ||
262 | lab = new QLabel( i18n("Local file PWMgr:"), temphb ); | ||
263 | temphb = new QHBox( localFileWidget ); | ||
264 | button = new QPushButton( i18n("Choose..."), temphb ); | ||
265 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFile() ) ); | ||
266 | button = new QPushButton( i18n("Choose..."), temphb ); | ||
267 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFileAB() ) ); | ||
268 | button = new QPushButton( i18n("Choose..."), temphb ); | ||
269 | connect ( button, SIGNAL( clicked()), this, SLOT ( chooseFilePWM() ) ); | ||
270 | temphb = new QHBox( localFileWidget ); | ||
271 | |||
272 | mRemoteFile = new QLineEdit( temphb); | ||
273 | mRemoteFileAB = new QLineEdit( temphb); | ||
274 | mRemoteFilePWM = new QLineEdit( temphb); | ||
275 | mIsKapiFileL = new QCheckBox( i18n("Addressbook file (*.vcf) is used by KA/Pi"), localFileWidget ); | ||
276 | |||
277 | |||
278 | // *** remote******************************* | ||
279 | remoteFileWidget = new QVBox( topFrame); | ||
280 | //topLayout->addMultiCellWidget(remoteFileWidget, iii,iii,0,1); | ||
281 | //++iii; | ||
282 | temphb = new QHBox( remoteFileWidget ); | ||
283 | new QLabel( i18n("Calendar:"), temphb); | ||
284 | new QLabel( i18n("AddressBook:"), temphb); | ||
285 | new QLabel( i18n("PWManager:"), temphb); | ||
286 | |||
287 | lab = new QLabel( i18n("Pre sync (download) command:"), remoteFileWidget); | ||
288 | temphb = new QHBox( remoteFileWidget ); | ||
289 | mRemotePrecommand = new QLineEdit(temphb); | ||
290 | mRemotePrecommandAB = new QLineEdit(temphb); | ||
291 | mRemotePrecommandPWM = new QLineEdit(temphb); | ||
292 | |||
293 | lab = new QLabel( i18n("Local temp file:"), remoteFileWidget); | ||
294 | temphb = new QHBox( remoteFileWidget ); | ||
295 | mLocalTempFile = new QLineEdit(temphb); | ||
296 | mLocalTempFileAB = new QLineEdit(temphb); | ||
297 | mLocalTempFilePWM = new QLineEdit(temphb); | ||
298 | |||
299 | lab = new QLabel( i18n("Post sync (upload) command:"), remoteFileWidget); | ||
300 | temphb = new QHBox( remoteFileWidget ); | ||
301 | mRemotePostcommand = new QLineEdit(temphb ); | ||
302 | mRemotePostcommandAB = new QLineEdit(temphb ); | ||
303 | mRemotePostcommandPWM = new QLineEdit(temphb ); | ||
304 | mIsKapiFileR = new QCheckBox( i18n("Addressbook file is used by KA/Pi"), remoteFileWidget ); | ||
305 | lab = new QLabel( i18n("Fill in default values for:"), remoteFileWidget); | ||
306 | temphb = new QHBox( remoteFileWidget ); | ||
307 | button = new QPushButton( i18n("ssh/scp"), temphb ); | ||
308 | connect ( button, SIGNAL( clicked()), this, SLOT (fillSSH() ) ); | ||
309 | button = new QPushButton( i18n("ftp"), temphb ); | ||
310 | connect ( button, SIGNAL( clicked()), this, SLOT (fillFTP() ) ); | ||
311 | lab = new QLabel( i18n("Hint: Use $PWD$ for placeholder of password!"), remoteFileWidget); | ||
312 | |||
313 | // *** pi-sync******************************* | ||
314 | piWidget = new QVBox( topFrame); | ||
315 | //topLayout->addMultiCellWidget(piWidget, iii,iii,0,1); | ||
316 | //++iii; | ||
317 | temphb = new QHBox( piWidget ); | ||
318 | new QLabel( i18n("Calendar:"), temphb); | ||
319 | new QLabel( i18n("AddressBook:"), temphb); | ||
320 | new QLabel( i18n("PWManager:"), temphb); | ||
321 | |||
322 | lab = new QLabel( i18n("Password for remote access: (could be the same for each)"), piWidget); | ||
323 | temphb = new QHBox( piWidget ); | ||
324 | mRemotePw = new QLineEdit(temphb); | ||
325 | mRemotePwAB = new QLineEdit(temphb); | ||
326 | mRemotePwPWM = new QLineEdit(temphb); | ||
327 | |||
328 | lab = new QLabel( i18n("Remote IP address: (could be the same for each)"), piWidget); | ||
329 | temphb = new QHBox( piWidget ); | ||
330 | mRemoteIP = new QLineEdit(temphb); | ||
331 | mRemoteIPAB = new QLineEdit(temphb); | ||
332 | mRemoteIPPWM = new QLineEdit(temphb); | ||
333 | |||
334 | lab = new QLabel( i18n("Remote port number: (should be different for each)"), piWidget); | ||
335 | temphb = new QHBox( piWidget ); | ||
336 | mRemotePort = new QLineEdit(temphb); | ||
337 | mRemotePortAB = new QLineEdit(temphb); | ||
338 | mRemotePortPWM = new QLineEdit(temphb); | ||
339 | } | ||
340 | // ****************************************** | ||
341 | // Profile kind specific settings END | ||
342 | |||
310 | } | 343 | } |
311 | 344 | ||
312 | 345 | ||
313 | 346 | ||
347 | void KSyncPrefsDialog::readFilter() | ||
348 | { | ||
349 | mFilterKapi.clear(); | ||
350 | mFilterKopi.clear(); | ||
351 | mFilterKopi.append(i18n("No Filter") ); | ||
352 | mFilterKapi.append(i18n("No Filter") ); | ||
353 | KConfig cfgko(locateLocal("config","korganizerrc")); | ||
354 | KConfig cfgka(locateLocal("config","kaddressbookrc")); | ||
355 | cfgko.setGroup("General"); | ||
356 | mFilterKopi = cfgko.readListEntry("CalendarFilters"); | ||
357 | mFilterKopi.prepend(i18n("No Filter") ); | ||
358 | } | ||
314 | 359 | ||
315 | 360 | ||
@@ -431,4 +476,5 @@ void KSyncPrefsDialog::profileChanged( int item ) | |||
431 | mWriteBackFuture->setChecked( prof->getWriteBackFuture()); | 476 | mWriteBackFuture->setChecked( prof->getWriteBackFuture()); |
432 | mWriteBackFutureWeeks->setValue( prof->getWriteBackFutureWeeks() ); | 477 | mWriteBackFutureWeeks->setValue( prof->getWriteBackFutureWeeks() ); |
478 | mWriteBackPastWeeks->setValue( prof->getWriteBackPastWeeks() ); | ||
433 | 479 | ||
434 | switch ( prof->getSyncPrefs() ) { | 480 | switch ( prof->getSyncPrefs() ) { |
@@ -594,4 +640,5 @@ void KSyncPrefsDialog::saveProfile() | |||
594 | prof->setWriteBackFuture(mWriteBackFuture->isChecked()); | 640 | prof->setWriteBackFuture(mWriteBackFuture->isChecked()); |
595 | prof->setWriteBackFutureWeeks(mWriteBackFutureWeeks->value()); | 641 | prof->setWriteBackFutureWeeks(mWriteBackFutureWeeks->value()); |
642 | prof->setWriteBackPastWeeks(mWriteBackPastWeeks->value()); | ||
596 | if ( mWriteContactToSIM ) | 643 | if ( mWriteContactToSIM ) |
597 | prof->setWriteContactToSIM(mWriteContactToSIM->isChecked()); | 644 | prof->setWriteContactToSIM(mWriteContactToSIM->isChecked()); |