]> git.saurik.com Git - wxWidgets.git/blob - include/wx/statbox.h
No significant changes
[wxWidgets.git] / include / wx / statbox.h
1 #ifndef _WX_STATBOX_H_BASE_
2 #define _WX_STATBOX_H_BASE_
3
4 #if wxUSE_STATBOX
5
6 #include "wx/control.h"
7
8 WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBoxNameStr;
9
10 // ----------------------------------------------------------------------------
11 // wxStaticBox: a grouping box with a label
12 // ----------------------------------------------------------------------------
13
14 class WXDLLEXPORT wxStaticBoxBase : public wxControl
15 {
16 public:
17 wxStaticBoxBase() { }
18
19 // overriden base class virtuals
20 virtual bool AcceptsFocus() const { return FALSE; }
21
22 private:
23 DECLARE_NO_COPY_CLASS(wxStaticBoxBase)
24 };
25
26 #if defined(__WXUNIVERSAL__)
27 #include "wx/univ/statbox.h"
28 #elif defined(__WXMSW__)
29 #include "wx/msw/statbox.h"
30 #elif defined(__WXMOTIF__)
31 #include "wx/motif/statbox.h"
32 #elif defined(__WXGTK__)
33 #include "wx/gtk/statbox.h"
34 #elif defined(__WXMAC__)
35 #include "wx/mac/statbox.h"
36 #elif defined(__WXCOCOA__)
37 #include "wx/cocoa/statbox.h"
38 #elif defined(__WXPM__)
39 #include "wx/os2/statbox.h"
40 #endif
41
42 #endif // wxUSE_STATBOX
43
44 #endif
45 // _WX_STATBOX_H_BASE_