demo_window.py
author Radek Brich <radek.brich@devl.cz>
Sun, 09 Oct 2011 19:30:25 +0200
changeset 24 b248ef500557
parent 19 5e78d52ebb24
child 28 feee783d4fc5
permissions -rwxr-xr-x
Add DriverPygame (incomplete). Move unicode graphics constants to UnicodeGraphics class. Move shared parts of drivers to Driver base class.

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

import locale
import os

from tuikit.application import Application
from tuikit.editfield import EditField
from tuikit.window import Window
from tuikit.button import Button


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

        #edit = EditField(50, 'DlouhyTest12')
        #self.top.add(edit)

        win = Window()
        self.top.add(win)

        button = Button('click!')
        win.add(button)
        button.x = 10
        button.y = 7

        button.connect('click', self.buttonclick)
        self.button = button

        subwin = Window(8,8)
        win.add(subwin)


    def buttonclick(self):
        self.button.label = 'YES'


    def globalkeypress(self, keyname, char):
        if keyname == 'escape':
            self.terminate()


if __name__ == '__main__':
    locale.setlocale(locale.LC_ALL, '')
    os.environ['ESCDELAY'] = '25' # do not wait 1 second after pressing Escape key
    app = MyApplication()
    app.start()