Use KCmdLineArgs, KApplication and KMainWindow
[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
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 #else
53   : QApplication(argc, argv), Quassel()
54 #endif
55 {
56   setRunMode(Quassel::ClientOnly);
57
58   qInstallMsgHandler(Client::logMessage);
59 }
60
61 bool QtUiApplication::init() {
62   if(Quassel::init()) {
63     // session resume
64     QtUi *gui = new QtUi();
65     Client::init(gui);
66     // init gui only after the event loop has started
67     // QTimer::singleShot(0, gui, SLOT(init()));
68     gui->init();
69     resumeSessionIfPossible();
70     return true;
71   }
72   return false;
73 }
74
75 QtUiApplication::~QtUiApplication() {
76   Client::destroy();
77 }
78
79 void QtUiApplication::saveState(QSessionManager & manager) {
80   //qDebug() << QString("saving session state to id %1").arg(manager.sessionId());
81   AccountId activeCore = Client::currentCoreAccount();
82   SessionSettings s(manager.sessionId());
83   s.setSessionAge(0);
84   emit saveStateToSession(manager.sessionId());
85   emit saveStateToSessionSettings(s);
86 }
87
88 void QtUiApplication::resumeSessionIfPossible() {
89   // load all sessions
90   if(isSessionRestored()) {
91     qDebug() << QString("restoring from session %1").arg(sessionId());
92     SessionSettings s(sessionId());
93     s.sessionAging();
94     s.setSessionAge(0);
95     emit resumeFromSession(sessionId());
96     emit resumeFromSessionSettings(s);
97     s.cleanup();
98   } else {
99     SessionSettings s(QString("1"));
100     s.sessionAging();
101     s.cleanup();
102   }
103 }
104
105