demo_menu.py
author Radek Brich <radek.brich@devl.cz>
Wed, 20 Aug 2014 15:06:52 +0200
changeset 102 29a8a26a721f
parent 77 fc1989059e19
permissions -rwxr-xr-x
Update TreeView (old uncommitted work).

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

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

from tuikit import Application, MenuBar, MenuButton, Menu, Window


class MyApplication(Application):
    def __init__(self):
        Application.__init__(self)
        self.top.add_handler('keypress', self.on_top_keypress, last=True)
        self.top.add_handler('quit', lambda ev: self.terminate())

        helpwin = Window()
        helpwin.title = 'About'
        helpwin.hide()
        self.top.add(helpwin)
        helpwin.move(10, 5)
        #helpwin.closebutton = False
        #helpwin.resizable = False

        filemenu = Menu([
            ('New', None),
            None,
            ('Open', None),
            ('Save', None),
            None,
            ('Quit', self.terminate),
            ])
        editmenu = Menu([('Copy', None), ('Paste', None)])
        helpmenu = Menu([('About', helpwin)])

        menubar_items = [
            ('File', filemenu),
            ('Edit', editmenu),
            ('Help', helpmenu),
            ]

        menubar = MenuBar(menubar_items)
        self.top.add(menubar, halign='fill')

        menu = Menu([('Copy', None), ('Paste', None)])
        menubtn = MenuButton('MenuButton', menu)
        self.top.add(menubtn, halign='center', valign='center')

        helpwin.bring_up()

    def on_top_keypress(self, ev):
        if ev.keyname == 'escape':
            self.terminate()
            return True


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