X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresettings.cpp;h=7ea3b46ee0f9236bf93baa9fd160f8bd7e627982;hp=579713a0b08784a731929ad4a0f4115f69bff608;hb=10f9c27ee5d92ece2931947cd341c7f7b548f580;hpb=97d674034551438238c568e8b42efb08e1ba7354 diff --git a/src/core/coresettings.cpp b/src/core/coresettings.cpp index 579713a0..7ea3b46e 100644 --- a/src/core/coresettings.cpp +++ b/src/core/coresettings.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel IRC Development Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -20,40 +20,32 @@ #include "coresettings.h" -#include +#include "quassel.h" -CoreSettings::CoreSettings() : Settings("Core") { -} +CoreSettings::CoreSettings(const QString group) : Settings(group, Quassel::buildInfo().coreApplicationName) { -CoreSettings::~CoreSettings() { } -void CoreSettings::setDatabaseSettings(const QVariant &data) { - setLocalValue("DatabaseSettings", data); -} - -QVariant CoreSettings::databaseSettings(const QVariant &def) { - return localValue("DatabaseSettings", def); +CoreSettings::~CoreSettings() { } -void CoreSettings::setPort(const uint &port) { - setLocalValue("Port", port); +void CoreSettings::setStorageSettings(const QVariant &data) { + setLocalValue("StorageSettings", data); } -uint CoreSettings::port(const uint &def) { - return localValue("Port", def).toUInt(); +QVariant CoreSettings::storageSettings(const QVariant &def) { + return localValue("StorageSettings", def); } -QStringList CoreSettings::sessionKeys() { - Q_ASSERT(false); - return QStringList(); +// FIXME remove +QVariant CoreSettings::oldDbSettings() { + return localValue("DatabaseSettings"); } -void CoreSettings::setSessionValue(const QString &key, const QVariant &data) { - Q_ASSERT(false); +void CoreSettings::setCoreState(const QVariant &data) { + setLocalValue("CoreState", data); } -QVariant CoreSettings::sessionValue(const QString &key, const QVariant &def) { - Q_ASSERT(false); - return QVariant(); +QVariant CoreSettings::coreState(const QVariant &def) { + return localValue("CoreState", def); }