-rw-r--r-- | korganizer/calendarview.cpp | 6 | ||||
-rw-r--r-- | libkcal/syncdefines.h | 6 | ||||
-rw-r--r-- | libkdepim/ksyncmanager.cpp | 10 | ||||
-rw-r--r-- | libkdepim/ksyncmanager.h | 1 | ||||
-rw-r--r-- | libkdepim/ksyncprefsdialog.cpp | 333 | ||||
-rw-r--r-- | libkdepim/ksyncprefsdialog.h | 6 | ||||
-rw-r--r-- | libkdepim/ksyncprofile.cpp | 4 | ||||
-rw-r--r-- | libkdepim/ksyncprofile.h | 3 |
8 files changed, 218 insertions, 151 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 7ddbe23..363dc32 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -1156,14 +1156,14 @@ bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int | |||
1156 | int remRem = 0; | 1156 | int remRem = 0; |
1157 | if ( mSyncManager->mWriteBackInFuture ) { | 1157 | if ( mSyncManager->mWriteBackInFuture ) { |
1158 | er = remote->rawIncidences(); | 1158 | er = remote->rawIncidences(); |
1159 | remRem = er.count(); | 1159 | remRem = er.count(); |
1160 | inR = er.first(); | 1160 | inR = er.first(); |
1161 | QDateTime dt; | 1161 | QDateTime dt; |
1162 | QDateTime cur = QDateTime::currentDateTime().addDays( -7 ); | 1162 | QDateTime cur = QDateTime::currentDateTime().addDays( -(mSyncManager->mWriteBackInPast * 7) ); |
1163 | QDateTime end = cur.addDays( (mSyncManager->mWriteBackInFuture +1 ) *7 ); | 1163 | QDateTime end = QDateTime::currentDateTime().addDays( (mSyncManager->mWriteBackInFuture ) *7 ); |
1164 | while ( inR ) { | 1164 | while ( inR ) { |
1165 | if ( inR->type() == "Todo" ) { | 1165 | if ( inR->type() == "Todo" ) { |
1166 | Todo * t = (Todo*)inR; | 1166 | Todo * t = (Todo*)inR; |
1167 | if ( t->hasDueDate() ) | 1167 | if ( t->hasDueDate() ) |
1168 | dt = t->dtDue(); | 1168 | dt = t->dtDue(); |
1169 | else | 1169 | else |
@@ -1200,13 +1200,13 @@ bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int | |||
1200 | else | 1200 | else |
1201 | delete eventRSync; | 1201 | delete eventRSync; |
1202 | QString mes; | 1202 | QString mes; |
1203 | mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n"),addedEvent, addedEventR, changedLocal, changedRemote, deletedEventL, deletedEventR ); | 1203 | mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n"),addedEvent, addedEventR, changedLocal, changedRemote, deletedEventL, deletedEventR ); |
1204 | QString delmess; | 1204 | QString delmess; |
1205 | if ( delFut ) { | 1205 | if ( delFut ) { |
1206 | delmess.sprintf( i18n("%d items skipped on remote,\nbecause they are in the past or\nmore than %d weeks in the future.\nAfter skipping, remote has\n%d calendar/todo items."), delFut,mSyncManager->mWriteBackInFuture, remRem-delFut); | 1206 | delmess.sprintf( i18n("%d items skipped on remote,\nbecause they are more\nthan %d weeks in the past or\nmore than %d weeks in the future.\nAfter skipping, remote has\n%d calendar/todo items."), delFut,mSyncManager->mWriteBackInPast,mSyncManager->mWriteBackInFuture, remRem-delFut); |
1207 | mes += delmess; | 1207 | mes += delmess; |
1208 | } | 1208 | } |
1209 | mes = i18n("Local calendar changed!\n") +mes; | 1209 | mes = i18n("Local calendar changed!\n") +mes; |
1210 | mCalendar->checkAlarmForIncidence( 0, true ); | 1210 | mCalendar->checkAlarmForIncidence( 0, true ); |
1211 | qDebug( mes ); | 1211 | qDebug( mes ); |
1212 | if ( mSyncManager->mShowSyncSummary ) { | 1212 | if ( mSyncManager->mShowSyncSummary ) { |
diff --git a/libkcal/syncdefines.h b/libkcal/syncdefines.h index 704a670..f3204a2 100644 --- a/libkcal/syncdefines.h +++ b/libkcal/syncdefines.h | |||
@@ -1,10 +1,16 @@ | |||
1 | 1 | ||
2 | #ifndef _KSYNC_DEFINES_H_ | 2 | #ifndef _KSYNC_DEFINES_H_ |
3 | #define _KSYNC_DEFINES_H_ | 3 | #define _KSYNC_DEFINES_H_ |
4 | 4 | ||
5 | enum TargetApp { | ||
6 | KOPI = 0, | ||
7 | KAPI = 1, | ||
8 | PWMPI = 2 }; | ||
9 | |||
10 | |||
5 | #define SYNC_PREF_LOCAL 0 | 11 | #define SYNC_PREF_LOCAL 0 |
6 | #define SYNC_PREF_REMOTE 1 | 12 | #define SYNC_PREF_REMOTE 1 |
7 | #define SYNC_PREF_NEWEST 2 | 13 | #define SYNC_PREF_NEWEST 2 |
8 | #define SYNC_PREF_ASK 3 | 14 | #define SYNC_PREF_ASK 3 |
9 | #define SYNC_PREF_FORCE_LOCAL 4 | 15 | #define SYNC_PREF_FORCE_LOCAL 4 |
10 | #define SYNC_PREF_FORCE_REMOTE 5 | 16 | #define SYNC_PREF_FORCE_REMOTE 5 |
diff --git a/libkdepim/ksyncmanager.cpp b/libkdepim/ksyncmanager.cpp index 6f68d84..33b4a65 100644 --- a/libkdepim/ksyncmanager.cpp +++ b/libkdepim/ksyncmanager.cpp | |||
@@ -61,13 +61,13 @@ QDateTime KSyncManager::mRequestedSyncEvent; | |||
61 | KSyncManager::KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu) | 61 | KSyncManager::KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu) |
62 | : QObject(), mParent(parent), mImplementation(implementation), mTargetApp(ta), mPrefs(prefs ),mSyncMenu(syncmenu) | 62 | : QObject(), mParent(parent), mImplementation(implementation), mTargetApp(ta), mPrefs(prefs ),mSyncMenu(syncmenu) |
63 | { | 63 | { |
64 | mServerSocket = 0; | 64 | mServerSocket = 0; |
65 | bar = new QProgressBar ( 1, 0 ); | 65 | bar = new QProgressBar ( 1, 0 ); |
66 | bar->setCaption (""); | 66 | bar->setCaption (""); |
67 | 67 | mWriteBackInPast = 2; | |
68 | int w = 300; | 68 | int w = 300; |
69 | if ( QApplication::desktop()->width() < 320 ) | 69 | if ( QApplication::desktop()->width() < 320 ) |
70 | w = 220; | 70 | w = 220; |
71 | int h = bar->sizeHint().height() ; | 71 | int h = bar->sizeHint().height() ; |
72 | int dw = QApplication::desktop()->width(); | 72 | int dw = QApplication::desktop()->width(); |
73 | int dh = QApplication::desktop()->height(); | 73 | int dh = QApplication::desktop()->height(); |
@@ -245,14 +245,16 @@ void KSyncManager::slotSyncMenu( int action ) | |||
245 | mWriteBackFile = temp->getWriteBackFile(); | 245 | mWriteBackFile = temp->getWriteBackFile(); |
246 | mSyncAlgoPrefs = temp->getSyncPrefs(); | 246 | mSyncAlgoPrefs = temp->getSyncPrefs(); |
247 | } | 247 | } |
248 | mWriteBackExistingOnly = temp->getWriteBackExisting(); | 248 | mWriteBackExistingOnly = temp->getWriteBackExisting(); |
249 | mIsKapiFile = temp->getIsKapiFile(); | 249 | mIsKapiFile = temp->getIsKapiFile(); |
250 | mWriteBackInFuture = 0; | 250 | mWriteBackInFuture = 0; |
251 | if ( temp->getWriteBackFuture() ) | 251 | if ( temp->getWriteBackFuture() ) { |
252 | mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); | 252 | mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); |
253 | mWriteBackInPast = temp->getWriteBackPastWeeks( ); | ||
254 | } | ||
253 | 255 | ||
254 | if ( action == 1000 ) { | 256 | if ( action == 1000 ) { |
255 | mIsKapiFile = false; | 257 | mIsKapiFile = false; |
256 | #ifdef DESKTOP_VERSION | 258 | #ifdef DESKTOP_VERSION |
257 | syncKDE(); | 259 | syncKDE(); |
258 | #else | 260 | #else |
@@ -575,14 +577,16 @@ int KSyncManager::ringSync() | |||
575 | mSyncWithDesktop = false; | 577 | mSyncWithDesktop = false; |
576 | // mAskForPreferences = temp->getAskForPreferences(); | 578 | // mAskForPreferences = temp->getAskForPreferences(); |
577 | mWriteBackFile = temp->getWriteBackFile(); | 579 | mWriteBackFile = temp->getWriteBackFile(); |
578 | mWriteBackExistingOnly = temp->getWriteBackExisting(); | 580 | mWriteBackExistingOnly = temp->getWriteBackExisting(); |
579 | mIsKapiFile = temp->getIsKapiFile(); | 581 | mIsKapiFile = temp->getIsKapiFile(); |
580 | mWriteBackInFuture = 0; | 582 | mWriteBackInFuture = 0; |
581 | if ( temp->getWriteBackFuture() ) | 583 | if ( temp->getWriteBackFuture() ) { |
582 | mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); | 584 | mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); |
585 | mWriteBackInPast = temp->getWriteBackPastWeeks( ); | ||
586 | } | ||
583 | mShowSyncSummary = false; | 587 | mShowSyncSummary = false; |
584 | mCurrentSyncDevice = syncProfileNames[i] ; | 588 | mCurrentSyncDevice = syncProfileNames[i] ; |
585 | mCurrentSyncName = mLocalMachineName; | 589 | mCurrentSyncName = mLocalMachineName; |
586 | if ( i == 0 ) { | 590 | if ( i == 0 ) { |
587 | mIsKapiFile = false; | 591 | mIsKapiFile = false; |
588 | #ifdef DESKTOP_VERSION | 592 | #ifdef DESKTOP_VERSION |
diff --git a/libkdepim/ksyncmanager.h b/libkdepim/ksyncmanager.h index 6da0ee4..2d0a4ab 100644 --- a/libkdepim/ksyncmanager.h +++ b/libkdepim/ksyncmanager.h | |||
@@ -138,12 +138,13 @@ class KSyncManager : public QObject | |||
138 | bool mShowSyncSummary; | 138 | bool mShowSyncSummary; |
139 | bool mIsKapiFile; | 139 | bool mIsKapiFile; |
140 | bool mWriteBackExistingOnly; | 140 | bool mWriteBackExistingOnly; |
141 | int mSyncAlgoPrefs; | 141 | int mSyncAlgoPrefs; |
142 | bool mWriteBackFile; | 142 | bool mWriteBackFile; |
143 | int mWriteBackInFuture; | 143 | int mWriteBackInFuture; |
144 | int mWriteBackInPast; | ||
144 | QString mPhoneDevice; | 145 | QString mPhoneDevice; |
145 | QString mPhoneConnection; | 146 | QString mPhoneConnection; |
146 | QString mPhoneModel; | 147 | QString mPhoneModel; |
147 | QString mPassWordPiSync; | 148 | QString mPassWordPiSync; |
148 | QString mActiveSyncPort; | 149 | QString mActiveSyncPort; |
149 | QString mActiveSyncIP ; | 150 | QString mActiveSyncIP ; |
diff --git a/libkdepim/ksyncprefsdialog.cpp b/libkdepim/ksyncprefsdialog.cpp index 03265d2..8a3f4cf 100644 --- a/libkdepim/ksyncprefsdialog.cpp +++ b/libkdepim/ksyncprefsdialog.cpp | |||
@@ -40,12 +40,14 @@ | |||
40 | #include <qradiobutton.h> | 40 | #include <qradiobutton.h> |
41 | #include <qpushbutton.h> | 41 | #include <qpushbutton.h> |
42 | #include <qstrlist.h> | 42 | #include <qstrlist.h> |
43 | #include <qapplication.h> | 43 | #include <qapplication.h> |
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> |
48 | #include <kdebug.h> | 50 | #include <kdebug.h> |
49 | #include <klocale.h> | 51 | #include <klocale.h> |
50 | #include <kglobal.h> | 52 | #include <kglobal.h> |
51 | #include <kfontdialog.h> | 53 | #include <kfontdialog.h> |
@@ -138,182 +140,225 @@ void KSyncPrefsDialog::setupSyncAlgTab() | |||
138 | 140 | ||
139 | lab = new QLabel(mProfileBox, i18n("Profile:"), topFrame); | 141 | lab = new QLabel(mProfileBox, i18n("Profile:"), topFrame); |
140 | topLayout->addWidget(lab ,iii,0); | 142 | topLayout->addWidget(lab ,iii,0); |
141 | topLayout->addWidget(mProfileBox, iii,1); | 143 | topLayout->addWidget(mProfileBox, iii,1); |
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 ); |
147 | mIncludeInRingAB = new QCheckBox( i18n("addressbook "), iims ); | 151 | mIncludeInRingAB = new QCheckBox( i18n("addressbook "), iims ); |
148 | mIncludeInRingPWM = new QCheckBox( i18n("pwmanager"), iims ); | 152 | mIncludeInRingPWM = new QCheckBox( i18n("pwmanager"), iims ); |
149 | new QLabel( i18n(" sync"), iims ); | 153 | new QLabel( i18n(" sync"), iims ); |
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; |
189 | topLayout->addMultiCellWidget(gr, iii,iii,0,1); | 211 | topLayout->addMultiCellWidget(gr, iii,iii,0,1); |
190 | ++iii; | 212 | ++iii; |
191 | mIsLocal = new QRadioButton ( i18n("Local file"), gr ); | 213 | mIsLocal = new QRadioButton ( i18n("Local file"), gr ); |
192 | mIsPi = new QRadioButton ( i18n("Pi-Sync ( direct Kx/Pi to Kx/Pi sync )"), gr ); | 214 | mIsPi = new QRadioButton ( i18n("Pi-Sync ( direct Kx/Pi to Kx/Pi sync )"), gr ); |
193 | connect (mIsPi, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); | 215 | connect (mIsPi, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); |
194 | mIsNotLocal = new QRadioButton ( i18n("Remote file (w down/upload command)"), gr ); | 216 | mIsNotLocal = new QRadioButton ( i18n("Remote file (w down/upload command)"), gr ); |
195 | connect (mIsLocal, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); | 217 | connect (mIsLocal, SIGNAL( toggled(bool)), this, SLOT (kindChanged(bool) ) ); |
196 | mIsPhone = new QRadioButton ( i18n("Mobile device (cell phone)"), gr ); | 218 | mIsPhone = new QRadioButton ( i18n("Mobile device (cell phone)"), gr ); |
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 | ||
316 | void KSyncPrefsDialog::slotOK() | 361 | void KSyncPrefsDialog::slotOK() |
317 | { | 362 | { |
318 | if ( mMyMachineName->text() == "undefined" ) { | 363 | if ( mMyMachineName->text() == "undefined" ) { |
319 | KMessageBox::error(this,i18n("Local device name undefined!\nPlease define device name!"),i18n("KO/Pi config error")); | 364 | KMessageBox::error(this,i18n("Local device name undefined!\nPlease define device name!"),i18n("KO/Pi config error")); |
@@ -427,12 +472,13 @@ void KSyncPrefsDialog::profileChanged( int item ) | |||
427 | mWriteBackFile->setChecked( prof->getWriteBackFile()); | 472 | mWriteBackFile->setChecked( prof->getWriteBackFile()); |
428 | mIncludeInRing->setChecked( prof->getIncludeInRingSync() ); | 473 | mIncludeInRing->setChecked( prof->getIncludeInRingSync() ); |
429 | mIncludeInRingAB->setChecked( prof->getIncludeInRingSyncAB() ); | 474 | mIncludeInRingAB->setChecked( prof->getIncludeInRingSyncAB() ); |
430 | mIncludeInRingPWM->setChecked( prof->getIncludeInRingSyncPWM() ); | 475 | mIncludeInRingPWM->setChecked( prof->getIncludeInRingSyncPWM() ); |
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() ) { |
435 | case 0: | 481 | case 0: |
436 | loc->setChecked( true); | 482 | loc->setChecked( true); |
437 | break; | 483 | break; |
438 | case 1: | 484 | case 1: |
@@ -590,12 +636,13 @@ void KSyncPrefsDialog::saveProfile() | |||
590 | prof->setIsLocalFileSync( mIsLocal->isChecked() ); | 636 | prof->setIsLocalFileSync( mIsLocal->isChecked() ); |
591 | prof->setIsPhoneSync( mIsPhone->isChecked() ); | 637 | prof->setIsPhoneSync( mIsPhone->isChecked() ); |
592 | prof->setIsPiSync( mIsPi->isChecked() ); | 638 | prof->setIsPiSync( mIsPi->isChecked() ); |
593 | prof->setIsKapiFile( mIsKapiFileL->isChecked() ); | 639 | prof->setIsKapiFile( mIsKapiFileL->isChecked() ); |
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()); |
598 | prof->setPhoneDevice( mPhoneDevice->text() ); | 645 | prof->setPhoneDevice( mPhoneDevice->text() ); |
599 | prof->setPhoneConnection( mPhoneConnection->text() ); | 646 | prof->setPhoneConnection( mPhoneConnection->text() ); |
600 | prof->setPhoneModel( mPhoneModel->text() ); | 647 | prof->setPhoneModel( mPhoneModel->text() ); |
601 | 648 | ||
diff --git a/libkdepim/ksyncprefsdialog.h b/libkdepim/ksyncprefsdialog.h index c601a58..997f524 100644 --- a/libkdepim/ksyncprefsdialog.h +++ b/libkdepim/ksyncprefsdialog.h | |||
@@ -75,19 +75,20 @@ class KSyncPrefsDialog : public KDialog | |||
75 | void helpDevice(); | 75 | void helpDevice(); |
76 | void helpModel(); | 76 | void helpModel(); |
77 | void helpConnection(); | 77 | void helpConnection(); |
78 | 78 | ||
79 | protected: | 79 | protected: |
80 | void usrWriteConfig(); | 80 | void usrWriteConfig(); |
81 | |||
82 | void setupSyncAlgTab(); | 81 | void setupSyncAlgTab(); |
83 | 82 | void readFilter(); | |
84 | private: | 83 | private: |
85 | int currentSelection; | 84 | int currentSelection; |
86 | QPtrList<KSyncProfile> mSyncProfiles; | 85 | QPtrList<KSyncProfile> mSyncProfiles; |
87 | QStringList mSyncProfileNames; | 86 | QStringList mSyncProfileNames; |
87 | QStringList mFilterKapi; | ||
88 | QStringList mFilterKopi; | ||
88 | QLineEdit * mMyMachineName; | 89 | QLineEdit * mMyMachineName; |
89 | QComboBox * mProfileBox; | 90 | QComboBox * mProfileBox; |
90 | QRadioButton* mIsLocal; | 91 | QRadioButton* mIsLocal; |
91 | QRadioButton* mIsNotLocal; | 92 | QRadioButton* mIsNotLocal; |
92 | QRadioButton* mIsPhone; | 93 | QRadioButton* mIsPhone; |
93 | QRadioButton* mIsPi; | 94 | QRadioButton* mIsPi; |
@@ -139,12 +140,13 @@ class KSyncPrefsDialog : public KDialog | |||
139 | QVBox* remoteFileWidget; | 140 | QVBox* remoteFileWidget; |
140 | QVBox* phoneWidget; | 141 | QVBox* phoneWidget; |
141 | QVBox* piWidget; | 142 | QVBox* piWidget; |
142 | QCheckBox* mWriteBackFile; | 143 | QCheckBox* mWriteBackFile; |
143 | QCheckBox* mWriteBackFuture; | 144 | QCheckBox* mWriteBackFuture; |
144 | QSpinBox* mWriteBackFutureWeeks; | 145 | QSpinBox* mWriteBackFutureWeeks; |
146 | QSpinBox* mWriteBackPastWeeks; | ||
145 | QCheckBox* mWriteBackExisting; | 147 | QCheckBox* mWriteBackExisting; |
146 | QCheckBox* mAskForPreferences; | 148 | QCheckBox* mAskForPreferences; |
147 | QCheckBox* mShowSummaryAfterSync; | 149 | QCheckBox* mShowSummaryAfterSync; |
148 | QCheckBox* mWriteContactToSIM; | 150 | QCheckBox* mWriteContactToSIM; |
149 | QCheckBox* mIsKapiFileL; | 151 | QCheckBox* mIsKapiFileL; |
150 | QCheckBox* mIsKapiFileR; | 152 | QCheckBox* mIsKapiFileR; |
diff --git a/libkdepim/ksyncprofile.cpp b/libkdepim/ksyncprofile.cpp index 029b70b..9f404cb 100644 --- a/libkdepim/ksyncprofile.cpp +++ b/libkdepim/ksyncprofile.cpp | |||
@@ -67,12 +67,13 @@ KSyncProfile* KSyncProfile::clone() | |||
67 | myClone->setShowSummaryAfterSync( mShowSummaryAfterSync ); | 67 | myClone->setShowSummaryAfterSync( mShowSummaryAfterSync ); |
68 | myClone->setAskForPreferences( mAskForPreferences); | 68 | myClone->setAskForPreferences( mAskForPreferences); |
69 | myClone->setWriteBackExisting(mWriteBackExisting ); | 69 | myClone->setWriteBackExisting(mWriteBackExisting ); |
70 | myClone->setWriteBackFile( mWriteBackFile); | 70 | myClone->setWriteBackFile( mWriteBackFile); |
71 | myClone->setWriteBackFuture( mWriteBackFuture ); | 71 | myClone->setWriteBackFuture( mWriteBackFuture ); |
72 | myClone->setWriteBackFutureWeeks( mWriteBackFutureWeeks ); | 72 | myClone->setWriteBackFutureWeeks( mWriteBackFutureWeeks ); |
73 | myClone->setWriteBackPastWeeks( mWriteBackPastWeeks ); | ||
73 | myClone->setIncludeInRingSync( mIncludeInRingSync ); | 74 | myClone->setIncludeInRingSync( mIncludeInRingSync ); |
74 | myClone->setIncludeInRingSyncAB( mIncludeInRingSyncAB ); | 75 | myClone->setIncludeInRingSyncAB( mIncludeInRingSyncAB ); |
75 | myClone->setIncludeInRingSyncPWM( mIncludeInRingSyncPWM ); | 76 | myClone->setIncludeInRingSyncPWM( mIncludeInRingSyncPWM ); |
76 | myClone->setSyncPrefs( mSyncPrefs); | 77 | myClone->setSyncPrefs( mSyncPrefs); |
77 | myClone->setIsLocalFileSync( mIsLocalFileSync ); | 78 | myClone->setIsLocalFileSync( mIsLocalFileSync ); |
78 | myClone->setIsPhoneSync( mIsPhoneSync ); | 79 | myClone->setIsPhoneSync( mIsPhoneSync ); |
@@ -114,12 +115,13 @@ void KSyncProfile::setDefault() | |||
114 | 115 | ||
115 | mShowSummaryAfterSync = true; | 116 | mShowSummaryAfterSync = true; |
116 | mAskForPreferences = true; | 117 | mAskForPreferences = true; |
117 | mWriteBackExisting = false; | 118 | mWriteBackExisting = false; |
118 | mWriteBackFuture = false; | 119 | mWriteBackFuture = false; |
119 | mWriteBackFutureWeeks = 12; | 120 | mWriteBackFutureWeeks = 12; |
121 | mWriteBackPastWeeks = 2; | ||
120 | mWriteBackFile = true; | 122 | mWriteBackFile = true; |
121 | mIncludeInRingSync = false; | 123 | mIncludeInRingSync = false; |
122 | mIncludeInRingSyncAB = false; | 124 | mIncludeInRingSyncAB = false; |
123 | mIncludeInRingSyncPWM = false; | 125 | mIncludeInRingSyncPWM = false; |
124 | mSyncPrefs = SYNC_PREF_ASK; | 126 | mSyncPrefs = SYNC_PREF_ASK; |
125 | mIsLocalFileSync = true; | 127 | mIsLocalFileSync = true; |
@@ -178,12 +180,13 @@ void KSyncProfile::readConfig(KConfig *config ) | |||
178 | mWriteBackExisting = config->readBoolEntry( "WriteBackExisting",mWriteBackExisting ); | 180 | mWriteBackExisting = config->readBoolEntry( "WriteBackExisting",mWriteBackExisting ); |
179 | mWriteBackFuture = config->readBoolEntry( "WriteBackFuture",mWriteBackFuture ); | 181 | mWriteBackFuture = config->readBoolEntry( "WriteBackFuture",mWriteBackFuture ); |
180 | mWriteBackFile = config->readBoolEntry( "WriteBackFile",mWriteBackFile ); | 182 | mWriteBackFile = config->readBoolEntry( "WriteBackFile",mWriteBackFile ); |
181 | mWriteContactToSIM = config->readBoolEntry( "WriteContactToSIM",mWriteContactToSIM ); | 183 | mWriteContactToSIM = config->readBoolEntry( "WriteContactToSIM",mWriteContactToSIM ); |
182 | mSyncPrefs = config->readNumEntry( "SyncPrefs", mSyncPrefs ); | 184 | mSyncPrefs = config->readNumEntry( "SyncPrefs", mSyncPrefs ); |
183 | mWriteBackFutureWeeks = config->readNumEntry( "WriteBackFutureWeeks", mWriteBackFutureWeeks ); | 185 | mWriteBackFutureWeeks = config->readNumEntry( "WriteBackFutureWeeks", mWriteBackFutureWeeks ); |
186 | mWriteBackPastWeeks = config->readNumEntry( "WriteBackPastWeeks", mWriteBackPastWeeks ); | ||
184 | mIsLocalFileSync= config->readBoolEntry( "IsLocalFileSync", mIsLocalFileSync ); | 187 | mIsLocalFileSync= config->readBoolEntry( "IsLocalFileSync", mIsLocalFileSync ); |
185 | mIsPhoneSync= config->readBoolEntry( "IsPhoneSync", mIsPhoneSync ); | 188 | mIsPhoneSync= config->readBoolEntry( "IsPhoneSync", mIsPhoneSync ); |
186 | mIsPiSync= config->readBoolEntry( "IsPiSync", mIsPiSync ); | 189 | mIsPiSync= config->readBoolEntry( "IsPiSync", mIsPiSync ); |
187 | mIsKapiFile = config->readBoolEntry( "IsKapiFile", mIsKapiFile ); | 190 | mIsKapiFile = config->readBoolEntry( "IsKapiFile", mIsKapiFile ); |
188 | } | 191 | } |
189 | else | 192 | else |
@@ -241,12 +244,13 @@ void KSyncProfile::writeConfig( KConfig * config ) | |||
241 | config->writeEntry( "WriteBackExisting",mWriteBackExisting ); | 244 | config->writeEntry( "WriteBackExisting",mWriteBackExisting ); |
242 | config->writeEntry( "WriteBackFuture",mWriteBackFuture ); | 245 | config->writeEntry( "WriteBackFuture",mWriteBackFuture ); |
243 | config->writeEntry( "WriteBackFile",mWriteBackFile ); | 246 | config->writeEntry( "WriteBackFile",mWriteBackFile ); |
244 | config->writeEntry( "WriteContactToSIM",mWriteContactToSIM ); | 247 | config->writeEntry( "WriteContactToSIM",mWriteContactToSIM ); |
245 | config->writeEntry( "SyncPrefs", mSyncPrefs ); | 248 | config->writeEntry( "SyncPrefs", mSyncPrefs ); |
246 | config->writeEntry( "WriteBackFutureWeeks", mWriteBackFutureWeeks); | 249 | config->writeEntry( "WriteBackFutureWeeks", mWriteBackFutureWeeks); |
250 | config->writeEntry( "WriteBackPastWeeks", mWriteBackPastWeeks); | ||
247 | config->writeEntry( "IsLocalFileSync", mIsLocalFileSync ); | 251 | config->writeEntry( "IsLocalFileSync", mIsLocalFileSync ); |
248 | config->writeEntry( "IsPhoneSync", mIsPhoneSync ); | 252 | config->writeEntry( "IsPhoneSync", mIsPhoneSync ); |
249 | config->writeEntry( "IsPiSync", mIsPiSync ); | 253 | config->writeEntry( "IsPiSync", mIsPiSync ); |
250 | config->writeEntry( "IsKapiFile", mIsKapiFile ); | 254 | config->writeEntry( "IsKapiFile", mIsKapiFile ); |
251 | } | 255 | } |
252 | 256 | ||
diff --git a/libkdepim/ksyncprofile.h b/libkdepim/ksyncprofile.h index 0a59111..e970b50 100644 --- a/libkdepim/ksyncprofile.h +++ b/libkdepim/ksyncprofile.h | |||
@@ -125,12 +125,14 @@ class KSyncProfile : public QObject { | |||
125 | void setIncludeInRingSyncPWM( bool b ) {mIncludeInRingSyncPWM = b;} | 125 | void setIncludeInRingSyncPWM( bool b ) {mIncludeInRingSyncPWM = b;} |
126 | bool getIncludeInRingSyncPWM( ) { return mIncludeInRingSyncPWM;} | 126 | bool getIncludeInRingSyncPWM( ) { return mIncludeInRingSyncPWM;} |
127 | void setSyncPrefs( int n ) { mSyncPrefs= n;} | 127 | void setSyncPrefs( int n ) { mSyncPrefs= n;} |
128 | int getSyncPrefs( ) { return mSyncPrefs;} | 128 | int getSyncPrefs( ) { return mSyncPrefs;} |
129 | void setWriteBackFutureWeeks( int n ) { mWriteBackFutureWeeks= n;} | 129 | void setWriteBackFutureWeeks( int n ) { mWriteBackFutureWeeks= n;} |
130 | int getWriteBackFutureWeeks( ) { return mWriteBackFutureWeeks;} | 130 | int getWriteBackFutureWeeks( ) { return mWriteBackFutureWeeks;} |
131 | void setWriteBackPastWeeks( int n ) { mWriteBackPastWeeks= n;} | ||
132 | int getWriteBackPastWeeks( ) { return mWriteBackPastWeeks;} | ||
131 | void setIsLocalFileSync( bool b ) { mIsLocalFileSync= b;} | 133 | void setIsLocalFileSync( bool b ) { mIsLocalFileSync= b;} |
132 | bool getIsLocalFileSync( ) { return mIsLocalFileSync;} | 134 | bool getIsLocalFileSync( ) { return mIsLocalFileSync;} |
133 | void setIsPhoneSync( bool b ) { mIsPhoneSync= b;} | 135 | void setIsPhoneSync( bool b ) { mIsPhoneSync= b;} |
134 | bool getIsPhoneSync( ) { return mIsPhoneSync;} | 136 | bool getIsPhoneSync( ) { return mIsPhoneSync;} |
135 | void setIsPiSync( bool b ) { mIsPiSync= b;} | 137 | void setIsPiSync( bool b ) { mIsPiSync= b;} |
136 | bool getIsPiSync( ) { return mIsPiSync;} | 138 | bool getIsPiSync( ) { return mIsPiSync;} |
@@ -172,12 +174,13 @@ class KSyncProfile : public QObject { | |||
172 | bool mIncludeInRingSyncPWM; | 174 | bool mIncludeInRingSyncPWM; |
173 | int mSyncPrefs; | 175 | int mSyncPrefs; |
174 | bool mWriteBackFile; | 176 | bool mWriteBackFile; |
175 | bool mWriteBackExisting; | 177 | bool mWriteBackExisting; |
176 | bool mWriteBackFuture; | 178 | bool mWriteBackFuture; |
177 | int mWriteBackFutureWeeks; | 179 | int mWriteBackFutureWeeks; |
180 | int mWriteBackPastWeeks; | ||
178 | bool mAskForPreferences; | 181 | bool mAskForPreferences; |
179 | bool mShowSummaryAfterSync; | 182 | bool mShowSummaryAfterSync; |
180 | bool mIsLocalFileSync; | 183 | bool mIsLocalFileSync; |
181 | bool mIsPhoneSync; | 184 | bool mIsPhoneSync; |
182 | bool mWriteContactToSIM; | 185 | bool mWriteContactToSIM; |
183 | 186 | ||