-
Notifications
You must be signed in to change notification settings - Fork 25
/
controller.py
38 lines (24 loc) · 985 Bytes
/
controller.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
#!/usr/bin/python
"gui2py application example using a resource & controller"
__author__ = "Mariano Reingart ([email protected])"
__copyright__ = "Copyright (C) 2013- Mariano Reingart"
__license__ = "LGPL 3.0"
import gui
class MyController(gui.Controller):
def on_load(self, evt):
print "initialized!"
self.component['mypanel']['mybutton'].label = "Click ME!!!!"
self.component.show()
def on_menu_file_exit_click(self, evt):
self.component.close()
def on_field1_change(self, evt):
print "Changed, new text: ", self.component['field1'].value
def on_field1_keypress(self, evt):
print "Keypress: ", evt.key
if evt.key == 13:
gui.alert(self.component['field1'].value, "hello world!")
def on_mypanel_mybutton_click(self, etv):
gui.alert("btn clicked!!!!")
if __name__ == '__main__':
c = MyController(rsrc="starter.rsrc.py")
gui.main_loop()