forked from TrenchBroom/TrenchBroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PreferenceManager.h
98 lines (78 loc) · 2.93 KB
/
PreferenceManager.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
Copyright (C) 2010-2014 Kristian Duske
This file is part of TrenchBroom.
TrenchBroom 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 3 of the License, or
(at your option) any later version.
TrenchBroom 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 TrenchBroom. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __TrenchBroom__PreferenceManager__
#define __TrenchBroom__PreferenceManager__
#include "Color.h"
#include "Notifier.h"
#include "Preference.h"
#include "StringUtils.h"
#include "View/KeyboardShortcut.h"
#include <map>
namespace TrenchBroom {
namespace IO {
class Path;
}
class PreferenceManager {
private:
typedef std::map<PreferenceBase*, ValueHolderBase*> UnsavedPreferences;
bool m_saveInstantly;
UnsavedPreferences m_unsavedPreferences;
void markAsUnsaved(PreferenceBase* preference, ValueHolderBase* valueHolder);
public:
~PreferenceManager();
static PreferenceManager& instance();
Notifier1<const IO::Path&> preferenceDidChangeNotifier;
bool saveInstantly() const;
PreferenceBase::Set saveChanges();
PreferenceBase::Set discardChanges();
template <typename T>
const T& get(const Preference<T>& preference) const {
if (!preference.initialized())
preference.load(wxConfig::Get());
return preference.value();
}
template <typename T>
void set(Preference<T>& preference, const T& value) {
const T previousValue = preference.value();
preference.setValue(value);
if (saveInstantly()) {
preference.save(wxConfig::Get());
preferenceDidChangeNotifier(preference.path());
} else {
markAsUnsaved(&preference, new ValueHolder<T>(previousValue));
}
}
private:
PreferenceManager();
PreferenceManager(const PreferenceManager& other);
PreferenceManager& operator= (const PreferenceManager& other);
};
template <typename T>
class SetTemporaryPreference {
private:
Preference<T>& m_pref;
T m_oldValue;
public:
SetTemporaryPreference(Preference<T>& pref, const T& newValue) :
m_pref(pref),
m_oldValue(pref.value()) {
m_pref.setValue(newValue);
}
~SetTemporaryPreference() {
m_pref.setValue(m_oldValue);
}
};
}
#endif /* defined(__TrenchBroom__PreferenceManager__) */