A basic tree control. A tree control displays items in a tree hierarchy with node selection and expansion. Icons may also be added to each node in the tree. The class wxBaseTreeCtrl provides a simple base class for all tree controls in the game, providing a common look and feel across UI objects. It is in all ways like a wxTreeCtrl, except that it sets its background to the background of its parent window, and sets its foreground color to white.
wxTreeCtrl (see http://www.wxwindows.org/manuals/2.4.2/wx399.htm)
BaseTreeCtrl.h
A basic tree control. | |
The wxBaseTreeCtrl constructor. |
|
The wxBaseTreeCtrl constructor. Creates the list control with the given position, size, etc.
| parent | The parent window. Must not be NULL. |
| id | The message handling ID. Should be a unique (to the parent window) ID, if the parent window wants to receive messages from the control. |
| pos | The tree control position in window coordinates. |
| size | The tree control size. |
| style | The tree control style. |
|