X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreapplication.cpp;h=99fcfd80c1477205cca6f877a5f1083cd4d43958;hb=eddadb820d74ad787a04c0652d15dfd1e8475082;hp=3d8b15967a4b7b1a80b05da40ca0b56da367cef7;hpb=10f9c27ee5d92ece2931947cd341c7f7b548f580;p=quassel.git diff --git a/src/core/coreapplication.cpp b/src/core/coreapplication.cpp index 3d8b1596..99fcfd80 100644 --- a/src/core/coreapplication.cpp +++ b/src/core/coreapplication.cpp @@ -21,19 +21,12 @@ #include "coreapplication.h" #include "core.h" +#include "logger.h" CoreApplicationInternal::CoreApplicationInternal() : _coreCreated(false) { Q_INIT_RESOURCE(sql); - - // put core-only arguments here - CliParser *parser = Quassel::cliParser(); - parser->addOption("port",'p', tr("The port quasselcore will listen at"), QString("4242")); - parser->addSwitch("norestore", 'n', tr("Don't restore last core's state")); - parser->addOption("logfile", 'l', tr("Path to logfile")); - parser->addOption("loglevel", 'L', tr("Loglevel Debug|Info|Warning|Error"), "Info"); - parser->addOption("datadir", 0, tr("Specify the directory holding datafiles like the Sqlite DB and the SSL Cert")); } CoreApplicationInternal::~CoreApplicationInternal() { @@ -59,17 +52,27 @@ bool CoreApplicationInternal::init() { Core::instance(); // create and init the core _coreCreated = true; - if(!Quassel::isOptionSet("norestore")) { + // if using KDE, option is called "restore" instead of "norestore" + if(Quassel::isOptionSet("restore") || !Quassel::isOptionSet("norestore")) Core::restoreState(); - } + return true; } /*****************************************************************************/ -CoreApplication::CoreApplication(int &argc, char **argv) : QCoreApplication(argc, argv), Quassel() { +CoreApplication::CoreApplication(int &argc, char **argv) +#ifdef HAVE_KDE + : KApplication(false), +#else + : QCoreApplication(argc, argv), +#endif + Quassel() +{ setRunMode(Quassel::CoreOnly); _internal = new CoreApplicationInternal(); + + qInstallMsgHandler(Logger::logMessage); } CoreApplication::~CoreApplication() {