]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/statbox.h
Lots of updates for color dialog and sliders
[wxWidgets.git] / include / wx / univ / statbox.h
index cd43d75f36407e651f4e42b3f9cd80e84627be5a..646bd119029a53238156068cab94539e7c1617b5 100644 (file)
@@ -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)
 };