]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_STATTEXT_H_BASE_ |
2 | #define _WX_STATTEXT_H_BASE_ | |
c801d85f | 3 | |
1e6feb95 VZ |
4 | #if wxUSE_STATTEXT |
5 | ||
6 | #include "wx/control.h" | |
7 | ||
403aced8 | 8 | WXDLLEXPORT_DATA(extern const wxChar*) wxStaticTextNameStr; |
1e6feb95 VZ |
9 | |
10 | class WXDLLEXPORT wxStaticTextBase : public wxControl | |
11 | { | |
12 | public: | |
13 | // overriden base class virtuals | |
14 | virtual bool AcceptsFocus() const { return FALSE; } | |
15 | }; | |
16 | ||
17 | #if defined(__WXUNIVERSAL__) | |
18 | #include "wx/univ/stattext.h" | |
19 | #elif defined(__WXMSW__) | |
20 | #include "wx/msw/stattext.h" | |
2049ba38 | 21 | #elif defined(__WXMOTIF__) |
1e6feb95 | 22 | #include "wx/motif/stattext.h" |
2049ba38 | 23 | #elif defined(__WXGTK__) |
1e6feb95 | 24 | #include "wx/gtk/stattext.h" |
34138703 | 25 | #elif defined(__WXMAC__) |
1e6feb95 | 26 | #include "wx/mac/stattext.h" |
1777b9bb | 27 | #elif defined(__WXPM__) |
1e6feb95 | 28 | #include "wx/os2/stattext.h" |
34138703 | 29 | #elif defined(__WXSTUBS__) |
1e6feb95 | 30 | #include "wx/stubs/stattext.h" |
c801d85f KB |
31 | #endif |
32 | ||
1e6feb95 VZ |
33 | #endif // wxUSE_STATTEXT |
34 | ||
c801d85f | 35 | #endif |
34138703 | 36 | // _WX_STATTEXT_H_BASE_ |