Another big update today.
[quassel.git] / gui / guiproxy.h
1 /***************************************************************************
2  *   Copyright (C) 2005/06 by The Quassel 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) any later version.                                   *
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 _GUIPROXY_H_
22 #define _GUIPROXY_H_
23
24 #include "proxy_common.h"
25
26 #include <QObject>
27 #include <QVariant>
28 #include <QTcpSocket>
29 #include <QStringList>
30
31 /** This class is the GUI side of the proxy. The GUI connects its signals and slots to it,
32  *  and the calls are marshalled and sent to (or received and unmarshalled from) the CoreProxy.
33  *  The connection function is defined in main/main_gui.cpp or main/main_mono.cpp.
34  */
35 class GUIProxy : public QObject {
36   Q_OBJECT
37
38   public:
39     GUIProxy();
40
41   public slots:
42     inline void gsUserInput(QString s)                             { send(GS_USER_INPUT, s); }
43     inline void gsRequestConnect(QStringList networks)             { send(GS_REQUEST_CONNECT, networks); }
44
45     void connectToCore(QString host, quint16 port);
46     void disconnectFromCore();
47
48   signals:
49     void csCoreState(QVariant);
50     void csSendMessage(QString, QString, QString);
51     void csSendStatusMsg(QString, QString);
52     void csUpdateGlobalData(QString key, QVariant data);
53     void csGlobalDataChanged(QString key);
54
55     void coreConnected();
56     void coreDisconnected();
57     void coreConnectionError(QString errorMsg);
58
59     void recvPartialItem(quint32 avail, quint32 size);
60
61   public:
62     void send(GUISignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
63     void recv(CoreSignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
64
65   private slots:
66     void updateCoreData(QString);
67
68     void serverError(QAbstractSocket::SocketError);
69     void serverHasData();
70
71   private:
72     QTcpSocket socket;
73     quint32 blockSize;
74
75   friend class CoreProxy;
76
77 };
78
79 extern GUIProxy *guiProxy;
80
81
82
83 #endif