I am starting to clean up the mess that is Global right now, and to implement a clean...
[quassel.git] / src / core / coreproxy.cpp
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 #include "coreproxy.h"
22 #include <QtDebug>
23
24 CoreProxy::CoreProxy() {
25
26 }
27
28 void CoreProxy::recv(ClientSignal sig, QVariant arg1, QVariant arg2, QVariant arg3) {
29   //qDebug() << "[CORE] Received signal" << sig << ":" << arg1<<arg2<<arg3;
30   switch(sig) {
31     case GS_UPDATE_GLOBAL_DATA: emit gsPutGlobalData(arg1.toString(), arg2); break;
32     case GS_SESSION_DATA_CHANGED: emit gsSessionDataChanged(arg1.toString(), arg2); break;
33     case GS_USER_INPUT: emit gsUserInput(arg1.value<BufferId>(), arg2.toString()); break;
34     case GS_REQUEST_CONNECT: emit gsRequestConnect(arg1.toStringList()); break;
35     case GS_IMPORT_BACKLOG: emit gsImportBacklog(); break;
36     case GS_REQUEST_BACKLOG: emit gsRequestBacklog(arg1.value<BufferId>(), arg2, arg3); break;
37     case GS_REQUEST_NETWORK_STATES: emit gsRequestNetworkStates(); break;
38     //default: qWarning() << "Unknown signal in CoreProxy::recv: " << sig;
39     default: emit gsGeneric(sig, arg1, arg2, arg3);
40   }
41 }