Still working on the authentification stuff. Technically, now even in the monolithic...
[quassel.git] / src / client / clientproxy.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 class ClientProxy : public QObject {
34   Q_OBJECT
35
36   public:
37     static ClientProxy *instance();
38     static void destroy();
39
40   public slots:
41     inline void gsUserInput(BufferId id, QString msg)                 { send(GS_USER_INPUT, QVariant::fromValue(id), msg); }
42     inline void gsRequestConnect(QStringList networks)                { send(GS_REQUEST_CONNECT, networks); }
43     inline void gsImportBacklog()                                     { send(GS_IMPORT_BACKLOG); }
44     inline void gsRequestBacklog(BufferId id, QVariant v1, QVariant v2) { send(GS_REQUEST_BACKLOG, QVariant::fromValue(id), v1, v2); }
45     inline void gsRequestNetworkStates()                              { send(GS_REQUEST_NETWORK_STATES); }
46
47     inline void gsGeneric(ClientSignal sig, QVariant v1 = QVariant(), QVariant v2 = QVariant(), QVariant v3 = QVariant()) { send(sig, v1, v2, v3); }
48
49     //void connectToCore(QString host, quint16 port);
50     //void disconnectFromCore();
51
52   signals:
53     void csCoreState(QVariant);
54     void csServerState(QString, QVariant);
55     void csServerConnected(QString);
56     void csServerDisconnected(QString);
57     void csDisplayMsg(Message);
58     void csDisplayStatusMsg(QString, QString);
59     void csUpdateGlobalData(QString key, QVariant data);
60     void csGlobalDataChanged(QString key);
61     void csModeSet(QString, QString, QString);
62     void csTopicSet(QString, QString, QString);
63     void csNickAdded(QString, QString, VarMap);
64     void csNickRemoved(QString, QString);
65     void csNickRenamed(QString, QString, QString);
66     void csNickUpdated(QString, QString, VarMap);
67     void csOwnNickSet(QString, QString);
68     void csQueryRequested(QString, QString);
69     void csBacklogData(BufferId, QList<QVariant>, bool);
70     void csUpdateBufferId(BufferId);
71
72     void csGeneric(CoreSignal, QVariant, QVariant, QVariant);
73
74     //void coreConnected();
75     //void coreDisconnected();
76     //void coreConnectionError(QString errorMsg);
77
78     //void recvPartialItem(quint32 avail, quint32 size);
79
80     void send(ClientSignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
81
82   public slots:
83     void recv(CoreSignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
84
85   private slots:
86     //void updateCoreData(QString);
87
88     //void serverError(QAbstractSocket::SocketError);
89     //void serverHasData();
90
91   private:
92     ClientProxy();
93     static ClientProxy *instanceptr;
94
95     //QTcpSocket socket;
96     //quint32 blockSize;
97
98   //friend class CoreProxy;
99
100 };
101
102 //extern ClientProxy *guiProxy;
103
104
105
106 #endif