- Bug #20 (RPL_NICKNAMEINUSER)
[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 csServerState(QString, QVariant);
53     void csServerConnected(QString);
54     void csServerDisconnected(QString);
55     void csDisplayMsg(QString, Message);
56     void csDisplayStatusMsg(QString, QString);
57     void csUpdateGlobalData(QString key, QVariant data);
58     void csGlobalDataChanged(QString key);
59     void csModeSet(QString, QString, QString);
60     void csTopicSet(QString, QString, QString);
61     void csSetNicks(QString, QString, QStringList);
62     void csNickAdded(QString, QString, VarMap);
63     void csNickRemoved(QString, QString);
64     void csNickRenamed(QString, QString, QString);
65     void csNickUpdated(QString, QString, VarMap);
66     void csOwnNickSet(QString, QString);
67     void csQueryRequested(QString, QString);
68
69     void coreConnected();
70     void coreDisconnected();
71     void coreConnectionError(QString errorMsg);
72
73     void recvPartialItem(quint32 avail, quint32 size);
74
75   public:
76     void send(GUISignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
77     void recv(CoreSignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
78
79   private slots:
80     void updateCoreData(QString);
81
82     void serverError(QAbstractSocket::SocketError);
83     void serverHasData();
84
85   private:
86     QTcpSocket socket;
87     quint32 blockSize;
88
89   friend class CoreProxy;
90
91 };
92
93 extern GUIProxy *guiProxy;
94
95
96
97 #endif