Monolithic build features now zero setup configuration: click and run
[quassel.git] / src / qtui / qtuiapplication.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 "qtuiapplication.h"
22
23 #include <QStringList>
24
25 #include "client.h"
26 #include "cliparser.h"
27 #include "qtui.h"
28 #include "sessionsettings.h"
29
30 QtUiApplication::QtUiApplication(int &argc, char **argv) : QApplication(argc, argv), Quassel() {
31   setRunMode(Quassel::ClientOnly);
32
33   // put client-only arguments here
34   CliParser *parser = Quassel::cliParser();
35   parser->addSwitch("debugbufferswitches",0,"Enables debugging for bufferswitches");
36   parser->addSwitch("debugmodel",0,"Enables debugging for models");
37 }
38
39 bool QtUiApplication::init() {
40   if(Quassel::init()) {
41     // session resume
42     QtUi *gui = new QtUi();
43     Client::init(gui);
44     // init gui only after the event loop has started
45     // QTimer::singleShot(0, gui, SLOT(init()));
46     gui->init();
47     resumeSessionIfPossible();
48     return true;
49   }
50   return false;
51 }
52
53 QtUiApplication::~QtUiApplication() {
54   Client::destroy();
55 }
56
57 void QtUiApplication::saveState(QSessionManager & manager) {
58   //qDebug() << QString("saving session state to id %1").arg(manager.sessionId());
59   AccountId activeCore = Client::currentCoreAccount();
60   SessionSettings s(manager.sessionId());
61   s.setSessionAge(0);
62   emit saveStateToSession(manager.sessionId());
63   emit saveStateToSessionSettings(s);
64 }
65
66 void QtUiApplication::resumeSessionIfPossible() {
67   // load all sessions
68   if(isSessionRestored()) {
69     qDebug() << QString("restoring from session %1").arg(sessionId());
70     SessionSettings s(sessionId());
71     s.sessionAging();
72     s.setSessionAge(0);
73     emit resumeFromSession(sessionId());
74     emit resumeFromSessionSettings(s);
75     s.cleanup();
76   } else {
77     SessionSettings s(QString("1"));
78     s.sessionAging();
79     s.cleanup();
80   }
81 }