-rw-r--r-- | libkdepim/ksyncmanager.h | 79 |
1 files changed, 65 insertions, 14 deletions
diff --git a/libkdepim/ksyncmanager.h b/libkdepim/ksyncmanager.h index d7c2a02..389a005 100644 --- a/libkdepim/ksyncmanager.h +++ b/libkdepim/ksyncmanager.h | |||
@@ -1,68 +1,119 @@ | |||
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 <qstring.h> | 26 | #include <qstring.h> |
26 | 27 | ||
27 | class QPopupMenu; | 28 | class QPopupMenu; |
28 | class KSyncProfile; | 29 | class KSyncProfile; |
30 | class KPimPrefs; | ||
31 | class QWidget; | ||
32 | class KSyncManager; | ||
33 | class KSyncInterface; | ||
29 | 34 | ||
30 | 35 | class KSyncManager : public QObject | |
31 | |||
32 | class KSyncManager | ||
33 | { | 36 | { |
34 | 37 | Q_OBJECT | |
35 | public: | ||
36 | KSyncManager(TargetApp ta, QPopupMenu* syncmenu); | ||
37 | ~KSyncManager() ; | ||
38 | 38 | ||
39 | public: | ||
39 | enum TargetApp { | 40 | enum TargetApp { |
40 | KOPI = 0, | 41 | KOPI = 0, |
41 | KAPI = 1, | 42 | KAPI = 1, |
42 | PWMPI = 2 }; | 43 | PWMPI = 2 }; |
43 | 44 | ||
44 | private: | 45 | |
46 | KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu); | ||
47 | ~KSyncManager() ; | ||
48 | |||
49 | bool blockSave() { return mBlockSaveFlag; } | ||
50 | void setBlockSave(bool sa) { mBlockSaveFlag = sa; } | ||
51 | |||
45 | void fillSyncMenu(); | 52 | void fillSyncMenu(); |
46 | void syncLocalFile(); | 53 | |
47 | bool syncWithFile( QString fn , bool quick ); | 54 | QString getCurrentSyncDevice() { return mCurrentSyncDevice; } |
55 | QString getCurrentSyncName() { return mCurrentSyncName; } | ||
56 | |||
57 | public slots: | ||
58 | void slotSyncMenu( int ); | ||
59 | |||
60 | private: | ||
61 | // LR ******************************* | ||
62 | // sync stuff! | ||
63 | QString mCurrentSyncDevice; | ||
64 | QString mCurrentSyncName; | ||
48 | void quickSyncLocalFile(); | 65 | void quickSyncLocalFile(); |
66 | bool syncWithFile( QString fn , bool quick ); | ||
67 | void syncLocalFile(); | ||
68 | void syncPhone(); | ||
69 | void syncSharp(); | ||
70 | bool syncExternalApplication(QString); | ||
49 | void multiSync( bool askforPrefs ); | 71 | void multiSync( bool askforPrefs ); |
50 | int ringSync(); | 72 | int mCurrentSyncProfile ; |
51 | void syncRemote( KSyncProfile* prof, bool ask); | 73 | void syncRemote( KSyncProfile* prof, bool ask = true); |
52 | void edit_sync_options(); | 74 | void edit_sync_options(); |
53 | QString getPassword(); | 75 | int ringSync(); |
76 | QString getPassword( ); | ||
77 | |||
78 | private slots: | ||
79 | void confSync(); | ||
80 | // ********************* | ||
54 | 81 | ||
55 | private: | 82 | private: |
56 | QPopupMenu* mSyncMenu; | 83 | bool mBlockSaveFlag; |
84 | |||
85 | |||
86 | QWidget* mParent; | ||
87 | KSyncInterface* mImplementation; | ||
57 | TargetApp mTargetApp; | 88 | TargetApp mTargetApp; |
89 | KPimPrefs* mPrefs; | ||
90 | QPopupMenu* mSyncMenu; | ||
91 | |||
58 | 92 | ||
59 | 93 | ||
60 | 94 | ||
61 | 95 | ||
62 | 96 | ||
63 | 97 | ||
98 | }; | ||
99 | |||
100 | |||
101 | class KSyncInterface | ||
102 | { | ||
103 | public: | ||
104 | virtual bool sync(KSyncManager* manager, QString filename, int mode) = 0; | ||
105 | virtual bool syncExternal(KSyncManager* manager, QString resource) = 0; | ||
64 | 106 | ||
65 | 107 | ||
108 | //called by the syncmanager to indicate that the work has to be marked as dirty. | ||
109 | virtual void sync_setModified() = 0; | ||
110 | |||
111 | //called by the syncmanager to ask if the dirty flag is set. | ||
112 | virtual bool sync_isModified() = 0; | ||
113 | |||
114 | //called by the syncmanager to indicate that the work has to be saved. | ||
115 | virtual void sync_save() = 0; | ||
66 | }; | 116 | }; |
67 | 117 | ||
118 | |||
68 | #endif | 119 | #endif |