Introduce QtUiStyleSettings and make highlight color configurable again
[quassel.git] / src / client / clientsyncer.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef _CLIENTSYNCER_H_
22 #define _CLIENTSYNCER_H_
23
24 #include <QPointer>
25 #include <QString>
26 #include <QVariantMap>
27
28 #ifndef QT_NO_OPENSSL
29 #include <QSslSocket>
30 #else
31 #include <QTcpSocket>
32 #endif
33
34 class IrcUser;
35 class IrcChannel;
36
37 class ClientSyncer : public QObject {
38   Q_OBJECT
39
40 public:
41   ClientSyncer(QObject *parent = 0);
42   ~ClientSyncer();
43   
44 signals:
45   void recvPartialItem(quint32 avail, quint32 size);
46   void connectionError(const QString &errorMsg);
47   void connectionMsg(const QString &msg);
48   void sessionProgress(quint32 part, quint32 total);
49   void networksProgress(quint32 part, quint32 total);
50   void socketStateChanged(QAbstractSocket::SocketState);
51   void socketDisconnected();
52   
53   void startLogin();
54   void loginFailed(const QString &error);
55   void loginSuccess();
56   void syncFinished();
57   void startCoreSetup(const QVariantList &);
58   void coreSetupSuccess();
59   void coreSetupFailed(const QString &error);
60   
61   void encrypted(bool);
62                       
63 public slots:
64   void connectToCore(const QVariantMap &);
65   void loginToCore(const QString &user, const QString &passwd);
66   void disconnectFromCore();
67                            
68 private slots:
69   void coreSocketError(QAbstractSocket::SocketError);
70   void coreHasData();
71   void coreSocketConnected();
72   void coreSocketDisconnected();
73
74   void clientInitAck(const QVariantMap &msg);
75   
76   // for sync progress
77   void networkInitDone();
78   void checkSyncState();
79   
80   void syncToCore(const QVariantMap &sessionState);
81   void sessionStateReceived(const QVariantMap &state);
82   
83   void doCoreSetup(const QVariant &setupData);
84 #ifndef QT_NO_OPENSSL
85     void sslErrors(const QList<QSslError> &errors);
86 #endif
87   
88 private:
89   QPointer<QIODevice> socket;
90   quint32 blockSize;
91   QVariantMap coreConnectionInfo;
92   
93   QSet<QObject *> netsToSync;
94   int numNetsToSync;
95 };
96
97 #endif