Starting reorganization of files in preparation of separation of client and GUI.
[quassel.git] / core / coreproxy.cpp
diff --git a/core/coreproxy.cpp b/core/coreproxy.cpp
deleted file mode 100644 (file)
index ee9ea2d..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-/***************************************************************************
- *   Copyright (C) 2005/06 by The Quassel Team                             *
- *   devel@quassel-irc.org                                                 *
- *                                                                         *
- *   This program is free software; you can redistribute it and/or modify  *
- *   it under the terms of the GNU General Public License as published by  *
- *   the Free Software Foundation; either version 2 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- *   This program is distributed in the hope that it will be useful,       *
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
- *   GNU General Public License for more details.                          *
- *                                                                         *
- *   You should have received a copy of the GNU General Public License     *
- *   along with this program; if not, write to the                         *
- *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
- ***************************************************************************/
-
-#include <QDebug>
-
-#include "coreproxy.h"
-#include "global.h"
-#include "util.h"
-#include "core.h"
-
-CoreProxy::CoreProxy() {
-//  connect(global, SIGNAL(dataPutLocally(QString)), this, SLOT(updateGlobalData(QString)));
-//  connect(&server, SIGNAL(newConnection()), this, SLOT(incomingConnection()));
-}
-
-/*
-void CoreProxy::processClientUpdate(QTcpSocket *socket, QString key, QVariant data) {
-  global->updateData(key, data);
-  QList<QVariant> sigdata;
-  sigdata.append(CS_UPDATE_GLOBAL_DATA); sigdata.append(key); sigdata.append(data); sigdata.append(QVariant());
-  QTcpSocket *s;
-  foreach(s, clients) {
-    if(s != socket) writeDataToDevice(s, QVariant(sigdata));
-  }
-}
-
-void CoreProxy::updateGlobalData(QString key) {
-  QVariant data = global->getData(key);
-  emit csUpdateGlobalData(key, data);
-}
-*/
-
-/*
-void CoreProxy::send(CoreSignal sig, QVariant arg1, QVariant arg2, QVariant arg3) {
-
-  QList<QVariant> sigdata;
-  sigdata.append(sig); sigdata.append(arg1); sigdata.append(arg2); sigdata.append(arg3);
-  //qDebug() << "Sending signal: " << sigdata;
-  QTcpSocket *socket;
-  foreach(socket, clients) {
-    writeDataToDevice(socket, QVariant(sigdata));
-  }
-}
-*/
-
-void CoreProxy::recv(ClientSignal sig, QVariant arg1, QVariant arg2, QVariant arg3) {
-  //qDebug() << "[CORE] Received signal" << sig << ":" << arg1<<arg2<<arg3;
-  switch(sig) {
-    case GS_UPDATE_GLOBAL_DATA: emit gsPutGlobalData(arg1.toString(), arg2); break;
-    case GS_USER_INPUT: emit gsUserInput(arg1.value<BufferId>(), arg2.toString()); break;
-    case GS_REQUEST_CONNECT: emit gsRequestConnect(arg1.toStringList()); break;
-    case GS_IMPORT_BACKLOG: emit gsImportBacklog(); break;
-    case GS_REQUEST_BACKLOG: emit gsRequestBacklog(arg1.value<BufferId>(), arg2, arg3); break;
-    //default: qWarning() << "Unknown signal in CoreProxy::recv: " << sig;
-    default: emit gsGeneric(sig, arg1, arg2, arg3);
-  }
-}
-
-
-//CoreProxy *coreProxy;