docs/treeview.rst
author Radek Brich <radek.brich@devl.cz>
Sun, 20 Jan 2013 00:49:19 +0100
changeset 64 03f591f5fe5c
parent 38 c6e170452c7f
permissions -rw-r--r--
Drop Container.offset, add special layout for that - OffsetLayout. Add Widget.bring_up(): moves child to end of children list.

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]