80cc4d400362fe782d1483754915d86d9785bb00
[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 #include "iconloader.h"
31
32 QtUiApplication::QtUiApplication(int &argc, char **argv) : QApplication(argc, argv), Quassel() {
33   setRunMode(Quassel::ClientOnly);
34
35   // put client-only arguments here
36   CliParser *parser = Quassel::cliParser();
37   parser->addSwitch("debugbufferswitches",0,"Enables debugging for bufferswitches");
38   parser->addSwitch("debugmodel",0,"Enables debugging for models");
39 }
40
41 bool QtUiApplication::init() {
42   if(Quassel::init()) {
43     // session resume
44     QtUi *gui = new QtUi();
45     Client::init(gui);
46     // init gui only after the event loop has started
47     // QTimer::singleShot(0, gui, SLOT(init()));
48     gui->init();
49     resumeSessionIfPossible();
50
51     // DEBUG
52     QPixmap pix = IconLoader::global()->loadIcon("network-connect", IconLoader::Small);
53     qDebug() << pix;
54     return true;
55   }
56   return false;
57 }
58
59 QtUiApplication::~QtUiApplication() {
60   Client::destroy();
61 }
62
63 void QtUiApplication::saveState(QSessionManager & manager) {
64   //qDebug() << QString("saving session state to id %1").arg(manager.sessionId());
65   AccountId activeCore = Client::currentCoreAccount();
66   SessionSettings s(manager.sessionId());
67   s.setSessionAge(0);
68   emit saveStateToSession(manager.sessionId());
69   emit saveStateToSessionSettings(s);
70 }
71
72 void QtUiApplication::resumeSessionIfPossible() {
73   // load all sessions
74   if(isSessionRestored()) {
75     qDebug() << QString("restoring from session %1").arg(sessionId());
76     SessionSettings s(sessionId());
77     s.sessionAging();
78     s.setSessionAge(0);
79     emit resumeFromSession(sessionId());
80     emit resumeFromSessionSettings(s);
81     s.cleanup();
82   } else {
83     SessionSettings s(QString("1"));
84     s.sessionAging();
85     s.cleanup();
86   }
87 }