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