-
Notifications
You must be signed in to change notification settings - Fork 2
/
blubclient.rsrc.py
165 lines (143 loc) · 3.34 KB
/
blubclient.rsrc.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
{'application':{'type':'Application',
'name':'Template',
'backgrounds': [
{'type':'Background',
'name':'bgTemplate',
'title':u'Chat_Client',
'size':(628, 318),
'statusBar':1,
'style':['resizeable'],
'menubar': {'type':'MenuBar',
'menus': [
{'type':'Menu',
'name':'menuFile',
'label':'&File',
'items': [
{'type':'MenuItem',
'name':'menuFileExit',
'label':'E&xit',
'command':'exit',
},
]
},
]
},
'components': [
{'type':'StaticText',
'name':'StaticText6',
'position':(535, 100),
'text':u'Port',
},
{'type':'StaticText',
'name':'StaticText5',
'position':(540, 55),
'text':u'IP',
},
{'type':'StaticText',
'name':'StaticText4',
'position':(525, 5),
'text':u'Buffersize',
},
{'type':'StaticText',
'name':'StaticText3',
'position':(431, 98),
'text':u'Port',
},
{'type':'StaticText',
'name':'StaticText2',
'position':(430, 4),
'text':u'Nick',
},
{'type':'StaticText',
'name':'StaticText1',
'position':(439, 51),
'text':u'IP',
},
{'type':'TextArea',
'name':'chathistory',
'position':(5, 5),
'size':(375, 180),
'editable':False,
},
{'type':'TextField',
'name':'NICK',
'position':(391, 20),
'toolTip':u'enter Nick',
},
{'type':'TextField',
'name':'UDP_IP',
'position':(390, 69),
'toolTip':u'enter the Server IP you want to connect to',
},
{'type':'TextField',
'name':'UDP_PORT',
'position':(390, 115),
'toolTip':u'enter the Server Port you want to connect to',
},
{'type':'Button',
'name':'connect',
'position':(401, 143),
'size':(81, 30),
'label':u'Connect',
'toolTip':u'Connect to Server',
},
{'type':'Button',
'name':'disconnect',
'position':(405, 176),
'enabled':False,
'label':u'Disconnect',
'toolTip':u'Disconnect from Server',
},
{'type':'TextField',
'name':'BUFFERSIZE',
'position':(500, 20),
'toolTip':u'enter the Buffersize for the Server',
},
{'type':'TextField',
'name':'IP',
'position':(500, 70),
'toolTip':u'enter the IP over that the Server should open',
},
{'type':'TextField',
'name':'PORT',
'position':(500, 115),
'toolTip':u'enter the Port over that the Server should open',
},
{'type':'Button',
'name':'startserver',
'position':(509, 141),
'size':(83, 31),
'label':u'Start Server',
'toolTip':u'Start the Server',
},
{'type':'ToggleButton',
'name':'ONLINE',
'position':(512, 176),
'enabled':False,
'label':u'Go Online',
'toolTip':u'Switch Online Mode',
},
{'type':'TextArea',
'name':'chatenter',
'position':(7, 191),
'size':(300, 40),
'enabled':False,
},
{'type':'Button',
'name':'send',
'position':(311, 190),
'size':(-1, 43),
'enabled':False,
'label':u'Send',
},
{'type':'Button',
'name':'exit',
'position':(401, 202),
'size':(189, 29),
'label':u'Exit',
'toolTip':u'Exit',
},
] # end components
} # end background
] # end backgrounds
} }