X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fcd209b6a20b41e7ddf9acf837311ac6779ea41f..f155075229d771430f0793700f5048ad4be00e9d:/samples/validate/validate.h diff --git a/samples/validate/validate.h b/samples/validate/validate.h index 9f723097cb..beb50de15d 100644 --- a/samples/validate/validate.h +++ b/samples/validate/validate.h @@ -6,7 +6,7 @@ // Created: 04/01/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #include "wx/app.h" @@ -52,6 +52,9 @@ public: bool TransferDataToWindow(); wxTextCtrl *m_text; wxComboBox *m_combobox; + + wxTextCtrl *m_numericTextInt; + wxTextCtrl *m_numericTextDouble; }; class MyData @@ -72,6 +75,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; };