public:
wxStaticTextBase() { }
- // overriden base cirtuals
- virtual bool AcceptsFocus() const { return FALSE; }
+ // overriden base virtuals
+ virtual bool AcceptsFocus() const { return false; }
+ virtual void ApplyParentThemeBackground(const wxColour& bg)
+ { SetBackgroundColour(bg); }
+ bool GetAdjustMinSizeFlag() const { return !HasFlag(wxST_NO_AUTORESIZE); }
+
private:
DECLARE_NO_COPY_CLASS(wxStaticTextBase)
};