fixes #484 - issues with ssl status indicator
[quassel.git] / src / qtui / qtuiapplication.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 "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
31 // void myMessageOutput(QtMsgType type, const char *msg) {
32 //   Client::debugLog() << "Debug:" <<  msg << '\n';
33 //   return;
34 // //   switch (type) {
35 // //   case QtDebugMsg:
36 // //     break;
37 // //   case QtWarningMsg:
38 // //     fprintf(stderr, "Warning: %s\n", msg);
39 // //     break;
40 // //   case QtCriticalMsg:
41 // //     fprintf(stderr, "Critical: %s\n", msg);
42 // //     break;
43 // //   case QtFatalMsg:
44 // //     fprintf(stderr, "Fatal: %s\n", msg);
45 // //     abort();
46 // //   }
47 // }
48
49 QtUiApplication::QtUiApplication(int &argc, char **argv)
50 #ifdef HAVE_KDE
51   : KApplication(), Quassel() {
52   Q_UNUSED(argc); Q_UNUSED(argv);
53 #else
54   : QApplication(argc, argv), Quassel() {
55 #endif
56
57   setRunMode(Quassel::ClientOnly);
58
59   qInstallMsgHandler(Client::logMessage);
60 }
61
62 bool QtUiApplication::init() {
63   if(Quassel::init()) {
64     // session resume
65     QtUi *gui = new QtUi();
66     Client::init(gui);
67     // init gui only after the event loop has started
68     // QTimer::singleShot(0, gui, SLOT(init()));
69     gui->init();
70     resumeSessionIfPossible();
71     return true;
72   }
73   return false;
74 }
75
76 QtUiApplication::~QtUiApplication() {
77   Client::destroy();
78 }
79
80 void QtUiApplication::saveState(QSessionManager & manager) {
81   //qDebug() << QString("saving session state to id %1").arg(manager.sessionId());
82   AccountId activeCore = Client::currentCoreAccount();
83   SessionSettings s(manager.sessionId());
84   s.setSessionAge(0);
85   emit saveStateToSession(manager.sessionId());
86   emit saveStateToSessionSettings(s);
87 }
88
89 void QtUiApplication::resumeSessionIfPossible() {
90   // load all sessions
91   if(isSessionRestored()) {
92     qDebug() << QString("restoring from session %1").arg(sessionId());
93     SessionSettings s(sessionId());
94     s.sessionAging();
95     s.setSessionAge(0);
96     emit resumeFromSession(sessionId());
97     emit resumeFromSessionSettings(s);
98     s.cleanup();
99   } else {
100     SessionSettings s(QString("1"));
101     s.sessionAging();
102     s.cleanup();
103   }
104 }
105
106