-rw-r--r-- | korganizer/mainwindow.h | 70 |
1 files changed, 1 insertions, 69 deletions
diff --git a/korganizer/mainwindow.h b/korganizer/mainwindow.h index 4f89e03..0da0be0 100644 --- a/korganizer/mainwindow.h +++ b/korganizer/mainwindow.h @@ -6,5 +6,4 @@ #include <qdict.h> #include <qfile.h> -#include <qsocket.h> #include <qtextstream.h> #include <qregexp.h> @@ -12,4 +11,5 @@ #include <libkcal/incidence.h> #include "simplealarmclient.h" +#include <ksyncmanager.h> class QAction; @@ -22,72 +22,5 @@ class KSyncProfile; #endif class QPEToolBar; -#include <qserversocket.h> -#include <qsocket.h> -#include <qnetworkprotocol.h> -class KServerSocket : public QServerSocket -{ - Q_OBJECT - -public: - KServerSocket ( QString password, Q_UINT16 port, int backlog = 0, QObject * parent=0, const char * name=0 ); - - void newConnection ( int socket ) ; - void setFileName( QString fn ) {mFileName = fn;}; - -signals: - //void sendFile(QSocket*); - //void getFile(QSocket*); - void file_received( bool ); - //void file_sent(); - void saveFile(); - void endConnect(); -private slots: - void discardClient(); - void readClient(); - void readBackFileFromSocket(); - private : - bool blockRC; - void send_file(); - void get_file(); - void end_connect(); - QDialog* mSyncActionDialog; - QSocket* mSocket; - QString mPassWord; - QString mFileName; - QTime piTime; - QString piFileString; -}; - -class KCommandSocket : public QObject -{ - Q_OBJECT -public: - enum state { successR, errorR, successW, errorW, quiet }; - KCommandSocket ( QString password, Q_UINT16 port, QString host, QObject * parent=0, const char * name=0 ); - void readFile( QString ); - void writeFile( QString ); - void sendStop(); - - -signals: - void commandFinished( KCommandSocket*, int ); -private slots: - void startReadFileFromSocket(); - void readFileFromSocket(); - void deleteSocket(); - void writeFileToSocket(); - private : - QSocket* mSocket; - QString mPassWord; - Q_UINT16 mPort; - QString mHost; - QString mFileName; - QTimer* mTimerSocket; - int mRetVal; - QTime mTime; - QString mFileString; - bool mFirst; -}; namespace KCal { @@ -210,5 +143,4 @@ class MainWindow : public QMainWindow bool mCalendarModifiedFlag; QPixmap loadPixmap( QString ); - QDialog * mSyncActionDialog; }; |