-rw-r--r-- | libkdepim/ksyncmanager.cpp | 42 |
1 files changed, 40 insertions, 2 deletions
diff --git a/libkdepim/ksyncmanager.cpp b/libkdepim/ksyncmanager.cpp index 4390a06..feb184b 100644 --- a/libkdepim/ksyncmanager.cpp +++ b/libkdepim/ksyncmanager.cpp | |||
@@ -1,282 +1,314 @@ | |||
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 | #include <kmessagebox.h> | 35 | #include <kmessagebox.h> |
36 | 36 | ||
37 | #include <qdir.h> | 37 | #include <qdir.h> |
38 | #include <qprogressbar.h> | 38 | #include <qprogressbar.h> |
39 | #include <qpopupmenu.h> | 39 | #include <qpopupmenu.h> |
40 | #include <qpushbutton.h> | 40 | #include <qpushbutton.h> |
41 | #include <qradiobutton.h> | 41 | #include <qradiobutton.h> |
42 | #include <qbuttongroup.h> | 42 | #include <qbuttongroup.h> |
43 | #include <qtimer.h> | 43 | #include <qtimer.h> |
44 | #include <qmessagebox.h> | 44 | #include <qmessagebox.h> |
45 | #include <qapplication.h> | 45 | #include <qapplication.h> |
46 | #include <qlineedit.h> | 46 | #include <qlineedit.h> |
47 | #include <qdialog.h> | 47 | #include <qdialog.h> |
48 | #include <qlayout.h> | 48 | #include <qlayout.h> |
49 | #include <qtextcodec.h> | 49 | #include <qtextcodec.h> |
50 | #include <qlabel.h> | 50 | #include <qlabel.h> |
51 | #include <qcheckbox.h> | 51 | #include <qcheckbox.h> |
52 | 52 | ||
53 | #include <klocale.h> | 53 | #include <klocale.h> |
54 | #include <kglobal.h> | 54 | #include <kglobal.h> |
55 | #include <kconfig.h> | 55 | #include <kconfig.h> |
56 | #include <kfiledialog.h> | 56 | #include <kfiledialog.h> |
57 | 57 | ||
58 | KSyncManager::KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu) | 58 | KSyncManager::KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu) |
59 | : QObject(), mParent(parent), mImplementation(implementation), mTargetApp(ta), mPrefs(prefs ),mSyncMenu(syncmenu) | 59 | : QObject(), mParent(parent), mImplementation(implementation), mTargetApp(ta), mPrefs(prefs ),mSyncMenu(syncmenu) |
60 | { | 60 | { |
61 | mServerSocket = 0; | 61 | mServerSocket = 0; |
62 | bar = new QProgressBar ( 1, 0 ); | 62 | bar = new QProgressBar ( 1, 0 ); |
63 | bar->setCaption (""); | 63 | bar->setCaption (""); |
64 | 64 | ||
65 | int w = 300; | 65 | int w = 300; |
66 | if ( QApplication::desktop()->width() < 320 ) | 66 | if ( QApplication::desktop()->width() < 320 ) |
67 | w = 220; | 67 | w = 220; |
68 | int h = bar->sizeHint().height() ; | 68 | int h = bar->sizeHint().height() ; |
69 | int dw = QApplication::desktop()->width(); | 69 | int dw = QApplication::desktop()->width(); |
70 | int dh = QApplication::desktop()->height(); | 70 | int dh = QApplication::desktop()->height(); |
71 | bar->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 71 | bar->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
72 | if ( mPrefs->mPassiveSyncAutoStart ) | 72 | if ( mPrefs->mPassiveSyncAutoStart ) |
73 | enableQuick( false ); | 73 | enableQuick( false ); |
74 | 74 | ||
75 | } | 75 | } |
76 | 76 | ||
77 | KSyncManager::~KSyncManager() | 77 | KSyncManager::~KSyncManager() |
78 | { | 78 | { |
79 | delete bar; | 79 | delete bar; |
80 | } | 80 | } |
81 | 81 | ||
82 | 82 | ||
83 | void KSyncManager::fillSyncMenu() | 83 | void KSyncManager::fillSyncMenu() |
84 | { | 84 | { |
85 | if ( mSyncMenu->count() ) | 85 | if ( mSyncMenu->count() ) |
86 | mSyncMenu->clear(); | 86 | mSyncMenu->clear(); |
87 | 87 | ||
88 | mSyncMenu->insertItem( i18n("Configure..."), 0 ); | 88 | mSyncMenu->insertItem( i18n("Configure..."), 0 ); |
89 | mSyncMenu->insertSeparator(); | 89 | mSyncMenu->insertSeparator(); |
90 | QPopupMenu *clearMenu = new QPopupMenu ( mSyncMenu ); | ||
91 | mSyncMenu->insertItem( i18n("Remove sync info"),clearMenu, 5000 ); | ||
92 | clearMenu->insertItem( i18n("For all profiles"), 1 ); | ||
93 | clearMenu->insertSeparator(); | ||
94 | connect ( clearMenu, SIGNAL( activated ( int ) ), this, SLOT (slotClearMenu( int ) ) ); | ||
95 | mSyncMenu->insertSeparator(); | ||
90 | if ( mServerSocket == 0 ) { | 96 | if ( mServerSocket == 0 ) { |
91 | mSyncMenu->insertItem( i18n("Enable Pi-Sync"), 2 ); | 97 | mSyncMenu->insertItem( i18n("Enable Pi-Sync"), 2 ); |
92 | } else { | 98 | } else { |
93 | mSyncMenu->insertItem( i18n("Disable Pi-Sync"), 3 ); | 99 | mSyncMenu->insertItem( i18n("Disable Pi-Sync"), 3 ); |
94 | } | 100 | } |
95 | mSyncMenu->insertSeparator(); | 101 | mSyncMenu->insertSeparator(); |
96 | mSyncMenu->insertItem( i18n("Multiple sync"), 1 ); | 102 | mSyncMenu->insertItem( i18n("Multiple sync"), 1 ); |
97 | mSyncMenu->insertSeparator(); | 103 | mSyncMenu->insertSeparator(); |
98 | |||
99 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); | 104 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); |
100 | config.setGroup("General"); | 105 | config.setGroup("General"); |
101 | QStringList prof = config.readListEntry("SyncProfileNames"); | 106 | QStringList prof = config.readListEntry("SyncProfileNames"); |
102 | mLocalMachineName = config.readEntry("LocalMachineName","undefined"); | 107 | mLocalMachineName = config.readEntry("LocalMachineName","undefined"); |
103 | if ( prof.count() < 2 ) { | 108 | if ( prof.count() < 2 ) { |
104 | prof.clear(); | 109 | prof.clear(); |
105 | QString externalName; | 110 | QString externalName; |
106 | #ifdef DESKTOP_VERSION | 111 | #ifdef DESKTOP_VERSION |
107 | #ifdef _WIN32_ | 112 | #ifdef _WIN32_ |
108 | externalName = "OutLook(not_implemented)"; | 113 | externalName = "OutLook(not_implemented)"; |
109 | #else | 114 | #else |
110 | externalName = "KDE_Desktop"; | 115 | externalName = "KDE_Desktop"; |
111 | #endif | 116 | #endif |
112 | #else | 117 | #else |
113 | externalName = "Sharp_DTM"; | 118 | externalName = "Sharp_DTM"; |
114 | #endif | 119 | #endif |
115 | prof << externalName; | 120 | prof << externalName; |
116 | prof << i18n("Local_file"); | 121 | prof << i18n("Local_file"); |
117 | prof << i18n("Last_file"); | 122 | prof << i18n("Last_file"); |
118 | KSyncProfile* temp = new KSyncProfile (); | 123 | KSyncProfile* temp = new KSyncProfile (); |
119 | temp->setName( prof[0] ); | 124 | temp->setName( prof[0] ); |
120 | temp->writeConfig(&config); | 125 | temp->writeConfig(&config); |
121 | temp->setName( prof[1] ); | 126 | temp->setName( prof[1] ); |
122 | temp->writeConfig(&config); | 127 | temp->writeConfig(&config); |
123 | temp->setName( prof[2] ); | 128 | temp->setName( prof[2] ); |
124 | temp->writeConfig(&config); | 129 | temp->writeConfig(&config); |
125 | config.setGroup("General"); | 130 | config.setGroup("General"); |
126 | config.writeEntry("SyncProfileNames",prof); | 131 | config.writeEntry("SyncProfileNames",prof); |
127 | config.writeEntry("ExternSyncProfiles",externalName); | 132 | config.writeEntry("ExternSyncProfiles",externalName); |
128 | config.sync(); | 133 | config.sync(); |
129 | delete temp; | 134 | delete temp; |
130 | } | 135 | } |
131 | mExternSyncProfiles = config.readListEntry("ExternSyncProfiles"); | 136 | mExternSyncProfiles = config.readListEntry("ExternSyncProfiles"); |
132 | mSyncProfileNames = prof; | 137 | mSyncProfileNames = prof; |
133 | unsigned int i; | 138 | unsigned int i; |
134 | for ( i = 0; i < prof.count(); ++i ) { | 139 | for ( i = 0; i < prof.count(); ++i ) { |
135 | mSyncMenu->insertItem( prof[i], 1000+i ); | 140 | mSyncMenu->insertItem( prof[i], 1000+i ); |
141 | clearMenu->insertItem( prof[i], 1000+i ); | ||
136 | if ( i == 2 ) | 142 | if ( i == 2 ) |
137 | mSyncMenu->insertSeparator(); | 143 | mSyncMenu->insertSeparator(); |
138 | } | 144 | } |
139 | QDir app_dir; | 145 | QDir app_dir; |
140 | //US do not display SharpDTM if app is pwmpi, or no sharpfiles available | 146 | //US do not display SharpDTM if app is pwmpi, or no sharpfiles available |
141 | if ( mTargetApp == PWMPI) { | 147 | if ( mTargetApp == PWMPI) { |
142 | mSyncMenu->removeItem( 1000 ); | 148 | mSyncMenu->removeItem( 1000 ); |
149 | clearMenu->removeItem( 1000 ); | ||
143 | } | 150 | } |
144 | #ifndef DESKTOP_VERSION | 151 | #ifndef DESKTOP_VERSION |
145 | else if (!app_dir.exists(QDir::homeDirPath()+"/Applications/dtm" ) ) { | 152 | else if (!app_dir.exists(QDir::homeDirPath()+"/Applications/dtm" ) ) { |
146 | mSyncMenu->removeItem( 1000 ); | 153 | mSyncMenu->removeItem( 1000 ); |
154 | clearMenu->removeItem( 1000 ); | ||
147 | } | 155 | } |
148 | #endif | 156 | #endif |
149 | mSyncMenu->removeItem( 1002 ); | 157 | mSyncMenu->removeItem( 1002 ); |
158 | clearMenu->removeItem( 1002 ); | ||
150 | } | 159 | } |
160 | void KSyncManager::slotClearMenu( int action ) | ||
161 | { | ||
162 | QString syncDevice; | ||
163 | if ( action > 999 ) { | ||
164 | syncDevice = mSyncProfileNames[action - 1000] ; | ||
165 | } | ||
151 | 166 | ||
167 | |||
168 | |||
169 | int result = 0; | ||
170 | QString sd; | ||
171 | if ( syncDevice.isEmpty() ) | ||
172 | sd = i18n("Do you want to\nclear all sync info\nof all profiles?"); | ||
173 | else | ||
174 | sd = i18n("Do you want to\nclear the sync\ninfo of profile\n%1?\n"). arg( syncDevice ); | ||
175 | |||
176 | result = QMessageBox::warning( mParent, i18n("Warning!"),sd,i18n("OK"), i18n("Cancel"), 0, | ||
177 | 0, 1 ); | ||
178 | if ( result ) | ||
179 | return; | ||
180 | mImplementation->removeSyncInfo( syncDevice ); | ||
181 | } | ||
152 | void KSyncManager::slotSyncMenu( int action ) | 182 | void KSyncManager::slotSyncMenu( int action ) |
153 | { | 183 | { |
154 | qDebug("syncaction %d ", action); | 184 | qDebug("syncaction %d ", action); |
185 | if ( action == 5000 ) | ||
186 | return; | ||
155 | if ( action == 0 ) { | 187 | if ( action == 0 ) { |
156 | 188 | ||
157 | // seems to be a Qt2 event handling bug | 189 | // seems to be a Qt2 event handling bug |
158 | // syncmenu.clear causes a segfault at first time | 190 | // syncmenu.clear causes a segfault at first time |
159 | // when we call it after the main event loop, it is ok | 191 | // when we call it after the main event loop, it is ok |
160 | // same behaviour when calling OM/Pi via QCOP for the first time | 192 | // same behaviour when calling OM/Pi via QCOP for the first time |
161 | QTimer::singleShot ( 1, this, SLOT ( confSync() ) ); | 193 | QTimer::singleShot ( 1, this, SLOT ( confSync() ) ); |
162 | //confSync(); | 194 | //confSync(); |
163 | 195 | ||
164 | return; | 196 | return; |
165 | } | 197 | } |
166 | if ( action == 1 ) { | 198 | if ( action == 1 ) { |
167 | multiSync( true ); | 199 | multiSync( true ); |
168 | return; | 200 | return; |
169 | } | 201 | } |
170 | if ( action == 2 ) { | 202 | if ( action == 2 ) { |
171 | enableQuick(); | 203 | enableQuick(); |
172 | QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) ); | 204 | QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) ); |
173 | return; | 205 | return; |
174 | } | 206 | } |
175 | if ( action == 3 ) { | 207 | if ( action == 3 ) { |
176 | delete mServerSocket; | 208 | delete mServerSocket; |
177 | mServerSocket = 0; | 209 | mServerSocket = 0; |
178 | QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) ); | 210 | QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) ); |
179 | return; | 211 | return; |
180 | } | 212 | } |
181 | 213 | ||
182 | if (blockSave()) | 214 | if (blockSave()) |
183 | return; | 215 | return; |
184 | 216 | ||
185 | setBlockSave(true); | 217 | setBlockSave(true); |
186 | bool silent = false; | 218 | bool silent = false; |
187 | if ( action == 999 ) { | 219 | if ( action == 999 ) { |
188 | //special mode for silent syncing | 220 | //special mode for silent syncing |
189 | action = 1000; | 221 | action = 1000; |
190 | silent = true; | 222 | silent = true; |
191 | } | 223 | } |
192 | 224 | ||
193 | mCurrentSyncProfile = action - 1000 ; | 225 | mCurrentSyncProfile = action - 1000 ; |
194 | mCurrentSyncDevice = mSyncProfileNames[mCurrentSyncProfile] ; | 226 | mCurrentSyncDevice = mSyncProfileNames[mCurrentSyncProfile] ; |
195 | mCurrentSyncName = mLocalMachineName ; | 227 | mCurrentSyncName = mLocalMachineName ; |
196 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); | 228 | KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); |
197 | KSyncProfile* temp = new KSyncProfile (); | 229 | KSyncProfile* temp = new KSyncProfile (); |
198 | temp->setName(mSyncProfileNames[mCurrentSyncProfile]); | 230 | temp->setName(mSyncProfileNames[mCurrentSyncProfile]); |
199 | temp->readConfig(&config); | 231 | temp->readConfig(&config); |
200 | if (silent) { | 232 | if (silent) { |
201 | mAskForPreferences = false; | 233 | mAskForPreferences = false; |
202 | mShowSyncSummary = false; | 234 | mShowSyncSummary = false; |
203 | mWriteBackFile = true; | 235 | mWriteBackFile = true; |
204 | mSyncAlgoPrefs = 2;// take newest | 236 | mSyncAlgoPrefs = 2;// take newest |
205 | } | 237 | } |
206 | else { | 238 | else { |
207 | mAskForPreferences = temp->getAskForPreferences(); | 239 | mAskForPreferences = temp->getAskForPreferences(); |
208 | mShowSyncSummary = temp->getShowSummaryAfterSync(); | 240 | mShowSyncSummary = temp->getShowSummaryAfterSync(); |
209 | mWriteBackFile = temp->getWriteBackFile(); | 241 | mWriteBackFile = temp->getWriteBackFile(); |
210 | mSyncAlgoPrefs = temp->getSyncPrefs(); | 242 | mSyncAlgoPrefs = temp->getSyncPrefs(); |
211 | } | 243 | } |
212 | mWriteBackExistingOnly = temp->getWriteBackExisting(); | 244 | mWriteBackExistingOnly = temp->getWriteBackExisting(); |
213 | mIsKapiFile = temp->getIsKapiFile(); | 245 | mIsKapiFile = temp->getIsKapiFile(); |
214 | mWriteBackInFuture = 0; | 246 | mWriteBackInFuture = 0; |
215 | if ( temp->getWriteBackFuture() ) | 247 | if ( temp->getWriteBackFuture() ) |
216 | mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); | 248 | mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); |
217 | 249 | ||
218 | if ( action == 1000 ) { | 250 | if ( action == 1000 ) { |
219 | #ifdef DESKTOP_VERSION | 251 | #ifdef DESKTOP_VERSION |
220 | syncKDE(); | 252 | syncKDE(); |
221 | #else | 253 | #else |
222 | syncSharp(); | 254 | syncSharp(); |
223 | #endif | 255 | #endif |
224 | 256 | ||
225 | } else if ( action == 1001 ) { | 257 | } else if ( action == 1001 ) { |
226 | syncLocalFile(); | 258 | syncLocalFile(); |
227 | 259 | ||
228 | } else if ( action == 1002 ) { | 260 | } else if ( action == 1002 ) { |
229 | mWriteBackFile = false; | 261 | mWriteBackFile = false; |
230 | mAskForPreferences = false; | 262 | mAskForPreferences = false; |
231 | mShowSyncSummary = false; | 263 | mShowSyncSummary = false; |
232 | mSyncAlgoPrefs = 3; | 264 | mSyncAlgoPrefs = 3; |
233 | quickSyncLocalFile(); | 265 | quickSyncLocalFile(); |
234 | 266 | ||
235 | } else if ( action >= 1003 ) { | 267 | } else if ( action >= 1003 ) { |
236 | if ( temp->getIsLocalFileSync() ) { | 268 | if ( temp->getIsLocalFileSync() ) { |
237 | switch(mTargetApp) | 269 | switch(mTargetApp) |
238 | { | 270 | { |
239 | case (KAPI): | 271 | case (KAPI): |
240 | if ( syncWithFile( temp->getRemoteFileNameAB( ), false ) ) | 272 | if ( syncWithFile( temp->getRemoteFileNameAB( ), false ) ) |
241 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNameAB(); | 273 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNameAB(); |
242 | break; | 274 | break; |
243 | case (KOPI): | 275 | case (KOPI): |
244 | if ( syncWithFile( temp->getRemoteFileName( ), false ) ) | 276 | if ( syncWithFile( temp->getRemoteFileName( ), false ) ) |
245 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileName(); | 277 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileName(); |
246 | break; | 278 | break; |
247 | case (PWMPI): | 279 | case (PWMPI): |
248 | if ( syncWithFile( temp->getRemoteFileNamePWM( ), false ) ) | 280 | if ( syncWithFile( temp->getRemoteFileNamePWM( ), false ) ) |
249 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNamePWM(); | 281 | mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNamePWM(); |
250 | break; | 282 | break; |
251 | default: | 283 | default: |
252 | qDebug("KSyncManager::slotSyncMenu: invalid apptype selected"); | 284 | qDebug("KSyncManager::slotSyncMenu: invalid apptype selected"); |
253 | break; | 285 | break; |
254 | 286 | ||
255 | } | 287 | } |
256 | } else { | 288 | } else { |
257 | if ( temp->getIsPhoneSync() ) { | 289 | if ( temp->getIsPhoneSync() ) { |
258 | mPhoneDevice = temp->getPhoneDevice( ) ; | 290 | mPhoneDevice = temp->getPhoneDevice( ) ; |
259 | mPhoneConnection = temp->getPhoneConnection( ); | 291 | mPhoneConnection = temp->getPhoneConnection( ); |
260 | mPhoneModel = temp->getPhoneModel( ); | 292 | mPhoneModel = temp->getPhoneModel( ); |
261 | syncPhone(); | 293 | syncPhone(); |
262 | } else if ( temp->getIsPiSync() ) { | 294 | } else if ( temp->getIsPiSync() ) { |
263 | if ( mTargetApp == KAPI ) { | 295 | if ( mTargetApp == KAPI ) { |
264 | mPassWordPiSync = temp->getRemotePwAB(); | 296 | mPassWordPiSync = temp->getRemotePwAB(); |
265 | mActiveSyncPort = temp->getRemotePortAB(); | 297 | mActiveSyncPort = temp->getRemotePortAB(); |
266 | mActiveSyncIP = temp->getRemoteIPAB(); | 298 | mActiveSyncIP = temp->getRemoteIPAB(); |
267 | } else if ( mTargetApp == KOPI ) { | 299 | } else if ( mTargetApp == KOPI ) { |
268 | mPassWordPiSync = temp->getRemotePw(); | 300 | mPassWordPiSync = temp->getRemotePw(); |
269 | mActiveSyncPort = temp->getRemotePort(); | 301 | mActiveSyncPort = temp->getRemotePort(); |
270 | mActiveSyncIP = temp->getRemoteIP(); | 302 | mActiveSyncIP = temp->getRemoteIP(); |
271 | } else { | 303 | } else { |
272 | mPassWordPiSync = temp->getRemotePwPWM(); | 304 | mPassWordPiSync = temp->getRemotePwPWM(); |
273 | mActiveSyncPort = temp->getRemotePortPWM(); | 305 | mActiveSyncPort = temp->getRemotePortPWM(); |
274 | mActiveSyncIP = temp->getRemoteIPPWM(); | 306 | mActiveSyncIP = temp->getRemoteIPPWM(); |
275 | } | 307 | } |
276 | syncPi(); | 308 | syncPi(); |
277 | while ( !mPisyncFinished ) { | 309 | while ( !mPisyncFinished ) { |
278 | //qDebug("waiting "); | 310 | //qDebug("waiting "); |
279 | qApp->processEvents(); | 311 | qApp->processEvents(); |
280 | } | 312 | } |
281 | } else | 313 | } else |
282 | syncRemote( temp ); | 314 | syncRemote( temp ); |
@@ -710,258 +742,264 @@ void KSyncManager::syncRemote( KSyncProfile* prof, bool ask) | |||
710 | } | 742 | } |
711 | } | 743 | } |
712 | return; | 744 | return; |
713 | } | 745 | } |
714 | bool KSyncManager::edit_pisync_options() | 746 | bool KSyncManager::edit_pisync_options() |
715 | { | 747 | { |
716 | QDialog dia( mParent, "dia", true ); | 748 | QDialog dia( mParent, "dia", true ); |
717 | dia.setCaption( i18n("Pi-Sync options for device: " ) +mCurrentSyncDevice ); | 749 | dia.setCaption( i18n("Pi-Sync options for device: " ) +mCurrentSyncDevice ); |
718 | QVBoxLayout lay ( &dia ); | 750 | QVBoxLayout lay ( &dia ); |
719 | lay.setSpacing( 5 ); | 751 | lay.setSpacing( 5 ); |
720 | lay.setMargin( 3 ); | 752 | lay.setMargin( 3 ); |
721 | QLabel lab1 ( i18n("Password for remote access:"), &dia); | 753 | QLabel lab1 ( i18n("Password for remote access:"), &dia); |
722 | lay.addWidget( &lab1 ); | 754 | lay.addWidget( &lab1 ); |
723 | QLineEdit le1 (&dia ); | 755 | QLineEdit le1 (&dia ); |
724 | lay.addWidget( &le1 ); | 756 | lay.addWidget( &le1 ); |
725 | QLabel lab2 ( i18n("Remote IP address:"), &dia); | 757 | QLabel lab2 ( i18n("Remote IP address:"), &dia); |
726 | lay.addWidget( &lab2 ); | 758 | lay.addWidget( &lab2 ); |
727 | QLineEdit le2 (&dia ); | 759 | QLineEdit le2 (&dia ); |
728 | lay.addWidget( &le2 ); | 760 | lay.addWidget( &le2 ); |
729 | QLabel lab3 ( i18n("Remote port number:"), &dia); | 761 | QLabel lab3 ( i18n("Remote port number:"), &dia); |
730 | lay.addWidget( &lab3 ); | 762 | lay.addWidget( &lab3 ); |
731 | QLineEdit le3 (&dia ); | 763 | QLineEdit le3 (&dia ); |
732 | lay.addWidget( &le3 ); | 764 | lay.addWidget( &le3 ); |
733 | QPushButton pb ( "OK", &dia); | 765 | QPushButton pb ( "OK", &dia); |
734 | lay.addWidget( &pb ); | 766 | lay.addWidget( &pb ); |
735 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); | 767 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); |
736 | le1.setText( mPassWordPiSync ); | 768 | le1.setText( mPassWordPiSync ); |
737 | le2.setText( mActiveSyncIP ); | 769 | le2.setText( mActiveSyncIP ); |
738 | le3.setText( mActiveSyncPort ); | 770 | le3.setText( mActiveSyncPort ); |
739 | if ( dia.exec() ) { | 771 | if ( dia.exec() ) { |
740 | mPassWordPiSync = le1.text(); | 772 | mPassWordPiSync = le1.text(); |
741 | mActiveSyncPort = le3.text(); | 773 | mActiveSyncPort = le3.text(); |
742 | mActiveSyncIP = le2.text(); | 774 | mActiveSyncIP = le2.text(); |
743 | return true; | 775 | return true; |
744 | } | 776 | } |
745 | return false; | 777 | return false; |
746 | } | 778 | } |
747 | bool KSyncManager::edit_sync_options() | 779 | bool KSyncManager::edit_sync_options() |
748 | { | 780 | { |
749 | 781 | ||
750 | QDialog dia( mParent, "dia", true ); | 782 | QDialog dia( mParent, "dia", true ); |
751 | dia.setCaption( i18n("Device: " ) +mCurrentSyncDevice ); | 783 | dia.setCaption( i18n("Device: " ) +mCurrentSyncDevice ); |
752 | QButtonGroup gr ( 1, Qt::Horizontal, i18n("Sync preferences"), &dia); | 784 | QButtonGroup gr ( 1, Qt::Horizontal, i18n("Sync preferences"), &dia); |
753 | QVBoxLayout lay ( &dia ); | 785 | QVBoxLayout lay ( &dia ); |
754 | lay.setSpacing( 2 ); | 786 | lay.setSpacing( 2 ); |
755 | lay.setMargin( 3 ); | 787 | lay.setMargin( 3 ); |
756 | lay.addWidget(&gr); | 788 | lay.addWidget(&gr); |
757 | QRadioButton loc ( i18n("Take local entry on conflict"), &gr ); | 789 | QRadioButton loc ( i18n("Take local entry on conflict"), &gr ); |
758 | QRadioButton rem ( i18n("Take remote entry on conflict"), &gr ); | 790 | QRadioButton rem ( i18n("Take remote entry on conflict"), &gr ); |
759 | QRadioButton newest( i18n("Take newest entry on conflict"), &gr ); | 791 | QRadioButton newest( i18n("Take newest entry on conflict"), &gr ); |
760 | QRadioButton ask( i18n("Ask for every entry on conflict"), &gr ); | 792 | QRadioButton ask( i18n("Ask for every entry on conflict"), &gr ); |
761 | QRadioButton f_loc( i18n("Force: Take local entry always"), &gr ); | 793 | QRadioButton f_loc( i18n("Force: Take local entry always"), &gr ); |
762 | QRadioButton f_rem( i18n("Force: Take remote entry always"), &gr ); | 794 | QRadioButton f_rem( i18n("Force: Take remote entry always"), &gr ); |
763 | //QRadioButton both( i18n("Take both on conflict"), &gr ); | 795 | //QRadioButton both( i18n("Take both on conflict"), &gr ); |
764 | QPushButton pb ( "OK", &dia); | 796 | QPushButton pb ( "OK", &dia); |
765 | lay.addWidget( &pb ); | 797 | lay.addWidget( &pb ); |
766 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); | 798 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); |
767 | switch ( mSyncAlgoPrefs ) { | 799 | switch ( mSyncAlgoPrefs ) { |
768 | case 0: | 800 | case 0: |
769 | loc.setChecked( true); | 801 | loc.setChecked( true); |
770 | break; | 802 | break; |
771 | case 1: | 803 | case 1: |
772 | rem.setChecked( true ); | 804 | rem.setChecked( true ); |
773 | break; | 805 | break; |
774 | case 2: | 806 | case 2: |
775 | newest.setChecked( true); | 807 | newest.setChecked( true); |
776 | break; | 808 | break; |
777 | case 3: | 809 | case 3: |
778 | ask.setChecked( true); | 810 | ask.setChecked( true); |
779 | break; | 811 | break; |
780 | case 4: | 812 | case 4: |
781 | f_loc.setChecked( true); | 813 | f_loc.setChecked( true); |
782 | break; | 814 | break; |
783 | case 5: | 815 | case 5: |
784 | f_rem.setChecked( true); | 816 | f_rem.setChecked( true); |
785 | break; | 817 | break; |
786 | case 6: | 818 | case 6: |
787 | // both.setChecked( true); | 819 | // both.setChecked( true); |
788 | break; | 820 | break; |
789 | default: | 821 | default: |
790 | break; | 822 | break; |
791 | } | 823 | } |
792 | if ( dia.exec() ) { | 824 | if ( dia.exec() ) { |
793 | mSyncAlgoPrefs = rem.isChecked()*1+newest.isChecked()*2+ ask.isChecked()*3+ f_loc.isChecked()*4+ f_rem.isChecked()*5;//+ both.isChecked()*6 ; | 825 | mSyncAlgoPrefs = rem.isChecked()*1+newest.isChecked()*2+ ask.isChecked()*3+ f_loc.isChecked()*4+ f_rem.isChecked()*5;//+ both.isChecked()*6 ; |
794 | return true; | 826 | return true; |
795 | } | 827 | } |
796 | return false; | 828 | return false; |
797 | } | 829 | } |
798 | 830 | ||
799 | QString KSyncManager::getPassword( ) | 831 | QString KSyncManager::getPassword( ) |
800 | { | 832 | { |
801 | QString retfile = ""; | 833 | QString retfile = ""; |
802 | QDialog dia ( mParent, "input-dialog", true ); | 834 | QDialog dia ( mParent, "input-dialog", true ); |
803 | QLineEdit lab ( &dia ); | 835 | QLineEdit lab ( &dia ); |
804 | lab.setEchoMode( QLineEdit::Password ); | 836 | lab.setEchoMode( QLineEdit::Password ); |
805 | QVBoxLayout lay( &dia ); | 837 | QVBoxLayout lay( &dia ); |
806 | lay.setMargin(7); | 838 | lay.setMargin(7); |
807 | lay.setSpacing(7); | 839 | lay.setSpacing(7); |
808 | lay.addWidget( &lab); | 840 | lay.addWidget( &lab); |
809 | dia.setFixedSize( 230,50 ); | 841 | dia.setFixedSize( 230,50 ); |
810 | dia.setCaption( i18n("Enter password") ); | 842 | dia.setCaption( i18n("Enter password") ); |
811 | QPushButton pb ( "OK", &dia); | 843 | QPushButton pb ( "OK", &dia); |
812 | lay.addWidget( &pb ); | 844 | lay.addWidget( &pb ); |
813 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); | 845 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); |
814 | dia.show(); | 846 | dia.show(); |
815 | int res = dia.exec(); | 847 | int res = dia.exec(); |
816 | if ( res ) | 848 | if ( res ) |
817 | retfile = lab.text(); | 849 | retfile = lab.text(); |
818 | dia.hide(); | 850 | dia.hide(); |
819 | qApp->processEvents(); | 851 | qApp->processEvents(); |
820 | return retfile; | 852 | return retfile; |
821 | 853 | ||
822 | } | 854 | } |
823 | 855 | ||
824 | 856 | ||
825 | void KSyncManager::confSync() | 857 | void KSyncManager::confSync() |
826 | { | 858 | { |
827 | static KSyncPrefsDialog* sp = 0; | 859 | static KSyncPrefsDialog* sp = 0; |
828 | if ( ! sp ) { | 860 | if ( ! sp ) { |
829 | sp = new KSyncPrefsDialog( mParent, "syncprefs", true ); | 861 | sp = new KSyncPrefsDialog( mParent, "syncprefs", true ); |
830 | } | 862 | } |
831 | sp->usrReadConfig(); | 863 | sp->usrReadConfig(); |
832 | #ifndef DESKTOP_VERSION | 864 | #ifndef DESKTOP_VERSION |
833 | sp->showMaximized(); | 865 | sp->showMaximized(); |
834 | #else | 866 | #else |
835 | sp->show(); | 867 | sp->show(); |
836 | #endif | 868 | #endif |
837 | sp->exec(); | 869 | sp->exec(); |
870 | QStringList oldSyncProfileNames = mSyncProfileNames; | ||
838 | mSyncProfileNames = sp->getSyncProfileNames(); | 871 | mSyncProfileNames = sp->getSyncProfileNames(); |
839 | mLocalMachineName = sp->getLocalMachineName (); | 872 | mLocalMachineName = sp->getLocalMachineName (); |
873 | int ii; | ||
874 | for ( ii = 0; ii < oldSyncProfileNames.count(); ++ii ) { | ||
875 | if ( ! mSyncProfileNames.contains( oldSyncProfileNames[ii] ) ) | ||
876 | mImplementation->removeSyncInfo( oldSyncProfileNames[ii] ); | ||
877 | } | ||
840 | QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) ); | 878 | QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) ); |
841 | } | 879 | } |
842 | void KSyncManager::syncKDE() | 880 | void KSyncManager::syncKDE() |
843 | { | 881 | { |
844 | emit save(); | 882 | emit save(); |
845 | switch(mTargetApp) | 883 | switch(mTargetApp) |
846 | { | 884 | { |
847 | case (KAPI): | 885 | case (KAPI): |
848 | 886 | ||
849 | break; | 887 | break; |
850 | case (KOPI): | 888 | case (KOPI): |
851 | { | 889 | { |
852 | #ifdef DESKTOP_VERSION | 890 | #ifdef DESKTOP_VERSION |
853 | QString command = qApp->applicationDirPath () + "/kdecaldump"; | 891 | QString command = qApp->applicationDirPath () + "/kdecaldump"; |
854 | #else | 892 | #else |
855 | QString command = "kdecaldump"; | 893 | QString command = "kdecaldump"; |
856 | #endif | 894 | #endif |
857 | if ( ! QFile::exists ( command ) ) | 895 | if ( ! QFile::exists ( command ) ) |
858 | command = "kdecaldump"; | 896 | command = "kdecaldump"; |
859 | QString fileName = QDir::homeDirPath ()+"/.kdecalendardump.ics"; | 897 | QString fileName = QDir::homeDirPath ()+"/.kdecalendardump.ics"; |
860 | system ( command.latin1()); | 898 | system ( command.latin1()); |
861 | if ( syncWithFile( fileName,true ) ) { | 899 | if ( syncWithFile( fileName,true ) ) { |
862 | if ( mWriteBackFile ) { | 900 | if ( mWriteBackFile ) { |
863 | command += " --read"; | 901 | command += " --read"; |
864 | system ( command.latin1()); | 902 | system ( command.latin1()); |
865 | } | 903 | } |
866 | } | 904 | } |
867 | 905 | ||
868 | } | 906 | } |
869 | break; | 907 | break; |
870 | case (PWMPI): | 908 | case (PWMPI): |
871 | 909 | ||
872 | break; | 910 | break; |
873 | default: | 911 | default: |
874 | qDebug("KSyncManager::slotSyncMenu: invalid apptype selected"); | 912 | qDebug("KSyncManager::slotSyncMenu: invalid apptype selected"); |
875 | break; | 913 | break; |
876 | 914 | ||
877 | } | 915 | } |
878 | } | 916 | } |
879 | 917 | ||
880 | void KSyncManager::syncSharp() | 918 | void KSyncManager::syncSharp() |
881 | { | 919 | { |
882 | 920 | ||
883 | if ( ! syncExternalApplication("sharp") ) | 921 | if ( ! syncExternalApplication("sharp") ) |
884 | qDebug("ERROR sync sharp "); | 922 | qDebug("ERROR sync sharp "); |
885 | } | 923 | } |
886 | 924 | ||
887 | bool KSyncManager::syncExternalApplication(QString resource) | 925 | bool KSyncManager::syncExternalApplication(QString resource) |
888 | { | 926 | { |
889 | 927 | ||
890 | emit save(); | 928 | emit save(); |
891 | 929 | ||
892 | if ( mAskForPreferences ) | 930 | if ( mAskForPreferences ) |
893 | if ( !edit_sync_options()) { | 931 | if ( !edit_sync_options()) { |
894 | mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); | 932 | mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); |
895 | return false; | 933 | return false; |
896 | } | 934 | } |
897 | 935 | ||
898 | qDebug("Sync extern %s", resource.latin1()); | 936 | qDebug("Sync extern %s", resource.latin1()); |
899 | 937 | ||
900 | bool syncOK = mImplementation->syncExternal(this, resource); | 938 | bool syncOK = mImplementation->syncExternal(this, resource); |
901 | 939 | ||
902 | return syncOK; | 940 | return syncOK; |
903 | 941 | ||
904 | } | 942 | } |
905 | 943 | ||
906 | void KSyncManager::syncPhone() | 944 | void KSyncManager::syncPhone() |
907 | { | 945 | { |
908 | 946 | ||
909 | syncExternalApplication("phone"); | 947 | syncExternalApplication("phone"); |
910 | 948 | ||
911 | } | 949 | } |
912 | 950 | ||
913 | void KSyncManager::showProgressBar(int percentage, QString caption, int total) | 951 | void KSyncManager::showProgressBar(int percentage, QString caption, int total) |
914 | { | 952 | { |
915 | if (!bar->isVisible()) | 953 | if (!bar->isVisible()) |
916 | { | 954 | { |
917 | bar->setCaption (caption); | 955 | bar->setCaption (caption); |
918 | bar->setTotalSteps ( total ) ; | 956 | bar->setTotalSteps ( total ) ; |
919 | 957 | ||
920 | bar->show(); | 958 | bar->show(); |
921 | } | 959 | } |
922 | 960 | ||
923 | bar->setProgress( percentage ); | 961 | bar->setProgress( percentage ); |
924 | } | 962 | } |
925 | 963 | ||
926 | void KSyncManager::hideProgressBar() | 964 | void KSyncManager::hideProgressBar() |
927 | { | 965 | { |
928 | bar->hide(); | 966 | bar->hide(); |
929 | } | 967 | } |
930 | 968 | ||
931 | bool KSyncManager::isProgressBarCanceled() | 969 | bool KSyncManager::isProgressBarCanceled() |
932 | { | 970 | { |
933 | return !bar->isVisible(); | 971 | return !bar->isVisible(); |
934 | } | 972 | } |
935 | 973 | ||
936 | QString KSyncManager::syncFileName() | 974 | QString KSyncManager::syncFileName() |
937 | { | 975 | { |
938 | 976 | ||
939 | QString fn = "tempfile"; | 977 | QString fn = "tempfile"; |
940 | switch(mTargetApp) | 978 | switch(mTargetApp) |
941 | { | 979 | { |
942 | case (KAPI): | 980 | case (KAPI): |
943 | fn = "tempsyncab.vcf"; | 981 | fn = "tempsyncab.vcf"; |
944 | break; | 982 | break; |
945 | case (KOPI): | 983 | case (KOPI): |
946 | fn = "tempsynccal.ics"; | 984 | fn = "tempsynccal.ics"; |
947 | break; | 985 | break; |
948 | case (PWMPI): | 986 | case (PWMPI): |
949 | fn = "tempsyncpw.pwm"; | 987 | fn = "tempsyncpw.pwm"; |
950 | break; | 988 | break; |
951 | default: | 989 | default: |
952 | break; | 990 | break; |
953 | } | 991 | } |
954 | #ifdef _WIN32_ | 992 | #ifdef _WIN32_ |
955 | return locateLocal( "tmp", fn ); | 993 | return locateLocal( "tmp", fn ); |
956 | #else | 994 | #else |
957 | return (QString( "/tmp/" )+ fn ); | 995 | return (QString( "/tmp/" )+ fn ); |
958 | #endif | 996 | #endif |
959 | } | 997 | } |
960 | 998 | ||
961 | void KSyncManager::syncPi() | 999 | void KSyncManager::syncPi() |
962 | { | 1000 | { |
963 | mPisyncFinished = false; | 1001 | mPisyncFinished = false; |
964 | qApp->processEvents(); | 1002 | qApp->processEvents(); |
965 | if ( mAskForPreferences ) | 1003 | if ( mAskForPreferences ) |
966 | if ( !edit_pisync_options()) { | 1004 | if ( !edit_pisync_options()) { |
967 | mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); | 1005 | mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); |