+#if wxUSE_STATBOX
+
+#include "wx/control.h"
+
+WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBoxNameStr;
+
+// ----------------------------------------------------------------------------
+// wxStaticBox: a grouping box with a label
+// ----------------------------------------------------------------------------
+
+class WXDLLEXPORT wxStaticBoxBase : public wxControl
+{
+public:
+ wxStaticBoxBase() { }
+
+ // overriden base class virtuals
+ virtual bool AcceptsFocus() const { return false; }
+ virtual bool HasTransparentBackground() { return true; }
+
+private:
+ DECLARE_NO_COPY_CLASS(wxStaticBoxBase)
+};
+
+#if defined(__WXUNIVERSAL__)
+ #include "wx/univ/statbox.h"
+#elif defined(__WXMSW__)
+ #include "wx/msw/statbox.h"