1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticText base header
4 // Author: wxWidgets Team
7 // Copyright: (c) wxWidgets Team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_STATTEXT_H_BASE_
13 #define _WX_STATTEXT_H_BASE_
19 #include "wx/control.h"
21 extern WXDLLEXPORT_DATA(const wxChar
*) wxStaticTextNameStr
;
23 class WXDLLEXPORT wxStaticTextBase
: public wxControl
26 wxStaticTextBase() { }
28 // overriden base virtuals
29 virtual bool AcceptsFocus() const { return false; }
30 virtual bool HasTransparentBackground() { return true; }
33 DECLARE_NO_COPY_CLASS(wxStaticTextBase
)
36 #if defined(__WXUNIVERSAL__)
37 #include "wx/univ/stattext.h"
38 #elif defined(__WXMSW__)
39 #include "wx/msw/stattext.h"
40 #elif defined(__WXMOTIF__)
41 #include "wx/motif/stattext.h"
42 #elif defined(__WXGTK__)
43 #include "wx/gtk/stattext.h"
44 #elif defined(__WXMAC__)
45 #include "wx/mac/stattext.h"
46 #elif defined(__WXCOCOA__)
47 #include "wx/cocoa/stattext.h"
48 #elif defined(__WXPM__)
49 #include "wx/os2/stattext.h"
50 #elif defined(__WXPALMOS__)
51 #include "wx/palmos/stattext.h"
54 #endif // wxUSE_STATTEXT
57 // _WX_STATTEXT_H_BASE_