mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
50 lines
893 B
C++
50 lines
893 B
C++
|
#ifndef CSV_PREFS_STATE_H
|
||
|
#define CSM_PREFS_STATE_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
#ifndef Q_MOC_RUN
|
||
|
#include <components/files/configurationmanager.hpp>
|
||
|
#endif
|
||
|
|
||
|
#include <components/settings/settings.hpp>
|
||
|
|
||
|
namespace CSMPrefs
|
||
|
{
|
||
|
class State : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
static State *sThis;
|
||
|
|
||
|
const std::string mConfigFile;
|
||
|
const Files::ConfigurationManager& mConfigurationManager;
|
||
|
Settings::Manager mSettings;
|
||
|
|
||
|
// not implemented
|
||
|
State (const State&);
|
||
|
State& operator= (const State&);
|
||
|
|
||
|
private:
|
||
|
|
||
|
void load();
|
||
|
|
||
|
void declare();
|
||
|
|
||
|
public:
|
||
|
|
||
|
State (const Files::ConfigurationManager& configurationManager);
|
||
|
|
||
|
~State();
|
||
|
|
||
|
void save();
|
||
|
|
||
|
static State& get();
|
||
|
};
|
||
|
|
||
|
// convenience function
|
||
|
State& get();
|
||
|
}
|
||
|
|
||
|
#endif
|