]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/doxygen/overviews/validator.h
Undid accidental modification of wxTaskBarIcon in the last commit.
[wxWidgets.git] / docs / doxygen / overviews / validator.h
index 5791ca61934922662ad5ac66d5af7e91077629c0..81010b915fadcadad11a1318edd06647c080273a 100644 (file)
@@ -3,14 +3,15 @@
 // Purpose:     topic overview
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Purpose:     topic overview
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
 
 @page overview_validator wxValidator Overview
 
 /////////////////////////////////////////////////////////////////////////////
 
 /**
 
 @page overview_validator wxValidator Overview
 
-Classes: wxValidator, wxTextValidator, wxGenericValidator
+Classes: wxValidator, wxTextValidator, wxGenericValidator, wxIntegerValidator,
+wxFloatingPointValidator
 
 @li @ref overview_validator_intro
 @li @ref overview_validator_anatomy
 
 @li @ref overview_validator_intro
 @li @ref overview_validator_anatomy
@@ -20,7 +21,7 @@ Classes: wxValidator, wxTextValidator, wxGenericValidator
 <hr>
 
 
 <hr>
 
 
-@section overview_validator_intro Example
+@section overview_validator_intro Validator basic concepts
 
 The aim of the validator concept is to make dialogs very much easier to write.
 A validator is an object that can be plugged into a control (such as a
 
 The aim of the validator concept is to make dialogs very much easier to write.
 A validator is an object that can be plugged into a control (such as a
@@ -90,12 +91,10 @@ internally.
 
 You can optionally define event handlers for the validator, to implement
 filtering. These handlers will capture events before the control itself does
 
 You can optionally define event handlers for the validator, to implement
 filtering. These handlers will capture events before the control itself does
-(see @ref overview_eventhandling_processing).
+(see @ref overview_events_processing).
 For an example implementation, see the @c valtext.h and @c valtext.cpp files in the
 wxWidgets library.
 
 For an example implementation, see the @c valtext.h and @c valtext.cpp files in the
 wxWidgets library.
 
-wxwindow::SetExtraStyle( wxWS_EX_VALIDATE_RECURSIVELY )
-
 
 @section overview_validator_dialogs How Validators Interact with Dialogs
 
 
 @section overview_validator_dialogs How Validators Interact with Dialogs