summaryrefslogtreecommitdiffabout
path: root/libkdepim/ksyncmanager.h
Unidiff
Diffstat (limited to 'libkdepim/ksyncmanager.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libkdepim/ksyncmanager.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libkdepim/ksyncmanager.h b/libkdepim/ksyncmanager.h
index 1f7c7e7..5b05383 100644
--- a/libkdepim/ksyncmanager.h
+++ b/libkdepim/ksyncmanager.h
@@ -128,80 +128,81 @@ class KSyncManager : public QObject
128 void hideProgressBar(); 128 void hideProgressBar();
129 bool isProgressBarCanceled(); 129 bool isProgressBarCanceled();
130 130
131 // sync stuff 131 // sync stuff
132 QString mLocalMachineName; 132 QString mLocalMachineName;
133 QStringList mExternSyncProfiles; 133 QStringList mExternSyncProfiles;
134 QStringList mSyncProfileNames; 134 QStringList mSyncProfileNames;
135 bool mAskForPreferences; 135 bool mAskForPreferences;
136 bool mShowSyncSummary; 136 bool mShowSyncSummary;
137 bool mWriteBackExistingOnly; 137 bool mWriteBackExistingOnly;
138 int mSyncAlgoPrefs; 138 int mSyncAlgoPrefs;
139 bool mWriteBackFile; 139 bool mWriteBackFile;
140 int mWriteBackInFuture; 140 int mWriteBackInFuture;
141 QString mPhoneDevice; 141 QString mPhoneDevice;
142 QString mPhoneConnection; 142 QString mPhoneConnection;
143 QString mPhoneModel; 143 QString mPhoneModel;
144 QString mPassWordPiSync; 144 QString mPassWordPiSync;
145 QString mActiveSyncPort; 145 QString mActiveSyncPort;
146 QString mActiveSyncIP ; 146 QString mActiveSyncIP ;
147 147
148 signals: 148 signals:
149 void save(); 149 void save();
150 void request_file(); 150 void request_file();
151 void getFile( bool ); 151 void getFile( bool );
152 152
153 public slots: 153 public slots:
154 void slotSyncMenu( int ); 154 void slotSyncMenu( int );
155 void deleteCommandSocket(KCommandSocket*s, int state); 155 void deleteCommandSocket(KCommandSocket*s, int state);
156 void readFileFromSocket(); 156 void readFileFromSocket();
157 void fillSyncMenu(); 157 void fillSyncMenu();
158 158
159 private: 159 private:
160 void syncPi(); 160 void syncPi();
161 KServerSocket * mServerSocket; 161 KServerSocket * mServerSocket;
162 void enableQuick(); 162 void enableQuick();
163 KPimPrefs* mPrefs; 163 KPimPrefs* mPrefs;
164 QString mDefFileName; 164 QString mDefFileName;
165 QString mCurrentSyncDevice; 165 QString mCurrentSyncDevice;
166 QString mCurrentSyncName; 166 QString mCurrentSyncName;
167 void quickSyncLocalFile(); 167 void quickSyncLocalFile();
168 bool syncWithFile( QString fn , bool quick ); 168 bool syncWithFile( QString fn , bool quick );
169 void syncLocalFile(); 169 void syncLocalFile();
170 void syncPhone(); 170 void syncPhone();
171 void syncSharp(); 171 void syncSharp();
172 bool syncExternalApplication(QString); 172 bool syncExternalApplication(QString);
173 int mCurrentSyncProfile ; 173 int mCurrentSyncProfile ;
174 void syncRemote( KSyncProfile* prof, bool ask = true); 174 void syncRemote( KSyncProfile* prof, bool ask = true);
175 void edit_sync_options(); 175 void edit_sync_options();
176 void edit_pisync_options();
176 int ringSync(); 177 int ringSync();
177 QString getPassword( ); 178 QString getPassword( );
178 179
179 private slots: 180 private slots:
180 void confSync(); 181 void confSync();
181 private: 182 private:
182 bool mBlockSaveFlag; 183 bool mBlockSaveFlag;
183 QWidget* mParent; 184 QWidget* mParent;
184 KSyncInterface* mImplementation; 185 KSyncInterface* mImplementation;
185 TargetApp mTargetApp; 186 TargetApp mTargetApp;
186 QPopupMenu* mSyncMenu; 187 QPopupMenu* mSyncMenu;
187 QProgressBar* bar; 188 QProgressBar* bar;
188 189
189}; 190};
190 191
191 192
192class KSyncInterface 193class KSyncInterface
193{ 194{
194 public : 195 public :
195 virtual bool sync(KSyncManager* manager, QString filename, int mode) = 0; 196 virtual bool sync(KSyncManager* manager, QString filename, int mode) = 0;
196 virtual bool syncExternal(KSyncManager* manager, QString resource) 197 virtual bool syncExternal(KSyncManager* manager, QString resource)
197 { 198 {
198 // empty implementation, because some syncable applications do not 199 // empty implementation, because some syncable applications do not
199 // have an external(sharpdtm) syncmode, like pwmanager. 200 // have an external(sharpdtm) syncmode, like pwmanager.
200 return false; 201 return false;
201 } 202 }
202 203
203 204
204}; 205};
205 206
206 207
207#endif 208#endif