]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/spinctrl.h
wxHtmlFontCell now has member wxFont m_Font instead of wxFont* m_Font (preparation...
[wxWidgets.git] / include / wx / gtk1 / spinctrl.h
index c2afe4645c16493b46af40b78460e26423b8c51e..1fa6b82982ee8dcf9db587876ae1ae028612913a 100644 (file)
 #pragma interface
 #endif
 
+#include "wx/defs.h"
+
+#if wxUSE_SPINCTRL
+
+#include "wx/control.h"
+
 //-----------------------------------------------------------------------------
 // wxSpinCtrl
 //-----------------------------------------------------------------------------
@@ -53,6 +59,10 @@ public:
     virtual int GetMax() const;
 
     // implementation
+    // --------------
+    
+    void OnChar( wxKeyEvent &event );
+    
     bool IsOwnGtkWindow( GdkWindow *window );
     void ApplyWidgetStyle();
 
@@ -61,7 +71,11 @@ public:
 
 private:
     DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
+    DECLARE_EVENT_TABLE()
 };
 
+#endif
+    // wxUSE_SPINCTRL
+
 #endif
     // __GTKSPINCTRLH__