]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/validate/validate.h
Compilation fix to propgrid sample after r74628.
[wxWidgets.git] / samples / validate / validate.h
index 9f723097cbbe1292793fc1067360b67f8830fbde..b65131830775424476c8081f09e75bb9ff2d63c3 100644 (file)
@@ -4,9 +4,8 @@
 // Author:      Julian Smart
 // Modified by:
 // Created:     04/01/98
-// RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #include "wx/app.h"
@@ -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;
 };