X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e9e4acc5197ac49259b9a39468c5931b4459d87f..5c9f6bf455c4a27161fce95688eeffe4e958e696:/include/wx/stattext.h diff --git a/include/wx/stattext.h b/include/wx/stattext.h index 827427c80a..8590052f74 100644 --- a/include/wx/stattext.h +++ b/include/wx/stattext.h @@ -10,8 +10,15 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxStaticTextNameStr; class WXDLLEXPORT wxStaticTextBase : public wxControl { public: - // overriden base class virtuals - virtual bool AcceptsFocus() const { return FALSE; } + wxStaticTextBase() { } + + // overriden base virtuals + virtual bool AcceptsFocus() const { return false; } + virtual void ApplyParentThemeBackground(const wxColour& bg) + { SetBackgroundColour(bg); } + +private: + DECLARE_NO_COPY_CLASS(wxStaticTextBase) }; #if defined(__WXUNIVERSAL__) @@ -24,6 +31,8 @@ public: #include "wx/gtk/stattext.h" #elif defined(__WXMAC__) #include "wx/mac/stattext.h" +#elif defined(__WXCOCOA__) + #include "wx/cocoa/stattext.h" #elif defined(__WXPM__) #include "wx/os2/stattext.h" #endif