]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/statbox.h
wxSIZE_T_IS_UINT definition fix for mingw32 cross-compile
[wxWidgets.git] / include / wx / statbox.h
index e67a1698e30689aa44517a8c36a1b3b8f826fa79..3edf096c1ef6739e304f8c40bedd73a577e1f89b 100644 (file)
@@ -1,7 +1,26 @@
 #ifndef _WX_STATBOX_H_BASE_
 #define _WX_STATBOX_H_BASE_
 
-#if defined(__WXMSW__)
+#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:
+    // overriden base class virtuals
+    virtual bool AcceptsFocus() const { return FALSE; }
+};
+
+#if defined(__WXUNIVERSAL__)
+#include "wx/univ/statbox.h"
+#elif defined(__WXMSW__)
 #include "wx/msw/statbox.h"
 #elif defined(__WXMOTIF__)
 #include "wx/motif/statbox.h"
@@ -17,5 +36,7 @@
 #include "wx/stubs/statbox.h"
 #endif
 
+#endif // wxUSE_STATBOX
+
 #endif
     // _WX_STATBOX_H_BASE_