Added generic signals between Core and GUI. You can use these to avoid having to...
[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(BufferId id, QString msg)                 { send(GS_USER_INPUT, QVariant::fromValue(id), msg); }
45     inline void gsRequestConnect(QStringList networks)                { send(GS_REQUEST_CONNECT, networks); }
46     inline void gsImportBacklog()                                     { send(GS_IMPORT_BACKLOG); }
47     inline void gsRequestBacklog(BufferId id, QVariant v1, QVariant v2) { send(GS_REQUEST_BACKLOG, QVariant::fromValue(id), v1, v2); }
48
49     inline void gsGeneric(GUISignal sig, QVariant v1 = QVariant(), QVariant v2 = QVariant(), QVariant v3 = QVariant()) { send(sig, v1, v2, v3); }
50
51     void connectToCore(QString host, quint16 port);
52     void disconnectFromCore();
53
54   signals:
55     void csCoreState(QVariant);
56     void csServerState(QString, QVariant);
57     void csServerConnected(QString);
58     void csServerDisconnected(QString);
59     void csDisplayMsg(Message);
60     void csDisplayStatusMsg(QString, QString);
61     void csUpdateGlobalData(QString key, QVariant data);
62     void csGlobalDataChanged(QString key);
63     void csModeSet(QString, QString, QString);
64     void csTopicSet(QString, QString, QString);
65     void csNickAdded(QString, QString, VarMap);
66     void csNickRemoved(QString, QString);
67     void csNickRenamed(QString, QString, QString);
68     void csNickUpdated(QString, QString, VarMap);
69     void csOwnNickSet(QString, QString);
70     void csQueryRequested(QString, QString);
71     void csBacklogData(BufferId, QList<QVariant>, bool);
72     void csUpdateBufferId(BufferId);
73
74     void csGeneric(CoreSignal, QVariant, QVariant, QVariant);
75
76     void coreConnected();
77     void coreDisconnected();
78     void coreConnectionError(QString errorMsg);
79
80     void recvPartialItem(quint32 avail, quint32 size);
81
82   public:
83     void send(GUISignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
84     void recv(CoreSignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
85
86   private slots:
87     void updateCoreData(QString);
88
89     void serverError(QAbstractSocket::SocketError);
90     void serverHasData();
91
92   private:
93     QTcpSocket socket;
94     quint32 blockSize;
95
96   friend class CoreProxy;
97
98 };
99
100 extern GUIProxy *guiProxy;
101
102
103
104 #endif