67bee8e1ca20bb20b4c60f64b6569c5db90cfd2a
[quassel.git] / src / qtui / monoapplication.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2013 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "monoapplication.h"
22 #include "coreapplication.h"
23 #include "client.h"
24 #include "core.h"
25 #include "qtui.h"
26
27 class InternalConnection;
28
29 MonolithicApplication::MonolithicApplication(int &argc, char **argv)
30     : QtUiApplication(argc, argv),
31     _internalInitDone(false)
32 {
33     _internal = new CoreApplicationInternal(); // needed for parser options
34 #if defined(HAVE_KDE) || defined(Q_OS_MAC)
35     disableCrashhandler();
36 #endif /* HAVE_KDE || Q_OS_MAC */
37     setRunMode(Quassel::Monolithic);
38 }
39
40
41 bool MonolithicApplication::init()
42 {
43     if (!Quassel::init()) // parse args
44         return false;
45
46     connect(Client::coreConnection(), SIGNAL(startInternalCore()), SLOT(startInternalCore()));
47
48     // FIXME what's this for?
49     if (isOptionSet("port")) {
50         startInternalCore();
51     }
52
53     return QtUiApplication::init();
54 }
55
56
57 MonolithicApplication::~MonolithicApplication()
58 {
59     // Client needs to be destroyed first
60     Client::destroy();
61     delete _internal;
62 }
63
64
65 void MonolithicApplication::startInternalCore()
66 {
67     if (!_internalInitDone) {
68         _internal->init();
69         _internalInitDone = true;
70     }
71     Core *core = Core::instance();
72     CoreConnection *connection = Client::coreConnection();
73     connect(connection, SIGNAL(connectToInternalCore(InternalConnection*)), core, SLOT(setupInternalClientSession(InternalConnection*)));
74     connect(core, SIGNAL(sessionState(QVariant)), connection, SLOT(internalSessionStateReceived(QVariant)));
75 }