Finished logical separation of core and GUI. Monolithic build should work as expected.
[quassel.git] / core / core.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 "core.h"
22 #include "server.h"
23 #include "quassel.h"
24 #include "coreproxy.h"
25
26 #include <QSettings>
27
28 Core::Core() {
29   if(core) qFatal("Trying to instantiate more than one Core object!");
30
31   connect(coreProxy, SIGNAL(gsRequestConnect(QString, quint16)), this, SLOT(connectToIrc(QString, quint16)));
32   connect(coreProxy, SIGNAL(gsUserInput(QString)), this, SLOT(inputLine(QString)));
33
34   connect(&server, SIGNAL(recvLine(QString)), coreProxy, SLOT(csCoreMessage(QString)));
35
36   QSettings s;
37   VarMap identities = s.value("Network/Identities").toMap();
38   //VarMap networks   = s.value("Network/
39   quassel->putData("Identities", identities);
40
41   server.start();
42 }
43
44 void Core::init() {
45
46
47 }
48
49 /*
50 void Core::run() {
51
52   connect(&server, SIGNAL(recvLine(const QString &)), this, SIGNAL(outputLine(const QString &)));
53   //connect(
54   server.start();
55   exec();
56 }
57 */
58
59 void Core::connectToIrc(const QString &h, quint16 port) {
60   qDebug() << "Core: Connecting to " << h << ":" << port;
61   server.connectToIrc(h, port);
62 }
63
64 void Core::inputLine(QString s) {
65   server.putRawLine(s);
66
67 }
68
69 VarMap Core::loadIdentities() {
70   QSettings s;
71   return s.value("Network/Identities").toMap();
72 }
73
74 void Core::storeIdentities(VarMap identities) {
75   QSettings s;
76   s.setValue("Network/Identities", identities);
77 }
78
79 Core *core;