X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9a83f860948059b0273b5cc6d9e43fadad3ebfca..9869c26285dc51d13607cddaa04f65ce983653a5:/include/wx/gtk1/spinctrl.h?ds=sidebyside diff --git a/include/wx/gtk1/spinctrl.h b/include/wx/gtk1/spinctrl.h index e748a60ac9..0b42fce248 100644 --- a/include/wx/gtk1/spinctrl.h +++ b/include/wx/gtk1/spinctrl.h @@ -3,7 +3,6 @@ // Purpose: wxSpinCtrl class // Author: Robert Roebling // Modified by: -// RCS-ID: $Id$ // Copyright: (c) Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -68,7 +67,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 +78,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() };