A basic list control. A list control displays items in a list with selection and sorting. The class wxBaseListCtrl provides a simple base class for all list controls in the game, providing a common look and feel across UI objects. It is in all ways like a wxListCtrl, except that it sets its background to the background of its parent window, and sets its foreground color to white.
wxListCtrl (see http://www.wxwindows.org/manuals/2.4.2/wx234.htm)
BaseListCtrl.h
A basic list control. | |
The wxBaseListCtrl constructor. |
|
The wxBaseListCtrl 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 list control position in window coordinates. |
| size | The list control size. |
|