Update keypress propagation. Allow focus change by tab key. Add log property to Widget for smart logging.
#!/usr/bin/env python3
import demobase
from tuikit.core.application import Application
#from tuikit.scrollview import ScrollView
from tuikit.widgets.textbox import TextBox
class MyApplication(Application):
def __init__(self):
Application.__init__(self)
#self.top.add_handler('keypress', self.on_top_keypress)
t = open('../tuikit/core/widget.py').read()
editbox = TextBox(t)
#scroll = ScrollView()
#scroll.add(editbox)
self.root_window.add(editbox)
#self.root_window.add(scroll, halign='fill', valign='fill')
def on_top_keypress(self, ev):
if ev.keyname == 'escape':
self.terminate()
return True
if __name__ == '__main__':
app = MyApplication()
app.start()