streamdeck-gui-ng 4.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- streamdeck_gui_ng-4.1.3.dist-info/METADATA +141 -0
- streamdeck_gui_ng-4.1.3.dist-info/RECORD +62 -0
- streamdeck_gui_ng-4.1.3.dist-info/WHEEL +4 -0
- streamdeck_gui_ng-4.1.3.dist-info/entry_points.txt +4 -0
- streamdeck_gui_ng-4.1.3.dist-info/licenses/LICENSE +21 -0
- streamdeck_ui/__init__.py +6 -0
- streamdeck_ui/api.py +712 -0
- streamdeck_ui/button.ui +1214 -0
- streamdeck_ui/cli/__init__.py +0 -0
- streamdeck_ui/cli/commands.py +191 -0
- streamdeck_ui/cli/server.py +292 -0
- streamdeck_ui/config.py +244 -0
- streamdeck_ui/dimmer.py +93 -0
- streamdeck_ui/display/__init__.py +0 -0
- streamdeck_ui/display/background_color_filter.py +41 -0
- streamdeck_ui/display/display_grid.py +265 -0
- streamdeck_ui/display/empty_filter.py +43 -0
- streamdeck_ui/display/filter.py +65 -0
- streamdeck_ui/display/image_filter.py +144 -0
- streamdeck_ui/display/keypress_filter.py +63 -0
- streamdeck_ui/display/pipeline.py +74 -0
- streamdeck_ui/display/pulse_filter.py +54 -0
- streamdeck_ui/display/text_filter.py +142 -0
- streamdeck_ui/fonts/roboto/LICENSE.txt +202 -0
- streamdeck_ui/fonts/roboto/Roboto-Black.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-BlackItalic.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Bold.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-BoldItalic.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Italic.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Light.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-LightItalic.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Medium.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-MediumItalic.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Regular.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-Thin.ttf +0 -0
- streamdeck_ui/fonts/roboto/Roboto-ThinItalic.ttf +0 -0
- streamdeck_ui/gui.py +1423 -0
- streamdeck_ui/icons/add_page.png +0 -0
- streamdeck_ui/icons/cross.png +0 -0
- streamdeck_ui/icons/gear.png +0 -0
- streamdeck_ui/icons/horizontal-align.png +0 -0
- streamdeck_ui/icons/remove_page.png +0 -0
- streamdeck_ui/icons/vertical-align.png +0 -0
- streamdeck_ui/icons/warning_icon_button.png +0 -0
- streamdeck_ui/logger.py +11 -0
- streamdeck_ui/logo.png +0 -0
- streamdeck_ui/main.ui +407 -0
- streamdeck_ui/mock_streamdeck.py +204 -0
- streamdeck_ui/model.py +78 -0
- streamdeck_ui/modules/__init__.py +0 -0
- streamdeck_ui/modules/fonts.py +150 -0
- streamdeck_ui/modules/keyboard.py +447 -0
- streamdeck_ui/modules/utils/__init__.py +0 -0
- streamdeck_ui/modules/utils/timers.py +35 -0
- streamdeck_ui/resources.qrc +10 -0
- streamdeck_ui/resources_rc.py +324 -0
- streamdeck_ui/semaphore.py +38 -0
- streamdeck_ui/settings.ui +155 -0
- streamdeck_ui/stream_deck_monitor.py +157 -0
- streamdeck_ui/ui_button.py +421 -0
- streamdeck_ui/ui_main.py +267 -0
- streamdeck_ui/ui_settings.py +119 -0
streamdeck_ui/button.ui
ADDED
|
@@ -0,0 +1,1214 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<ui version="4.0">
|
|
3
|
+
<class>ButtonForm</class>
|
|
4
|
+
<widget class="QWidget" name="ButtonForm">
|
|
5
|
+
<property name="geometry">
|
|
6
|
+
<rect>
|
|
7
|
+
<x>0</x>
|
|
8
|
+
<y>0</y>
|
|
9
|
+
<width>568</width>
|
|
10
|
+
<height>778</height>
|
|
11
|
+
</rect>
|
|
12
|
+
</property>
|
|
13
|
+
<property name="windowTitle">
|
|
14
|
+
<string>Form</string>
|
|
15
|
+
</property>
|
|
16
|
+
<layout class="QFormLayout" name="formLayout">
|
|
17
|
+
<item row="0" column="0">
|
|
18
|
+
<widget class="QLabel" name="label">
|
|
19
|
+
<property name="text">
|
|
20
|
+
<string>Image:</string>
|
|
21
|
+
</property>
|
|
22
|
+
</widget>
|
|
23
|
+
</item>
|
|
24
|
+
<item row="0" column="1">
|
|
25
|
+
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
26
|
+
<property name="spacing">
|
|
27
|
+
<number>6</number>
|
|
28
|
+
</property>
|
|
29
|
+
<item>
|
|
30
|
+
<widget class="QPushButton" name="add_image">
|
|
31
|
+
<property name="text">
|
|
32
|
+
<string>Image...</string>
|
|
33
|
+
</property>
|
|
34
|
+
</widget>
|
|
35
|
+
</item>
|
|
36
|
+
<item>
|
|
37
|
+
<widget class="QPushButton" name="remove_image">
|
|
38
|
+
<property name="sizePolicy">
|
|
39
|
+
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
|
|
40
|
+
<horstretch>0</horstretch>
|
|
41
|
+
<verstretch>0</verstretch>
|
|
42
|
+
</sizepolicy>
|
|
43
|
+
</property>
|
|
44
|
+
<property name="maximumSize">
|
|
45
|
+
<size>
|
|
46
|
+
<width>30</width>
|
|
47
|
+
<height>16777215</height>
|
|
48
|
+
</size>
|
|
49
|
+
</property>
|
|
50
|
+
<property name="toolTip">
|
|
51
|
+
<string>Remove the image from the button</string>
|
|
52
|
+
</property>
|
|
53
|
+
<property name="text">
|
|
54
|
+
<string/>
|
|
55
|
+
</property>
|
|
56
|
+
<property name="icon">
|
|
57
|
+
<iconset resource="resources.qrc">
|
|
58
|
+
<normaloff>:/icons/icons/cross.png</normaloff>:/icons/icons/cross.png</iconset>
|
|
59
|
+
</property>
|
|
60
|
+
</widget>
|
|
61
|
+
</item>
|
|
62
|
+
</layout>
|
|
63
|
+
</item>
|
|
64
|
+
<item row="1" column="0">
|
|
65
|
+
<widget class="QLabel" name="label_9">
|
|
66
|
+
<property name="text">
|
|
67
|
+
<string>Background</string>
|
|
68
|
+
</property>
|
|
69
|
+
</widget>
|
|
70
|
+
</item>
|
|
71
|
+
<item row="1" column="1">
|
|
72
|
+
<widget class="QPushButton" name="background_color">
|
|
73
|
+
<property name="sizePolicy">
|
|
74
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Maximum">
|
|
75
|
+
<horstretch>0</horstretch>
|
|
76
|
+
<verstretch>0</verstretch>
|
|
77
|
+
</sizepolicy>
|
|
78
|
+
</property>
|
|
79
|
+
<property name="maximumSize">
|
|
80
|
+
<size>
|
|
81
|
+
<width>16777215</width>
|
|
82
|
+
<height>16777215</height>
|
|
83
|
+
</size>
|
|
84
|
+
</property>
|
|
85
|
+
<property name="palette">
|
|
86
|
+
<palette>
|
|
87
|
+
<active>
|
|
88
|
+
<colorrole role="WindowText">
|
|
89
|
+
<brush brushstyle="SolidPattern">
|
|
90
|
+
<color alpha="255">
|
|
91
|
+
<red>0</red>
|
|
92
|
+
<green>0</green>
|
|
93
|
+
<blue>0</blue>
|
|
94
|
+
</color>
|
|
95
|
+
</brush>
|
|
96
|
+
</colorrole>
|
|
97
|
+
<colorrole role="Button">
|
|
98
|
+
<brush brushstyle="SolidPattern">
|
|
99
|
+
<color alpha="255">
|
|
100
|
+
<red>255</red>
|
|
101
|
+
<green>255</green>
|
|
102
|
+
<blue>255</blue>
|
|
103
|
+
</color>
|
|
104
|
+
</brush>
|
|
105
|
+
</colorrole>
|
|
106
|
+
<colorrole role="Light">
|
|
107
|
+
<brush brushstyle="SolidPattern">
|
|
108
|
+
<color alpha="255">
|
|
109
|
+
<red>255</red>
|
|
110
|
+
<green>255</green>
|
|
111
|
+
<blue>255</blue>
|
|
112
|
+
</color>
|
|
113
|
+
</brush>
|
|
114
|
+
</colorrole>
|
|
115
|
+
<colorrole role="Midlight">
|
|
116
|
+
<brush brushstyle="SolidPattern">
|
|
117
|
+
<color alpha="255">
|
|
118
|
+
<red>255</red>
|
|
119
|
+
<green>255</green>
|
|
120
|
+
<blue>255</blue>
|
|
121
|
+
</color>
|
|
122
|
+
</brush>
|
|
123
|
+
</colorrole>
|
|
124
|
+
<colorrole role="Dark">
|
|
125
|
+
<brush brushstyle="SolidPattern">
|
|
126
|
+
<color alpha="255">
|
|
127
|
+
<red>127</red>
|
|
128
|
+
<green>127</green>
|
|
129
|
+
<blue>127</blue>
|
|
130
|
+
</color>
|
|
131
|
+
</brush>
|
|
132
|
+
</colorrole>
|
|
133
|
+
<colorrole role="Mid">
|
|
134
|
+
<brush brushstyle="SolidPattern">
|
|
135
|
+
<color alpha="255">
|
|
136
|
+
<red>170</red>
|
|
137
|
+
<green>170</green>
|
|
138
|
+
<blue>170</blue>
|
|
139
|
+
</color>
|
|
140
|
+
</brush>
|
|
141
|
+
</colorrole>
|
|
142
|
+
<colorrole role="Text">
|
|
143
|
+
<brush brushstyle="SolidPattern">
|
|
144
|
+
<color alpha="255">
|
|
145
|
+
<red>0</red>
|
|
146
|
+
<green>0</green>
|
|
147
|
+
<blue>0</blue>
|
|
148
|
+
</color>
|
|
149
|
+
</brush>
|
|
150
|
+
</colorrole>
|
|
151
|
+
<colorrole role="BrightText">
|
|
152
|
+
<brush brushstyle="SolidPattern">
|
|
153
|
+
<color alpha="255">
|
|
154
|
+
<red>255</red>
|
|
155
|
+
<green>255</green>
|
|
156
|
+
<blue>255</blue>
|
|
157
|
+
</color>
|
|
158
|
+
</brush>
|
|
159
|
+
</colorrole>
|
|
160
|
+
<colorrole role="ButtonText">
|
|
161
|
+
<brush brushstyle="SolidPattern">
|
|
162
|
+
<color alpha="255">
|
|
163
|
+
<red>0</red>
|
|
164
|
+
<green>0</green>
|
|
165
|
+
<blue>0</blue>
|
|
166
|
+
</color>
|
|
167
|
+
</brush>
|
|
168
|
+
</colorrole>
|
|
169
|
+
<colorrole role="Base">
|
|
170
|
+
<brush brushstyle="SolidPattern">
|
|
171
|
+
<color alpha="255">
|
|
172
|
+
<red>255</red>
|
|
173
|
+
<green>255</green>
|
|
174
|
+
<blue>255</blue>
|
|
175
|
+
</color>
|
|
176
|
+
</brush>
|
|
177
|
+
</colorrole>
|
|
178
|
+
<colorrole role="Window">
|
|
179
|
+
<brush brushstyle="SolidPattern">
|
|
180
|
+
<color alpha="255">
|
|
181
|
+
<red>255</red>
|
|
182
|
+
<green>255</green>
|
|
183
|
+
<blue>255</blue>
|
|
184
|
+
</color>
|
|
185
|
+
</brush>
|
|
186
|
+
</colorrole>
|
|
187
|
+
<colorrole role="Shadow">
|
|
188
|
+
<brush brushstyle="SolidPattern">
|
|
189
|
+
<color alpha="255">
|
|
190
|
+
<red>0</red>
|
|
191
|
+
<green>0</green>
|
|
192
|
+
<blue>0</blue>
|
|
193
|
+
</color>
|
|
194
|
+
</brush>
|
|
195
|
+
</colorrole>
|
|
196
|
+
<colorrole role="AlternateBase">
|
|
197
|
+
<brush brushstyle="SolidPattern">
|
|
198
|
+
<color alpha="255">
|
|
199
|
+
<red>255</red>
|
|
200
|
+
<green>255</green>
|
|
201
|
+
<blue>255</blue>
|
|
202
|
+
</color>
|
|
203
|
+
</brush>
|
|
204
|
+
</colorrole>
|
|
205
|
+
<colorrole role="ToolTipBase">
|
|
206
|
+
<brush brushstyle="SolidPattern">
|
|
207
|
+
<color alpha="255">
|
|
208
|
+
<red>255</red>
|
|
209
|
+
<green>255</green>
|
|
210
|
+
<blue>220</blue>
|
|
211
|
+
</color>
|
|
212
|
+
</brush>
|
|
213
|
+
</colorrole>
|
|
214
|
+
<colorrole role="ToolTipText">
|
|
215
|
+
<brush brushstyle="SolidPattern">
|
|
216
|
+
<color alpha="255">
|
|
217
|
+
<red>0</red>
|
|
218
|
+
<green>0</green>
|
|
219
|
+
<blue>0</blue>
|
|
220
|
+
</color>
|
|
221
|
+
</brush>
|
|
222
|
+
</colorrole>
|
|
223
|
+
<colorrole role="PlaceholderText">
|
|
224
|
+
<brush brushstyle="SolidPattern">
|
|
225
|
+
<color alpha="128">
|
|
226
|
+
<red>0</red>
|
|
227
|
+
<green>0</green>
|
|
228
|
+
<blue>0</blue>
|
|
229
|
+
</color>
|
|
230
|
+
</brush>
|
|
231
|
+
</colorrole>
|
|
232
|
+
</active>
|
|
233
|
+
<inactive>
|
|
234
|
+
<colorrole role="WindowText">
|
|
235
|
+
<brush brushstyle="SolidPattern">
|
|
236
|
+
<color alpha="255">
|
|
237
|
+
<red>0</red>
|
|
238
|
+
<green>0</green>
|
|
239
|
+
<blue>0</blue>
|
|
240
|
+
</color>
|
|
241
|
+
</brush>
|
|
242
|
+
</colorrole>
|
|
243
|
+
<colorrole role="Button">
|
|
244
|
+
<brush brushstyle="SolidPattern">
|
|
245
|
+
<color alpha="255">
|
|
246
|
+
<red>255</red>
|
|
247
|
+
<green>255</green>
|
|
248
|
+
<blue>255</blue>
|
|
249
|
+
</color>
|
|
250
|
+
</brush>
|
|
251
|
+
</colorrole>
|
|
252
|
+
<colorrole role="Light">
|
|
253
|
+
<brush brushstyle="SolidPattern">
|
|
254
|
+
<color alpha="255">
|
|
255
|
+
<red>255</red>
|
|
256
|
+
<green>255</green>
|
|
257
|
+
<blue>255</blue>
|
|
258
|
+
</color>
|
|
259
|
+
</brush>
|
|
260
|
+
</colorrole>
|
|
261
|
+
<colorrole role="Midlight">
|
|
262
|
+
<brush brushstyle="SolidPattern">
|
|
263
|
+
<color alpha="255">
|
|
264
|
+
<red>255</red>
|
|
265
|
+
<green>255</green>
|
|
266
|
+
<blue>255</blue>
|
|
267
|
+
</color>
|
|
268
|
+
</brush>
|
|
269
|
+
</colorrole>
|
|
270
|
+
<colorrole role="Dark">
|
|
271
|
+
<brush brushstyle="SolidPattern">
|
|
272
|
+
<color alpha="255">
|
|
273
|
+
<red>127</red>
|
|
274
|
+
<green>127</green>
|
|
275
|
+
<blue>127</blue>
|
|
276
|
+
</color>
|
|
277
|
+
</brush>
|
|
278
|
+
</colorrole>
|
|
279
|
+
<colorrole role="Mid">
|
|
280
|
+
<brush brushstyle="SolidPattern">
|
|
281
|
+
<color alpha="255">
|
|
282
|
+
<red>170</red>
|
|
283
|
+
<green>170</green>
|
|
284
|
+
<blue>170</blue>
|
|
285
|
+
</color>
|
|
286
|
+
</brush>
|
|
287
|
+
</colorrole>
|
|
288
|
+
<colorrole role="Text">
|
|
289
|
+
<brush brushstyle="SolidPattern">
|
|
290
|
+
<color alpha="255">
|
|
291
|
+
<red>0</red>
|
|
292
|
+
<green>0</green>
|
|
293
|
+
<blue>0</blue>
|
|
294
|
+
</color>
|
|
295
|
+
</brush>
|
|
296
|
+
</colorrole>
|
|
297
|
+
<colorrole role="BrightText">
|
|
298
|
+
<brush brushstyle="SolidPattern">
|
|
299
|
+
<color alpha="255">
|
|
300
|
+
<red>255</red>
|
|
301
|
+
<green>255</green>
|
|
302
|
+
<blue>255</blue>
|
|
303
|
+
</color>
|
|
304
|
+
</brush>
|
|
305
|
+
</colorrole>
|
|
306
|
+
<colorrole role="ButtonText">
|
|
307
|
+
<brush brushstyle="SolidPattern">
|
|
308
|
+
<color alpha="255">
|
|
309
|
+
<red>0</red>
|
|
310
|
+
<green>0</green>
|
|
311
|
+
<blue>0</blue>
|
|
312
|
+
</color>
|
|
313
|
+
</brush>
|
|
314
|
+
</colorrole>
|
|
315
|
+
<colorrole role="Base">
|
|
316
|
+
<brush brushstyle="SolidPattern">
|
|
317
|
+
<color alpha="255">
|
|
318
|
+
<red>255</red>
|
|
319
|
+
<green>255</green>
|
|
320
|
+
<blue>255</blue>
|
|
321
|
+
</color>
|
|
322
|
+
</brush>
|
|
323
|
+
</colorrole>
|
|
324
|
+
<colorrole role="Window">
|
|
325
|
+
<brush brushstyle="SolidPattern">
|
|
326
|
+
<color alpha="255">
|
|
327
|
+
<red>255</red>
|
|
328
|
+
<green>255</green>
|
|
329
|
+
<blue>255</blue>
|
|
330
|
+
</color>
|
|
331
|
+
</brush>
|
|
332
|
+
</colorrole>
|
|
333
|
+
<colorrole role="Shadow">
|
|
334
|
+
<brush brushstyle="SolidPattern">
|
|
335
|
+
<color alpha="255">
|
|
336
|
+
<red>0</red>
|
|
337
|
+
<green>0</green>
|
|
338
|
+
<blue>0</blue>
|
|
339
|
+
</color>
|
|
340
|
+
</brush>
|
|
341
|
+
</colorrole>
|
|
342
|
+
<colorrole role="AlternateBase">
|
|
343
|
+
<brush brushstyle="SolidPattern">
|
|
344
|
+
<color alpha="255">
|
|
345
|
+
<red>255</red>
|
|
346
|
+
<green>255</green>
|
|
347
|
+
<blue>255</blue>
|
|
348
|
+
</color>
|
|
349
|
+
</brush>
|
|
350
|
+
</colorrole>
|
|
351
|
+
<colorrole role="ToolTipBase">
|
|
352
|
+
<brush brushstyle="SolidPattern">
|
|
353
|
+
<color alpha="255">
|
|
354
|
+
<red>255</red>
|
|
355
|
+
<green>255</green>
|
|
356
|
+
<blue>220</blue>
|
|
357
|
+
</color>
|
|
358
|
+
</brush>
|
|
359
|
+
</colorrole>
|
|
360
|
+
<colorrole role="ToolTipText">
|
|
361
|
+
<brush brushstyle="SolidPattern">
|
|
362
|
+
<color alpha="255">
|
|
363
|
+
<red>0</red>
|
|
364
|
+
<green>0</green>
|
|
365
|
+
<blue>0</blue>
|
|
366
|
+
</color>
|
|
367
|
+
</brush>
|
|
368
|
+
</colorrole>
|
|
369
|
+
<colorrole role="PlaceholderText">
|
|
370
|
+
<brush brushstyle="SolidPattern">
|
|
371
|
+
<color alpha="128">
|
|
372
|
+
<red>0</red>
|
|
373
|
+
<green>0</green>
|
|
374
|
+
<blue>0</blue>
|
|
375
|
+
</color>
|
|
376
|
+
</brush>
|
|
377
|
+
</colorrole>
|
|
378
|
+
</inactive>
|
|
379
|
+
<disabled>
|
|
380
|
+
<colorrole role="WindowText">
|
|
381
|
+
<brush brushstyle="SolidPattern">
|
|
382
|
+
<color alpha="255">
|
|
383
|
+
<red>127</red>
|
|
384
|
+
<green>127</green>
|
|
385
|
+
<blue>127</blue>
|
|
386
|
+
</color>
|
|
387
|
+
</brush>
|
|
388
|
+
</colorrole>
|
|
389
|
+
<colorrole role="Button">
|
|
390
|
+
<brush brushstyle="SolidPattern">
|
|
391
|
+
<color alpha="255">
|
|
392
|
+
<red>255</red>
|
|
393
|
+
<green>255</green>
|
|
394
|
+
<blue>255</blue>
|
|
395
|
+
</color>
|
|
396
|
+
</brush>
|
|
397
|
+
</colorrole>
|
|
398
|
+
<colorrole role="Light">
|
|
399
|
+
<brush brushstyle="SolidPattern">
|
|
400
|
+
<color alpha="255">
|
|
401
|
+
<red>255</red>
|
|
402
|
+
<green>255</green>
|
|
403
|
+
<blue>255</blue>
|
|
404
|
+
</color>
|
|
405
|
+
</brush>
|
|
406
|
+
</colorrole>
|
|
407
|
+
<colorrole role="Midlight">
|
|
408
|
+
<brush brushstyle="SolidPattern">
|
|
409
|
+
<color alpha="255">
|
|
410
|
+
<red>255</red>
|
|
411
|
+
<green>255</green>
|
|
412
|
+
<blue>255</blue>
|
|
413
|
+
</color>
|
|
414
|
+
</brush>
|
|
415
|
+
</colorrole>
|
|
416
|
+
<colorrole role="Dark">
|
|
417
|
+
<brush brushstyle="SolidPattern">
|
|
418
|
+
<color alpha="255">
|
|
419
|
+
<red>127</red>
|
|
420
|
+
<green>127</green>
|
|
421
|
+
<blue>127</blue>
|
|
422
|
+
</color>
|
|
423
|
+
</brush>
|
|
424
|
+
</colorrole>
|
|
425
|
+
<colorrole role="Mid">
|
|
426
|
+
<brush brushstyle="SolidPattern">
|
|
427
|
+
<color alpha="255">
|
|
428
|
+
<red>170</red>
|
|
429
|
+
<green>170</green>
|
|
430
|
+
<blue>170</blue>
|
|
431
|
+
</color>
|
|
432
|
+
</brush>
|
|
433
|
+
</colorrole>
|
|
434
|
+
<colorrole role="Text">
|
|
435
|
+
<brush brushstyle="SolidPattern">
|
|
436
|
+
<color alpha="255">
|
|
437
|
+
<red>127</red>
|
|
438
|
+
<green>127</green>
|
|
439
|
+
<blue>127</blue>
|
|
440
|
+
</color>
|
|
441
|
+
</brush>
|
|
442
|
+
</colorrole>
|
|
443
|
+
<colorrole role="BrightText">
|
|
444
|
+
<brush brushstyle="SolidPattern">
|
|
445
|
+
<color alpha="255">
|
|
446
|
+
<red>255</red>
|
|
447
|
+
<green>255</green>
|
|
448
|
+
<blue>255</blue>
|
|
449
|
+
</color>
|
|
450
|
+
</brush>
|
|
451
|
+
</colorrole>
|
|
452
|
+
<colorrole role="ButtonText">
|
|
453
|
+
<brush brushstyle="SolidPattern">
|
|
454
|
+
<color alpha="255">
|
|
455
|
+
<red>127</red>
|
|
456
|
+
<green>127</green>
|
|
457
|
+
<blue>127</blue>
|
|
458
|
+
</color>
|
|
459
|
+
</brush>
|
|
460
|
+
</colorrole>
|
|
461
|
+
<colorrole role="Base">
|
|
462
|
+
<brush brushstyle="SolidPattern">
|
|
463
|
+
<color alpha="255">
|
|
464
|
+
<red>255</red>
|
|
465
|
+
<green>255</green>
|
|
466
|
+
<blue>255</blue>
|
|
467
|
+
</color>
|
|
468
|
+
</brush>
|
|
469
|
+
</colorrole>
|
|
470
|
+
<colorrole role="Window">
|
|
471
|
+
<brush brushstyle="SolidPattern">
|
|
472
|
+
<color alpha="255">
|
|
473
|
+
<red>255</red>
|
|
474
|
+
<green>255</green>
|
|
475
|
+
<blue>255</blue>
|
|
476
|
+
</color>
|
|
477
|
+
</brush>
|
|
478
|
+
</colorrole>
|
|
479
|
+
<colorrole role="Shadow">
|
|
480
|
+
<brush brushstyle="SolidPattern">
|
|
481
|
+
<color alpha="255">
|
|
482
|
+
<red>0</red>
|
|
483
|
+
<green>0</green>
|
|
484
|
+
<blue>0</blue>
|
|
485
|
+
</color>
|
|
486
|
+
</brush>
|
|
487
|
+
</colorrole>
|
|
488
|
+
<colorrole role="AlternateBase">
|
|
489
|
+
<brush brushstyle="SolidPattern">
|
|
490
|
+
<color alpha="255">
|
|
491
|
+
<red>255</red>
|
|
492
|
+
<green>255</green>
|
|
493
|
+
<blue>255</blue>
|
|
494
|
+
</color>
|
|
495
|
+
</brush>
|
|
496
|
+
</colorrole>
|
|
497
|
+
<colorrole role="ToolTipBase">
|
|
498
|
+
<brush brushstyle="SolidPattern">
|
|
499
|
+
<color alpha="255">
|
|
500
|
+
<red>255</red>
|
|
501
|
+
<green>255</green>
|
|
502
|
+
<blue>220</blue>
|
|
503
|
+
</color>
|
|
504
|
+
</brush>
|
|
505
|
+
</colorrole>
|
|
506
|
+
<colorrole role="ToolTipText">
|
|
507
|
+
<brush brushstyle="SolidPattern">
|
|
508
|
+
<color alpha="255">
|
|
509
|
+
<red>0</red>
|
|
510
|
+
<green>0</green>
|
|
511
|
+
<blue>0</blue>
|
|
512
|
+
</color>
|
|
513
|
+
</brush>
|
|
514
|
+
</colorrole>
|
|
515
|
+
<colorrole role="PlaceholderText">
|
|
516
|
+
<brush brushstyle="SolidPattern">
|
|
517
|
+
<color alpha="128">
|
|
518
|
+
<red>0</red>
|
|
519
|
+
<green>0</green>
|
|
520
|
+
<blue>0</blue>
|
|
521
|
+
</color>
|
|
522
|
+
</brush>
|
|
523
|
+
</colorrole>
|
|
524
|
+
</disabled>
|
|
525
|
+
</palette>
|
|
526
|
+
</property>
|
|
527
|
+
<property name="toolTip">
|
|
528
|
+
<string>Text Color</string>
|
|
529
|
+
</property>
|
|
530
|
+
<property name="text">
|
|
531
|
+
<string/>
|
|
532
|
+
</property>
|
|
533
|
+
</widget>
|
|
534
|
+
</item>
|
|
535
|
+
<item row="2" column="0">
|
|
536
|
+
<widget class="QLabel" name="label_2">
|
|
537
|
+
<property name="text">
|
|
538
|
+
<string>Label:</string>
|
|
539
|
+
</property>
|
|
540
|
+
</widget>
|
|
541
|
+
</item>
|
|
542
|
+
<item row="2" column="1">
|
|
543
|
+
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
544
|
+
<item>
|
|
545
|
+
<widget class="QTextEdit" name="text"/>
|
|
546
|
+
</item>
|
|
547
|
+
<item>
|
|
548
|
+
<layout class="QVBoxLayout" name="verticalLayout_4">
|
|
549
|
+
<item>
|
|
550
|
+
<widget class="QPushButton" name="text_v_align">
|
|
551
|
+
<property name="minimumSize">
|
|
552
|
+
<size>
|
|
553
|
+
<width>40</width>
|
|
554
|
+
<height>30</height>
|
|
555
|
+
</size>
|
|
556
|
+
</property>
|
|
557
|
+
<property name="maximumSize">
|
|
558
|
+
<size>
|
|
559
|
+
<width>30</width>
|
|
560
|
+
<height>16777215</height>
|
|
561
|
+
</size>
|
|
562
|
+
</property>
|
|
563
|
+
<property name="toolTip">
|
|
564
|
+
<string>Text vertical alignment</string>
|
|
565
|
+
</property>
|
|
566
|
+
<property name="text">
|
|
567
|
+
<string/>
|
|
568
|
+
</property>
|
|
569
|
+
<property name="icon">
|
|
570
|
+
<iconset resource="resources.qrc">
|
|
571
|
+
<normaloff>:/icons/icons/vertical-align.png</normaloff>:/icons/icons/vertical-align.png</iconset>
|
|
572
|
+
</property>
|
|
573
|
+
</widget>
|
|
574
|
+
</item>
|
|
575
|
+
<item>
|
|
576
|
+
<widget class="QPushButton" name="text_h_align">
|
|
577
|
+
<property name="minimumSize">
|
|
578
|
+
<size>
|
|
579
|
+
<width>40</width>
|
|
580
|
+
<height>30</height>
|
|
581
|
+
</size>
|
|
582
|
+
</property>
|
|
583
|
+
<property name="toolTip">
|
|
584
|
+
<string>Text horizontal alignment</string>
|
|
585
|
+
</property>
|
|
586
|
+
<property name="text">
|
|
587
|
+
<string/>
|
|
588
|
+
</property>
|
|
589
|
+
<property name="icon">
|
|
590
|
+
<iconset resource="resources.qrc">
|
|
591
|
+
<normaloff>:/icons/icons/horizontal-align.png</normaloff>:/icons/icons/horizontal-align.png</iconset>
|
|
592
|
+
</property>
|
|
593
|
+
</widget>
|
|
594
|
+
</item>
|
|
595
|
+
</layout>
|
|
596
|
+
</item>
|
|
597
|
+
</layout>
|
|
598
|
+
</item>
|
|
599
|
+
<item row="3" column="0">
|
|
600
|
+
<widget class="QLabel" name="label_4">
|
|
601
|
+
<property name="text">
|
|
602
|
+
<string>Label Font:</string>
|
|
603
|
+
</property>
|
|
604
|
+
</widget>
|
|
605
|
+
</item>
|
|
606
|
+
<item row="3" column="1">
|
|
607
|
+
<layout class="QHBoxLayout" name="horizontalLayout" stretch="3,2,1,1">
|
|
608
|
+
<item>
|
|
609
|
+
<widget class="QComboBox" name="text_font">
|
|
610
|
+
<property name="sizePolicy">
|
|
611
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
612
|
+
<horstretch>0</horstretch>
|
|
613
|
+
<verstretch>0</verstretch>
|
|
614
|
+
</sizepolicy>
|
|
615
|
+
</property>
|
|
616
|
+
<property name="toolTip">
|
|
617
|
+
<string>Text Font style</string>
|
|
618
|
+
</property>
|
|
619
|
+
</widget>
|
|
620
|
+
</item>
|
|
621
|
+
<item>
|
|
622
|
+
<widget class="QComboBox" name="text_font_style">
|
|
623
|
+
<property name="toolTip">
|
|
624
|
+
<string>Text Font</string>
|
|
625
|
+
</property>
|
|
626
|
+
</widget>
|
|
627
|
+
</item>
|
|
628
|
+
<item>
|
|
629
|
+
<widget class="QSpinBox" name="text_font_size">
|
|
630
|
+
<property name="sizePolicy">
|
|
631
|
+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
|
632
|
+
<horstretch>0</horstretch>
|
|
633
|
+
<verstretch>0</verstretch>
|
|
634
|
+
</sizepolicy>
|
|
635
|
+
</property>
|
|
636
|
+
<property name="toolTip">
|
|
637
|
+
<string>Text Font size</string>
|
|
638
|
+
</property>
|
|
639
|
+
<property name="minimum">
|
|
640
|
+
<number>12</number>
|
|
641
|
+
</property>
|
|
642
|
+
<property name="maximum">
|
|
643
|
+
<number>72</number>
|
|
644
|
+
</property>
|
|
645
|
+
</widget>
|
|
646
|
+
</item>
|
|
647
|
+
<item>
|
|
648
|
+
<widget class="QPushButton" name="text_color">
|
|
649
|
+
<property name="sizePolicy">
|
|
650
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
|
|
651
|
+
<horstretch>0</horstretch>
|
|
652
|
+
<verstretch>0</verstretch>
|
|
653
|
+
</sizepolicy>
|
|
654
|
+
</property>
|
|
655
|
+
<property name="maximumSize">
|
|
656
|
+
<size>
|
|
657
|
+
<width>16777215</width>
|
|
658
|
+
<height>16777215</height>
|
|
659
|
+
</size>
|
|
660
|
+
</property>
|
|
661
|
+
<property name="palette">
|
|
662
|
+
<palette>
|
|
663
|
+
<active>
|
|
664
|
+
<colorrole role="WindowText">
|
|
665
|
+
<brush brushstyle="SolidPattern">
|
|
666
|
+
<color alpha="255">
|
|
667
|
+
<red>0</red>
|
|
668
|
+
<green>0</green>
|
|
669
|
+
<blue>0</blue>
|
|
670
|
+
</color>
|
|
671
|
+
</brush>
|
|
672
|
+
</colorrole>
|
|
673
|
+
<colorrole role="Button">
|
|
674
|
+
<brush brushstyle="SolidPattern">
|
|
675
|
+
<color alpha="255">
|
|
676
|
+
<red>255</red>
|
|
677
|
+
<green>255</green>
|
|
678
|
+
<blue>255</blue>
|
|
679
|
+
</color>
|
|
680
|
+
</brush>
|
|
681
|
+
</colorrole>
|
|
682
|
+
<colorrole role="Light">
|
|
683
|
+
<brush brushstyle="SolidPattern">
|
|
684
|
+
<color alpha="255">
|
|
685
|
+
<red>255</red>
|
|
686
|
+
<green>255</green>
|
|
687
|
+
<blue>255</blue>
|
|
688
|
+
</color>
|
|
689
|
+
</brush>
|
|
690
|
+
</colorrole>
|
|
691
|
+
<colorrole role="Midlight">
|
|
692
|
+
<brush brushstyle="SolidPattern">
|
|
693
|
+
<color alpha="255">
|
|
694
|
+
<red>255</red>
|
|
695
|
+
<green>255</green>
|
|
696
|
+
<blue>255</blue>
|
|
697
|
+
</color>
|
|
698
|
+
</brush>
|
|
699
|
+
</colorrole>
|
|
700
|
+
<colorrole role="Dark">
|
|
701
|
+
<brush brushstyle="SolidPattern">
|
|
702
|
+
<color alpha="255">
|
|
703
|
+
<red>127</red>
|
|
704
|
+
<green>127</green>
|
|
705
|
+
<blue>127</blue>
|
|
706
|
+
</color>
|
|
707
|
+
</brush>
|
|
708
|
+
</colorrole>
|
|
709
|
+
<colorrole role="Mid">
|
|
710
|
+
<brush brushstyle="SolidPattern">
|
|
711
|
+
<color alpha="255">
|
|
712
|
+
<red>170</red>
|
|
713
|
+
<green>170</green>
|
|
714
|
+
<blue>170</blue>
|
|
715
|
+
</color>
|
|
716
|
+
</brush>
|
|
717
|
+
</colorrole>
|
|
718
|
+
<colorrole role="Text">
|
|
719
|
+
<brush brushstyle="SolidPattern">
|
|
720
|
+
<color alpha="255">
|
|
721
|
+
<red>0</red>
|
|
722
|
+
<green>0</green>
|
|
723
|
+
<blue>0</blue>
|
|
724
|
+
</color>
|
|
725
|
+
</brush>
|
|
726
|
+
</colorrole>
|
|
727
|
+
<colorrole role="BrightText">
|
|
728
|
+
<brush brushstyle="SolidPattern">
|
|
729
|
+
<color alpha="255">
|
|
730
|
+
<red>255</red>
|
|
731
|
+
<green>255</green>
|
|
732
|
+
<blue>255</blue>
|
|
733
|
+
</color>
|
|
734
|
+
</brush>
|
|
735
|
+
</colorrole>
|
|
736
|
+
<colorrole role="ButtonText">
|
|
737
|
+
<brush brushstyle="SolidPattern">
|
|
738
|
+
<color alpha="255">
|
|
739
|
+
<red>0</red>
|
|
740
|
+
<green>0</green>
|
|
741
|
+
<blue>0</blue>
|
|
742
|
+
</color>
|
|
743
|
+
</brush>
|
|
744
|
+
</colorrole>
|
|
745
|
+
<colorrole role="Base">
|
|
746
|
+
<brush brushstyle="SolidPattern">
|
|
747
|
+
<color alpha="255">
|
|
748
|
+
<red>255</red>
|
|
749
|
+
<green>255</green>
|
|
750
|
+
<blue>255</blue>
|
|
751
|
+
</color>
|
|
752
|
+
</brush>
|
|
753
|
+
</colorrole>
|
|
754
|
+
<colorrole role="Window">
|
|
755
|
+
<brush brushstyle="SolidPattern">
|
|
756
|
+
<color alpha="255">
|
|
757
|
+
<red>255</red>
|
|
758
|
+
<green>255</green>
|
|
759
|
+
<blue>255</blue>
|
|
760
|
+
</color>
|
|
761
|
+
</brush>
|
|
762
|
+
</colorrole>
|
|
763
|
+
<colorrole role="Shadow">
|
|
764
|
+
<brush brushstyle="SolidPattern">
|
|
765
|
+
<color alpha="255">
|
|
766
|
+
<red>0</red>
|
|
767
|
+
<green>0</green>
|
|
768
|
+
<blue>0</blue>
|
|
769
|
+
</color>
|
|
770
|
+
</brush>
|
|
771
|
+
</colorrole>
|
|
772
|
+
<colorrole role="AlternateBase">
|
|
773
|
+
<brush brushstyle="SolidPattern">
|
|
774
|
+
<color alpha="255">
|
|
775
|
+
<red>255</red>
|
|
776
|
+
<green>255</green>
|
|
777
|
+
<blue>255</blue>
|
|
778
|
+
</color>
|
|
779
|
+
</brush>
|
|
780
|
+
</colorrole>
|
|
781
|
+
<colorrole role="ToolTipBase">
|
|
782
|
+
<brush brushstyle="SolidPattern">
|
|
783
|
+
<color alpha="255">
|
|
784
|
+
<red>255</red>
|
|
785
|
+
<green>255</green>
|
|
786
|
+
<blue>220</blue>
|
|
787
|
+
</color>
|
|
788
|
+
</brush>
|
|
789
|
+
</colorrole>
|
|
790
|
+
<colorrole role="ToolTipText">
|
|
791
|
+
<brush brushstyle="SolidPattern">
|
|
792
|
+
<color alpha="255">
|
|
793
|
+
<red>0</red>
|
|
794
|
+
<green>0</green>
|
|
795
|
+
<blue>0</blue>
|
|
796
|
+
</color>
|
|
797
|
+
</brush>
|
|
798
|
+
</colorrole>
|
|
799
|
+
<colorrole role="PlaceholderText">
|
|
800
|
+
<brush brushstyle="SolidPattern">
|
|
801
|
+
<color alpha="128">
|
|
802
|
+
<red>0</red>
|
|
803
|
+
<green>0</green>
|
|
804
|
+
<blue>0</blue>
|
|
805
|
+
</color>
|
|
806
|
+
</brush>
|
|
807
|
+
</colorrole>
|
|
808
|
+
</active>
|
|
809
|
+
<inactive>
|
|
810
|
+
<colorrole role="WindowText">
|
|
811
|
+
<brush brushstyle="SolidPattern">
|
|
812
|
+
<color alpha="255">
|
|
813
|
+
<red>0</red>
|
|
814
|
+
<green>0</green>
|
|
815
|
+
<blue>0</blue>
|
|
816
|
+
</color>
|
|
817
|
+
</brush>
|
|
818
|
+
</colorrole>
|
|
819
|
+
<colorrole role="Button">
|
|
820
|
+
<brush brushstyle="SolidPattern">
|
|
821
|
+
<color alpha="255">
|
|
822
|
+
<red>255</red>
|
|
823
|
+
<green>255</green>
|
|
824
|
+
<blue>255</blue>
|
|
825
|
+
</color>
|
|
826
|
+
</brush>
|
|
827
|
+
</colorrole>
|
|
828
|
+
<colorrole role="Light">
|
|
829
|
+
<brush brushstyle="SolidPattern">
|
|
830
|
+
<color alpha="255">
|
|
831
|
+
<red>255</red>
|
|
832
|
+
<green>255</green>
|
|
833
|
+
<blue>255</blue>
|
|
834
|
+
</color>
|
|
835
|
+
</brush>
|
|
836
|
+
</colorrole>
|
|
837
|
+
<colorrole role="Midlight">
|
|
838
|
+
<brush brushstyle="SolidPattern">
|
|
839
|
+
<color alpha="255">
|
|
840
|
+
<red>255</red>
|
|
841
|
+
<green>255</green>
|
|
842
|
+
<blue>255</blue>
|
|
843
|
+
</color>
|
|
844
|
+
</brush>
|
|
845
|
+
</colorrole>
|
|
846
|
+
<colorrole role="Dark">
|
|
847
|
+
<brush brushstyle="SolidPattern">
|
|
848
|
+
<color alpha="255">
|
|
849
|
+
<red>127</red>
|
|
850
|
+
<green>127</green>
|
|
851
|
+
<blue>127</blue>
|
|
852
|
+
</color>
|
|
853
|
+
</brush>
|
|
854
|
+
</colorrole>
|
|
855
|
+
<colorrole role="Mid">
|
|
856
|
+
<brush brushstyle="SolidPattern">
|
|
857
|
+
<color alpha="255">
|
|
858
|
+
<red>170</red>
|
|
859
|
+
<green>170</green>
|
|
860
|
+
<blue>170</blue>
|
|
861
|
+
</color>
|
|
862
|
+
</brush>
|
|
863
|
+
</colorrole>
|
|
864
|
+
<colorrole role="Text">
|
|
865
|
+
<brush brushstyle="SolidPattern">
|
|
866
|
+
<color alpha="255">
|
|
867
|
+
<red>0</red>
|
|
868
|
+
<green>0</green>
|
|
869
|
+
<blue>0</blue>
|
|
870
|
+
</color>
|
|
871
|
+
</brush>
|
|
872
|
+
</colorrole>
|
|
873
|
+
<colorrole role="BrightText">
|
|
874
|
+
<brush brushstyle="SolidPattern">
|
|
875
|
+
<color alpha="255">
|
|
876
|
+
<red>255</red>
|
|
877
|
+
<green>255</green>
|
|
878
|
+
<blue>255</blue>
|
|
879
|
+
</color>
|
|
880
|
+
</brush>
|
|
881
|
+
</colorrole>
|
|
882
|
+
<colorrole role="ButtonText">
|
|
883
|
+
<brush brushstyle="SolidPattern">
|
|
884
|
+
<color alpha="255">
|
|
885
|
+
<red>0</red>
|
|
886
|
+
<green>0</green>
|
|
887
|
+
<blue>0</blue>
|
|
888
|
+
</color>
|
|
889
|
+
</brush>
|
|
890
|
+
</colorrole>
|
|
891
|
+
<colorrole role="Base">
|
|
892
|
+
<brush brushstyle="SolidPattern">
|
|
893
|
+
<color alpha="255">
|
|
894
|
+
<red>255</red>
|
|
895
|
+
<green>255</green>
|
|
896
|
+
<blue>255</blue>
|
|
897
|
+
</color>
|
|
898
|
+
</brush>
|
|
899
|
+
</colorrole>
|
|
900
|
+
<colorrole role="Window">
|
|
901
|
+
<brush brushstyle="SolidPattern">
|
|
902
|
+
<color alpha="255">
|
|
903
|
+
<red>255</red>
|
|
904
|
+
<green>255</green>
|
|
905
|
+
<blue>255</blue>
|
|
906
|
+
</color>
|
|
907
|
+
</brush>
|
|
908
|
+
</colorrole>
|
|
909
|
+
<colorrole role="Shadow">
|
|
910
|
+
<brush brushstyle="SolidPattern">
|
|
911
|
+
<color alpha="255">
|
|
912
|
+
<red>0</red>
|
|
913
|
+
<green>0</green>
|
|
914
|
+
<blue>0</blue>
|
|
915
|
+
</color>
|
|
916
|
+
</brush>
|
|
917
|
+
</colorrole>
|
|
918
|
+
<colorrole role="AlternateBase">
|
|
919
|
+
<brush brushstyle="SolidPattern">
|
|
920
|
+
<color alpha="255">
|
|
921
|
+
<red>255</red>
|
|
922
|
+
<green>255</green>
|
|
923
|
+
<blue>255</blue>
|
|
924
|
+
</color>
|
|
925
|
+
</brush>
|
|
926
|
+
</colorrole>
|
|
927
|
+
<colorrole role="ToolTipBase">
|
|
928
|
+
<brush brushstyle="SolidPattern">
|
|
929
|
+
<color alpha="255">
|
|
930
|
+
<red>255</red>
|
|
931
|
+
<green>255</green>
|
|
932
|
+
<blue>220</blue>
|
|
933
|
+
</color>
|
|
934
|
+
</brush>
|
|
935
|
+
</colorrole>
|
|
936
|
+
<colorrole role="ToolTipText">
|
|
937
|
+
<brush brushstyle="SolidPattern">
|
|
938
|
+
<color alpha="255">
|
|
939
|
+
<red>0</red>
|
|
940
|
+
<green>0</green>
|
|
941
|
+
<blue>0</blue>
|
|
942
|
+
</color>
|
|
943
|
+
</brush>
|
|
944
|
+
</colorrole>
|
|
945
|
+
<colorrole role="PlaceholderText">
|
|
946
|
+
<brush brushstyle="SolidPattern">
|
|
947
|
+
<color alpha="128">
|
|
948
|
+
<red>0</red>
|
|
949
|
+
<green>0</green>
|
|
950
|
+
<blue>0</blue>
|
|
951
|
+
</color>
|
|
952
|
+
</brush>
|
|
953
|
+
</colorrole>
|
|
954
|
+
</inactive>
|
|
955
|
+
<disabled>
|
|
956
|
+
<colorrole role="WindowText">
|
|
957
|
+
<brush brushstyle="SolidPattern">
|
|
958
|
+
<color alpha="255">
|
|
959
|
+
<red>127</red>
|
|
960
|
+
<green>127</green>
|
|
961
|
+
<blue>127</blue>
|
|
962
|
+
</color>
|
|
963
|
+
</brush>
|
|
964
|
+
</colorrole>
|
|
965
|
+
<colorrole role="Button">
|
|
966
|
+
<brush brushstyle="SolidPattern">
|
|
967
|
+
<color alpha="255">
|
|
968
|
+
<red>255</red>
|
|
969
|
+
<green>255</green>
|
|
970
|
+
<blue>255</blue>
|
|
971
|
+
</color>
|
|
972
|
+
</brush>
|
|
973
|
+
</colorrole>
|
|
974
|
+
<colorrole role="Light">
|
|
975
|
+
<brush brushstyle="SolidPattern">
|
|
976
|
+
<color alpha="255">
|
|
977
|
+
<red>255</red>
|
|
978
|
+
<green>255</green>
|
|
979
|
+
<blue>255</blue>
|
|
980
|
+
</color>
|
|
981
|
+
</brush>
|
|
982
|
+
</colorrole>
|
|
983
|
+
<colorrole role="Midlight">
|
|
984
|
+
<brush brushstyle="SolidPattern">
|
|
985
|
+
<color alpha="255">
|
|
986
|
+
<red>255</red>
|
|
987
|
+
<green>255</green>
|
|
988
|
+
<blue>255</blue>
|
|
989
|
+
</color>
|
|
990
|
+
</brush>
|
|
991
|
+
</colorrole>
|
|
992
|
+
<colorrole role="Dark">
|
|
993
|
+
<brush brushstyle="SolidPattern">
|
|
994
|
+
<color alpha="255">
|
|
995
|
+
<red>127</red>
|
|
996
|
+
<green>127</green>
|
|
997
|
+
<blue>127</blue>
|
|
998
|
+
</color>
|
|
999
|
+
</brush>
|
|
1000
|
+
</colorrole>
|
|
1001
|
+
<colorrole role="Mid">
|
|
1002
|
+
<brush brushstyle="SolidPattern">
|
|
1003
|
+
<color alpha="255">
|
|
1004
|
+
<red>170</red>
|
|
1005
|
+
<green>170</green>
|
|
1006
|
+
<blue>170</blue>
|
|
1007
|
+
</color>
|
|
1008
|
+
</brush>
|
|
1009
|
+
</colorrole>
|
|
1010
|
+
<colorrole role="Text">
|
|
1011
|
+
<brush brushstyle="SolidPattern">
|
|
1012
|
+
<color alpha="255">
|
|
1013
|
+
<red>127</red>
|
|
1014
|
+
<green>127</green>
|
|
1015
|
+
<blue>127</blue>
|
|
1016
|
+
</color>
|
|
1017
|
+
</brush>
|
|
1018
|
+
</colorrole>
|
|
1019
|
+
<colorrole role="BrightText">
|
|
1020
|
+
<brush brushstyle="SolidPattern">
|
|
1021
|
+
<color alpha="255">
|
|
1022
|
+
<red>255</red>
|
|
1023
|
+
<green>255</green>
|
|
1024
|
+
<blue>255</blue>
|
|
1025
|
+
</color>
|
|
1026
|
+
</brush>
|
|
1027
|
+
</colorrole>
|
|
1028
|
+
<colorrole role="ButtonText">
|
|
1029
|
+
<brush brushstyle="SolidPattern">
|
|
1030
|
+
<color alpha="255">
|
|
1031
|
+
<red>127</red>
|
|
1032
|
+
<green>127</green>
|
|
1033
|
+
<blue>127</blue>
|
|
1034
|
+
</color>
|
|
1035
|
+
</brush>
|
|
1036
|
+
</colorrole>
|
|
1037
|
+
<colorrole role="Base">
|
|
1038
|
+
<brush brushstyle="SolidPattern">
|
|
1039
|
+
<color alpha="255">
|
|
1040
|
+
<red>255</red>
|
|
1041
|
+
<green>255</green>
|
|
1042
|
+
<blue>255</blue>
|
|
1043
|
+
</color>
|
|
1044
|
+
</brush>
|
|
1045
|
+
</colorrole>
|
|
1046
|
+
<colorrole role="Window">
|
|
1047
|
+
<brush brushstyle="SolidPattern">
|
|
1048
|
+
<color alpha="255">
|
|
1049
|
+
<red>255</red>
|
|
1050
|
+
<green>255</green>
|
|
1051
|
+
<blue>255</blue>
|
|
1052
|
+
</color>
|
|
1053
|
+
</brush>
|
|
1054
|
+
</colorrole>
|
|
1055
|
+
<colorrole role="Shadow">
|
|
1056
|
+
<brush brushstyle="SolidPattern">
|
|
1057
|
+
<color alpha="255">
|
|
1058
|
+
<red>0</red>
|
|
1059
|
+
<green>0</green>
|
|
1060
|
+
<blue>0</blue>
|
|
1061
|
+
</color>
|
|
1062
|
+
</brush>
|
|
1063
|
+
</colorrole>
|
|
1064
|
+
<colorrole role="AlternateBase">
|
|
1065
|
+
<brush brushstyle="SolidPattern">
|
|
1066
|
+
<color alpha="255">
|
|
1067
|
+
<red>255</red>
|
|
1068
|
+
<green>255</green>
|
|
1069
|
+
<blue>255</blue>
|
|
1070
|
+
</color>
|
|
1071
|
+
</brush>
|
|
1072
|
+
</colorrole>
|
|
1073
|
+
<colorrole role="ToolTipBase">
|
|
1074
|
+
<brush brushstyle="SolidPattern">
|
|
1075
|
+
<color alpha="255">
|
|
1076
|
+
<red>255</red>
|
|
1077
|
+
<green>255</green>
|
|
1078
|
+
<blue>220</blue>
|
|
1079
|
+
</color>
|
|
1080
|
+
</brush>
|
|
1081
|
+
</colorrole>
|
|
1082
|
+
<colorrole role="ToolTipText">
|
|
1083
|
+
<brush brushstyle="SolidPattern">
|
|
1084
|
+
<color alpha="255">
|
|
1085
|
+
<red>0</red>
|
|
1086
|
+
<green>0</green>
|
|
1087
|
+
<blue>0</blue>
|
|
1088
|
+
</color>
|
|
1089
|
+
</brush>
|
|
1090
|
+
</colorrole>
|
|
1091
|
+
<colorrole role="PlaceholderText">
|
|
1092
|
+
<brush brushstyle="SolidPattern">
|
|
1093
|
+
<color alpha="128">
|
|
1094
|
+
<red>0</red>
|
|
1095
|
+
<green>0</green>
|
|
1096
|
+
<blue>0</blue>
|
|
1097
|
+
</color>
|
|
1098
|
+
</brush>
|
|
1099
|
+
</colorrole>
|
|
1100
|
+
</disabled>
|
|
1101
|
+
</palette>
|
|
1102
|
+
</property>
|
|
1103
|
+
<property name="toolTip">
|
|
1104
|
+
<string>Text Color</string>
|
|
1105
|
+
</property>
|
|
1106
|
+
<property name="text">
|
|
1107
|
+
<string/>
|
|
1108
|
+
</property>
|
|
1109
|
+
</widget>
|
|
1110
|
+
</item>
|
|
1111
|
+
</layout>
|
|
1112
|
+
</item>
|
|
1113
|
+
<item row="5" column="0">
|
|
1114
|
+
<widget class="QLabel" name="label_3">
|
|
1115
|
+
<property name="text">
|
|
1116
|
+
<string>Command:</string>
|
|
1117
|
+
</property>
|
|
1118
|
+
</widget>
|
|
1119
|
+
</item>
|
|
1120
|
+
<item row="5" column="1">
|
|
1121
|
+
<widget class="QLineEdit" name="command"/>
|
|
1122
|
+
</item>
|
|
1123
|
+
<item row="7" column="0">
|
|
1124
|
+
<widget class="QLabel" name="label_5">
|
|
1125
|
+
<property name="text">
|
|
1126
|
+
<string>Press Keys:</string>
|
|
1127
|
+
</property>
|
|
1128
|
+
</widget>
|
|
1129
|
+
</item>
|
|
1130
|
+
<item row="7" column="1">
|
|
1131
|
+
<widget class="QLineEdit" name="keys"/>
|
|
1132
|
+
</item>
|
|
1133
|
+
<item row="8" column="0">
|
|
1134
|
+
<widget class="QLabel" name="label_8">
|
|
1135
|
+
<property name="text">
|
|
1136
|
+
<string>Switch Page:</string>
|
|
1137
|
+
</property>
|
|
1138
|
+
</widget>
|
|
1139
|
+
</item>
|
|
1140
|
+
<item row="8" column="1">
|
|
1141
|
+
<widget class="QSpinBox" name="switch_page">
|
|
1142
|
+
<property name="minimum">
|
|
1143
|
+
<number>0</number>
|
|
1144
|
+
</property>
|
|
1145
|
+
<property name="maximum">
|
|
1146
|
+
<number>999999999</number>
|
|
1147
|
+
</property>
|
|
1148
|
+
<property name="value">
|
|
1149
|
+
<number>0</number>
|
|
1150
|
+
</property>
|
|
1151
|
+
</widget>
|
|
1152
|
+
</item>
|
|
1153
|
+
<item row="9" column="0">
|
|
1154
|
+
<widget class="QLabel" name="label_10">
|
|
1155
|
+
<property name="text">
|
|
1156
|
+
<string>Switch state</string>
|
|
1157
|
+
</property>
|
|
1158
|
+
</widget>
|
|
1159
|
+
</item>
|
|
1160
|
+
<item row="9" column="1">
|
|
1161
|
+
<widget class="QSpinBox" name="switch_state">
|
|
1162
|
+
<property name="maximum">
|
|
1163
|
+
<number>999999999</number>
|
|
1164
|
+
</property>
|
|
1165
|
+
</widget>
|
|
1166
|
+
</item>
|
|
1167
|
+
<item row="10" column="0">
|
|
1168
|
+
<widget class="QLabel" name="label_7">
|
|
1169
|
+
<property name="text">
|
|
1170
|
+
<string>Brightness +/-:</string>
|
|
1171
|
+
</property>
|
|
1172
|
+
</widget>
|
|
1173
|
+
</item>
|
|
1174
|
+
<item row="10" column="1">
|
|
1175
|
+
<widget class="QSpinBox" name="change_brightness">
|
|
1176
|
+
<property name="minimum">
|
|
1177
|
+
<number>-99</number>
|
|
1178
|
+
</property>
|
|
1179
|
+
</widget>
|
|
1180
|
+
</item>
|
|
1181
|
+
<item row="11" column="0">
|
|
1182
|
+
<widget class="QLabel" name="label_6">
|
|
1183
|
+
<property name="text">
|
|
1184
|
+
<string>Write Text:</string>
|
|
1185
|
+
</property>
|
|
1186
|
+
</widget>
|
|
1187
|
+
</item>
|
|
1188
|
+
<item row="11" column="1">
|
|
1189
|
+
<widget class="QPlainTextEdit" name="write"/>
|
|
1190
|
+
</item>
|
|
1191
|
+
<item row="12" column="0">
|
|
1192
|
+
<widget class="QLabel" name="label_force_refresh">
|
|
1193
|
+
<property name="text">
|
|
1194
|
+
<string>Force Refresh:</string>
|
|
1195
|
+
</property>
|
|
1196
|
+
</widget>
|
|
1197
|
+
</item>
|
|
1198
|
+
<item row="12" column="1">
|
|
1199
|
+
<widget class="QCheckBox" name="force_refresh">
|
|
1200
|
+
<property name="toolTip">
|
|
1201
|
+
<string>Force icon refresh after command execution</string>
|
|
1202
|
+
</property>
|
|
1203
|
+
<property name="text">
|
|
1204
|
+
<string>Refresh icon after command</string>
|
|
1205
|
+
</property>
|
|
1206
|
+
</widget>
|
|
1207
|
+
</item>
|
|
1208
|
+
</layout>
|
|
1209
|
+
</widget>
|
|
1210
|
+
<resources>
|
|
1211
|
+
<include location="resources.qrc"/>
|
|
1212
|
+
</resources>
|
|
1213
|
+
<connections/>
|
|
1214
|
+
</ui>
|