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