X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f4998a1cc6cf4783a46fbeee4e75a0808b8afe21..f196316400fd247a760b2ef77d5064b4e10e5471:/include/wx/msw/gauge95.h?ds=inline diff --git a/include/wx/msw/gauge95.h b/include/wx/msw/gauge95.h index 6173f60615..d595242620 100644 --- a/include/wx/msw/gauge95.h +++ b/include/wx/msw/gauge95.h @@ -12,13 +12,9 @@ #ifndef _GAUGE95_H_ #define _GAUGE95_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "gauge95.h" -#endif - #if wxUSE_GAUGE -WXDLLEXPORT_DATA(extern const wxChar*) wxGaugeNameStr; +extern WXDLLEXPORT_DATA(const wxChar) wxGaugeNameStr[]; // Group box class WXDLLEXPORT wxGauge95 : public wxGaugeBase @@ -55,11 +51,19 @@ public: virtual bool SetForegroundColour(const wxColour& col); virtual bool SetBackgroundColour(const wxColour& col); + + void SetIndeterminateMode(); + void SetDeterminateMode(); + void Pulse(); + + WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const; + + // returns true if the platform should explicitly apply a theme border + virtual bool CanApplyThemeBorder() const { return false; } + protected: - virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const; virtual wxSize DoGetBestSize() const; - DECLARE_DYNAMIC_CLASS_NO_COPY(wxGauge95) };