X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/526954c5968baa29218c994ec48e476ae2bd4b9f..d7c37bdf337d7ca687263520de432eee4a3722db:/samples/validate/validate.h diff --git a/samples/validate/validate.h b/samples/validate/validate.h index dfef4c78af..b651318307 100644 --- a/samples/validate/validate.h +++ b/samples/validate/validate.h @@ -4,7 +4,6 @@ // Author: Julian Smart // Modified by: // Created: 04/01/98 -// RCS-ID: $Id$ // Copyright: (c) Julian Smart // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -52,6 +51,9 @@ public: bool TransferDataToWindow(); wxTextCtrl *m_text; wxComboBox *m_combobox; + + wxTextCtrl *m_numericTextInt; + wxTextCtrl *m_numericTextDouble; }; class MyData @@ -72,6 +74,10 @@ public: // the string entered in the combobox's text-edit field. wxString m_combobox_choice; + // variables handled by wxNumericTextValidator + int m_intValue; + double m_doubleValue; + bool m_checkbox_state; int m_radiobox_choice; };