Clean up Emitter class, simplify event handling. Fix Container.focusnext() method. Add events test (handler auto-registration, order).
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import locale
locale.setlocale(locale.LC_ALL, '')
import os
from tuikit.application import Application
from tuikit.editfield import EditField
from tuikit.textedit import TextEdit
class MyApplication(Application):
def __init__(self):
Application.__init__(self)
self.top.add_handler('keypress', self.on_top_keypress)
#edit = EditField(50, 'DlouhyTest12')
#self.top.add(edit)
t = open('tuikit/widget.py').read()
textedit = TextEdit(100, 40, t)
self.top.add(textedit)
textedit.x = 2
self.textedit = textedit
def on_top_keypress(self, ev):
if ev.keyname == 'escape':
self.terminate()
return True
if __name__ == '__main__':
os.environ['ESCDELAY'] = '25' # do not wait 1 second after pressing Escape key
app = MyApplication()
app.start()