X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9a83f860948059b0273b5cc6d9e43fadad3ebfca..d642db66a5efc82d374b813022c72ba88bc50839:/include/wx/gtk1/spinctrl.h diff --git a/include/wx/gtk1/spinctrl.h b/include/wx/gtk1/spinctrl.h index e748a60ac9..e1fb0b8cd6 100644 --- a/include/wx/gtk1/spinctrl.h +++ b/include/wx/gtk1/spinctrl.h @@ -68,7 +68,10 @@ public: GtkAdjustment *m_adjust; float m_oldPos; -protected: + virtual int GetBase() const { return m_base; } + virtual bool SetBase(int base); + + protected: virtual wxSize DoGetBestSize() const; // Widgets that use the style->base colour for the BG colour should @@ -76,6 +79,14 @@ protected: virtual bool UseGTKStyleBase() const { return true; } private: + // Common part of all ctors. + void Init() + { + m_base = 10; + } + + int m_base; + DECLARE_DYNAMIC_CLASS(wxSpinCtrl) DECLARE_EVENT_TABLE() };