demo_checkbox.py
author Radek Brich <radek.brich@devl.cz>
Sat, 29 Dec 2012 12:16:06 +0100
changeset 41 37b7dfc3eae6
parent 34 e3beacd5e536
child 42 0224ce40792f
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)

        vert = VerticalLayout(homogeneous=False)
        self.top.layout(vert)

        combo = ComboBox(items=['abc', 'xyz'])
        self.top.add(combo)

        for i in range(10):
            cbox = Checkbox('checkbox ' + str(i))
            self.top.add(cbox)

    def on_top_keypress(self, ev):
        if ev.keyname == 'escape' or ev.char == 'q':
            self.terminate()


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