Wupps, fixed an oooopsie with the migration code :)
[quassel.git] / src / qtui / monoapplication.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
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) version 3.                                           *
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 "monoapplication.h"
22 #include "coreapplication.h"
23 #include "client.h"
24 #include "clientsyncer.h"
25 #include "core.h"
26 #include "qtui.h"
27
28 MonolithicApplication::MonolithicApplication(int &argc, char **argv)
29   : QtUiApplication(argc, argv),
30     _internalInitDone(false)
31 {
32   _internal = new CoreApplicationInternal(); // needed for parser options
33   setRunMode(Monolithic);
34 }
35
36 bool MonolithicApplication::init() {
37   if(!Quassel::init()) // parse args
38     return false;
39
40   if(isOptionSet("port")) {
41     _internal->init();
42     _internalInitDone = true;
43   }
44
45   connect(Client::instance(), SIGNAL(newClientSyncer(ClientSyncer *)), this, SLOT(newClientSyncer(ClientSyncer *)));
46   return QtUiApplication::init();
47 }
48
49 MonolithicApplication::~MonolithicApplication() {
50   // Client needs to be destroyed first
51   Client::destroy();
52   delete _internal;
53 }
54
55 void MonolithicApplication::newClientSyncer(ClientSyncer *syncer) {
56   connect(syncer, SIGNAL(startInternalCore(ClientSyncer *)), this, SLOT(startInternalCore(ClientSyncer *)));
57 }
58
59 void MonolithicApplication::startInternalCore(ClientSyncer *syncer) {
60   if(!_internalInitDone) {
61     _internal->init();
62     _internalInitDone = true;
63   }
64   Core *core = Core::instance();
65   connect(syncer, SIGNAL(connectToInternalCore(SignalProxy *)), core, SLOT(setupInternalClientSession(SignalProxy *)));
66   connect(core, SIGNAL(sessionState(const QVariant &)), syncer, SLOT(internalSessionStateReceived(const QVariant &)));
67 }