demo_treeview.py
author Radek Brich <radek.brich@devl.cz>
Fri, 18 Jan 2013 22:36:50 +0100
changeset 62 2f61931520c9
parent 45 43b2279b06e1
child 64 03f591f5fe5c
permissions -rwxr-xr-x
Rework layouts: Layout is now normal Container which places its children upon resize event. Drop TopWindow, top is now any subclass of Container. Add floater concept: floaters are widgets drawn over normal widgets, not clipped by parent. Add HScrollbar and Scrollbar abstract base class.

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

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

from tuikit import Application, TreeView, TreeModel, ScrollView, VerticalLayout


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

        model = TreeModel()
        model.add('/',  ['a', 'b'])
        model.add('/a', ['c', 'd'])
        model.add((0,1), ['e', 'f'])
        model.add(['a', 'd', 'e'], 'g')
        model.add('/a/d/f', 'h')

        for i in range(100):
            model.add('/b', ['x'+str(i)])

        view = TreeView(model)
        #view.collapse('/a/d')

        scroll = ScrollView()
        scroll.add(view)
        self.top.add(scroll, expand=True, fill=True)

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


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