-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 | |||
@@ -23,18 +23,19 @@ $Id$ | |||
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, |
@@ -42,18 +43,51 @@ class KSyncManager | |||
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 | ||
@@ -62,7 +96,24 @@ class KSyncManager | |||
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 |