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