demo_input.py
author Radek Brich <radek.brich@devl.cz>
Sat, 05 Jan 2013 00:37:11 +0100
changeset 46 2b43a7f38c34
parent 45 43b2279b06e1
child 55 1ab0edd5d784
permissions -rwxr-xr-x
Minor updates. Replace super() with direct class reference. Add demo_colors.

#!/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.add_handler('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()
        return True


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