Added a container dialog for stand-alone settingspages (SettingsPageDlg).
[quassel.git] / src / common / main.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 <QDateTime>
22 #include <QString>
23 #include <QTimer>
24 #include <QTranslator>
25
26 #include "global.h"
27 #include "logger.h"
28 #include "settings.h"
29
30 #if defined BUILD_CORE
31 #include <QCoreApplication>
32 #include <QDir>
33 #include "core.h"
34 #include "message.h"
35
36 #elif defined BUILD_QTUI
37 #include <QApplication>
38 #include "client.h"
39 #include "qtui.h"
40
41 #elif defined BUILD_MONO
42 #include <QApplication>
43 #include "client.h"
44 #include "core.h"
45 #include "coresession.h"
46 #include "qtui.h"
47
48 #else
49 #error "Something is wrong - you need to #define a build mode!"
50 #endif
51
52 #include <signal.h>
53
54 //! Signal handler for graceful shutdown.
55 void handle_signal(int sig) {
56   qWarning(QString("Caught signal %1 - exiting.").arg(sig).toAscii());
57   QCoreApplication::quit();
58 }
59
60 int main(int argc, char **argv) {
61   // We catch SIGTERM and SIGINT (caused by Ctrl+C) to graceful shutdown Quassel.
62   signal(SIGTERM, handle_signal);
63   signal(SIGINT, handle_signal);
64
65   // Logger logger;
66
67   Global::registerMetaTypes();
68
69 #include "../../version.inc"
70
71 #if defined BUILD_CORE
72   Global::runMode = Global::CoreOnly;
73   QCoreApplication app(argc, argv);
74 #elif defined BUILD_QTUI
75   Global::runMode = Global::ClientOnly;
76   QApplication app(argc, argv);
77 #else
78   Global::runMode = Global::Monolithic;
79   QApplication app(argc, argv);
80 #endif
81
82   qsrand(QDateTime::currentDateTime().toTime_t());
83
84   // Set up i18n support
85   QLocale locale = QLocale::system();
86
87   QTranslator qtTranslator;
88   qtTranslator.load(QString(":i18n/qt_%1").arg(locale.name()));
89   app.installTranslator(&qtTranslator);
90
91   QTranslator quasselTranslator;
92   quasselTranslator.load(QString(":i18n/quassel_%1").arg(locale.name()));
93   app.installTranslator(&quasselTranslator);
94
95   QCoreApplication::setOrganizationDomain("quassel-irc.org");
96   QCoreApplication::setApplicationName("Quassel IRC");
97   QCoreApplication::setOrganizationName("Quassel Project");
98
99   // Check if a non-standard core port is requested
100   QStringList args = QCoreApplication::arguments();  // TODO Build a CLI parser
101
102   Global::defaultPort = 4242;
103   int idx;
104   if((idx = args.indexOf("-p")) > 0 && idx < args.count() - 1) {
105     int port = args[idx+1].toInt();
106     if(port >= 1024 && port < 65536) Global::defaultPort = port;
107   }
108
109 #ifndef BUILD_QTUI
110   Core::instance();  // create and init the core
111 #endif
112
113   //Settings::init();
114
115 #ifndef BUILD_CORE
116   QtUi *gui = new QtUi();
117   Client::init(gui);
118   // init gui only after the event loop has started
119   QTimer::singleShot(0, gui, SLOT(init()));
120   //gui->init();
121 #endif
122
123 #ifndef BUILD_QTUI
124   if(!args.contains("--norestore")) {
125     Core::restoreState();
126   }
127 #endif
128
129   int exitCode = app.exec();
130
131 #ifndef BUILD_QTUI
132   Core::saveState();
133 #endif
134
135 #ifndef BUILD_CORE
136   // the mainWin has to be deleted before the Core
137   // if not Quassel will crash on exit under certain conditions since the gui
138   // still wants to access clientdata
139   delete gui;
140   Client::destroy();
141 #endif
142 #ifndef BUILD_QTUI
143   Core::destroy();
144 #endif
145
146   return exitCode;
147 }