1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxValidator
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
12 wxValidator is the base class for a family of validator classes that
13 mediate between a class of control, and application data.
15 A validator has three major roles:
17 -# To transfer data from a C++ variable or own storage to and from a
19 -# To validate data in a control, and show an appropriate error message.
20 -# To filter events (such as keystrokes), thereby changing the behaviour
21 of the associated control.
23 Validators can be plugged into controls dynamically.
25 To specify a default, "null" validator, use ::wxDefaultValidator.
27 For more information, please see @ref overview_validator.
35 @see @ref overview_validator, wxTextValidator, wxGenericValidator,
36 wxIntegerValidator, wxFloatingPointValidator
38 class wxValidator
: public wxEvtHandler
49 virtual ~wxValidator();
52 All validator classes must implement the Clone() function, which
53 returns an identical copy of itself.
55 This is because validators are passed to control constructors as
56 references which must be copied. Unlike objects such as pens and
57 brushes, it does not make sense to have a reference counting scheme to
58 do this cloning because all validators should have separate data.
60 @return This base function returns @NULL.
62 virtual wxObject
* Clone() const;
65 Returns the window associated with the validator.
67 wxWindow
* GetWindow() const;
70 This functions switches on or turns off the error sound produced by the
71 validators if an invalid key is pressed.
76 If @true, error sound is not played when a validator detects an
77 error. If @false, error sound is enabled.
79 static void SuppressBellOnError(bool suppress
= true);
82 Associates a window with the validator.
84 This function is automatically called by wxWidgets when creating a wxWindow-derived
85 class instance which takes a wxValidator reference.
89 new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0,
90 wxTextValidator(wxFILTER_ALPHA, &g_data.m_string));
92 will automatically link the wxTextValidator instance with the wxTextCtrl
95 void SetWindow(wxWindow
* window
);
98 This overridable function is called when the value in the window must
99 be transferred to the validator.
101 @return @false if there is a problem.
103 virtual bool TransferFromWindow();
106 This overridable function is called when the value associated with the
107 validator must be transferred to the window.
109 @return @false if there is a problem.
111 virtual bool TransferToWindow();
114 This overridable function is called when the value in the associated
115 window must be validated.
118 The parent of the window associated with the validator.
120 @return @false if the value in the window is not valid; you may pop up
123 virtual bool Validate(wxWindow
* parent
);
127 An empty, "null" wxValidator instance.
129 const wxValidator wxDefaultValidator
;