-rw-r--r-- | libkdepim/ksyncmanager.cpp | 186 | ||||
-rw-r--r-- | libkdepim/ksyncmanager.h | 14 |
2 files changed, 173 insertions, 27 deletions
diff --git a/libkdepim/ksyncmanager.cpp b/libkdepim/ksyncmanager.cpp index 87f200a..07e6761 100644 --- a/libkdepim/ksyncmanager.cpp +++ b/libkdepim/ksyncmanager.cpp | |||
@@ -1,453 +1,566 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KDE-Pim/Pi. | 2 | This file is part of KDE-Pim/Pi. |
3 | Copyright (c) 2004 Ulf Schenk | 3 | Copyright (c) 2004 Ulf Schenk |
4 | 4 | ||
5 | This library is free software; you can redistribute it and/or | 5 | This library is free software; you can redistribute it and/or |
6 | modify it under the terms of the GNU Library General Public | 6 | modify it under the terms of the GNU Library General Public |
7 | License as published by the Free Software Foundation; either | 7 | License as published by the Free Software Foundation; either |
8 | version 2 of the License, or (at your option) any later version. | 8 | version 2 of the License, or (at your option) any later version. |
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | // $Id$ | 21 | // $Id$ |
22 | 22 | ||
23 | #include "ksyncmanager.h" | 23 | #include "ksyncmanager.h" |
24 | 24 | ||
25 | #include <stdlib.h> | 25 | #include <stdlib.h> |
26 | 26 | ||
27 | #ifndef _WIN32_ | 27 | #ifndef _WIN32_ |
28 | #include <unistd.h> | 28 | #include <unistd.h> |
29 | #endif | 29 | #endif |
30 | 30 | ||
31 | 31 | ||
32 | #include "ksyncprofile.h" | 32 | #include "ksyncprofile.h" |
33 | #include "ksyncprefsdialog.h" | 33 | #include "ksyncprefsdialog.h" |
34 | #include "kpimprefs.h" | 34 | #include "kpimprefs.h" |
35 | 35 | ||
36 | #include <qdir.h> | 36 | #include <qdir.h> |
37 | #include <qprogressbar.h> | ||
37 | #include <qpopupmenu.h> | 38 | #include <qpopupmenu.h> |
38 | #include <qpushbutton.h> | 39 | #include <qpushbutton.h> |
39 | #include <qradiobutton.h> | 40 | #include <qradiobutton.h> |
40 | #include <qbuttongroup.h> | 41 | #include <qbuttongroup.h> |
41 | #include <qtimer.h> | 42 | #include <qtimer.h> |
42 | #include <qmessagebox.h> | 43 | #include <qmessagebox.h> |
43 | #include <qapplication.h> | 44 | #include <qapplication.h> |
44 | #include <qlineedit.h> | 45 | #include <qlineedit.h> |
45 | #include <qdialog.h> | 46 | #include <qdialog.h> |
46 | #include <qlayout.h> | 47 | #include <qlayout.h> |
47 | 48 | ||
48 | #include <klocale.h> | 49 | #include <klocale.h> |
49 | #include <kglobal.h> | 50 | #include <kglobal.h> |
50 | #include <kconfig.h> | 51 | #include <kconfig.h> |
51 | #include <kfiledialog.h> | 52 | #include <kfiledialog.h> |
52 | 53 | ||
53 | KSyncManager::KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu) | 54 | KSyncManager::KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu) |
54 | : QObject(), mParent(parent), mImplementation(implementation), mTargetApp(ta), mPrefs(prefs), mSyncMenu(syncmenu) | 55 | : QObject(), mParent(parent), mImplementation(implementation), mTargetApp(ta), mPrefs(prefs), mSyncMenu(syncmenu) |
55 | { | 56 | { |
57 | bar = new QProgressBar ( 1, 0 ); | ||
58 | bar->setCaption (""); | ||
59 | |||
60 | int w = 300; | ||
61 | if ( QApplication::desktop()->width() < 320 ) | ||
62 | w = 220; | ||
63 | int h = bar->sizeHint().height() ; | ||
64 | int dw = QApplication::desktop()->width(); | ||
65 | int dh = QApplication::desktop()->height(); | ||
66 | bar->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | ||
56 | 67 | ||
57 | } | 68 | } |
58 | 69 | ||
59 | KSyncManager::~KSyncManager() | 70 | KSyncManager::~KSyncManager() |
60 | { | 71 | { |
61 | 72 | delete bar; | |
62 | } | 73 | } |
63 | 74 | ||
64 | 75 | ||
65 | void KSyncManager::fillSyncMenu() | 76 | void KSyncManager::fillSyncMenu() |
66 | { | 77 | { |
67 | if ( mSyncMenu->count() ) | 78 | if ( mSyncMenu->count() ) |
68 | mSyncMenu->clear(); | 79 | mSyncMenu->clear(); |
69 | 80 | ||
70 | mSyncMenu->insertItem( i18n("Configure..."), 0 ); | 81 | mSyncMenu->insertItem( i18n("Configure..."), 0 ); |
71 | mSyncMenu->insertSeparator(); | 82 | mSyncMenu->insertSeparator(); |
72 | mSyncMenu->insertItem( i18n("Multiple sync"), 1 ); | 83 | mSyncMenu->insertItem( i18n("Multiple sync"), 1 ); |
73 | mSyncMenu->insertSeparator(); | 84 | mSyncMenu->insertSeparator(); |
74 | 85 | ||
75 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); | 86 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); |
76 | config.setGroup("General"); | 87 | config.setGroup("General"); |
77 | QStringList prof = config.readListEntry("SyncProfileNames"); | 88 | QStringList prof = config.readListEntry("SyncProfileNames"); |
78 | mPrefs->mLocalMachineName = config.readEntry("LocalMachineName","undefined"); | 89 | mPrefs->mLocalMachineName = config.readEntry("LocalMachineName","undefined"); |
79 | if ( prof.count() < 3 ) { | 90 | if ( prof.count() < 3 ) { |
80 | prof.clear(); | 91 | prof.clear(); |
81 | prof << i18n("Sharp_DTM"); | 92 | prof << i18n("Sharp_DTM"); |
82 | prof << i18n("Local_file"); | 93 | prof << i18n("Local_file"); |
83 | prof << i18n("Last_file"); | 94 | prof << i18n("Last_file"); |
84 | KSyncProfile* temp = new KSyncProfile (); | 95 | KSyncProfile* temp = new KSyncProfile (); |
85 | temp->setName( prof[0] ); | 96 | temp->setName( prof[0] ); |
86 | temp->writeConfig(&config); | 97 | temp->writeConfig(&config); |
87 | temp->setName( prof[1] ); | 98 | temp->setName( prof[1] ); |
88 | temp->writeConfig(&config); | 99 | temp->writeConfig(&config); |
89 | temp->setName( prof[2] ); | 100 | temp->setName( prof[2] ); |
90 | temp->writeConfig(&config); | 101 | temp->writeConfig(&config); |
91 | config.setGroup("General"); | 102 | config.setGroup("General"); |
92 | config.writeEntry("SyncProfileNames",prof); | 103 | config.writeEntry("SyncProfileNames",prof); |
93 | config.writeEntry("ExternSyncProfiles","Sharp_DTM"); | 104 | config.writeEntry("ExternSyncProfiles","Sharp_DTM"); |
94 | config.sync(); | 105 | config.sync(); |
95 | delete temp; | 106 | delete temp; |
96 | } | 107 | } |
97 | mPrefs->mExternSyncProfiles = config.readListEntry("ExternSyncProfiles"); | 108 | mPrefs->mExternSyncProfiles = config.readListEntry("ExternSyncProfiles"); |
98 | mPrefs->mSyncProfileNames = prof; | 109 | mPrefs->mSyncProfileNames = prof; |
99 | unsigned int i; | 110 | unsigned int i; |
100 | for ( i = 0; i < prof.count(); ++i ) { | 111 | for ( i = 0; i < prof.count(); ++i ) { |
101 | |||
102 | mSyncMenu->insertItem( prof[i], 1000+i ); | 112 | mSyncMenu->insertItem( prof[i], 1000+i ); |
103 | if ( i == 2 ) | 113 | if ( i == 2 ) |
104 | mSyncMenu->insertSeparator(); | 114 | mSyncMenu->insertSeparator(); |
105 | } | 115 | } |
106 | QDir app_dir; | 116 | QDir app_dir; |
107 | if ( !app_dir.exists(QDir::homeDirPath()+"/Applications/dtm" ) ) { | 117 | //US do not display SharpDTM if app is pwmpi, or no sharpfiles available |
108 | mSyncMenu->setItemEnabled( false , 1000 ); | 118 | if ( mTargetApp == PWMPI) { |
119 | mSyncMenu->removeItem( 1000 ); | ||
120 | } | ||
121 | else if (!app_dir.exists(QDir::homeDirPath()+"/Applications/dtm" ) ) { | ||
122 | mSyncMenu->setItemEnabled( 1000, false ); | ||
109 | } | 123 | } |
110 | //probaly useless | 124 | //probaly useless |
111 | //mView->setupExternSyncProfiles(); | 125 | //mView->setupExternSyncProfiles(); |
112 | } | 126 | } |
113 | 127 | ||
114 | void KSyncManager::slotSyncMenu( int action ) | 128 | void KSyncManager::slotSyncMenu( int action ) |
115 | { | 129 | { |
116 | //qDebug("syncaction %d ", action); | 130 | //qDebug("syncaction %d ", action); |
117 | if ( action == 0 ) { | 131 | if ( action == 0 ) { |
118 | 132 | ||
119 | // seems to be a Qt2 event handling bug | 133 | // seems to be a Qt2 event handling bug |
120 | // syncmenu.clear causes a segfault at first time | 134 | // syncmenu.clear causes a segfault at first time |
121 | // when we call it after the main event loop, it is ok | 135 | // when we call it after the main event loop, it is ok |
122 | // same behaviour when calling OM/Pi via QCOP for the first time | 136 | // same behaviour when calling OM/Pi via QCOP for the first time |
123 | QTimer::singleShot ( 1, this, SLOT ( confSync() ) ); | 137 | QTimer::singleShot ( 1, this, SLOT ( confSync() ) ); |
124 | //confSync(); | 138 | //confSync(); |
125 | 139 | ||
126 | return; | 140 | return; |
127 | } | 141 | } |
128 | if ( action == 1 ) { | 142 | if ( action == 1 ) { |
129 | multiSync( true ); | 143 | multiSync( true ); |
130 | return; | 144 | return; |
131 | } | 145 | } |
132 | 146 | ||
133 | if (blockSave()) | 147 | if (blockSave()) |
134 | return; | 148 | return; |
135 | 149 | ||
136 | setBlockSave(true); | 150 | setBlockSave(true); |
137 | 151 | ||
138 | mCurrentSyncProfile = action - 1000 ; | 152 | mCurrentSyncProfile = action - 1000 ; |
139 | mCurrentSyncDevice = mPrefs->mSyncProfileNames[mCurrentSyncProfile] ; | 153 | mCurrentSyncDevice = mPrefs->mSyncProfileNames[mCurrentSyncProfile] ; |
140 | mCurrentSyncName = mPrefs->mLocalMachineName ; | 154 | mCurrentSyncName = mPrefs->mLocalMachineName ; |
141 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); | 155 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); |
142 | KSyncProfile* temp = new KSyncProfile (); | 156 | KSyncProfile* temp = new KSyncProfile (); |
143 | temp->setName(mPrefs->mSyncProfileNames[mCurrentSyncProfile]); | 157 | temp->setName(mPrefs->mSyncProfileNames[mCurrentSyncProfile]); |
144 | temp->readConfig(&config); | 158 | temp->readConfig(&config); |
145 | mPrefs->mAskForPreferences = temp->getAskForPreferences(); | 159 | mPrefs->mAskForPreferences = temp->getAskForPreferences(); |
146 | mPrefs->mSyncAlgoPrefs = temp->getSyncPrefs(); | 160 | mPrefs->mSyncAlgoPrefs = temp->getSyncPrefs(); |
147 | mPrefs->mWriteBackFile = temp->getWriteBackFile(); | 161 | mPrefs->mWriteBackFile = temp->getWriteBackFile(); |
148 | mPrefs->mWriteBackExistingOnly = temp->getWriteBackExisting(); | 162 | mPrefs->mWriteBackExistingOnly = temp->getWriteBackExisting(); |
149 | mPrefs->mWriteBackInFuture = 0; | 163 | mPrefs->mWriteBackInFuture = 0; |
150 | if ( temp->getWriteBackFuture() ) | 164 | if ( temp->getWriteBackFuture() ) |
151 | mPrefs->mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); | 165 | mPrefs->mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); |
152 | mPrefs->mShowSyncSummary = temp->getShowSummaryAfterSync(); | 166 | mPrefs->mShowSyncSummary = temp->getShowSummaryAfterSync(); |
153 | if ( action == 1000 ) { | 167 | if ( action == 1000 ) { |
154 | syncSharp(); | 168 | syncSharp(); |
155 | 169 | ||
156 | } else if ( action == 1001 ) { | 170 | } else if ( action == 1001 ) { |
157 | syncLocalFile(); | 171 | syncLocalFile(); |
158 | 172 | ||
159 | } else if ( action == 1002 ) { | 173 | } else if ( action == 1002 ) { |
160 | quickSyncLocalFile(); | 174 | quickSyncLocalFile(); |
161 | 175 | ||
162 | } else if ( action >= 1003 ) { | 176 | } else if ( action >= 1003 ) { |
163 | if ( temp->getIsLocalFileSync() ) { | 177 | if ( temp->getIsLocalFileSync() ) { |
164 | if ( syncWithFile( temp->getRemoteFileNameAB( ), false ) ) | 178 | switch(mTargetApp) |
179 | { | ||
180 | case (KAPI): | ||
181 | if ( syncWithFile( temp->getRemoteFileNameAB( ), false ) ) | ||
165 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNameAB(); | 182 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNameAB(); |
166 | 183 | break; | |
184 | case (KOPI): | ||
185 | if ( syncWithFile( temp->getRemoteFileName( ), false ) ) | ||
186 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileName(); | ||
187 | break; | ||
188 | case (PWMPI): | ||
189 | if ( syncWithFile( temp->getRemoteFileNamePWM( ), false ) ) | ||
190 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNamePWM(); | ||
191 | break; | ||
192 | default: | ||
193 | qDebug("KSyncManager::slotSyncMenu: invalid apptype selected"); | ||
194 | break; | ||
195 | |||
196 | } | ||
167 | } else { | 197 | } else { |
168 | if ( temp->getIsPhoneSync() ) { | 198 | if ( temp->getIsPhoneSync() ) { |
169 | mPrefs->mPhoneDevice = temp->getPhoneDevice( ) ; | 199 | mPrefs->mPhoneDevice = temp->getPhoneDevice( ) ; |
170 | mPrefs->mPhoneConnection = temp->getPhoneConnection( ); | 200 | mPrefs->mPhoneConnection = temp->getPhoneConnection( ); |
171 | mPrefs->mPhoneModel = temp->getPhoneModel( ); | 201 | mPrefs->mPhoneModel = temp->getPhoneModel( ); |
172 | syncPhone(); | 202 | syncPhone(); |
173 | } else | 203 | } else |
174 | syncRemote( temp ); | 204 | syncRemote( temp ); |
175 | 205 | ||
176 | } | 206 | } |
177 | } | 207 | } |
178 | delete temp; | 208 | delete temp; |
179 | setBlockSave(false); | 209 | setBlockSave(false); |
180 | } | 210 | } |
181 | 211 | ||
182 | void KSyncManager::syncLocalFile() | 212 | void KSyncManager::syncLocalFile() |
183 | { | 213 | { |
184 | 214 | ||
185 | QString fn =mPrefs->mLastSyncedLocalFile; | 215 | QString fn =mPrefs->mLastSyncedLocalFile; |
186 | 216 | QString ext; | |
187 | fn =KFileDialog:: getOpenFileName( fn, i18n("Sync filename(*.ics/*.vcs)"), mParent ); | 217 | |
218 | switch(mTargetApp) | ||
219 | { | ||
220 | case (KAPI): | ||
221 | ext = "(*.vcf)"; | ||
222 | break; | ||
223 | case (KOPI): | ||
224 | ext = "(*.ics/*.vcs)"; | ||
225 | break; | ||
226 | case (PWMPI): | ||
227 | ext = "(*.pwm)"; | ||
228 | break; | ||
229 | default: | ||
230 | qDebug("KSyncManager::syncLocalFile: invalid apptype selected"); | ||
231 | break; | ||
232 | |||
233 | } | ||
234 | |||
235 | fn =KFileDialog:: getOpenFileName( fn, i18n("Sync filename"+ext), mParent ); | ||
188 | if ( fn == "" ) | 236 | if ( fn == "" ) |
189 | return; | 237 | return; |
190 | if ( syncWithFile( fn, false ) ) { | 238 | if ( syncWithFile( fn, false ) ) { |
191 | qDebug("syncLocalFile() successful "); | 239 | qDebug("syncLocalFile() successful "); |
192 | } | 240 | } |
193 | 241 | ||
194 | } | 242 | } |
195 | bool KSyncManager::syncWithFile( QString fn , bool quick ) | 243 | bool KSyncManager::syncWithFile( QString fn , bool quick ) |
196 | { | 244 | { |
197 | bool ret = false; | 245 | bool ret = false; |
198 | QFileInfo info; | 246 | QFileInfo info; |
199 | info.setFile( fn ); | 247 | info.setFile( fn ); |
200 | QString mess; | 248 | QString mess; |
201 | bool loadbup = true; | 249 | bool loadbup = true; |
202 | if ( !info. exists() ) { | 250 | if ( !info. exists() ) { |
203 | mess = i18n( "Sync file \n...%1\ndoes not exist!\nNothing synced!\n").arg(fn.right( 30) ); | 251 | mess = i18n( "Sync file \n...%1\ndoes not exist!\nNothing synced!\n").arg(fn.right( 30) ); |
204 | int result = QMessageBox::warning( mParent, i18n("Warning!"), | 252 | int result = QMessageBox::warning( mParent, i18n("Warning!"), |
205 | mess ); | 253 | mess ); |
206 | return ret; | 254 | return ret; |
207 | } | 255 | } |
208 | int result = 0; | 256 | int result = 0; |
209 | if ( !quick ) { | 257 | if ( !quick ) { |
210 | mess = i18n("Sync with file \n...%1\nfrom:\n%2\n").arg(fn.right( 25)).arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); | 258 | mess = i18n("Sync with file \n...%1\nfrom:\n%2\n").arg(fn.right( 25)).arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); |
211 | result = QMessageBox::warning( mParent, i18n("Warning!"), | 259 | result = QMessageBox::warning( mParent, i18n("Warning!"), |
212 | mess, | 260 | mess, |
213 | i18n("Sync"), i18n("Cancel"), 0, | 261 | i18n("Sync"), i18n("Cancel"), 0, |
214 | 0, 1 ); | 262 | 0, 1 ); |
215 | if ( result ) | 263 | if ( result ) |
216 | return false; | 264 | return false; |
217 | } | 265 | } |
218 | if ( mPrefs->mAskForPreferences ) | 266 | if ( mPrefs->mAskForPreferences ) |
219 | edit_sync_options(); | 267 | edit_sync_options(); |
220 | if ( result == 0 ) { | 268 | if ( result == 0 ) { |
221 | //qDebug("Now sycing ... "); | 269 | //qDebug("Now sycing ... "); |
222 | if ( ret = mImplementation->sync( this, fn, mPrefs->mSyncAlgoPrefs ) ) | 270 | if ( ret = mImplementation->sync( this, fn, mPrefs->mSyncAlgoPrefs ) ) |
223 | mParent->setCaption( i18n("Synchronization successful") ); | 271 | mParent->setCaption( i18n("Synchronization successful") ); |
224 | else | 272 | else |
225 | mParent->setCaption( i18n("Sync cancelled or failed. Nothing synced.") ); | 273 | mParent->setCaption( i18n("Sync cancelled or failed. Nothing synced.") ); |
226 | if ( ! quick ) | 274 | if ( ! quick ) |
227 | mPrefs->mLastSyncedLocalFile = fn; | 275 | mPrefs->mLastSyncedLocalFile = fn; |
228 | mImplementation->sync_setModified(); | 276 | mImplementation->sync_setModified(); |
229 | } | 277 | } |
230 | return ret; | 278 | return ret; |
231 | } | 279 | } |
232 | void KSyncManager::quickSyncLocalFile() | 280 | void KSyncManager::quickSyncLocalFile() |
233 | { | 281 | { |
234 | 282 | ||
235 | if ( syncWithFile( mPrefs->mLastSyncedLocalFile, false ) ) { | 283 | if ( syncWithFile( mPrefs->mLastSyncedLocalFile, false ) ) { |
236 | qDebug("quick syncLocalFile() successful "); | 284 | qDebug("quick syncLocalFile() successful "); |
237 | 285 | ||
238 | } | 286 | } |
239 | } | 287 | } |
240 | void KSyncManager::multiSync( bool askforPrefs ) | 288 | void KSyncManager::multiSync( bool askforPrefs ) |
241 | { | 289 | { |
242 | if (blockSave()) | 290 | if (blockSave()) |
243 | return; | 291 | return; |
244 | setBlockSave(true); | 292 | setBlockSave(true); |
245 | QString question = i18n("Do you really want\nto multiple sync\nwith all checked profiles?\nSyncing takes some\ntime - all profiles\nare synced twice!"); | 293 | QString question = i18n("Do you really want\nto multiple sync\nwith all checked profiles?\nSyncing takes some\ntime - all profiles\nare synced twice!"); |
246 | if ( QMessageBox::information( mParent, i18n("Sync"), | 294 | if ( QMessageBox::information( mParent, i18n("Sync"), |
247 | question, | 295 | question, |
248 | i18n("Yes"), i18n("No"), | 296 | i18n("Yes"), i18n("No"), |
249 | 0, 0 ) != 0 ) { | 297 | 0, 0 ) != 0 ) { |
250 | setBlockSave(false); | 298 | setBlockSave(false); |
251 | mParent->setCaption(i18n("Aborted! Nothing synced!")); | 299 | mParent->setCaption(i18n("Aborted! Nothing synced!")); |
252 | return; | 300 | return; |
253 | } | 301 | } |
254 | mCurrentSyncDevice = i18n("Multiple profiles") ; | 302 | mCurrentSyncDevice = i18n("Multiple profiles") ; |
255 | mPrefs->mSyncAlgoPrefs = mPrefs->mRingSyncAlgoPrefs; | 303 | mPrefs->mSyncAlgoPrefs = mPrefs->mRingSyncAlgoPrefs; |
256 | if ( askforPrefs ) { | 304 | if ( askforPrefs ) { |
257 | edit_sync_options(); | 305 | edit_sync_options(); |
258 | mPrefs->mRingSyncAlgoPrefs = mPrefs->mSyncAlgoPrefs; | 306 | mPrefs->mRingSyncAlgoPrefs = mPrefs->mSyncAlgoPrefs; |
259 | } | 307 | } |
260 | mParent->setCaption(i18n("Multiple sync started.") ); | 308 | mParent->setCaption(i18n("Multiple sync started.") ); |
261 | qApp->processEvents(); | 309 | qApp->processEvents(); |
262 | int num = ringSync() ; | 310 | int num = ringSync() ; |
263 | if ( num > 1 ) | 311 | if ( num > 1 ) |
264 | ringSync(); | 312 | ringSync(); |
265 | setBlockSave(false); | 313 | setBlockSave(false); |
266 | if ( num ) | 314 | if ( num ) |
267 | mImplementation->sync_save(); | 315 | mImplementation->sync_save(); |
268 | if ( num ) | 316 | if ( num ) |
269 | mParent->setCaption(i18n("%1 profiles synced. Multiple sync completed!").arg(num) ); | 317 | mParent->setCaption(i18n("%1 profiles synced. Multiple sync completed!").arg(num) ); |
270 | else | 318 | else |
271 | mParent->setCaption(i18n("Nothing synced! No profiles defined for multisync!")); | 319 | mParent->setCaption(i18n("Nothing synced! No profiles defined for multisync!")); |
272 | return; | 320 | return; |
273 | } | 321 | } |
274 | int KSyncManager::ringSync() | 322 | int KSyncManager::ringSync() |
275 | { | 323 | { |
276 | int syncedProfiles = 0; | 324 | int syncedProfiles = 0; |
277 | unsigned int i; | 325 | unsigned int i; |
278 | QTime timer; | 326 | QTime timer; |
279 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); | 327 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); |
280 | QStringList syncProfileNames = mPrefs->mSyncProfileNames; | 328 | QStringList syncProfileNames = mPrefs->mSyncProfileNames; |
281 | KSyncProfile* temp = new KSyncProfile (); | 329 | KSyncProfile* temp = new KSyncProfile (); |
282 | mPrefs->mAskForPreferences = false; | 330 | mPrefs->mAskForPreferences = false; |
283 | for ( i = 0; i < syncProfileNames.count(); ++i ) { | 331 | for ( i = 0; i < syncProfileNames.count(); ++i ) { |
284 | mCurrentSyncProfile = i; | 332 | mCurrentSyncProfile = i; |
285 | temp->setName(syncProfileNames[mCurrentSyncProfile]); | 333 | temp->setName(syncProfileNames[mCurrentSyncProfile]); |
286 | temp->readConfig(&config); | 334 | temp->readConfig(&config); |
287 | if ( temp->getIncludeInRingSyncAB() && ( i < 1 || i > 2 )) { | 335 | |
336 | QString includeInRingSync; | ||
337 | switch(mTargetApp) | ||
338 | { | ||
339 | case (KAPI): | ||
340 | includeInRingSync = temp->getIncludeInRingSyncAB(); | ||
341 | break; | ||
342 | case (KOPI): | ||
343 | includeInRingSync = temp->getIncludeInRingSync(); | ||
344 | break; | ||
345 | case (PWMPI): | ||
346 | includeInRingSync = temp->getIncludeInRingSyncPWM(); | ||
347 | break; | ||
348 | default: | ||
349 | qDebug("KSyncManager::ringSync: invalid apptype selected"); | ||
350 | break; | ||
351 | |||
352 | } | ||
353 | |||
354 | |||
355 | if ( includeInRingSync && ( i < 1 || i > 2 )) { | ||
288 | mParent->setCaption(i18n("Profile ")+syncProfileNames[mCurrentSyncProfile]+ i18n(" is synced ... ")); | 356 | mParent->setCaption(i18n("Profile ")+syncProfileNames[mCurrentSyncProfile]+ i18n(" is synced ... ")); |
289 | ++syncedProfiles; | 357 | ++syncedProfiles; |
290 | // mPrefs->mAskForPreferences = temp->getAskForPreferences(); | 358 | // mPrefs->mAskForPreferences = temp->getAskForPreferences(); |
291 | mPrefs->mWriteBackFile = temp->getWriteBackFile(); | 359 | mPrefs->mWriteBackFile = temp->getWriteBackFile(); |
292 | mPrefs->mWriteBackExistingOnly = temp->getWriteBackExisting(); | 360 | mPrefs->mWriteBackExistingOnly = temp->getWriteBackExisting(); |
293 | mPrefs->mWriteBackInFuture = 0; | 361 | mPrefs->mWriteBackInFuture = 0; |
294 | if ( temp->getWriteBackFuture() ) | 362 | if ( temp->getWriteBackFuture() ) |
295 | mPrefs->mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); | 363 | mPrefs->mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); |
296 | mPrefs->mShowSyncSummary = false; | 364 | mPrefs->mShowSyncSummary = false; |
297 | mCurrentSyncDevice = syncProfileNames[i] ; | 365 | mCurrentSyncDevice = syncProfileNames[i] ; |
298 | mCurrentSyncName = mPrefs->mLocalMachineName; | 366 | mCurrentSyncName = mPrefs->mLocalMachineName; |
299 | if ( i == 0 ) { | 367 | if ( i == 0 ) { |
300 | syncSharp(); | 368 | syncSharp(); |
301 | } else { | 369 | } else { |
302 | if ( temp->getIsLocalFileSync() ) { | 370 | if ( temp->getIsLocalFileSync() ) { |
303 | if ( syncWithFile( temp->getRemoteFileNameAB( ), true ) ) | 371 | switch(mTargetApp) |
304 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNameAB(); | 372 | { |
373 | case (KAPI): | ||
374 | if ( syncWithFile( temp->getRemoteFileNameAB( ), false ) ) | ||
375 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNameAB(); | ||
376 | break; | ||
377 | case (KOPI): | ||
378 | if ( syncWithFile( temp->getRemoteFileName( ), false ) ) | ||
379 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileName(); | ||
380 | break; | ||
381 | case (PWMPI): | ||
382 | if ( syncWithFile( temp->getRemoteFileNamePWM( ), false ) ) | ||
383 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNamePWM(); | ||
384 | break; | ||
385 | default: | ||
386 | qDebug("KSyncManager::slotSyncMenu: invalid apptype selected"); | ||
387 | break; | ||
388 | } | ||
305 | } else { | 389 | } else { |
306 | if ( temp->getIsPhoneSync() ) { | 390 | if ( temp->getIsPhoneSync() ) { |
307 | mPrefs->mPhoneDevice = temp->getPhoneDevice( ) ; | 391 | mPrefs->mPhoneDevice = temp->getPhoneDevice( ) ; |
308 | mPrefs->mPhoneConnection = temp->getPhoneConnection( ); | 392 | mPrefs->mPhoneConnection = temp->getPhoneConnection( ); |
309 | mPrefs->mPhoneModel = temp->getPhoneModel( ); | 393 | mPrefs->mPhoneModel = temp->getPhoneModel( ); |
310 | syncPhone(); | 394 | syncPhone(); |
311 | } else | 395 | } else |
312 | syncRemote( temp, false ); | 396 | syncRemote( temp, false ); |
313 | 397 | ||
314 | } | 398 | } |
315 | } | 399 | } |
316 | timer.start(); | 400 | timer.start(); |
317 | mParent->setCaption(i18n("Multiple sync in progress ... please wait!") ); | 401 | mParent->setCaption(i18n("Multiple sync in progress ... please wait!") ); |
318 | while ( timer.elapsed () < 2000 ) { | 402 | while ( timer.elapsed () < 2000 ) { |
319 | qApp->processEvents(); | 403 | qApp->processEvents(); |
320 | #ifndef _WIN32_ | 404 | #ifndef _WIN32_ |
321 | sleep (1); | 405 | sleep (1); |
322 | #endif | 406 | #endif |
323 | } | 407 | } |
324 | 408 | ||
325 | } | 409 | } |
326 | 410 | ||
327 | } | 411 | } |
328 | delete temp; | 412 | delete temp; |
329 | return syncedProfiles; | 413 | return syncedProfiles; |
330 | } | 414 | } |
331 | 415 | ||
332 | void KSyncManager::syncRemote( KSyncProfile* prof, bool ask) | 416 | void KSyncManager::syncRemote( KSyncProfile* prof, bool ask) |
333 | { | 417 | { |
334 | QString question; | 418 | QString question; |
335 | if ( ask ) { | 419 | if ( ask ) { |
336 | question = i18n("Do you really want\nto remote sync\nwith profile \n")+ prof->getName()+" ?\n"; | 420 | question = i18n("Do you really want\nto remote sync\nwith profile \n")+ prof->getName()+" ?\n"; |
337 | if ( QMessageBox::information( mParent, i18n("Sync"), | 421 | if ( QMessageBox::information( mParent, i18n("Sync"), |
338 | question, | 422 | question, |
339 | i18n("Yes"), i18n("No"), | 423 | i18n("Yes"), i18n("No"), |
340 | 0, 0 ) != 0 ) | 424 | 0, 0 ) != 0 ) |
341 | return; | 425 | return; |
342 | } | 426 | } |
343 | QString command = prof->getPreSyncCommandAB(); | 427 | |
428 | QString preCommand; | ||
429 | QString localTempFile; | ||
430 | QString postCommand; | ||
431 | |||
432 | switch(mTargetApp) | ||
433 | { | ||
434 | case (KAPI): | ||
435 | preCommand = prof->getPreSyncCommandAB(); | ||
436 | postCommand = prof->getPostSyncCommandAB(); | ||
437 | localTempFile = prof->getLocalTempFileAB(); | ||
438 | break; | ||
439 | case (KOPI): | ||
440 | preCommand = prof->getPreSyncCommand(); | ||
441 | postCommand = prof->getPostSyncCommand(); | ||
442 | localTempFile = prof->getLocalTempFile(); | ||
443 | break; | ||
444 | case (PWMPI): | ||
445 | preCommand = prof->getPreSyncCommandPWM(); | ||
446 | postCommand = prof->getPostSyncCommandPWM(); | ||
447 | localTempFile = prof->getLocalTempFilePWM(); | ||
448 | break; | ||
449 | default: | ||
450 | qDebug("KSyncManager::syncRemote: invalid apptype selected"); | ||
451 | break; | ||
452 | } | ||
453 | |||
454 | |||
344 | int fi; | 455 | int fi; |
345 | if ( (fi = command.find("$PWD$")) > 0 ) { | 456 | if ( (fi = preCommand.find("$PWD$")) > 0 ) { |
346 | QString pwd = getPassword(); | 457 | QString pwd = getPassword(); |
347 | command = command.left( fi )+ pwd + command.mid( fi+5 ); | 458 | preCommand = preCommand.left( fi )+ pwd + preCommand.mid( fi+5 ); |
348 | 459 | ||
349 | } | 460 | } |
350 | int maxlen = 30; | 461 | int maxlen = 30; |
351 | if ( QApplication::desktop()->width() > 320 ) | 462 | if ( QApplication::desktop()->width() > 320 ) |
352 | maxlen += 25; | 463 | maxlen += 25; |
353 | mParent->setCaption ( i18n( "Copy remote file to local machine..." ) ); | 464 | mParent->setCaption ( i18n( "Copy remote file to local machine..." ) ); |
354 | int fileSize = 0; | 465 | int fileSize = 0; |
355 | int result = system ( command ); | 466 | int result = system ( preCommand ); |
356 | // 0 : okay | 467 | // 0 : okay |
357 | // 256: no such file or dir | 468 | // 256: no such file or dir |
358 | // | 469 | // |
359 | qDebug("KO: Remote copy result(0 = okay): %d ",result ); | 470 | qDebug("KO: Remote copy result(0 = okay): %d ",result ); |
360 | if ( result != 0 ) { | 471 | if ( result != 0 ) { |
361 | unsigned int len = maxlen; | 472 | unsigned int len = maxlen; |
362 | while ( len < command.length() ) { | 473 | while ( len < preCommand.length() ) { |
363 | command.insert( len , "\n" ); | 474 | preCommand.insert( len , "\n" ); |
364 | len += maxlen +2; | 475 | len += maxlen +2; |
365 | } | 476 | } |
366 | question = i18n("Sorry, the copy command failed!\nCommand was:\n%1\n \nTry command on console to get more\ndetailed info about the reason.\n").arg (command) ; | 477 | question = i18n("Sorry, the copy command failed!\nCommand was:\n%1\n \nTry command on console to get more\ndetailed info about the reason.\n").arg (preCommand) ; |
367 | QMessageBox::information( mParent, i18n("Sync - ERROR"), | 478 | QMessageBox::information( mParent, i18n("Sync - ERROR"), |
368 | question, | 479 | question, |
369 | i18n("Okay!")) ; | 480 | i18n("Okay!")) ; |
370 | mParent->setCaption (""); | 481 | mParent->setCaption (""); |
371 | return; | 482 | return; |
372 | } | 483 | } |
373 | mParent->setCaption ( i18n( "Copying succeed." ) ); | 484 | mParent->setCaption ( i18n( "Copying succeed." ) ); |
374 | //qDebug(" file **%s** ",prof->getLocalTempFile().latin1() ); | 485 | //qDebug(" file **%s** ",prof->getLocalTempFile().latin1() ); |
375 | if ( syncWithFile( prof->getLocalTempFileAB(), true ) ) { | 486 | |
487 | |||
488 | |||
489 | if ( syncWithFile( localTempFile, true ) ) { | ||
376 | // Event* e = mView->getLastSyncEvent(); | 490 | // Event* e = mView->getLastSyncEvent(); |
377 | // e->setReadOnly( false ); | 491 | // e->setReadOnly( false ); |
378 | // e->setLocation( KOPrefs::instance()->mSyncProfileNames[mCurrentSyncProfile]); | 492 | // e->setLocation( KOPrefs::instance()->mSyncProfileNames[mCurrentSyncProfile]); |
379 | // e->setReadOnly( true ); | 493 | // e->setReadOnly( true ); |
380 | if ( mPrefs->mWriteBackFile ) { | 494 | if ( mPrefs->mWriteBackFile ) { |
381 | command = prof->getPostSyncCommandAB(); | ||
382 | int fi; | 495 | int fi; |
383 | if ( (fi = command.find("$PWD$")) > 0 ) { | 496 | if ( (fi = postCommand.find("$PWD$")) > 0 ) { |
384 | QString pwd = getPassword(); | 497 | QString pwd = getPassword(); |
385 | command = command.left( fi )+ pwd + command.mid( fi+5 ); | 498 | postCommand = postCommand.left( fi )+ pwd + postCommand.mid( fi+5 ); |
386 | 499 | ||
387 | } | 500 | } |
388 | mParent->setCaption ( i18n( "Writing back file ..." ) ); | 501 | mParent->setCaption ( i18n( "Writing back file ..." ) ); |
389 | result = system ( command ); | 502 | result = system ( postCommand ); |
390 | qDebug("Writing back file result: %d ", result); | 503 | qDebug("Writing back file result: %d ", result); |
391 | if ( result != 0 ) { | 504 | if ( result != 0 ) { |
392 | mParent->setCaption ( i18n( "Writing back file result: " )+QString::number( result ) ); | 505 | mParent->setCaption ( i18n( "Writing back file result: " )+QString::number( result ) ); |
393 | return; | 506 | return; |
394 | } else { | 507 | } else { |
395 | mParent->setCaption ( i18n( "Syncronization sucessfully completed" ) ); | 508 | mParent->setCaption ( i18n( "Syncronization sucessfully completed" ) ); |
396 | } | 509 | } |
397 | } | 510 | } |
398 | } | 511 | } |
399 | return; | 512 | return; |
400 | } | 513 | } |
401 | 514 | ||
402 | void KSyncManager::edit_sync_options() | 515 | void KSyncManager::edit_sync_options() |
403 | { | 516 | { |
404 | //mDialogManager->showSyncOptions(); | 517 | //mDialogManager->showSyncOptions(); |
405 | //mPrefs->mSyncAlgoPrefs | 518 | //mPrefs->mSyncAlgoPrefs |
406 | QDialog dia( mParent, "dia", true ); | 519 | QDialog dia( mParent, "dia", true ); |
407 | dia.setCaption( i18n("Device: " ) +mCurrentSyncDevice ); | 520 | dia.setCaption( i18n("Device: " ) +mCurrentSyncDevice ); |
408 | QButtonGroup gr ( 1, Qt::Horizontal, i18n("Sync preferences"), &dia); | 521 | QButtonGroup gr ( 1, Qt::Horizontal, i18n("Sync preferences"), &dia); |
409 | QVBoxLayout lay ( &dia ); | 522 | QVBoxLayout lay ( &dia ); |
410 | lay.setSpacing( 2 ); | 523 | lay.setSpacing( 2 ); |
411 | lay.setMargin( 3 ); | 524 | lay.setMargin( 3 ); |
412 | lay.addWidget(&gr); | 525 | lay.addWidget(&gr); |
413 | QRadioButton loc ( i18n("Take local entry on conflict"), &gr ); | 526 | QRadioButton loc ( i18n("Take local entry on conflict"), &gr ); |
414 | QRadioButton rem ( i18n("Take remote entry on conflict"), &gr ); | 527 | QRadioButton rem ( i18n("Take remote entry on conflict"), &gr ); |
415 | QRadioButton newest( i18n("Take newest entry on conflict"), &gr ); | 528 | QRadioButton newest( i18n("Take newest entry on conflict"), &gr ); |
416 | QRadioButton ask( i18n("Ask for every entry on conflict"), &gr ); | 529 | QRadioButton ask( i18n("Ask for every entry on conflict"), &gr ); |
417 | QRadioButton f_loc( i18n("Force: Take local entry always"), &gr ); | 530 | QRadioButton f_loc( i18n("Force: Take local entry always"), &gr ); |
418 | QRadioButton f_rem( i18n("Force: Take remote entry always"), &gr ); | 531 | QRadioButton f_rem( i18n("Force: Take remote entry always"), &gr ); |
419 | //QRadioButton both( i18n("Take both on conflict"), &gr ); | 532 | //QRadioButton both( i18n("Take both on conflict"), &gr ); |
420 | QPushButton pb ( "OK", &dia); | 533 | QPushButton pb ( "OK", &dia); |
421 | lay.addWidget( &pb ); | 534 | lay.addWidget( &pb ); |
422 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); | 535 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); |
423 | switch ( mPrefs->mSyncAlgoPrefs ) { | 536 | switch ( mPrefs->mSyncAlgoPrefs ) { |
424 | case 0: | 537 | case 0: |
425 | loc.setChecked( true); | 538 | loc.setChecked( true); |
426 | break; | 539 | break; |
427 | case 1: | 540 | case 1: |
428 | rem.setChecked( true ); | 541 | rem.setChecked( true ); |
429 | break; | 542 | break; |
430 | case 2: | 543 | case 2: |
431 | newest.setChecked( true); | 544 | newest.setChecked( true); |
432 | break; | 545 | break; |
433 | case 3: | 546 | case 3: |
434 | ask.setChecked( true); | 547 | ask.setChecked( true); |
435 | break; | 548 | break; |
436 | case 4: | 549 | case 4: |
437 | f_loc.setChecked( true); | 550 | f_loc.setChecked( true); |
438 | break; | 551 | break; |
439 | case 5: | 552 | case 5: |
440 | f_rem.setChecked( true); | 553 | f_rem.setChecked( true); |
441 | break; | 554 | break; |
442 | case 6: | 555 | case 6: |
443 | // both.setChecked( true); | 556 | // both.setChecked( true); |
444 | break; | 557 | break; |
445 | default: | 558 | default: |
446 | break; | 559 | break; |
447 | } | 560 | } |
448 | if ( dia.exec() ) { | 561 | if ( dia.exec() ) { |
449 | mPrefs->mSyncAlgoPrefs = rem.isChecked()*1+newest.isChecked()*2+ ask.isChecked()*3+ f_loc.isChecked()*4+ f_rem.isChecked()*5;//+ both.isChecked()*6 ; | 562 | mPrefs->mSyncAlgoPrefs = rem.isChecked()*1+newest.isChecked()*2+ ask.isChecked()*3+ f_loc.isChecked()*4+ f_rem.isChecked()*5;//+ both.isChecked()*6 ; |
450 | } | 563 | } |
451 | 564 | ||
452 | 565 | ||
453 | } | 566 | } |
@@ -466,64 +579,87 @@ QString KSyncManager::getPassword( ) | |||
466 | QPushButton pb ( "OK", &dia); | 579 | QPushButton pb ( "OK", &dia); |
467 | lay.addWidget( &pb ); | 580 | lay.addWidget( &pb ); |
468 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); | 581 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); |
469 | dia.show(); | 582 | dia.show(); |
470 | int res = dia.exec(); | 583 | int res = dia.exec(); |
471 | if ( res ) | 584 | if ( res ) |
472 | retfile = lab.text(); | 585 | retfile = lab.text(); |
473 | dia.hide(); | 586 | dia.hide(); |
474 | qApp->processEvents(); | 587 | qApp->processEvents(); |
475 | return retfile; | 588 | return retfile; |
476 | 589 | ||
477 | } | 590 | } |
478 | 591 | ||
479 | 592 | ||
480 | void KSyncManager::confSync() | 593 | void KSyncManager::confSync() |
481 | { | 594 | { |
482 | static KSyncPrefsDialog* sp = 0; | 595 | static KSyncPrefsDialog* sp = 0; |
483 | if ( ! sp ) { | 596 | if ( ! sp ) { |
484 | sp = new KSyncPrefsDialog( mParent, "syncprefs", true ); | 597 | sp = new KSyncPrefsDialog( mParent, "syncprefs", true ); |
485 | } | 598 | } |
486 | sp->usrReadConfig(); | 599 | sp->usrReadConfig(); |
487 | #ifndef DESKTOP_VERSION | 600 | #ifndef DESKTOP_VERSION |
488 | sp->showMaximized(); | 601 | sp->showMaximized(); |
489 | #else | 602 | #else |
490 | sp->show(); | 603 | sp->show(); |
491 | #endif | 604 | #endif |
492 | sp->exec(); | 605 | sp->exec(); |
493 | mPrefs->mSyncProfileNames = sp->getSyncProfileNames(); | 606 | mPrefs->mSyncProfileNames = sp->getSyncProfileNames(); |
494 | mPrefs->mLocalMachineName = sp->getLocalMachineName (); | 607 | mPrefs->mLocalMachineName = sp->getLocalMachineName (); |
495 | fillSyncMenu(); | 608 | fillSyncMenu(); |
496 | } | 609 | } |
497 | 610 | ||
498 | void KSyncManager::syncSharp() | 611 | void KSyncManager::syncSharp() |
499 | { | 612 | { |
500 | if ( ! syncExternalApplication("sharp") ) | 613 | if ( ! syncExternalApplication("sharp") ) |
501 | qDebug("ERROR sync sharp ");; | 614 | qDebug("ERROR sync sharp ");; |
502 | } | 615 | } |
503 | 616 | ||
504 | bool KSyncManager::syncExternalApplication(QString resource) | 617 | bool KSyncManager::syncExternalApplication(QString resource) |
505 | { | 618 | { |
506 | if ( mImplementation->sync_isModified() ) | 619 | if ( mImplementation->sync_isModified() ) |
507 | mImplementation->sync_save(); | 620 | mImplementation->sync_save(); |
508 | 621 | ||
509 | if ( mPrefs->mAskForPreferences ) | 622 | if ( mPrefs->mAskForPreferences ) |
510 | edit_sync_options(); | 623 | edit_sync_options(); |
511 | 624 | ||
512 | qDebug("sync %s", resource.latin1()); | 625 | qDebug("sync %s", resource.latin1()); |
513 | 626 | ||
514 | bool syncOK = mImplementation->syncExternal(this, resource); | 627 | bool syncOK = mImplementation->syncExternal(this, resource); |
515 | 628 | ||
516 | return syncOK; | 629 | return syncOK; |
517 | 630 | ||
518 | } | 631 | } |
519 | 632 | ||
520 | void KSyncManager::syncPhone() | 633 | void KSyncManager::syncPhone() |
521 | { | 634 | { |
522 | if ( mImplementation->sync_isModified() ) | 635 | if ( mImplementation->sync_isModified() ) |
523 | mImplementation->sync_save(); | 636 | mImplementation->sync_save(); |
524 | 637 | ||
525 | qDebug("pending syncPhone(); "); | 638 | qDebug("pending syncPhone(); "); |
526 | //mView->syncPhone(); | 639 | //mView->syncPhone(); |
527 | mImplementation->sync_setModified(); | 640 | mImplementation->sync_setModified(); |
528 | 641 | ||
529 | } | 642 | } |
643 | |||
644 | void KSyncManager::showProgressBar(int percentage, QString caption, int total) | ||
645 | { | ||
646 | if (!bar->isVisible()) | ||
647 | { | ||
648 | bar->setCaption (caption); | ||
649 | bar->setTotalSteps ( total ) ; | ||
650 | |||
651 | bar->show(); | ||
652 | } | ||
653 | |||
654 | bar->setProgress( percentage ); | ||
655 | } | ||
656 | |||
657 | void KSyncManager::hideProgressBar() | ||
658 | { | ||
659 | bar->hide(); | ||
660 | } | ||
661 | |||
662 | bool KSyncManager::isProgressBarCanceled() | ||
663 | { | ||
664 | return !bar->isVisible(); | ||
665 | } | ||
diff --git a/libkdepim/ksyncmanager.h b/libkdepim/ksyncmanager.h index 389a005..9761107 100644 --- a/libkdepim/ksyncmanager.h +++ b/libkdepim/ksyncmanager.h | |||
@@ -1,119 +1,129 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KDE-Pim/Pi. | 2 | This file is part of KDE-Pim/Pi. |
3 | Copyright (c) 2004 Ulf Schenk | 3 | Copyright (c) 2004 Ulf Schenk |
4 | 4 | ||
5 | This library is free software; you can redistribute it and/or | 5 | This library is free software; you can redistribute it and/or |
6 | modify it under the terms of the GNU Library General Public | 6 | modify it under the terms of the GNU Library General Public |
7 | License as published by the Free Software Foundation; either | 7 | License as published by the Free Software Foundation; either |
8 | version 2 of the License, or (at your option) any later version. | 8 | version 2 of the License, or (at your option) any later version. |
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | 19 | ||
20 | $Id$ | 20 | $Id$ |
21 | */ | 21 | */ |
22 | #ifndef _KSYNCMANAGER_H | 22 | #ifndef _KSYNCMANAGER_H |
23 | #define _KSYNCMANAGER_H | 23 | #define _KSYNCMANAGER_H |
24 | 24 | ||
25 | #include <qobject.h> | 25 | #include <qobject.h> |
26 | #include <qstring.h> | 26 | #include <qstring.h> |
27 | 27 | ||
28 | class QPopupMenu; | 28 | class QPopupMenu; |
29 | class KSyncProfile; | 29 | class KSyncProfile; |
30 | class KPimPrefs; | 30 | class KPimPrefs; |
31 | class QWidget; | 31 | class QWidget; |
32 | class KSyncManager; | 32 | class KSyncManager; |
33 | class KSyncInterface; | 33 | class KSyncInterface; |
34 | class QProgressBar; | ||
34 | 35 | ||
35 | class KSyncManager : public QObject | 36 | class KSyncManager : public QObject |
36 | { | 37 | { |
37 | Q_OBJECT | 38 | Q_OBJECT |
38 | 39 | ||
39 | public: | 40 | public: |
40 | enum TargetApp { | 41 | enum TargetApp { |
41 | KOPI = 0, | 42 | KOPI = 0, |
42 | KAPI = 1, | 43 | KAPI = 1, |
43 | PWMPI = 2 }; | 44 | PWMPI = 2 }; |
44 | 45 | ||
45 | 46 | ||
46 | KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu); | 47 | KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu); |
47 | ~KSyncManager() ; | 48 | ~KSyncManager() ; |
48 | 49 | ||
49 | bool blockSave() { return mBlockSaveFlag; } | 50 | bool blockSave() { return mBlockSaveFlag; } |
50 | void setBlockSave(bool sa) { mBlockSaveFlag = sa; } | 51 | void setBlockSave(bool sa) { mBlockSaveFlag = sa; } |
51 | 52 | ||
52 | void fillSyncMenu(); | 53 | void fillSyncMenu(); |
53 | 54 | ||
54 | QString getCurrentSyncDevice() { return mCurrentSyncDevice; } | 55 | QString getCurrentSyncDevice() { return mCurrentSyncDevice; } |
55 | QString getCurrentSyncName() { return mCurrentSyncName; } | 56 | QString getCurrentSyncName() { return mCurrentSyncName; } |
56 | 57 | ||
58 | void showProgressBar(int percentage, QString caption = QString::null, int total=100); | ||
59 | void hideProgressBar(); | ||
60 | bool isProgressBarCanceled(); | ||
61 | |||
62 | |||
57 | public slots: | 63 | public slots: |
58 | void slotSyncMenu( int ); | 64 | void slotSyncMenu( int ); |
59 | 65 | ||
60 | private: | 66 | private: |
61 | // LR ******************************* | 67 | // LR ******************************* |
62 | // sync stuff! | 68 | // sync stuff! |
63 | QString mCurrentSyncDevice; | 69 | QString mCurrentSyncDevice; |
64 | QString mCurrentSyncName; | 70 | QString mCurrentSyncName; |
65 | void quickSyncLocalFile(); | 71 | void quickSyncLocalFile(); |
66 | bool syncWithFile( QString fn , bool quick ); | 72 | bool syncWithFile( QString fn , bool quick ); |
67 | void syncLocalFile(); | 73 | void syncLocalFile(); |
68 | void syncPhone(); | 74 | void syncPhone(); |
69 | void syncSharp(); | 75 | void syncSharp(); |
70 | bool syncExternalApplication(QString); | 76 | bool syncExternalApplication(QString); |
71 | void multiSync( bool askforPrefs ); | 77 | void multiSync( bool askforPrefs ); |
72 | int mCurrentSyncProfile ; | 78 | int mCurrentSyncProfile ; |
73 | void syncRemote( KSyncProfile* prof, bool ask = true); | 79 | void syncRemote( KSyncProfile* prof, bool ask = true); |
74 | void edit_sync_options(); | 80 | void edit_sync_options(); |
75 | int ringSync(); | 81 | int ringSync(); |
76 | QString getPassword( ); | 82 | QString getPassword( ); |
77 | 83 | ||
78 | private slots: | 84 | private slots: |
79 | void confSync(); | 85 | void confSync(); |
80 | // ********************* | 86 | // ********************* |
81 | 87 | ||
82 | private: | 88 | private: |
83 | bool mBlockSaveFlag; | 89 | bool mBlockSaveFlag; |
84 | 90 | ||
85 | 91 | ||
86 | QWidget* mParent; | 92 | QWidget* mParent; |
87 | KSyncInterface* mImplementation; | 93 | KSyncInterface* mImplementation; |
88 | TargetApp mTargetApp; | 94 | TargetApp mTargetApp; |
89 | KPimPrefs* mPrefs; | 95 | KPimPrefs* mPrefs; |
90 | QPopupMenu* mSyncMenu; | 96 | QPopupMenu* mSyncMenu; |
91 | 97 | ||
92 | 98 | QProgressBar* bar; | |
93 | 99 | ||
94 | 100 | ||
95 | 101 | ||
96 | 102 | ||
97 | 103 | ||
98 | }; | 104 | }; |
99 | 105 | ||
100 | 106 | ||
101 | class KSyncInterface | 107 | class KSyncInterface |
102 | { | 108 | { |
103 | public: | 109 | public: |
104 | virtual bool sync(KSyncManager* manager, QString filename, int mode) = 0; | 110 | virtual bool sync(KSyncManager* manager, QString filename, int mode) = 0; |
105 | virtual bool syncExternal(KSyncManager* manager, QString resource) = 0; | ||
106 | 111 | ||
112 | virtual bool syncExternal(KSyncManager* manager, QString resource) | ||
113 | { | ||
114 | // empty implementation, because some syncable applications do not have an external(sharpdtm) syncmode, like pwmanager. | ||
115 | return false; | ||
116 | } | ||
107 | 117 | ||
108 | //called by the syncmanager to indicate that the work has to be marked as dirty. | 118 | //called by the syncmanager to indicate that the work has to be marked as dirty. |
109 | virtual void sync_setModified() = 0; | 119 | virtual void sync_setModified() = 0; |
110 | 120 | ||
111 | //called by the syncmanager to ask if the dirty flag is set. | 121 | //called by the syncmanager to ask if the dirty flag is set. |
112 | virtual bool sync_isModified() = 0; | 122 | virtual bool sync_isModified() = 0; |
113 | 123 | ||
114 | //called by the syncmanager to indicate that the work has to be saved. | 124 | //called by the syncmanager to indicate that the work has to be saved. |
115 | virtual void sync_save() = 0; | 125 | virtual void sync_save() = 0; |
116 | }; | 126 | }; |
117 | 127 | ||
118 | 128 | ||
119 | #endif | 129 | #endif |