demo_editor.py
author Radek Brich <radek.brich@devl.cz>
Wed, 30 Jan 2013 19:44:01 +0100
changeset 72 6e0656600754
parent 62 2f61931520c9
child 76 fa5301e58eca
permissions -rwxr-xr-x
DriverSDL: Fix event dispatching. Add SDL events test.

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

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

import os

from tuikit.application import Application
from tuikit.textedit import TextEdit


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

        t = open('tuikit/widget.py').read()
        textedit = TextEdit(t)
        self.top.add(textedit, halign='fill', valign='fill')

    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()