Files
sqlitebrowser/src/Settings.h
2018-11-20 23:57:00 +01:00

27 lines
774 B
C++

#ifndef SETTINGS_H
#define SETTINGS_H
#include <QHash>
#include <QVariant>
class Settings
{
friend class PreferencesDialog;
public:
static QVariant getValue(const QString& group, const QString& name);
static void setValue(const QString& group, const QString& name, const QVariant& value, bool dont_save_to_disk = false);
static void restoreDefaults();
private:
Settings() { } // class is fully static
// This works similar to getSettingsValue but returns the default value instead of the value set by the user
static QVariant getDefaultValue(const QString& group, const QString& name);
// Cache for storing the settings to avoid repeatedly reading the settings file all the time
static QHash<QString, QVariant> m_hCache;
};
#endif