97688f2a94df54eccbf3e7758b60cdd93955ddc8
[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   if(Quassel::init()) {
37     return QtUiApplication::init();
38   }
39   return false;
40 }
41
42 MonolithicApplication::~MonolithicApplication() {
43   // Client needs to be destroyed first
44   Client::destroy();
45   delete _internal;
46 }
47
48 bool MonolithicApplication::startInternalCore() {
49   return _internal->init();
50 }
51
52 void MonolithicApplication::connectClientSyncer(ClientSyncer *syncer) {
53   Core *core = Core::instance();
54   connect(syncer, SIGNAL(connectToInternalCore(SignalProxy *)), core, SLOT(setupInternalClientSession(SignalProxy *)));
55   connect(core, SIGNAL(sessionState(const QVariant &)), syncer, SLOT(internalSessionStateReceived(const QVariant &)));
56 }