/**************************************************************** * This file is distributed under the following license: * * 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 General Public License * as published by the Free Software Foundation; either version 2 * 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. ****************************************************************/ #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 VSettings in * value() and setValue(). */ RSettings(const QString group = QString()); /** Resets all of Vidalia's 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); protected: /** 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