X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1777b9bbf4573dabecf4a3256d0d3c2c0c2a3fdf..d8eccedebe44ad610a30b23be57b26fcafcaee09:/include/wx/statbox.h?ds=inline diff --git a/include/wx/statbox.h b/include/wx/statbox.h index e67a1698e3..3edf096c1e 100644 --- a/include/wx/statbox.h +++ b/include/wx/statbox.h @@ -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_