-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathusing-a-custom-pu-pyui-view-in-another-one-using-ui-editor.py
131 lines (101 loc) · 3.05 KB
/
using-a-custom-pu-pyui-view-in-another-one-using-ui-editor.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
# coding: utf-8
# https://gist.github.com/Phuket2/2d0264259cfe93a85b7c
# https://forum.omz-software.com/topic/2154/using-a-custom-pu-pyui-view-in-another-one-using-ui-editor/18
from __future__ import print_function
f_str = [
{
"selected" : False,
"frame" : "{{0, 0}, {320, 480}}",
"class" : "View",
"nodes" : [
{
"selected" : False,
"frame" : "{{0, 233}, {320, 32}}",
"class" : "Label",
"nodes" : [
],
"attributes" : {
"font_size" : 18,
"frame" : "{{85, 224}, {150, 32}}",
"uuid" : "A3B25306-C09D-4D06-9807-E0ED85179733",
"text" : "Example Panel",
"alignment" : "center",
"class" : "Label",
"name" : "label1",
"font_name" : "<System>"
}
}
],
"attributes" : {
"custom_class" : "selfwrapper",
"enabled" : True,
"background_color" : "RGBA(1.000000,1.000000,1.000000,1.000000)",
"tint_color" : "RGBA(0.000000,0.478000,1.000000,1.000000)",
"border_color" : "RGBA(0.000000,0.000000,0.000000,1.000000)",
"flex" : ""
}
}
]
import ui
import json
class PYUILoader(ui.View):
'''
loads a pyui file into the class, acts as another ui.View
class.
** Please note that the pyui class must have its
Custom Class attr set todo:
Thanks @JonB
'''
def __init__(self, pyui_rec):
if not pyui_rec:
# silent fail is ok
return
if not isinstance(pyui_rec, dict) or \
'type' not in pyui_rec or \
'data' not in pyui_rec or \
'raw' not in pyui_rec :
raise TypeError('''Expected a dict with keys,
key, data and raw defined''')
if not pyui_rec.get('type') or \
not pyui_rec.get('data'):
raise TypeError('Both type and data values need to be present')
class selfwrapper(ui.View):
def __new__(cls):
return self
if pyui_rec.get('type') == 'pyui_file':
ui.load_view( pyui_rec.get('data') ,
bindings={'selfwrapper':selfwrapper, 'self':self})
elif pyui_rec.get('type') == 'pyui_str' :
if pyui_rec.get('raw', False):
pyui_rec['data'] = json.dumps(pyui_rec.get('data',''))
ui.load_view_str(pyui_rec.get('data',''),
bindings={'selfwrapper':selfwrapper, 'self':self})
self.loaded_type = pyui_rec.get('type')
class PanelHelp (object):
def __init__(self):
# if set, we expect that self.dismiss_callback
# will be set by the caller
print('in here')
self.will_dismiss = False
self.panel_result = None
self.dismiss_callback = None
self.panel_result = None
return self
def call_dismiss(self):
if self.dismiss_callback:
self.dismiss_callback()
def will_close(self):
# make sure our result is posted, then release
self.release()
def release(self):
pass
class CountriesPanel(PYUILoader, PanelHelp):
def __init__(self, pyui_rec):
PYUILoader.__init__(self, pyui_rec)
PanelHelp.__init__(self)
self.populate_data()
def populate_data(self):
pass
if __name__ == '__main__':
cp = CountriesPanel(dict(type = 'pyui_str', data = f_str, raw = True ))
cp.present('sheet')