Fix initial backlock fetch with >= qt-4.6.0-rc1
[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 #if defined(HAVE_KDE) || defined(Q_OS_MAC)
34   disableCrashhandler();
35 #endif /* HAVE_KDE || Q_OS_MAC */
36   setRunMode(Quassel::Monolithic);
37 }
38
39 bool MonolithicApplication::init() {
40   if(!Quassel::init()) // parse args
41     return false;
42
43   if(isOptionSet("port")) {
44     _internal->init();
45     _internalInitDone = true;
46   }
47
48   connect(Client::instance(), SIGNAL(newClientSyncer(ClientSyncer *)), this, SLOT(newClientSyncer(ClientSyncer *)));
49   return QtUiApplication::init();
50 }
51
52 MonolithicApplication::~MonolithicApplication() {
53   // Client needs to be destroyed first
54   Client::destroy();
55   delete _internal;
56 }
57
58 void MonolithicApplication::newClientSyncer(ClientSyncer *syncer) {
59   connect(syncer, SIGNAL(startInternalCore(ClientSyncer *)), this, SLOT(startInternalCore(ClientSyncer *)));
60 }
61
62 void MonolithicApplication::startInternalCore(ClientSyncer *syncer) {
63   if(!_internalInitDone) {
64     _internal->init();
65     _internalInitDone = true;
66   }
67   Core *core = Core::instance();
68   connect(syncer, SIGNAL(connectToInternalCore(SignalProxy *)), core, SLOT(setupInternalClientSession(SignalProxy *)));
69   connect(core, SIGNAL(sessionState(const QVariant &)), syncer, SLOT(internalSessionStateReceived(const QVariant &)));
70 }