/******************************************************************************* * gui/settings/rsettings.h * * * * Copyright (c) 2008, crypton * * Copyright (c) 2008, Matt Edman, Justin Hipple * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU Affero General Public License as * * published by the Free Software Foundation, either version 3 of the * * License, or (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Affero General Public License for more details. * * * * You should have received a copy of the GNU Affero General Public License * * along with this program. If not, see . * * * *******************************************************************************/ #ifndef _RSETTINGS_H #define _RSETTINGS_H #include #include class RSettings : public QSettings { Q_OBJECT public: /** Default constructor. The optional parameter group can be used to * set a prefix that will be prepended to keys specified to RSettings in * value() and setValue(). */ RSettings(const QString group = QString()); /** Default constructor. The optional parameter group can be used to * set a prefix that will be prepended to keys specified to RSettings in * value() and setValue(). */ RSettings(const std::string &fileName, const QString group = QString()); /** Resets all settings. */ static void reset(); /** Returns the saved value associated with key. If no value has been * set, the default value is returned. * \sa setDefault */ virtual QVariant value(const QString &key, const QVariant &defaultVal = QVariant()) const; /** Sets the value associated with key to val. */ virtual void setValue(const QString &key, const QVariant &val); virtual QVariant valueFromGroup(const QString &group, const QString &key, const QVariant &defaultVal = QVariant()); virtual void setValueToGroup(const QString &group, const QString &key, const QVariant &val); protected: bool m_bValid; // is valid - dependent on RsInit::getPreferedAccountId /** Sets the default setting for key to val. */ void setDefault(const QString &key, const QVariant &val); /** Returns the default setting value associated with key. If * key has no default value, then an empty QVariant is returned. */ QVariant defaultValue(const QString &key) const; /** Returns a map of all currently saved settings at the last apply() * point. */ //QMap allSettings() const; private: /** Association of setting key names to default setting values. */ QHash _defaults; }; #endif