docs/treeview.rst
author Radek Brich <radek.brich@devl.cz>
Sat, 05 Jan 2013 16:47:30 +0100
changeset 49 1611c462c3e3
parent 38 c6e170452c7f
permissions -rw-r--r--
Update sdlterm: Optimize commit() - use two cell buffers, redraw only dirty cells, not everything. Fix keypress event, filter mousemove.

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]