fixing dependencies to core. MonolithicApplication is now a proper QObject
[quassel.git] / src / qtui / monoapplication.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC 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) 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 {
31   _internal = new CoreApplicationInternal(); // needed for parser options
32   setRunMode(Monolithic);
33 }
34
35 bool MonolithicApplication::init() {
36   connect(Client::instance(), SIGNAL(newClientSyncer(ClientSyncer *)), this, SLOT(newClientSyncer(ClientSyncer *)));
37   if(QtUiApplication::init()) {
38     return true;
39   }
40   return false;
41 }
42
43 MonolithicApplication::~MonolithicApplication() {
44   // Client needs to be destroyed first
45   Client::destroy();
46   delete _internal;
47 }
48
49 void MonolithicApplication::newClientSyncer(ClientSyncer *syncer) {
50   connect(syncer, SIGNAL(startInternalCore()), this, SLOT(startInternalCore()));
51 }
52
53 void MonolithicApplication::startInternalCore() {
54   _internal->init();
55   Core *core = Core::instance();
56   ClientSyncer *syncer = static_cast<ClientSyncer *>(sender());
57   connect(syncer, SIGNAL(connectToInternalCore(SignalProxy *)), core, SLOT(setupInternalClientSession(SignalProxy *)));
58   connect(core, SIGNAL(sessionState(const QVariant &)), syncer, SLOT(internalSessionStateReceived(const QVariant &)));
59 }