-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.rsrc.py
More file actions
87 lines (76 loc) · 1.94 KB
/
app.rsrc.py
File metadata and controls
87 lines (76 loc) · 1.94 KB
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
{'application':{'type':'Application',
'name':'Minimal',
'backgrounds': [
{'type':'Background',
'name':'bgMin',
'title':'Apartment Complex List',
'size':(729, 639),
'menubar': {'type':'MenuBar',
'menus': [
{'type':'Menu',
'name':'menuFile',
'label':'File',
'items': [
{'type':'MenuItem',
'name':'menuFileExit',
'label':'E&xit\tAlt+X',
'command':'exit',
},
]
},
]
},
'components': [
{'type':'StaticText',
'name':'stest',
'position':(318, 85),
'text':'StaticText',
'visible':False,
},
{'type':'Button',
'name':'bsubmit',
'position':(120, 231),
'label':'Submit',
},
{'type':'StaticText',
'name':'sroom',
'position':(45, 189),
'font':{'style': 'bold', 'faceName': u'Sans', 'family': 'sansSerif', 'size': 12},
'text':'Room:',
},
{'type':'TextField',
'name':'room',
'position':(120, 181),
},
{'type':'StaticText',
'name':'title',
'position':(210, 13),
'font':{'style': 'bold', 'faceName': u'Sans', 'family': 'sansSerif', 'size': 14},
'text':'Apartment Complex Check in',
},
{'type':'TextField',
'name':'lname',
'position':(120, 128),
'size':(170, 31),
},
{'type':'StaticText',
'name':'slname',
'position':(9, 140),
'font':{'style': 'bold', 'faceName': u'Sans', 'family': 'sansSerif', 'size': 12},
'text':'Lastname:',
},
{'type':'StaticText',
'name':'sfame',
'position':(7, 85),
'font':{'style': 'bold', 'faceName': u'Sans', 'family': 'sansSerif', 'size': 12},
'text':'Firstname:',
},
{'type':'TextField',
'name':'fname',
'position':(121, 78),
'size':(170, 31),
},
] # end components
} # end background
] # end backgrounds
} }