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