docs/treeview.rst
author Radek Brich <radek.brich@devl.cz>
Sun, 03 Feb 2013 16:38:41 +0100
changeset 77 fc1989059e19
parent 38 c6e170452c7f
permissions -rw-r--r--
Propagate "quit" event, do not just terminate application. Resize: flag widgets to be resized, do resizes only once before draw. Draw: flag widgets to be redrawn, do not draw everything on any event.

TreeView
========

.. toctree::
   :maxdepth: 3
   :titlesonly:

.. automodule:: tuikit.treeview
   :members:
   :show-inheritance:


Path
----
The path may be string or list. Components are names or indexes.
String path uses slash char as separator, names as components.

Examples:
 * '/'
 * '/a/b/c'
 * ['a', 'b', 'c']
 * [0, 3, 1]