X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresettings.cpp;h=b7aae8569b244a1e4350e3266edb96a74f3b0ec0;hp=579713a0b08784a731929ad4a0f4115f69bff608;hb=ef12cc4010e853348474b4ea15c383dd596d4858;hpb=97d674034551438238c568e8b42efb08e1ba7354 diff --git a/src/core/coresettings.cpp b/src/core/coresettings.cpp index 579713a0..b7aae856 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 * @@ -22,18 +22,23 @@ #include -CoreSettings::CoreSettings() : Settings("Core") { +CoreSettings::CoreSettings(const QString group) : Settings(group, Global::coreApplicationName) { } CoreSettings::~CoreSettings() { } -void CoreSettings::setDatabaseSettings(const QVariant &data) { - setLocalValue("DatabaseSettings", data); +void CoreSettings::setStorageSettings(const QVariant &data) { + setLocalValue("StorageSettings", data); } -QVariant CoreSettings::databaseSettings(const QVariant &def) { - return localValue("DatabaseSettings", def); +QVariant CoreSettings::storageSettings(const QVariant &def) { + return localValue("StorageSettings", def); +} + +// FIXME remove +QVariant CoreSettings::oldDbSettings() { + return localValue("DatabaseSettings"); } void CoreSettings::setPort(const uint &port) { @@ -44,16 +49,10 @@ uint CoreSettings::port(const uint &def) { return localValue("Port", def).toUInt(); } -QStringList CoreSettings::sessionKeys() { - Q_ASSERT(false); - return QStringList(); -} - -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); }