demo_checkbox.py
author Radek Brich <radek.brich@devl.cz>
Fri, 14 Dec 2012 10:32:43 +0100
changeset 33 45f1b6d590bd
parent 30 05500124d7fb
child 34 e3beacd5e536
permissions -rwxr-xr-x
Refactoring: rename eventsource module to emitter.

#!/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.globalkeypress)

        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 globalkeypress(self, keyname, char):
        if keyname == 'escape' or char == 'q':
            self.terminate()


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