1 /***************************************************************************
2 * Copyright (C) 2005-2015 by the Quassel Project *
3 * devel@quassel-irc.org *
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. *
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. *
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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #include "monoapplication.h"
22 #include "coreapplication.h"
29 MonolithicApplication::MonolithicApplication(int &argc, char **argv)
30 : QtUiApplication(argc, argv),
31 _internalInitDone(false)
33 _internal = new CoreApplicationInternal(); // needed for parser options
34 #if defined(HAVE_KDE4) || defined(Q_OS_MAC)
35 disableCrashhandler();
36 #endif /* HAVE_KDE4 || Q_OS_MAC */
37 setRunMode(Quassel::Monolithic);
41 bool MonolithicApplication::init()
43 if (!Quassel::init()) // parse args
46 connect(Client::coreConnection(), SIGNAL(startInternalCore()), SLOT(startInternalCore()));
48 // FIXME what's this for?
49 if (isOptionSet("port")) {
53 return QtUiApplication::init();
57 MonolithicApplication::~MonolithicApplication()
59 // Client needs to be destroyed first
65 void MonolithicApplication::startInternalCore()
67 if (!_internalInitDone) {
69 _internalInitDone = true;
71 Core *core = Core::instance();
72 CoreConnection *connection = Client::coreConnection();
73 connect(connection, SIGNAL(connectToInternalCore(InternalPeer*)), core, SLOT(setupInternalClientSession(InternalPeer*)));
74 connect(core, SIGNAL(sessionState(Protocol::SessionState)), connection, SLOT(internalSessionStateReceived(Protocol::SessionState)));