wxBaseListCtrl

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.

Derived From

wxListCtrl (see http://www.wxwindows.org/manuals/2.4.2/wx234.htm)

Project

UICore

Include

BaseListCtrl.h

Summary
A basic list control.
The wxBaseListCtrl constructor.

Public

Summary
The wxBaseListCtrl constructor.

Constructors

wxBaseListCtrl

wxBaseListCtrl(wxWindow *parent, 
wxWindowID id, 
const wxPoint &pos = wxDefaultPosition,
const wxSize &size = wxDefaultSize)

The wxBaseListCtrl constructor.  Creates the list control with the given position, size, etc.

Parameters

parentThe parent window.  Must not be NULL.
idThe message handling ID.  Should be a unique (to the parent window) ID, if the parent window wants to receive messages from the control.
posThe list control position in window coordinates.
sizeThe list control size.
wxBaseListCtrl(wxWindow *parent, 
wxWindowID id, 
const wxPoint &pos = wxDefaultPosition,
const wxSize &size = wxDefaultSize)
The wxBaseListCtrl constructor.
UICore provides a set of common UI controls that promote a constant look and feel across all aspects of the UI.