200fed6cdf
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5114 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
58 lines
2.1 KiB
TeX
58 lines
2.1 KiB
TeX
\section{\class{wxPropertyFormValidator}}\label{wxpropertyformvalidator}
|
|
|
|
\overview{wxPropertyFormValidator overview}{wxpropertyformvalidatoroverview}
|
|
|
|
The {\bf wxPropertyFormValidator} class defines a base class for form validators. By overriding virtual functions,
|
|
the programmer can create custom behaviour for kinds of property.
|
|
|
|
\membersection{wxPropertyFormValidator::wxPropertyFormValidator}
|
|
|
|
\func{void}{wxPropertyFormValidator}{\param{long}{ flags = 0}}
|
|
|
|
Constructor.
|
|
|
|
\membersection{wxPropertyFormValidator::\destruct{wxPropertyFormValidator}}
|
|
|
|
\func{void}{\destruct{wxPropertyFormValidator}}{\void}
|
|
|
|
Destructor.
|
|
|
|
\membersection{wxPropertyFormValidator::OnCommand}
|
|
|
|
\func{Bool}{OnCommand}{\param{wxProperty *}{property}, \param{wxPropertyFormView *}{view},
|
|
\param{wxWindow *}{parentWindow}, \param{wxCommandEvent\& }{event}}
|
|
|
|
Called when the control corresponding to the property receives a command (if not intercepted
|
|
by a callback associated with the actual control).
|
|
|
|
\membersection{wxPropertyFormValidator::OnCheckValue}
|
|
|
|
\func{Bool}{OnCheckValue}{\param{wxProperty *}{property}, \param{wxPropertyFormView *}{view},
|
|
\param{wxWindow *}{parentWindow}}
|
|
|
|
Called when the view checks the property value. The value checked by this validator should be taken from the
|
|
panel item corresponding to the property.
|
|
|
|
\membersection{wxPropertyFormValidator::OnDisplayValue}
|
|
|
|
\func{Bool}{OnDisplayValue}{\param{wxProperty *}{property}, \param{wxPropertyFormView *}{view},
|
|
\param{wxWindow *}{parentWindow}}
|
|
|
|
Should display the property value in the appropriate control.
|
|
|
|
\membersection{wxPropertyFormValidator::OnDoubleClick}
|
|
|
|
\func{Bool}{OnDoubleClick}{\param{wxProperty *}{property}, \param{wxPropertyFormView *}{view},
|
|
\param{wxWindow *}{parentWindow}}
|
|
|
|
Called when the control corresponding to the property is double clicked (listboxes only).
|
|
|
|
\membersection{wxPropertyFormValidator::OnRetrieveValue}
|
|
|
|
\func{Bool}{OnRetrieveValue}{\param{wxProperty *}{property}, \param{wxPropertyFormView *}{view},
|
|
\param{wxWindow *}{parentWindow}}
|
|
|
|
Should do the transfer from the property editing area to the property itself.
|
|
|
|
|