]> git.saurik.com Git - wxWidgets.git/commitdiff
Mention header control in Category page
authorRobert Roebling <robert@roebling.de>
Tue, 16 Dec 2008 15:27:04 +0000 (15:27 +0000)
committerRobert Roebling <robert@roebling.de>
Tue, 16 Dec 2008 15:27:04 +0000 (15:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/doxygen/mainpages/cat_classes.h
interface/wx/headerctrl.h

index df1670f6ba569436f8cf90451c7417793bdb0c96..a76a23b1af53524a0ca3fa521b752ec08c85d3ea 100644 (file)
@@ -159,6 +159,7 @@ Controls that are not static can have wxValidator associated with them.
 @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
index 5908cc0a382a3b99821dcc12d3ccbfd48821aecf..3012b7a48fce83d279413989cc908021a88a14bd 100644 (file)
@@ -14,9 +14,9 @@
     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