demo_input.py
author Radek Brich <radek.brich@devl.cz>
Sat, 29 Dec 2012 12:16:06 +0100
changeset 41 37b7dfc3eae6
parent 20 472a753664f9
child 45 43b2279b06e1
permissions -rwxr-xr-x
Update Emitter: All event handlers now have exactly one argument: object inherited from Event class, which carries any data.

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import locale
locale.setlocale(locale.LC_ALL, '')

from tuikit import *


class MyApplication(Application):
    def __init__(self):
        Application.__init__(self)
        self.top.connect('keypress', self.on_top_keypress)

        self.text = ''
        textedit = TextEdit(100, 40, self.text)
        self.top.add(textedit)
        textedit.x = 2
        self.textedit = textedit


    def on_top_keypress(self, ev):
        if ev.char == 'q':
            self.terminate()
        self.text += 'keyname: %(keyname)s  char: %(char)s\n' % ev
        self.textedit.settext(self.text)
        self.textedit.scrolltoend()


if __name__ == '__main__':
    app = MyApplication()
    app.start()