Applied custom character filter patch for text validator
Corrected typo in spinbutt.tex git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15135 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -158,6 +158,7 @@ All (GUI):
|
||||
- added (platform-dependent) scan code to wxKeyEvent (Bryce Denney)
|
||||
- added wxTextCtrl::EmulateKeyPress()
|
||||
- Added wxMouseCaptureChangedEvent
|
||||
- Added custom character filtering to wxTextValidator
|
||||
|
||||
wxMSW:
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ direct input to member functions that take a
|
||||
|
||||
\twocolwidtha{7cm}
|
||||
\begin{twocollist}
|
||||
\twocolitem{{\bf EVT\_SPIN(id, func)}}{Generated whenever an arros is pressed.}
|
||||
\twocolitem{{\bf EVT\_SPIN(id, func)}}{Generated whenever an arrow is pressed.}
|
||||
\twocolitem{{\bf EVT\_SPIN\_UP(id, func)}}{Generated when left/up arrow is pressed.}
|
||||
\twocolitem{{\bf EVT\_SPIN\_DOWN(id, func)}}{Generated when right/down arrow is pressed.}
|
||||
\end{twocollist}%
|
||||
|
||||
@@ -46,6 +46,10 @@ Constructor, taking a style and optional pointer to a wxString variable.
|
||||
checks if the user input is on the list, complaining if not.}
|
||||
\twocolitem{{\bf wxFILTER\_EXCLUDE\_LIST}}{Use an exclude list. The validator
|
||||
checks if the user input is on the list, complaining if it is.}
|
||||
\twocolitem{{\bf wxFILTER\_INCLUDE\_CHAR\_LIST}}{Use an include list. The validator
|
||||
checks if each input character is in the list (one character per list element), complaining if not.}
|
||||
\twocolitem{{\bf wxFILTER\_INCLUDE\_CHAR\_LIST}}{Use an include list. The validator
|
||||
checks if each input character is in the list (one character per list element), complaining if it is.}
|
||||
\end{twocollist}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user