A ListTree is a widget that displays a tree of display items. A ListTree is a composite widget. It has three internal components, an internal listTree, a horizontal scrollbar and a vertical scrollbar.
To create a ListTree, use
use EZ_CreateWidget
with type
EZ_WIDGET_TREE
or use
EZ_Widget *EZ_CreateListTree(EZ_Widget *parent,
int hscrollbar, int vscrollbar)
To get the components of a listTree, use
void EZ_GetListTreeWidgetComponents(EZ_Widget *listTree,
EZ_Widget **ilt_ret, EZ_Widget **hscrol_ret,
EZ_Widget **vscrol_ret)