-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.py
220 lines (190 loc) · 6.11 KB
/
config.py
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
import json
import os
from qgis.core import QgsMessageLog
from .utils import DEFAULT_STYLE
class Config:
def __init__(self):
"""Constructor"""
self.setts = {}
self.conf_dir = os.path.dirname(__file__)
self.reload_config()
def reload_config(self):
self.config_path = os.path.join(self.conf_dir, 'config.json')
if os.path.exists(self.config_path):
with open(self.config_path, 'r') as fl:
conf = fl.read()
try:
self.setts = json.loads(conf)[0]
except ValueError:
QgsMessageLog.logMessage(
'Failed to load config from config.json')
def save_config(self):
"""
Saves config to json file
"""
save_file = open(os.path.join(self.conf_dir, 'config.json'), 'w')
json.dump([self.setts], save_file)
save_file.close()
def save_original_toolbars(self, tbrs):
""" Save toolbars to reinstitute them after unload
:tbrs: [str, str, str]
"""
# save only if don't have anything in storage
if 'org_toolbars' in self.setts:
# if we have something in storage, dont change it
if len(self.setts['org_toolbars']) > 0:
return
self.setts['org_toolbars'] = tbrs
self.save_config()
def save_user_ribbon_setup(self, ribbon, sections):
""" Saves user setup to config qgis file
{'ribbons': {
'tab_name': 'name',
'sections': [
{
'label': 'lab_name',
'btn_size': 30,
'btns': [
[action, row, col],
], ...
}
],
}, ... },
'fast_access': [ action, action, ... ]
'custom_sections':[
[
'label': 'lab_name',
'btn_size': 30,
'btns': [
[action, row, col],
], ...
]
}
"""
if isinstance(ribbon, list):
self.setts['ribbons_config'] = ribbon
self.setts['custom_sections'] = sections
self.save_config()
def save_custom_sections_setup(self, val):
""" Saves custom sections to config qgis file
[
[
'label': 'lab_name',
'btn_size': 30,
'btns': [
[action, row, col],
], ...
]
"""
if not isinstance(val, list):
return False
self.setts['custom_sections'] = val
self.save_config()
def load_user_ribbon_setup(self):
if 'ribbons_config' not in self.setts:
return False
lay = self.setts['ribbons_config']
if not lay:
return False
return self.setts['ribbons_config']
def load_custom_sections_setup(self):
self.reload_config()
if 'custom_sections' not in self.setts:
return []
lay = self.setts['custom_sections']
if not lay:
return []
return self.setts['custom_sections']
def get_original_toolbars(self):
""" Return list of objectnames toolbars originally opened before first
run
:return: [str, str, str]
"""
try:
org_tbrs = self.setts['org_toolbars']
if 'GiapToolBar' in org_tbrs: # insurance
org_tbrs.remove('GiapToolBar')
except Exception:
# something goes wrong, we don't have previous version of user
# layout in this case, recover main toolbars
org_tbrs = []
if len(org_tbrs) == 0:
org_tbrs = [
'mFileToolBar',
'mLayerToolBar',
'mDigitizeToolBar',
'mMapNavToolBar',
'mAttributesToolBar',
'mPluginToolBar',
'mLabelToolBar',
'mSnappingToolBar',
'mSelectionToolBar',
]
return org_tbrs
def set_value(self, key, val):
""" Sets value under key in settings, value if exists will be
overwritten
:key: str
:val: object
"""
self.setts[key] = val
self.save_config()
def get_value(self, key):
"""read value saved in config
:key: str (full path ie 'giap/test')
"""
return self.setts[key]
def delete_value(self, key):
"""delete key from config
:key: str
"""
try:
del self.setts[key]
except Exception:
pass
def get_style_path(self, style):
""" read path o style from config
:return: str
"""
try:
return self.setts['styles'][style]
except KeyError:
return ''
def get_style_list(self):
""" return list of available styles
:return: list
"""
try:
return list(self.setts['styles'].keys())
except Exception:
return []
def get_active_style(self):
""" return name of active style from settings
:return: str
"""
try:
return self.setts['active_style']
except KeyError:
return ''
def set_style(self, style, path):
""" Set style in config, for user to choose it
:style: style name
:path: style name (style.qss)
"""
self.setts['styles'][style] = path
def set_default_style(self, dic_styles):
if 'styles' not in self.setts:
self.setts['styles'] = dic_styles
if 'active_style' not in self.setts:
self.setts['active_style'] = DEFAULT_STYLE
self.save_config()
def set_active_style(self, style):
"""
set name of active style in config
"""
self.setts['active_style'] = style
self.save_config()
def remove_style(self, style):
if style in self.setts['style']:
del self.setts['style'][style]
self.save_config()