-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathGUI_Helper.py
738 lines (617 loc) · 22.2 KB
/
GUI_Helper.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
#!/usr/bin/env python
#coding: utf-8
# https://gist.github.com/nekotaroneko/5ed9a7a95ed9e26f0c960b299aba23ef
# https://forum.omz-software.com/topic/3855/i-made-gui-helper
from __future__ import print_function
import json
import ui
import os
import console,editor
import sys
class GUI_Helper(object):
def __init__(self, pyui_path, extra_func_mode=False, remove_title_bar=False, remove_status_bar=False):
self.sub_view_flag = False
with open(pyui_path) as f:
json_str = f.read()
#print json_str
view_dict = json.loads(json_str)[0]
attrs = view_dict.get('attributes', {})
name = os.path.splitext(os.path.basename(pyui_path))[0]
class_title = console.input_alert('Class Title','',name)
view_title = attrs.get('name', 'Untitled')
self.view_title = 'Untitled' if view_title == '' else view_title
print('title:'+self.view_title)
relpath = os.path.relpath(pyui_path, to_abs_path())
if remove_status_bar or remove_title_bar:
imp_obj = 'import objc_util'
remove_bar_def = '''def find_nav_bar(v):
sv=v.superview()
if sv:
for c in sv.subviews():
if c._get_objc_classname()==b'UINavigationBar':
return c
return find_nav_bar(sv)
@objc_util.on_main_thread
def remove_title_bar(v):
navbar=find_nav_bar(objc_util.ObjCInstance(v))
if navbar:
navbar.hidden=True
v.frame =(0,0,ui.get_screen_size()[0],ui.get_screen_size()[1])
def hide_status_bar():
objc_util.UIApplication.sharedApplication().statusBar().hidden = True
'''
else:
imp_obj = ''
remove_bar_def = ''
self.init_text = '''#!/usr/bin/env python
#coding: utf-8
import ui
import speech
{imp_obj}
def to_abs_path(*value):
import os
abs_path = os.path.join(os.path.expanduser('~'),'Documents')
for _value in value:
abs_path = os.path.join(abs_path,_value)
return abs_path
{remove_bar_def}
'''.format(class_title=class_title, view_title=self.view_title, relpath=relpath, imp_obj=imp_obj, remove_bar_def=remove_bar_def)
if extra_func_mode:
self.init_text += '''
class {class_title}(ui.View):
def __init__(self, view):
self.{view_title} = view'''.format(class_title=class_title, view_title=self.view_title)
else:
self.init_text += '''
class {class_title}(object):
def __init__(self):
self.{view_title} = ui.load_view(to_abs_path('{relpath}'))'''.format(class_title=class_title, view_title=self.view_title, relpath=relpath)
self.def_text = ''
self.view_from_dict(view_dict) #making text
extra_func_text = '''
class _{class_title}({class_title}):
def __init__(self):
pass
def did_load(self):
self.main_view = {class_title}(self)
def will_close(self):
speech.say('close', 'en-US')
def touch_began(self, touch):
# Called when a touch begins.
pass
def touch_moved(self, touch):
# Called when a touch moves.
pass
def touch_ended(self, touch):
# Called when a touch ends.
pass
v = ui.load_view(to_abs_path('{relpath}'))
v.present()
'''.format(class_title=class_title, relpath=relpath)
self.text = self.init_text
self.text += '''
self.{view_title}.present()'''.format(view_title=self.view_title) if not extra_func_mode else ''
if not extra_func_mode:
if remove_status_bar:
self.text += '''
hide_status_bar()'''
if remove_title_bar:
self.text += '''
remove_title_bar(self.{view_title})'''.format(view_title=self.view_title)
self.text += '''
{def_text}
'''.format(init_text=self.init_text, def_text=self.def_text, view_title=self.view_title,class_title=class_title)
if extra_func_mode:
add_custom_class(pyui_path, '_'+class_title)
self.text += extra_func_text
if remove_status_bar:
self.text += '''
hide_status_bar()'''
if remove_title_bar:
self.text += '''
remove_title_bar(v)'''
else:
add_custom_class(pyui_path, 'ui.View')
self.text += '''
{class_title}()'''.format(class_title=class_title)
def view_from_dict(self, view_dict):
attrs = view_dict.get('attributes', {})
classname = view_dict.get('class', 'View')
ViewClass = ui.__dict__.get(classname)
if not ViewClass:
return None
title = attrs.get('name', 'Untitled')
if classname == 'View':
if not title == self.view_title:
#print 'subview title'+title
self.sub_view_name = title
self.sub_view_flag = True
self.init_text += '''
self.{title} = self.{view_title}['{title}']'''.format(title=title, view_title=self.view_title)
if self.sub_view_flag:
self.sub_view = '''{sub_view_name}['{title}']'''.format(sub_view_name=self.sub_view_name, title=title)
else:
self.sub_view = '''{view_title}['{title}']'''.format(view_title=self.view_title, title=title)
if classname == 'Label':
print('label')
elif classname == 'TextField':
print('TextField')
self.init_text += '''
self.{title} = self.{_title}
self.{title}.delegate = self.{title}_Delegate
self.{title}.delegate.textfield_did_change = self.{title}_did_change
self.{title}.autocorrection_type = False
self.{title}.spellchecking_type =False
self.{title}.autocapitalization_type = ui.AUTOCAPITALIZE_NONE
'''.format(title=title, view_title=self.view_title, _title=self.sub_view)
self.def_text += '''
class {title}_Delegate():
pass
def {title}_did_change(self, textfield):
speech.say('{title}', 'en-US')
pass
'''.format(title=title)
elif classname == 'TextView':
print('TextView')
elif classname == 'Button':
print('Button')
self.init_text += '''
self.{title} = self.{_title}
self.{title}.action = self.{title}_action
'''.format(title=title, view_title=self.view_title, _title=self.sub_view)
self.def_text += '''
def {title}_action(self, sender):
speech.say('{title}', 'en-US')
pass
'''.format(title=title)
elif classname == 'Slider':
print('Slider')
self.init_text += '''
self.{title} = self.{_title}
self.{title}.continuous = False
self.{title}.action = self.{title}_action
'''.format(title=title, view_title=self.view_title, _title=self.sub_view)
self.def_text += '''
def {title}_action(self, sender):
speech.say('{title}', 'en-US')
pass
'''.format(title=title)
elif classname == 'Switch':
print('Switch')
print(title)
self.init_text += '''
self.{title} = self.{_title}
self.{title}.action = self.{title}_action
'''.format(title=title, view_title=self.view_title, _title=self.sub_view)
self.def_text += '''
def {title}_action(self, sender):
speech.say('{title}', 'en-US')
pass
'''.format(title=title)
elif classname == 'SegmentedControl':
print('SegmentedControl')
self.init_text += '''
self.{title} = self.{_title}
self.{title}.action = self.{title}_action
'''.format(title=title, view_title=self.view_title, _title=self.sub_view)
self.def_text += '''
def {title}_action(self, sender):
speech.say('{title}', 'en-US')
pass
'''.format(title=title)
elif classname == 'WebView':
print('WebView')
'''v.scales_page_to_fit = attrs.get('scales_to_fit')'''
elif classname == 'TableView':
print('TableView')
self.init_text += '''
self.{title} = self.{_title}
self.{title}.data_source.items = ['Item1', 'Item2', 'Item3']
self.{title}.data_source.tableview_cell_for_row = self.{title}_cell_for_row
self.{title}.data_source.tableview_delete = self.{title}_delete
self.{title}.delegate.tableview_did_select = self.{title}_did_select
self.{title}.delegate.tableview_accessory_button_tapped = self.{title}_info_btn
'''.format(title=title, view_title=self.view_title ,_title=self.sub_view)
self.def_text += '''
def {title}_cell_for_row(self, tableview, section, row):
lst = tableview.data_source
cell = ui.TableViewCell('subtitle')
cell.detail_text_label.text_color = '#757575'
selected_item = lst.items[row]
cell.text_label.text = selected_item
cell.accessory_type = 'detail_button'
return cell
def {title}_did_select(self, tableview, section, row):
lst = tableview.data_source
selected_item = lst.items[row]
lst.selected_row = row
if lst.action:
lst.action(lst)
speech.say(selected_item, 'en-US')
def {title}_delete(self, tableview, section, row):
lst = tableview.data_source
selected_item = lst.items[row]
del lst.items[row]
def {title}_info_btn(self, tableview, section, row):
import console
lst = tableview.data_source
selected_item = lst.items[row]
console.hud_alert(selected_item)
'''.format(title=title)
elif classname == 'DatePicker':
print('DatePicker')
elif classname == 'ScrollView':
print('ScrollView')
elif classname == 'ImageView':
print('ImageView')
'''image_name = attrs.get('image_name')
if image_name:
v.image = Image.named(image_name)'''
custom_attr_str = attrs.get('custom_attributes')
if custom_attr_str:
try:
f_locals['this'] = v
custom_attributes = eval(custom_attr_str, f_globals, f_locals)
if isinstance(custom_attributes, dict):
for key, value in custom_attributes.iteritems():
setattr(v, key, value)
elif custom_attributes:
sys.stderr.write('Warning: Custom attributes of view "%s" are not a dict\n' % (v.name,))
except Exception as e:
sys.stderr.write('Warning: Could not load custom attributes of view "%s": %s\n' % (v.name, e))
finally:
del f_locals['this']
subview_dicts = view_dict.get('nodes', [])
for d in subview_dicts:
#print attrs['name']
subview = self.view_from_dict(d)
self.sub_view_flag = False
######file picker#####
def file_picker(title=None, root_dir=None, multiple=False,
select_dirs=False, file_pattern=None, show_size=True):
#files = file_picker('Pick files', multiple=True, select_dirs=True, file_pattern=r'^.+$')
import ui
from objc_util import ObjCInstance, ObjCClass
from operator import attrgetter
import functools
import ftplib,re
class TreeNode (object):
def __init__(self):
self.expanded = False
self.children = None
self.leaf = True
self.title = ''
self.subtitle = ''
self.icon_name = None
self.level = 0
self.enabled = True
def expand_children(self):
self.expanded = True
self.children = []
def collapse_children(self):
self.expanded = False
def __repr__(self):
return '<TreeNode: "%s"%s>' % (self.title, ' (expanded)' if self.expanded else '')
class FileTreeNode (TreeNode):
def __init__(self, path, show_size=True, select_dirs=True,
file_pattern=None):
TreeNode.__init__(self)
self.path = path
self.title = os.path.split(path)[1]
self.select_dirs = select_dirs
self.file_pattern = file_pattern
is_dir = os.path.isdir(path)
self.leaf = not is_dir
ext = os.path.splitext(path)[1].lower()
if is_dir:
self.icon_name = 'Folder'
elif ext == '.py':
self.icon_name = 'FilePY'
elif ext == '.pyui':
self.icon_name = 'FileUI'
elif ext in ('.png', '.jpg', '.jpeg', '.gif'):
self.icon_name = 'FileImage'
else:
self.icon_name = 'FileOther'
self.show_size = show_size
if not is_dir and show_size:
self.subtitle = human_size((os.stat(self.path).st_size))
if is_dir and not select_dirs:
self.enabled = False
elif not is_dir:
filename = os.path.split(path)[1]
self.enabled = not file_pattern or re.match(file_pattern, filename)
@property
def cmp_title(self):
return self.title.lower()
def expand_children(self):
if self.children is not None:
self.expanded = True
return
files = os.listdir(self.path)
children = []
for i,filename in enumerate(files):
if filename.startswith('.'):
continue
full_path = os.path.join(self.path, filename)
node = FileTreeNode(full_path, self.show_size, self.select_dirs, self.file_pattern)
node.level = self.level + 1
children.append(node)
self.expanded = True
self.children = sorted(children, key=attrgetter('leaf', 'cmp_title'))
class TreeDialogController (object):
def __init__(self, root_node, allow_multi=False, async_mode=False):
self.async_mode = async_mode
self.allow_multi = allow_multi
self.selected_entries = None
self.table_view = ui.TableView()
self.table_view.frame = (0, 0, 500, 500)
self.table_view.data_source = self
self.table_view.delegate = self
self.table_view.flex = 'WH'
self.table_view.allows_multiple_selection = True
self.table_view.tint_color = 'gray'
self.view = ui.View(frame=self.table_view.frame)
self.view.add_subview(self.table_view)
self.view.name = root_node.title
self.busy_view = ui.View(frame=self.view.bounds, flex='WH', background_color=(0, 0, 0, 0.35))
hud = ui.View(frame=(self.view.center.x - 50, self.view.center.y - 50, 100, 100))
hud.background_color = (0, 0, 0, 0.7)
hud.corner_radius = 8.0
hud.flex = 'TLRB'
spinner = ui.ActivityIndicator()
spinner.style = ui.ACTIVITY_INDICATOR_STYLE_WHITE_LARGE
spinner.center = (50, 50)
spinner.start_animating()
hud.add_subview(spinner)
self.busy_view.add_subview(hud)
self.busy_view.alpha = 0.0
self.view.add_subview(self.busy_view)
self.done_btn = ui.ButtonItem(title='Done', action=self.done_action)
self.root_btn = ui.ButtonItem(title='Root', action=self.root_btn_action)
self.mobile_btn = ui.ButtonItem(title='Mobile', action=self.mobile_btn_action)
if self.allow_multi:
self.view.right_button_items = [self.done_btn, self.mobile_btn, self.root_btn]
self.done_btn.enabled = False
self.root_node = root_node
self.entries = []
self.flat_entries = []
if self.async_mode:
self.set_busy(True)
t = threading.Thread(target=self.expand_root)
t.start()
else:
self.expand_root()
def expand_root(self):
self.root_node.expand_children()
self.set_busy(False)
self.entries = self.root_node.children
self.flat_entries = self.entries
self.table_view.reload()
def flatten_entries(self, entries, dest=None):
if dest is None:
dest = []
for entry in entries:
dest.append(entry)
if not entry.leaf and entry.expanded:
self.flatten_entries(entry.children, dest)
return dest
def rebuild_flat_entries(self):
self.flat_entries = self.flatten_entries(self.entries)
def tableview_number_of_rows(self, tv, section):
return len(self.flat_entries)
def tableview_cell_for_row(self, tv, section, row):
cell = ui.TableViewCell()
entry = self.flat_entries[row]
level = entry.level - 1
image_view = ui.ImageView(frame=(44 + 20*level, 5, 34, 34))
label_x = 44+34+8+20*level
label_w = cell.content_view.bounds.w - label_x - 8
if entry.subtitle:
label_frame = (label_x, 0, label_w, 26)
sub_label = ui.Label(frame=(label_x, 26, label_w, 14))
sub_label.font = ('<System>', 12)
sub_label.text = entry.subtitle
sub_label.text_color = '#999'
cell.content_view.add_subview(sub_label)
else:
label_frame = (label_x, 0, label_w, 44)
label = ui.Label(frame=label_frame)
if entry.subtitle:
label.font = ('<System>', 15)
else:
label.font = ('<System>', 18)
label.text = entry.title
label.flex = 'W'
cell.content_view.add_subview(label)
if entry.leaf and not entry.enabled:
label.text_color = '#999'
cell.content_view.add_subview(image_view)
if not entry.leaf:
has_children = entry.expanded
btn = ui.Button(image=ui.Image.named('CollapseFolder' if has_children else 'ExpandFolder'))
btn.frame = (20*level, 0, 44, 44)
btn.action = self.expand_dir_action
cell.content_view.add_subview(btn)
if entry.icon_name:
image_view.image = ui.Image.named(entry.icon_name)
else:
image_view.image = None
cell.selectable = entry.enabled
return cell
def row_for_view(self, sender):
'''Helper to find the row index for an 'expand' button'''
cell = ObjCInstance(sender)
while not cell.isKindOfClass_(ObjCClass('UITableViewCell')):
cell = cell.superview()
return ObjCInstance(self.table_view).indexPathForCell_(cell).row()
def expand_dir_action(self, sender):
'''Invoked by 'expand' button'''
row = self.row_for_view(sender)
entry = self.flat_entries[row]
if entry.expanded:
sender.image = ui.Image.named('ExpandFolder')
else:
sender.image = ui.Image.named('CollapseFolder')
self.toggle_dir(row)
self.update_done_btn()
def toggle_dir(self, row):
'''Expand or collapse a folder node'''
entry = self.flat_entries[row]
if entry.expanded:
entry.collapse_children()
old_len = len(self.flat_entries)
self.rebuild_flat_entries()
num_deleted = old_len - len(self.flat_entries)
deleted_rows = range(row + 1, row + num_deleted + 1)
self.table_view.delete_rows(deleted_rows)
else:
if self.async_mode:
self.set_busy(True)
expand = functools.partial(self.do_expand, entry, row)
t = threading.Thread(target=expand)
t.start()
else:
self.do_expand(entry, row)
def do_expand(self, entry, row):
'''Actual folder expansion (called on background thread if async_mode is enabled)'''
entry.expand_children()
self.set_busy(False)
old_len = len(self.flat_entries)
self.rebuild_flat_entries()
num_inserted = len(self.flat_entries) - old_len
inserted_rows = range(row + 1, row + num_inserted + 1)
self.table_view.insert_rows(inserted_rows)
def tableview_did_select(self, tv, section, row):
self.update_done_btn()
def tableview_did_deselect(self, tv, section, row):
self.update_done_btn()
def update_done_btn(self):
'''Deactivate the done button when nothing is selected'''
selected = [self.flat_entries[i[1]] for i in self.table_view.selected_rows if self.flat_entries[i[1]].enabled]
if selected and not self.allow_multi:
self.done_action(None)
else:
self.done_btn.enabled = len(selected) > 0
def set_busy(self, flag):
'''Show/hide spinner overlay'''
def anim():
self.busy_view.alpha = 1.0 if flag else 0.0
ui.animate(anim)
def done_action(self, sender):
self.selected_entries = [self.flat_entries[i[1]] for i in self.table_view.selected_rows if self.flat_entries[i[1]].enabled]
self.view.close()
def root_btn_action(self, sender):
root_node = FileTreeNode('/', True, True, r'^.+$')
self.root_node = root_node
self.expand_root()
def mobile_btn_action(self, sender):
root_node = FileTreeNode('/var/mobile', True, True, r'^.+$')
self.root_node = root_node
self.expand_root()
if root_dir is None:
root_dir = os.path.expanduser('~/Documents')
if title is None:
title = os.path.split(root_dir)[1]
root_node = FileTreeNode(root_dir, show_size, select_dirs, file_pattern)
root_node.title = title or ''
picker = TreeDialogController(root_node, allow_multi=multiple)
picker.view.present('sheet')
picker.view.wait_modal()
if picker.selected_entries is None:
return None
paths = [e.path for e in picker.selected_entries]
if multiple:
return paths
else:
return paths[0]
######file picker#####
def human_size(size_bytes, no_suffixs=False):
'''Helper function for formatting human-readable file sizes'''
if size_bytes == 1:
return "1 byte"
suffixes_table = [('bytes',0),('KB',0),('MB',1),('GB',2),('TB',2), ('PB',2)]
num = float(size_bytes)
for suffix, precision in suffixes_table:
if num < 1024.0:
break
num /= 1024.0
if precision == 0:
formatted_size = "%d" % num
else:
formatted_size = str(round(num, ndigits=precision))
if not no_suffixs:
return "%s %s" % (formatted_size, suffix)
else:
return formatted_size
def to_abs_path(*value):
import os
abs_path = os.path.join(os.path.expanduser('~'),'Documents')
for _value in value:
abs_path = os.path.join(abs_path,_value)
return abs_path
def add_custom_class(pyui_path, class_name):
with open(pyui_path, 'r') as f:
root_list = json.loads(f.read())
root_view_dict = root_list[0]
#print root_view_dict
root_view_dict['attributes']['custom_class'] = class_name
root_view_str = '[' + json.dumps(root_view_dict) + ']'
with open(pyui_path, 'w') as f:
f.write(root_view_str)
def main(pyui_path, extra_func_mode=False, remove_title_bar=False, remove_status_bar=False):
if not pyui_path:
exit()
if os.path.exists(pyui_path):
a = GUI_Helper(pyui_path, extra_func_mode, remove_title_bar, remove_status_bar)
to_path = os.path.dirname(pyui_path)+'/'+os.path.basename(pyui_path).replace('.pyui','')+'_GUI_Helper.py'
#print a.text
with open(to_path,'w') as f:
f.write(a.text)
editor.open_file(to_path, True)
console.hide_output()
else:
console.hud_alert('pyui not found')
def make_action(sender):
global pyui_path
if not pyui_path:
pyui_path = file_picker('Select pyui file', multiple=False, select_dirs=False, file_pattern=r'^.+.pyui$')
extra_func_mode = v['sw_extra'].value
remove_title_bar = v['sw_remove_title_bar'].value
remove_status_bar = v['sw_remove_status_bar'].value
main(pyui_path, extra_func_mode, remove_title_bar, remove_status_bar)
sender.superview.close()
data = '''\
QlpoOTFBWSZTWXo0qk0ABDLfgHUQcGd/9T+GGQq/75/6UAPc72x3QHYoHBomIjaTBIKMgA
AGQAAA5gE0wCZDAAEwTAAABtIVQGgGjRoaBo9TTTIaaGg0AEUpqbUm1HplPU00DQDQA0AA
yAEUiaGkyYqflJoAAAAA0ND1NJprQXQtqMKo8y2B+/1kglC3ovLALJcK0rIJQDDAQwiU0k
1RUmqruIp76JCTQm0DZpgAoSWT4zxIJ+OX5lU7UJFVZT5/7Lbv+V35Z5BcxIggZahJZBok
MQCe8kKQJMUAVmKveMREl+tDUw9OnOuMuTkwWtT24ezYLSu+spW0BYX7AsUqphjGMp0MIZ
LSaKRAVIVScBBRThoTSS3UnJsvNv3Gh6qJCQkGC5WQMWIuVKQuTFVEpku6iSLvmqTIiciT
zsg67ifUw7bdCU6FUxeoisYdNbtEBiIICACvryMLqSk4TyrjlT2eeIiC5GyBa+5Ez0Xrz1
L0v47AocMVAFpCJ8dwI7dmMSYsym+oKntElryQZMsHQAQrzQLGmmh0AFJWrEaGpAoi3NHt
x4735CcN62wYkc1YO1iRChdNjppDhPCQJjFTe9rFMpIQqC1erhdWUg4aBVfV+eM6kpd7DT
o0IodG0YppLlmFWeqrN5PoeJRyxXyJ3Azg0xVk5LC21o5bHGxMmX0kmxERENS/RViBl77b
XI61CQ31WWJb64svvAWFj3YWk68U2pCTY2EeASTWxSBviM8xq0XwNIbNiF/DVZOw9AkgeT
GMDh2sq+PH2ZN/o6ozZpBKgoC+SPqNr6vzZX7xq/pTk3KWq3BeAWgcCNjpPiJMJ/wCto0t
tVhIzAi+5ZoXYPIC+lvLfiSdGyFTqDpbSIEstIAzAgNULAJuIZ1cZZCFIFZguk3UKaSpc0
TbZ6BrrAtXY1fzCE7+mQydKhzZQY5oV0ZgGVWgG9HnvethzhhYLezpvYI8zQKHCVHADE3/
zMCjjetQMQwclzDNsl1fvLshrwCHIOGuKtHMmWAT0lrsAReAQU4qXgbVDgASlm3Udtnrub
LeF4lB3Ak3gXvNGMY3NbtTGALqnETTR3sWekXcIyzyA9BMS0I2M3TPqGweiTiFh+VheiAh
hg2kxLUAm+HTWcCkY8I28y7zLSfkR6EJM/xdyRThQkHo0qk0
'''
import ui
import bz2
from base64 import b64decode
pyui = bz2.decompress(b64decode(data))
v = ui.load_view_str(pyui.decode('utf-8'))
args=sys.argv
if len(args)==2:
pyui_path = editor.get_path()+'ui'
if os.path.exists(pyui_path):
console.alert('', '{} OK?'.format(pyui_path), 'OK')
main(pyui_path)
else:
v['bt_make'].action = make_action
v.present('sheet')
pyui_path = file_picker('Select pyui file', multiple=False, select_dirs=False, file_pattern=r'^.+.pyui$')