92ac0d270965c8aa9a2e61790b5f502a9ec59b63
[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 #include "message.h"
26 #include "global.h"
27
28 #include <QObject>
29 #include <QVariant>
30 #include <QTcpSocket>
31 #include <QStringList>
32
33 /** This class is the GUI side of the proxy. The GUI connects its signals and slots to it,
34  *  and the calls are marshalled and sent to (or received and unmarshalled from) the CoreProxy.
35  *  The connection function is defined in main/main_gui.cpp or main/main_mono.cpp.
36  */
37 class GUIProxy : public QObject {
38   Q_OBJECT
39
40   public:
41     GUIProxy();
42
43   public slots:
44     inline void gsUserInput(QString net, QString buf, QString msg)    { send(GS_USER_INPUT, net, buf, msg); }
45     inline void gsRequestConnect(QStringList networks)                { send(GS_REQUEST_CONNECT, networks); }
46
47     void connectToCore(QString host, quint16 port);
48     void disconnectFromCore();
49
50   signals:
51     void csCoreState(QVariant);
52     void csDisplayMsg(QString, QString, Message);
53     void csDisplayStatusMsg(QString, QString);
54     void csUpdateGlobalData(QString key, QVariant data);
55     void csGlobalDataChanged(QString key);
56     void csModeSet(QString, QString, QString);
57     void csTopicSet(QString, QString, QString);
58     void csSetNicks(QString, QString, QStringList);
59     void csNickAdded(QString, QString, VarMap);
60     void csNickRemoved(QString, QString);
61     void csNickRenamed(QString, QString, QString);
62     void csNickUpdated(QString, QString, VarMap);
63     void csOwnNickSet(QString, QString);
64
65     void coreConnected();
66     void coreDisconnected();
67     void coreConnectionError(QString errorMsg);
68
69     void recvPartialItem(quint32 avail, quint32 size);
70
71   public:
72     void send(GUISignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
73     void recv(CoreSignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
74
75   private slots:
76     void updateCoreData(QString);
77
78     void serverError(QAbstractSocket::SocketError);
79     void serverHasData();
80
81   private:
82     QTcpSocket socket;
83     quint32 blockSize;
84
85   friend class CoreProxy;
86
87 };
88
89 extern GUIProxy *guiProxy;
90
91
92
93 #endif