@li wxGauge: A control to represent a varying quantity, such as time remaining
@li wxGenericDirCtrl: A control for displaying a directory tree
@li wxGrid: A control to display spread-sheet like data in tabular form
+@li wxHeaderCtrl: a small control to display the top header of tabular data
@li wxHtmlListBox: An abstract class for creating listboxes showing HTML
content
@li wxHyperlinkCtrl: A static text which opens an URL when clicked
wxHeaderCtrl is the control containing the column headings which is usually
used for display of tabular data.
- It is used as part of wxGrid and (will be used in the near future) in
- in wxDataViewCtrl and report view of wxListCtrl but can be also used
- independently. In general this class is meant to be used as part of another
+ It is used as part of wxGrid, in wxDataViewCtrl and in the report view of
+ wxListCtrl but can be also used independently.
+ In general this class is meant to be used as part of another
control which already stores the column information somewhere as it can't
be used directly: instead you need to inherit from it and implement the
GetColumn() method to provide column information. See wxHeaderCtrlSimple