-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathutils.py
177 lines (144 loc) · 4.92 KB
/
utils.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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
LoadQSS
A QGIS plugin
Configure look and feel
-------------------
begin : 2015-04-29
copyright : (C) 2015 All4Gis.
email : franka1986 at gmail dot com
***************************************************************************/
/***************************************************************************
* *
* This program 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 2 of the License, or *
# any later version. *
* *
***************************************************************************/
"""
# Import the PyQt and QGIS libraries
from qgis.PyQt.QtCore import Qt
from qgis.core import *
from qgis.gui import QgsMessageBar
from qgis.utils import iface
import os
import re
try:
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import QApplication
except ImportError:
from PyQt4.QtCore import *
from PyQt4.QtGui import *
# try:
# from pydevd import *
# except ImportError:
# None
app = QApplication.instance()
s = QSettings()
# s.remove('myStyles')
# Reload style (Watcher)
def reload_style(path):
# Some applications will remove a file and rewrite it. QFileSystemWatcher will
# ignore the file if the file handle goes away so we have to keep adding it.
watch.removePaths(watch.files())
watch.addPath(path)
with open(path, "r") as f:
stylesheet = f.read()
# Update the image paths to use full paths. Fixes image loading in styles
path = os.path.dirname(path).replace("\\", "/")
stylesheet = re.sub(r'url\((.*?)\)', r'url("{}/\1")'.format(path),
stylesheet)
app.setStyleSheet(stylesheet)
app.processEvents()
watch = QFileSystemWatcher()
watch.fileChanged.connect(reload_style)
# Set Activated style
def setActivated(Name):
s.setValue('myStyles/Activated', Name)
# GetStyle row
def getStyle(Name):
try:
name = s.value('myStyles/%s/name' % Name)
path = s.value('myStyles/%s/path' % Name)
except Exception:
name = ""
path = ""
return (name, path)
# Get myStyles list
def getStyleList():
StyleList = []
try:
s.beginGroup("myStyles")
StyleList = s.childGroups()
s.endGroup()
except Exception:
None
return StyleList
# Get Activated
def getActivated():
try:
Activated = s.value('myStyles/Activated')
except Exception:
Activated = ""
return Activated
# Set preview styles
def setPreview(Name):
s.setValue('myStyles/Preview', Name)
return
# Get preview styles
def getPreview():
try:
Preview = s.value('myStyles/Preview')
except Exception:
Preview = ""
return Preview
# Add Examples Styles
def setExampleStyles(Name, path):
s.setValue('myStyles/%s/name' % Name, Name)
s.setValue('myStyles/%s/path' % Name, path)
# Create or update
def AddNewStyle(Name, path):
s.setValue('myStyles/%s/name' % Name, Name)
s.setValue('myStyles/%s/path' % Name, path)
# Delete Style
def delStyle(Name):
try:
s.remove('myStyles/%s/name' % Name)
s.remove('myStyles/%s/path' % Name)
except Exception:
None
# Activate/Preview a specified style
def activateStyle(Name, iface, preview=False, close=None):
name, path = getStyle(Name)
if name == "" or name is None:
app.setStyleSheet("")
return
watch.removePaths(watch.files())
iface.messageBar().clearWidgets()
if path == "" or path is None:
app.setStyleSheet("")
return
if not os.path.exists(path):
iface.messageBar().pushMessage("Error: "+path+" : ",
"The path to the * .qss not exist.Load default style ",
level=QgsMessageBar.CRITICAL,
duration=2)
app.setStyleSheet("")
return
if close is not None:
return
else:
reload_style(path)
if preview is False:
setActivated(name)
iface.messageBar().pushMessage("Style "+name+" : ", "Style loaded correctly.",
level=QgsMessageBar.INFO, duration=2)
return
else:
setPreview(name)
iface.messageBar().pushMessage("Style "+name+" : ", "Style Preview loaded correctly.",
level=QgsMessageBar.INFO, duration=2)
return