author | zautrix <zautrix> | 2005-02-24 02:22:48 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-02-24 02:22:48 (UTC) |
commit | 66ea8a0023a2a58e7887a41c265f2a7112b6b625 (patch) (unidiff) | |
tree | 2533ce5893fc7c68e067964ad078d4b00a6e8354 /libkdepim/ksyncmanager.h | |
parent | 5af16f69232073d1fa46d2dea3774beaaafb00c5 (diff) | |
download | kdepimpi-66ea8a0023a2a58e7887a41c265f2a7112b6b625.zip kdepimpi-66ea8a0023a2a58e7887a41c265f2a7112b6b625.tar.gz kdepimpi-66ea8a0023a2a58e7887a41c265f2a7112b6b625.tar.bz2 |
socket fix
-rw-r--r-- | libkdepim/ksyncmanager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libkdepim/ksyncmanager.h b/libkdepim/ksyncmanager.h index bd3ecdc..30ec1e6 100644 --- a/libkdepim/ksyncmanager.h +++ b/libkdepim/ksyncmanager.h | |||
@@ -1,230 +1,230 @@ | |||
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 | #include <qsocket.h> | 27 | #include <qsocket.h> |
28 | #include <qdatetime.h> | 28 | #include <qdatetime.h> |
29 | #include <qserversocket.h> | 29 | #include <qserversocket.h> |
30 | #include <qtextstream.h> | 30 | #include <qtextstream.h> |
31 | #include <qregexp.h> | 31 | #include <qregexp.h> |
32 | 32 | ||
33 | class QPopupMenu; | 33 | class QPopupMenu; |
34 | class KSyncProfile; | 34 | class KSyncProfile; |
35 | class KPimPrefs; | 35 | class KPimPrefs; |
36 | class QWidget; | 36 | class QWidget; |
37 | class KSyncManager; | 37 | class KSyncManager; |
38 | class KSyncInterface; | 38 | class KSyncInterface; |
39 | class QProgressBar; | 39 | class QProgressBar; |
40 | 40 | ||
41 | 41 | ||
42 | class KServerSocket : public QServerSocket | 42 | class KServerSocket : public QServerSocket |
43 | { | 43 | { |
44 | Q_OBJECT | 44 | Q_OBJECT |
45 | 45 | ||
46 | public: | 46 | public: |
47 | KServerSocket ( QString password, Q_UINT16 port, int backlog = 0, QObject * parent=0, const char * name=0 ); | 47 | KServerSocket ( QString password, Q_UINT16 port, int backlog = 0, QObject * parent=0, const char * name=0 ); |
48 | 48 | ||
49 | void newConnection ( int socket ) ; | 49 | void newConnection ( int socket ) ; |
50 | void setFileName( QString fn ) {mFileName = fn;}; | 50 | void setFileName( QString fn ) {mFileName = fn;}; |
51 | signals: | 51 | signals: |
52 | void file_received( bool ); | 52 | void file_received( bool ); |
53 | void request_file(); | 53 | void request_file(); |
54 | void saveFile(); | 54 | void saveFile(); |
55 | void endConnect(); | 55 | void endConnect(); |
56 | private slots: | 56 | private slots: |
57 | void discardClient(); | 57 | void discardClient(); |
58 | void deleteSocket(); | 58 | void deleteSocket(); |
59 | void readClient(); | 59 | void readClient(); |
60 | void displayErrorMessage(); | 60 | void displayErrorMessage(); |
61 | void readBackFileFromSocket(); | 61 | void readBackFileFromSocket(); |
62 | private : | 62 | private : |
63 | int mErrorMessage; | 63 | int mErrorMessage; |
64 | bool blockRC; | 64 | bool blockRC; |
65 | void send_file(); | 65 | void send_file(); |
66 | void get_file(); | 66 | void get_file(); |
67 | void end_connect(); | 67 | void end_connect(); |
68 | void error_connect( QString ); | 68 | void error_connect( QString ); |
69 | QDialog* mSyncActionDialog; | 69 | QDialog* mSyncActionDialog; |
70 | QSocket* mSocket; | 70 | QSocket* mSocket; |
71 | QString mPassWord; | 71 | QString mPassWord; |
72 | QString mFileName; | 72 | QString mFileName; |
73 | QTime piTime; | 73 | QTime piTime; |
74 | QString piFileString; | 74 | QString piFileString; |
75 | }; | 75 | }; |
76 | 76 | ||
77 | class KCommandSocket : public QObject | 77 | class KCommandSocket : public QObject |
78 | { | 78 | { |
79 | Q_OBJECT | 79 | Q_OBJECT |
80 | public: | 80 | public: |
81 | enum state { successR, errorR, successW, errorW, errorTO, errorPW, errorCA, errorFI, errorUN,quiet }; | 81 | enum state { successR, errorR, successW, errorW, errorTO, errorPW, errorCA, errorFI, errorUN, errorED,quiet }; |
82 | KCommandSocket ( QString password, Q_UINT16 port, QString host, QObject * parent=0, QWidget* cap = 0, const char * name=0 ); | 82 | KCommandSocket ( QString password, Q_UINT16 port, QString host, QObject * parent=0, QWidget* cap = 0, const char * name=0 ); |
83 | void readFile( QString ); | 83 | void readFile( QString ); |
84 | void writeFile( QString ); | 84 | void writeFile( QString ); |
85 | void sendStop(); | 85 | void sendStop(); |
86 | 86 | ||
87 | private slots : | 87 | private slots : |
88 | void sendFileRequest(); | 88 | void sendFileRequest(); |
89 | 89 | ||
90 | signals: | 90 | signals: |
91 | void commandFinished( KCommandSocket*, int ); | 91 | void commandFinished( KCommandSocket*, int ); |
92 | private slots: | 92 | private slots: |
93 | void startReadFileFromSocket(); | 93 | void startReadFileFromSocket(); |
94 | void readFileFromSocket(); | 94 | void readFileFromSocket(); |
95 | void deleteSocket(); | 95 | void deleteSocket(); |
96 | void writeFileToSocket(); | 96 | void writeFileToSocket(); |
97 | private : | 97 | private : |
98 | QWidget* tlw; | 98 | QWidget* tlw; |
99 | QSocket* mSocket; | 99 | QSocket* mSocket; |
100 | QString mPassWord; | 100 | QString mPassWord; |
101 | Q_UINT16 mPort; | 101 | Q_UINT16 mPort; |
102 | QString mHost; | 102 | QString mHost; |
103 | QString mFileName; | 103 | QString mFileName; |
104 | QTimer* mTimerSocket; | 104 | QTimer* mTimerSocket; |
105 | int mRetVal; | 105 | int mRetVal; |
106 | QTime mTime; | 106 | QTime mTime; |
107 | QString mFileString; | 107 | QString mFileString; |
108 | bool mFirst; | 108 | bool mFirst; |
109 | bool mFirstLine; | 109 | bool mFirstLine; |
110 | }; | 110 | }; |
111 | 111 | ||
112 | 112 | ||
113 | class KSyncManager : public QObject | 113 | class KSyncManager : public QObject |
114 | { | 114 | { |
115 | Q_OBJECT | 115 | Q_OBJECT |
116 | 116 | ||
117 | public: | 117 | public: |
118 | enum TargetApp { | 118 | enum TargetApp { |
119 | KOPI = 0, | 119 | KOPI = 0, |
120 | KAPI = 1, | 120 | KAPI = 1, |
121 | PWMPI = 2 }; | 121 | PWMPI = 2 }; |
122 | 122 | ||
123 | KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu); | 123 | KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu); |
124 | ~KSyncManager() ; | 124 | ~KSyncManager() ; |
125 | 125 | ||
126 | void multiSync( bool askforPrefs ); | 126 | void multiSync( bool askforPrefs ); |
127 | bool blockSave() { return mBlockSaveFlag; } | 127 | bool blockSave() { return mBlockSaveFlag; } |
128 | void setBlockSave(bool sa) { mBlockSaveFlag = sa; } | 128 | void setBlockSave(bool sa) { mBlockSaveFlag = sa; } |
129 | void setDefaultFileName( QString s) ; | 129 | void setDefaultFileName( QString s) ; |
130 | QString defaultFileName() { return mDefFileName ;} | 130 | QString defaultFileName() { return mDefFileName ;} |
131 | QString syncFileName(); | 131 | QString syncFileName(); |
132 | void enableQuick( bool ask = true); | 132 | void enableQuick( bool ask = true); |
133 | 133 | ||
134 | bool syncWithDesktop () { return mSyncWithDesktop;} | 134 | bool syncWithDesktop () { return mSyncWithDesktop;} |
135 | QString getCurrentSyncDevice() { return mCurrentSyncDevice; } | 135 | QString getCurrentSyncDevice() { return mCurrentSyncDevice; } |
136 | QString getCurrentSyncName() { return mCurrentSyncName; } | 136 | QString getCurrentSyncName() { return mCurrentSyncName; } |
137 | 137 | ||
138 | void showProgressBar(int percentage, QString caption = QString::null, int total=100); | 138 | void showProgressBar(int percentage, QString caption = QString::null, int total=100); |
139 | void hideProgressBar(); | 139 | void hideProgressBar(); |
140 | bool isProgressBarCanceled(); | 140 | bool isProgressBarCanceled(); |
141 | 141 | ||
142 | // sync stuff | 142 | // sync stuff |
143 | QString mLocalMachineName; | 143 | QString mLocalMachineName; |
144 | QStringList mExternSyncProfiles; | 144 | QStringList mExternSyncProfiles; |
145 | QStringList mSyncProfileNames; | 145 | QStringList mSyncProfileNames; |
146 | bool mAskForPreferences; | 146 | bool mAskForPreferences; |
147 | bool mShowSyncSummary; | 147 | bool mShowSyncSummary; |
148 | bool mIsKapiFile; | 148 | bool mIsKapiFile; |
149 | bool mWriteBackExistingOnly; | 149 | bool mWriteBackExistingOnly; |
150 | int mSyncAlgoPrefs; | 150 | int mSyncAlgoPrefs; |
151 | bool mWriteBackFile; | 151 | bool mWriteBackFile; |
152 | int mWriteBackInFuture; | 152 | int mWriteBackInFuture; |
153 | int mWriteBackInPast; | 153 | int mWriteBackInPast; |
154 | QString mPhoneDevice; | 154 | QString mPhoneDevice; |
155 | QString mPhoneConnection; | 155 | QString mPhoneConnection; |
156 | QString mPhoneModel; | 156 | QString mPhoneModel; |
157 | QString mPassWordPiSync; | 157 | QString mPassWordPiSync; |
158 | QString mActiveSyncPort; | 158 | QString mActiveSyncPort; |
159 | QString mActiveSyncIP ; | 159 | QString mActiveSyncIP ; |
160 | QString mFilterInCal; | 160 | QString mFilterInCal; |
161 | QString mFilterOutCal; | 161 | QString mFilterOutCal; |
162 | QString mFilterInAB; | 162 | QString mFilterInAB; |
163 | QString mFilterOutAB; | 163 | QString mFilterOutAB; |
164 | static QDateTime mRequestedSyncEvent; | 164 | static QDateTime mRequestedSyncEvent; |
165 | 165 | ||
166 | signals: | 166 | signals: |
167 | void save(); | 167 | void save(); |
168 | void request_file(); | 168 | void request_file(); |
169 | void getFile( bool ); | 169 | void getFile( bool ); |
170 | 170 | ||
171 | public slots: | 171 | public slots: |
172 | void slotSyncMenu( int ); | 172 | void slotSyncMenu( int ); |
173 | void slotClearMenu( int action ); | 173 | void slotClearMenu( int action ); |
174 | void deleteCommandSocket(KCommandSocket*s, int state); | 174 | void deleteCommandSocket(KCommandSocket*s, int state); |
175 | void readFileFromSocket(); | 175 | void readFileFromSocket(); |
176 | void fillSyncMenu(); | 176 | void fillSyncMenu(); |
177 | 177 | ||
178 | private: | 178 | private: |
179 | void syncPi(); | 179 | void syncPi(); |
180 | KServerSocket * mServerSocket; | 180 | KServerSocket * mServerSocket; |
181 | KPimPrefs* mPrefs; | 181 | KPimPrefs* mPrefs; |
182 | QString mDefFileName; | 182 | QString mDefFileName; |
183 | QString mCurrentSyncDevice; | 183 | QString mCurrentSyncDevice; |
184 | QString mCurrentSyncName; | 184 | QString mCurrentSyncName; |
185 | void quickSyncLocalFile(); | 185 | void quickSyncLocalFile(); |
186 | bool syncWithFile( QString fn , bool quick ); | 186 | bool syncWithFile( QString fn , bool quick ); |
187 | void syncLocalFile(); | 187 | void syncLocalFile(); |
188 | void syncPhone(); | 188 | void syncPhone(); |
189 | void syncSharp(); | 189 | void syncSharp(); |
190 | void syncKDE(); | 190 | void syncKDE(); |
191 | bool syncExternalApplication(QString); | 191 | bool syncExternalApplication(QString); |
192 | int mCurrentSyncProfile ; | 192 | int mCurrentSyncProfile ; |
193 | void syncRemote( KSyncProfile* prof, bool ask = true); | 193 | void syncRemote( KSyncProfile* prof, bool ask = true); |
194 | bool edit_sync_options(); | 194 | bool edit_sync_options(); |
195 | bool edit_pisync_options(); | 195 | bool edit_pisync_options(); |
196 | int ringSync(); | 196 | int ringSync(); |
197 | QString getPassword( ); | 197 | QString getPassword( ); |
198 | bool mPisyncFinished; | 198 | bool mPisyncFinished; |
199 | bool mBlockSaveFlag; | 199 | bool mBlockSaveFlag; |
200 | QWidget* mParent; | 200 | QWidget* mParent; |
201 | KSyncInterface* mImplementation; | 201 | KSyncInterface* mImplementation; |
202 | TargetApp mTargetApp; | 202 | TargetApp mTargetApp; |
203 | QPopupMenu* mSyncMenu; | 203 | QPopupMenu* mSyncMenu; |
204 | QProgressBar* bar; | 204 | QProgressBar* bar; |
205 | bool mSyncWithDesktop; | 205 | bool mSyncWithDesktop; |
206 | 206 | ||
207 | private slots: | 207 | private slots: |
208 | void confSync(); | 208 | void confSync(); |
209 | 209 | ||
210 | 210 | ||
211 | }; | 211 | }; |
212 | 212 | ||
213 | 213 | ||
214 | class KSyncInterface | 214 | class KSyncInterface |
215 | { | 215 | { |
216 | public : | 216 | public : |
217 | virtual void removeSyncInfo( QString syncProfile) = 0; | 217 | virtual void removeSyncInfo( QString syncProfile) = 0; |
218 | virtual bool sync(KSyncManager* manager, QString filename, int mode) = 0; | 218 | virtual bool sync(KSyncManager* manager, QString filename, int mode) = 0; |
219 | virtual bool syncExternal(KSyncManager* manager, QString resource) | 219 | virtual bool syncExternal(KSyncManager* manager, QString resource) |
220 | { | 220 | { |
221 | // empty implementation, because some syncable applications do not | 221 | // empty implementation, because some syncable applications do not |
222 | // have an external(sharpdtm) syncmode, like pwmanager. | 222 | // have an external(sharpdtm) syncmode, like pwmanager. |
223 | return false; | 223 | return false; |
224 | } | 224 | } |
225 | 225 | ||
226 | 226 | ||
227 | }; | 227 | }; |
228 | 228 | ||
229 | 229 | ||
230 | #endif | 230 | #endif |