X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/71908213057690d5452f72b2b9c8e62b53357170..10769d8c47c21fe0ec5034726791a5ad4cf19475:/include/wx/univ/statbox.h diff --git a/include/wx/univ/statbox.h b/include/wx/univ/statbox.h index cd43d75f36..646bd11902 100644 --- a/include/wx/univ/statbox.h +++ b/include/wx/univ/statbox.h @@ -13,7 +13,7 @@ #define _WX_UNIV_STATBOX_H_ #ifdef __GNUG__ - #pragma interface "statbox.h" + #pragma interface "univstatbox.h" #endif class WXDLLEXPORT wxStaticBox : public wxStaticBoxBase @@ -51,6 +51,8 @@ public: // take account of this virtual wxPoint GetBoxAreaOrigin() const; + virtual bool HasTransparentBackground() { return TRUE; } + protected: // draw the control virtual void DoDraw(wxControlRenderer *renderer); @@ -58,6 +60,10 @@ protected: // get the size of the border wxRect GetBorderGeometry() const; + // returning TRUE from here ensures that we act as a container window for + // our children + virtual bool IsStaticBox() const { return TRUE; } + private: DECLARE_DYNAMIC_CLASS(wxStaticBox) };