X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bfc6fde4b1dd5bfd8ae22839ff9a69cf24eb9120..138618acb91e2a879a735c5806f9f728220f14df:/include/wx/msw/gauge95.h diff --git a/include/wx/msw/gauge95.h b/include/wx/msw/gauge95.h index 5346750970..c1ab4ab1d0 100644 --- a/include/wx/msw/gauge95.h +++ b/include/wx/msw/gauge95.h @@ -6,7 +6,7 @@ // Created: 01/02/97 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _GAUGE95_H_ @@ -16,9 +16,11 @@ #pragma interface "gauge95.h" #endif +#if wxUSE_SLIDER + #include "wx/control.h" -WXDLLEXPORT_DATA(extern const char*) wxGaugeNameStr; +WXDLLEXPORT_DATA(extern const wxChar*) wxGaugeNameStr; // Group box class WXDLLEXPORT wxGauge95 : public wxControl @@ -57,8 +59,11 @@ public: int GetRange(void) const ; int GetValue(void) const ; - void SetForegroundColour(const wxColour& col); - void SetBackgroundColour(const wxColour& col); + bool SetForegroundColour(const wxColour& col); + bool SetBackgroundColour(const wxColour& col); + + // overriden base class virtuals + virtual bool AcceptsFocus() const { return FALSE; } // Backward compatibility #if WXWIN_COMPATIBILITY @@ -70,11 +75,9 @@ public: protected: int m_rangeMax; int m_gaugePos; - - virtual void DoSetSize(int x, int y, - int width, int height, - int sizeFlags = wxSIZE_AUTO); }; +#endif // wxUSE_GAUGE + #endif // _GAUGEMSW_H_