1 /***************************************************************************
2 * Copyright (C) 2005-08 by the Quassel Project *
3 * devel@quassel-irc.org *
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. *
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. *
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 ***************************************************************************/
24 #include <QTranslator>
31 #if defined BUILD_CORE
32 #include <QCoreApplication>
37 #elif defined BUILD_QTUI
38 #include <QApplication>
42 #elif defined BUILD_MONO
43 #include <QApplication>
46 #include "coresession.h"
50 #error "Something is wrong - you need to #define a build mode!"
55 //! Signal handler for graceful shutdown.
56 void handle_signal(int sig) {
57 qWarning(QString("Caught signal %1 - exiting.").arg(sig).toAscii());
58 QCoreApplication::quit();
61 int main(int argc, char **argv) {
62 // We catch SIGTERM and SIGINT (caused by Ctrl+C) to graceful shutdown Quassel.
63 signal(SIGTERM, handle_signal);
64 signal(SIGINT, handle_signal);
68 Global::registerMetaTypes();
70 #include "../../version.inc"
72 #if defined BUILD_CORE
73 Global::runMode = Global::CoreOnly;
74 QCoreApplication app(argc, argv);
75 #elif defined BUILD_QTUI
76 Global::runMode = Global::ClientOnly;
77 QApplication app(argc, argv);
79 Global::runMode = Global::Monolithic;
80 QApplication app(argc, argv);
83 qsrand(QDateTime::currentDateTime().toTime_t());
85 // Set up i18n support
86 QLocale locale = QLocale::system();
88 QTranslator qtTranslator;
89 qtTranslator.load(QString(":i18n/qt_%1").arg(locale.name()));
90 app.installTranslator(&qtTranslator);
92 QTranslator quasselTranslator;
93 quasselTranslator.load(QString(":i18n/quassel_%1").arg(locale.name()));
94 app.installTranslator(&quasselTranslator);
96 Network::setDefaultCodecForServer("ISO-8859-15");
97 Network::setDefaultCodecForEncoding("UTF-8");
98 Network::setDefaultCodecForDecoding("ISO-8859-15");
100 QCoreApplication::setOrganizationDomain("quassel-irc.org");
101 QCoreApplication::setApplicationName("Quassel IRC");
102 QCoreApplication::setOrganizationName("Quassel Project");
104 // Check if a non-standard core port is requested
105 QStringList args = QCoreApplication::arguments(); // TODO Build a CLI parser
107 Global::defaultPort = 4242;
109 if((idx = args.indexOf("-p")) > 0 && idx < args.count() - 1) {
110 int port = args[idx+1].toInt();
111 if(port >= 1024 && port < 65536) Global::defaultPort = port;
115 Core::instance(); // create and init the core
121 QtUi *gui = new QtUi();
123 // init gui only after the event loop has started
124 QTimer::singleShot(0, gui, SLOT(init()));
129 if(!args.contains("--norestore")) {
130 Core::restoreState();
134 int exitCode = app.exec();
141 // the mainWin has to be deleted before the Core
142 // if not Quassel will crash on exit under certain conditions since the gui
143 // still wants to access clientdata