f562dd47fff01dfed3c293ebef84aa98ac1ffb07
[quassel.git] / src / common / main.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel IRC Development 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) any later version.                                   *
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 "global.h"
22 #include "settings.h"
23 #include <QString>
24 #include <QTranslator>
25
26 #if defined BUILD_CORE
27 #include <QCoreApplication>
28 #include <QDir>
29 #include "core.h"
30 #include "message.h"
31
32 #elif defined BUILD_QTUI
33 #include <QApplication>
34 #include "client.h"
35 #include "qtui.h"
36
37 #elif defined BUILD_MONO
38 #include <QApplication>
39 #include "client.h"
40 #include "core.h"
41 #include "coresession.h"
42 #include "qtui.h"
43
44 #else
45 #error "Something is wrong - you need to #define a build mode!"
46 #endif
47
48 #include <signal.h>
49
50 //! Signal handler for graceful shutdown.
51 void handle_signal(int sig) {
52   qWarning(QString("Caught signal %1 - exiting.").arg(sig).toAscii());
53   QCoreApplication::quit();
54 }
55
56 int main(int argc, char **argv) {
57   // We catch SIGTERM and SIGINT (caused by Ctrl+C) to graceful shutdown Quassel.
58   signal(SIGTERM, handle_signal);
59   signal(SIGINT, handle_signal);
60
61   qRegisterMetaType<QVariant>("QVariant");
62   qRegisterMetaType<Message>("Message");
63   qRegisterMetaType<BufferInfo>("BufferInfo");
64   qRegisterMetaTypeStreamOperators<QVariant>("QVariant");
65   qRegisterMetaTypeStreamOperators<Message>("Message");
66   qRegisterMetaTypeStreamOperators<BufferInfo>("BufferInfo");
67
68 #if defined BUILD_CORE
69   Global::runMode = Global::CoreOnly;
70   QCoreApplication app(argc, argv);
71 #elif defined BUILD_QTUI
72   Global::runMode = Global::ClientOnly;
73   QApplication app(argc, argv);
74 #else
75   Global::runMode = Global::Monolithic;
76   QApplication app(argc, argv);
77 #endif
78
79   //Just for testing
80   //QTranslator translator;
81   //translator.load(":i18n/quassel_de");
82   //app.installTranslator(&translator);
83
84             
85   QCoreApplication::setOrganizationDomain("quassel-irc.org");
86   QCoreApplication::setApplicationName("Quassel IRC");
87   QCoreApplication::setOrganizationName("Quassel IRC Development Team");
88
89 #ifndef BUILD_QTUI
90   Core::instance();  // create and init the core
91 #endif
92
93   //Settings::init();
94
95 #ifndef BUILD_CORE
96   QtUi *gui = new QtUi();
97   Client::init(gui);
98   gui->init();
99 #endif
100
101   int exitCode = app.exec();
102
103 #ifndef BUILD_CORE
104   // the mainWin has to be deleted before the Core
105   // if not Quassel will crash on exit under certain conditions since the gui
106   // still wants to access clientdata
107   delete gui;
108   Client::destroy();
109 #endif
110 #ifndef BUILD_QTUI
111   Core::destroy();
112 #endif
113
114   return exitCode;
115 }