update list of classes supported by wxGenericValidator

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58647 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2009-02-04 12:41:43 +00:00
parent 040d3c2ebf
commit 52f2299cdd

View File

@@ -10,13 +10,17 @@
@class wxGenericValidator @class wxGenericValidator
wxGenericValidator performs data transfer (but not validation or filtering) wxGenericValidator performs data transfer (but not validation or filtering)
for the following basic controls: wxButton, wxCheckBox, wxListBox, for many type of controls.
wxStaticText, wxRadioButton, wxRadioBox, wxChoice, wxComboBox, wxGauge,
wxSlider, wxScrollBar, wxSpinButton, wxTextCtrl, wxCheckListBox.
It checks the type of the window and uses an appropriate type for that wxGenericValidator supports:
window. For example, wxButton and wxTextCtrl transfer data to and from a - wxButton, wxRadioButton, wxToggleButton, wxBitmapToggleButton, wxSpinButton
wxString variable; wxListBox uses a wxArrayInt; wxCheckBox uses a bool. - wxCheckBox, wxRadioBox, wxComboBox, wxListBox, wxCheckListBox
- wxGauge, wxSlider, wxScrollBar, wxChoice, wxStaticText
- wxSpinCtrl, wxTextCtrl
It checks the type of the window and uses an appropriate type for it.
For example, wxButton and wxTextCtrl transfer data to and from a
wxString variable; wxListBox uses a wxArrayInt; wxCheckBox uses a boolean.
For more information, please see @ref overview_validator. For more information, please see @ref overview_validator.