]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_STATBOX_H_BASE_ |
2 | #define _WX_STATBOX_H_BASE_ | |
c801d85f | 3 | |
1e6feb95 VZ |
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 | // overriden base class virtuals | |
18 | virtual bool AcceptsFocus() const { return FALSE; } | |
19 | }; | |
20 | ||
21 | #if defined(__WXUNIVERSAL__) | |
22 | #include "wx/univ/statbox.h" | |
23 | #elif defined(__WXMSW__) | |
c801d85f | 24 | #include "wx/msw/statbox.h" |
2049ba38 | 25 | #elif defined(__WXMOTIF__) |
34138703 | 26 | #include "wx/motif/statbox.h" |
2049ba38 | 27 | #elif defined(__WXGTK__) |
c801d85f | 28 | #include "wx/gtk/statbox.h" |
34138703 JS |
29 | #elif defined(__WXMAC__) |
30 | #include "wx/mac/statbox.h" | |
1777b9bb DW |
31 | #elif defined(__WXPM__) |
32 | #include "wx/os2/statbox.h" | |
34138703 JS |
33 | #elif defined(__WXSTUBS__) |
34 | #include "wx/stubs/statbox.h" | |
c801d85f KB |
35 | #endif |
36 | ||
1e6feb95 VZ |
37 | #endif // wxUSE_STATBOX |
38 | ||
c801d85f | 39 | #endif |
34138703 | 40 | // _WX_STATBOX_H_BASE_ |