e66aa65afe758832c1c8729a0b0285f4f4cc6424
[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 _CLIENTPROXY_H_
22 #define _CLIENTPROXY_H_
23
24 #include <QStringList>
25
26 #include "proxy_common.h"
27 #include "message.h"
28 #include "global.h"
29
30 class ClientProxy : public QObject {
31   Q_OBJECT
32
33   public:
34     static ClientProxy *instance();
35     static void destroy();
36
37   public slots:
38     inline void gsUserInput(BufferId id, QString msg)                 { send(GS_USER_INPUT, QVariant::fromValue(id), msg); }
39     inline void gsRequestConnect(QStringList networks)                { send(GS_REQUEST_CONNECT, networks); }
40     inline void gsImportBacklog()                                     { send(GS_IMPORT_BACKLOG); }
41     inline void gsRequestBacklog(BufferId id, QVariant v1, QVariant v2) { send(GS_REQUEST_BACKLOG, QVariant::fromValue(id), v1, v2); }
42     inline void gsRequestNetworkStates()                              { send(GS_REQUEST_NETWORK_STATES); }
43
44     inline void gsGeneric(ClientSignal sig, QVariant v1 = QVariant(), QVariant v2 = QVariant(), QVariant v3 = QVariant()) { send(sig, v1, v2, v3); }
45
46   signals:
47     void csCoreState(QVariant);
48     void csServerState(QString, QVariant);
49     void csServerConnected(QString);
50     void csServerDisconnected(QString);
51     void csDisplayMsg(Message);
52     void csDisplayStatusMsg(QString, QString);
53     void csUpdateGlobalData(QString key, QVariant data);
54     void csGlobalDataChanged(QString key);
55     void csModeSet(QString, QString, QString);
56     void csTopicSet(QString, QString, QString);
57     void csNickAdded(QString, QString, VarMap);
58     void csNickRemoved(QString, QString);
59     void csNickRenamed(QString, QString, QString);
60     void csNickUpdated(QString, QString, VarMap);
61     void csOwnNickSet(QString, QString);
62     void csQueryRequested(QString, QString);
63     void csBacklogData(BufferId, QList<QVariant>, bool);
64     void csUpdateBufferId(BufferId);
65
66     void csGeneric(CoreSignal, QVariant, QVariant, QVariant);
67
68     void send(ClientSignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
69
70   public slots:
71     void recv(CoreSignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
72
73   private:
74     ClientProxy();
75     static ClientProxy *instanceptr;
76 };
77
78 #endif