]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/validatr.tex
Added wxDataViewModel::GetChildren() (removed GetSibling() and GetFirstChild())
[wxWidgets.git] / docs / latex / wx / validatr.tex
CommitLineData
a660d684
KB
1\section{\class{wxValidator}}\label{wxvalidator}
2
3wxValidator is the base class for a family of validator classes that mediate
4between a class of control, and application data.
5
6A validator has three major roles:
7
8\begin{enumerate}\itemsep=0pt
9\item to transfer data from a C++ variable or own storage to and from a control;
10\item to validate data in a control, and show an appropriate error message;
11\item to filter events (such as keystrokes), thereby changing the behaviour of the
12associated control.
13\end{enumerate}
14
15Validators can be plugged into controls dynamically.
16
17To specify a default, `null' validator, use the symbol {\bf wxDefaultValidator}.
18
19For more information, please see \helpref{Validator overview}{validatoroverview}.
20
76e1c2de 21\pythonnote{If you wish to create a validator class in wxPython you should
c9110876 22derive the class from {\tt wxPyValidator} in order to get Python-aware
76e1c2de
RD
23capabilities for the various virtual methods.}
24
a660d684
KB
25\wxheading{Derived from}
26
27\helpref{wxEvtHandler}{wxevthandler}\\
28\helpref{wxObject}{wxobject}
29
954b8ae6
JS
30\wxheading{Include files}
31
32<wx/validate.h>
33
a7af285d
VZ
34\wxheading{Library}
35
36\helpref{wxCore}{librarieslist}
37
a660d684
KB
38\wxheading{See also}
39
b2cf617c
JS
40\helpref{Validator overview}{validatoroverview},
41\helpref{wxTextValidator}{wxtextvalidator},
76e1c2de 42\helpref{wxGenericValidator}{wxgenericvalidator},
8bb8ab39 43
a660d684
KB
44\latexignore{\rtfignore{\wxheading{Members}}}
45
15d83f72 46\membersection{wxValidator::wxValidator}\label{wxvalidatorctor}
a660d684
KB
47
48\func{}{wxValidator}{\void}
49
50Constructor.
51
15d83f72 52\membersection{wxValidator::\destruct{wxValidator}}\label{wxvalidatordtor}
a660d684
KB
53
54\func{}{\destruct{wxValidator}}{\void}
55
56Destructor.
57
58\membersection{wxValidator::Clone}\label{wxvalidatorclone}
59
47210d02 60\constfunc{virtual wxObject*}{Clone}{\void}
a660d684
KB
61
62All validator classes must implement the {\bf Clone} function, which returns
63an identical copy of itself. This is because validators are passed to control
64constructors as references which must be copied. Unlike objects such as pens
65and brushes, it does not make sense to have a reference counting scheme
66to do this cloning, because all validators should have separate
67data.
68
69This base function returns NULL.
70
71\membersection{wxValidator::GetWindow}\label{wxvalidatorgetwindow}
72
73\constfunc{wxWindow*}{GetWindow}{\void}
74
75Returns the window associated with the validator.
76
15d83f72 77\membersection{wxValidator::SetBellOnError}\label{wxvalidatorsetbellonerror}
a994f81b 78
cc81d32f 79\func{void}{SetBellOnError}{\param{bool}{ doIt = true}}
a994f81b
VZ
80
81This functions switches on or turns off the error sound produced by the
82validators if an invalid key is pressed.
83
a660d684
KB
84\membersection{wxValidator::SetWindow}\label{wxvalidatorsetwindow}
85
86\func{void}{SetWindow}{\param{wxWindow*}{ window}}
87
88Associates a window with the validator.
89
90\membersection{wxValidator::TransferFromWindow}\label{wxvalidatortransferfromwindow}
91
76e1c2de 92\func{virtual bool}{TransferToWindow}{}
a660d684
KB
93
94This overridable function is called when the value in the window must be
cc81d32f 95transferred to the validator. Return false if there is a problem.
a660d684
KB
96
97\membersection{wxValidator::TransferToWindow}\label{wxvalidatortransfertowindow}
98
76e1c2de 99\func{virtual bool}{TransferToWindow}{}
a660d684
KB
100
101This overridable function is called when the value associated with the validator must be
cc81d32f 102transferred to the window. Return false if there is a problem.
a660d684
KB
103
104\membersection{wxValidator::Validate}\label{wxvalidatorvalidate}
105
106\func{virtual bool}{Validate}{\param{wxWindow*}{ parent}}
107
108This overridable function is called when the value in the associated window must be validated.
cc81d32f 109Return false if the value in the window is not valid; you may pop up an error dialog.
a660d684 110