added session management
[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 <QStringList>
22
23 #include "qtuiapplication.h"
24 #include "sessionsettings.h"
25 #include "client.h"
26
27 QtUiApplication::QtUiApplication(int &argc, char **argv) : QApplication(argc, argv) {
28
29 }
30
31 void QtUiApplication::saveState(QSessionManager & manager) {
32   //qDebug() << QString("saving session state to id %1").arg(manager.sessionId());
33   AccountId activeCore = Client::currentCoreAccount();
34   SessionSettings s(manager.sessionId());
35   s.setSessionAge(0);
36   emit saveStateToSession(manager.sessionId());
37   emit saveStateToSessionSettings(s);
38 }
39
40 QtUiApplication::~ QtUiApplication() {
41 }
42
43 void QtUiApplication::resumeSessionIfPossible() {
44   // load all sessions
45   if(isSessionRestored()) {
46     qDebug() << QString("restoring from session %1").arg(sessionId());
47     SessionSettings s(sessionId());
48     s.sessionAging();
49     s.setSessionAge(0);
50     emit resumeFromSession(sessionId());
51     emit resumeFromSessionSettings(s);
52     s.cleanup();
53   } else {
54     SessionSettings s(QString("1"));
55     s.sessionAging();
56     s.cleanup();
57   }
58 }
59