87360c6335167dce226f3ff4eb2245fa4a6eca11
[quassel.git] / main / main_mono.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005 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 <iostream>
22
23 #include <QApplication>
24
25 #include "core.h"
26 #include "style.h"
27 #include "global.h"
28 #include "guiproxy.h"
29 #include "coreproxy.h"
30 #include "settings.h"
31 #include "chatwidget.h"
32
33 #include "mainwin.h"
34
35 int main(int argc, char **argv) {
36   QApplication app(argc, argv);
37   QApplication::setOrganizationDomain("quassel-irc.org");
38   QApplication::setApplicationName("Quassel IRC");
39   QApplication::setOrganizationName("The Quassel Team");
40
41   Global::runMode = Global::Monolithic;
42   Global::quasselDir = QDir::homePath() + "/.quassel";
43
44   //settings = new Settings();
45   global = new Global();
46   guiProxy = new GUIProxy();
47   coreProxy = new CoreProxy();
48
49   Settings::init();
50   Style::init();
51
52   MainWin *mainWin = new MainWin();
53   mainWin->show();
54   mainWin->init();
55   int exitCode = app.exec();
56   delete core;
57   delete guiProxy;
58   delete coreProxy;
59   delete global;
60   delete mainWin;
61   //delete settings;
62   return exitCode;
63 }
64
65 void MainWin::syncToCore() {
66   Q_ASSERT(global->getData("CoreReady").toBool());
67   coreBuffers = core->getBuffers();
68   // NOTE: We don't need to request server states, because in the monolithic version there can't be
69   //       any servers connected at this stage...
70 }
71
72 void CoreProxy::sendToGUI(CoreSignal sig, QVariant arg1, QVariant arg2, QVariant arg3) {
73   guiProxy->recv(sig, arg1, arg2, arg3);
74 }
75
76 GUIProxy::GUIProxy() {
77   if(guiProxy) qFatal("Trying to instantiate more than one CoreProxy object!");
78 }
79
80 void GUIProxy::send(GUISignal sig, QVariant arg1, QVariant arg2, QVariant arg3) {
81   coreProxy->recv(sig, arg1, arg2, arg3);
82 }
83
84 // Dummy function definitions
85 // These are not needed, since we don't have a network connection to the core.
86 void GUIProxy::serverHasData() {}
87 void GUIProxy::connectToCore(QString, quint16) {}
88 void GUIProxy::disconnectFromCore() {}
89 void GUIProxy::updateCoreData(QString) {}
90 void GUIProxy::serverError(QAbstractSocket::SocketError) {}
91