1 #ifndef _WX_STATBOX_H_BASE_
2 #define _WX_STATBOX_H_BASE_
6 #include "wx/control.h"
8 WXDLLEXPORT_DATA(extern const wxChar
*) wxStaticBoxNameStr
;
10 // ----------------------------------------------------------------------------
11 // wxStaticBox: a grouping box with a label
12 // ----------------------------------------------------------------------------
14 class WXDLLEXPORT wxStaticBoxBase
: public wxControl
17 // overriden base class virtuals
18 virtual bool AcceptsFocus() const { return FALSE
; }
21 #if defined(__WXUNIVERSAL__)
22 #include "wx/univ/statbox.h"
23 #elif defined(__WXMSW__)
24 #include "wx/msw/statbox.h"
25 #elif defined(__WXMOTIF__)
26 #include "wx/motif/statbox.h"
27 #elif defined(__WXGTK__)
28 #include "wx/gtk/statbox.h"
29 #elif defined(__WXQT__)
30 #include "wx/qt/statbox.h"
31 #elif defined(__WXMAC__)
32 #include "wx/mac/statbox.h"
33 #elif defined(__WXPM__)
34 #include "wx/os2/statbox.h"
35 #elif defined(__WXSTUBS__)
36 #include "wx/stubs/statbox.h"
39 #endif // wxUSE_STATBOX
42 // _WX_STATBOX_H_BASE_