Make kde stuff speak in localized manner, also remove about dialogs from systray...
[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 <cstdlib>
22
23 #ifdef HAVE_KDE
24 #  include <KCmdLineArgs>
25 #  include <KAboutData>
26 #endif
27
28 #ifdef BUILD_CORE
29 #  include "coreapplication.h"
30 #elif defined BUILD_QTUI
31 #  include "qtuiapplication.h"
32 #elif defined BUILD_MONO
33 #  include "monoapplication.h"
34
35 #else
36 #error "Something is wrong - you need to #define a build mode!"
37 #endif
38
39 #include "quassel.h"
40
41 int main(int argc, char **argv) {
42   Q_INIT_RESOURCE(i18n);
43
44   // Setup build information and version string
45   # include "version.gen"
46   buildinfo.append(QString(",%1,%2").arg(__DATE__, __TIME__));
47   Quassel::setupBuildInfo(buildinfo);
48   QCoreApplication::setApplicationName(Quassel::buildInfo().applicationName);
49   QCoreApplication::setOrganizationName(Quassel::buildInfo().organizationName);
50   QCoreApplication::setOrganizationDomain(Quassel::buildInfo().organizationDomain);
51
52 #ifdef HAVE_KDE
53   // We need to init KCmdLineArgs first
54   // TODO: build an AboutData compat class to replace our aboutDlg strings
55   KAboutData aboutData("quassel", "kdelibs4", ki18n("Quassel IRC"), Quassel::buildInfo().plainVersionString.toUtf8(),
56                         ki18n("A modern, distributed IRC client"));
57   aboutData.addLicense(KAboutData::License_GPL_V2);
58   aboutData.addLicense(KAboutData::License_GPL_V3);
59   aboutData.setOrganizationDomain(Quassel::buildInfo().organizationDomain.toUtf8());
60   KCmdLineArgs::init(argc, argv, &aboutData);
61 #endif
62
63   // Initialize CLI arguments
64   // NOTE: We can't use tr() at this point, since app is not yet created
65   CliParser *cliParser = Quassel::cliParser();
66
67   // put shared client&core arguments here
68   cliParser->addSwitch("debug",'d', "Enable debug output");
69   cliParser->addSwitch("help",'h', "Display this help and exit");
70
71 #ifndef BUILD_CORE
72   // put client-only arguments here
73   cliParser->addSwitch("debugbufferswitches", 0, "Enables debugging for bufferswitches");
74   cliParser->addSwitch("debugmodel", 0, "Enables debugging for models");
75 #endif
76 #ifndef BUILD_QTCLIENT
77   // put core-only arguments here
78   cliParser->addOption("port <port>",'p', "The port quasselcore will listen at", QString("4242"));
79   cliParser->addSwitch("norestore", 'n', "Don't restore last core's state");
80   cliParser->addOption("logfile <path>", 'l', "Path to logfile");
81   cliParser->addOption("loglevel <level>", 'L', "Loglevel Debug|Info|Warning|Error", "Info");
82   cliParser->addOption("datadir <path>", 0, "Specify the directory holding datafiles like the Sqlite DB and the SSL Cert");
83 #endif
84
85 #ifdef HAVE_KDE
86   // the KDE version needs this extra call to parse argc/argv before app is instantiated
87   if(!cliParser->init()) {
88     cliParser->usage();
89     return EXIT_FAILURE;
90   }
91 #endif
92
93 #  if defined BUILD_CORE
94     CoreApplication app(argc, argv);
95 #  elif defined BUILD_QTUI
96     QtUiApplication app(argc, argv);
97 #  elif defined BUILD_MONO
98     MonolithicApplication app(argc, argv);
99 #  endif
100
101 #ifndef HAVE_KDE
102   // the non-KDE version parses after app has been instantiated
103   if(!cliParser->init(app.arguments())) {
104     cliParser->usage();
105     return false;
106   }
107 #endif
108
109   if(!app.init()) return EXIT_FAILURE;
110   return app.exec();
111 }