#ifndef SETTINGS_H #define SETTINGS_H #include #include #include 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); 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 m_hCache; }; #endif