1999-02-07 17:11:44 +00:00
|
|
|
\section{\class{wxGenericValidator}}\label{wxgenericvalidator}
|
|
|
|
|
|
|
|
wxGenericValidator performs data transfer (but not validation or filtering) for the following
|
|
|
|
basic controls: wxButton, wxCheckBox, wxListBox, 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 window. For example,
|
|
|
|
wxButton and wxTextCtrl transfer data to and from a wxString variable; wxListBox uses a
|
|
|
|
wxArrayInt; wxCheckBox uses a bool.
|
|
|
|
|
|
|
|
For more information, please see \helpref{Validator overview}{validatoroverview}.
|
|
|
|
|
|
|
|
\wxheading{Derived from}
|
|
|
|
|
|
|
|
\helpref{wxValidator}{wxvalidator}\\
|
|
|
|
\helpref{wxEvtHandler}{wxevthandler}\\
|
|
|
|
\helpref{wxObject}{wxobject}
|
|
|
|
|
1999-02-15 20:41:29 +00:00
|
|
|
\wxheading{Include files}
|
|
|
|
|
|
|
|
<wx/valgen.h>
|
|
|
|
|
1999-02-07 17:11:44 +00:00
|
|
|
\wxheading{See also}
|
|
|
|
|
1999-09-30 07:13:40 +00:00
|
|
|
\helpref{Validator overview}{validatoroverview}, \helpref{wxValidator}{wxvalidator},
|
1999-08-29 07:49:13 +00:00
|
|
|
\helpref{wxTextValidator}{wxtextvalidator}
|
1999-02-07 17:11:44 +00:00
|
|
|
|
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
|
|
|
|
\membersection{wxGenericValidator::wxGenericValidator}\label{wxgenericvalidatorconstr}
|
|
|
|
|
|
|
|
\func{}{wxGenericValidator}{\param{const wxGenericValidator\&}{ validator}}
|
|
|
|
|
|
|
|
Copy constructor.
|
|
|
|
|
|
|
|
\func{}{wxGenericValidator}{\param{bool*}{ valPtr}}
|
|
|
|
|
|
|
|
Constructor taking a bool pointer. This will be used for wxCheckBox and wxRadioButton.
|
|
|
|
|
|
|
|
\func{}{wxGenericValidator}{\param{wxString*}{ valPtr}}
|
|
|
|
|
|
|
|
Constructor taking a wxString pointer. This will be used for wxButton, wxComboBox, wxStaticText,
|
|
|
|
wxTextCtrl.
|
|
|
|
|
|
|
|
\func{}{wxGenericValidator}{\param{int*}{ valPtr}}
|
|
|
|
|
|
|
|
Constructor taking an integer pointer. This will be used for wxGauge, wxScrollBar, wxRadioBox, wxSpinButton,
|
|
|
|
wxChoice.
|
|
|
|
|
|
|
|
\func{}{wxGenericValidator}{\param{wxArrayInt*}{ valPtr}}
|
|
|
|
|
|
|
|
Constructor taking a wxArrayInt pointer. This will be used for wxListBox, wxCheckListBox.
|
|
|
|
|
|
|
|
\wxheading{Parameters}
|
|
|
|
|
|
|
|
\docparam{validator}{Validator to copy.}
|
|
|
|
|
|
|
|
\docparam{valPtr}{A pointer to a variable that contains the value. This variable
|
|
|
|
should have a lifetime equal to or longer than the validator lifetime (which is usually
|
|
|
|
determined by the lifetime of the window).}
|
|
|
|
|
|
|
|
\membersection{wxGenericValidator::\destruct{wxGenericValidator}}
|
|
|
|
|
|
|
|
\func{}{\destruct{wxGenericValidator}}{\void}
|
|
|
|
|
|
|
|
Destructor.
|
|
|
|
|
|
|
|
\membersection{wxGenericValidator::Clone}\label{wxgenericvalidatorclone}
|
|
|
|
|
|
|
|
\constfunc{virtual wxValidator*}{Clone}{\void}
|
|
|
|
|
|
|
|
Clones the generic validator using the copy constructor.
|
|
|
|
|
|
|
|
\membersection{wxGenericValidator::TransferFromWindow}\label{wxgenericvalidatortransferfromwindow}
|
|
|
|
|
2003-05-03 13:45:00 +00:00
|
|
|
\func{virtual bool}{TransferFromWindow}{}
|
1999-02-07 17:11:44 +00:00
|
|
|
|
2003-05-03 13:45:00 +00:00
|
|
|
Transfers the value from the window to the appropriate data type.
|
1999-02-07 17:11:44 +00:00
|
|
|
|
|
|
|
\membersection{wxGenericValidator::TransferToWindow}\label{wxgenericvalidatortransfertowindow}
|
|
|
|
|
1999-09-30 07:13:40 +00:00
|
|
|
\func{virtual bool}{TransferToWindow}{}
|
1999-02-07 17:11:44 +00:00
|
|
|
|
2003-05-03 13:45:00 +00:00
|
|
|
Transfers the value to the window.
|
1999-02-07 17:11:44 +00:00
|
|
|
|