1 #ifndef _WX_STATTEXT_H_BASE_
2 #define _WX_STATTEXT_H_BASE_
6 #include "wx/control.h"
8 WXDLLEXPORT_DATA(extern const wxChar
*) wxStaticTextNameStr
;
10 class WXDLLEXPORT wxStaticTextBase
: public wxControl
13 // overriden base class virtuals
14 virtual bool AcceptsFocus() const { return FALSE
; }
17 #if defined(__WXUNIVERSAL__)
18 #include "wx/univ/stattext.h"
19 #elif defined(__WXMSW__)
20 #include "wx/msw/stattext.h"
21 #elif defined(__WXMOTIF__)
22 #include "wx/motif/stattext.h"
23 #elif defined(__WXGTK__)
24 #include "wx/gtk/stattext.h"
25 #elif defined(__WXMAC__)
26 #include "wx/mac/stattext.h"
27 #elif defined(__WXCOCOA__)
28 #include "wx/cocoa/stattext.h"
29 #elif defined(__WXPM__)
30 #include "wx/os2/stattext.h"
33 #endif // wxUSE_STATTEXT
36 // _WX_STATTEXT_H_BASE_