X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/aeab10d07c1f4ef78c0c9152de115fa216922e6c..a4f964122df05b83a7753ea50fb0831b9781822d:/src/msw/gauge95.cpp?ds=inline diff --git a/src/msw/gauge95.cpp b/src/msw/gauge95.cpp index 9e16993a83..e5c09362e2 100644 --- a/src/msw/gauge95.cpp +++ b/src/msw/gauge95.cpp @@ -68,9 +68,18 @@ bool wxGauge95::Create(wxWindow *parent, wxWindowID id, int height = size.y; long msFlags = WS_CHILD | WS_VISIBLE | WS_TABSTOP; + +#ifndef PBS_VERTICAL +#define PBS_VERTICAL 0x04 +#endif + if (m_windowStyle & wxGA_VERTICAL) msFlags |= PBS_VERTICAL; +#ifndef PBS_SMOOTH +#define PBS_SMOOTH 0x01 +#endif + if (m_windowStyle & wxGA_SMOOTH) msFlags |= PBS_SMOOTH; @@ -173,14 +182,24 @@ int wxGauge95::GetValue(void) const return m_gaugePos; } -void wxGauge95::SetForegroundColour(const wxColour& col) +bool wxGauge95::SetForegroundColour(const wxColour& col) { - m_foregroundColour = col ; + if ( !wxControl::SetForegroundColour(col) ) + return FALSE; + + m_foregroundColour = col ; + + return TRUE; } -void wxGauge95::SetBackgroundColour(const wxColour& col) +bool wxGauge95::SetBackgroundColour(const wxColour& col) { - m_backgroundColour = col ; + if ( !wxControl::SetBackgroundColour(col) ) + return FALSE; + + m_backgroundColour = col ; + + return TRUE; } #endif // wxUSE_GAUGE