]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/validate/validate.h
compute scrollbar spacing the same way GtkScrolledWindow does it
[wxWidgets.git] / samples / validate / validate.h
index dfef4c78afcaddc1c0e9aa0d16b856f34a5cc6f9..beb50de15db807cbd8f7c6489962fb1d902bf087 100644 (file)
@@ -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;
 };