+#include "wx/defs.h"
+
+#if wxUSE_STATTEXT
+
+#include "wx/control.h"
+
+extern WXDLLEXPORT_DATA(const wxChar*) wxStaticTextNameStr;
+
+class WXDLLEXPORT wxStaticTextBase : public wxControl
+{
+public:
+ wxStaticTextBase() { }
+
+ // overriden base virtuals
+ virtual bool AcceptsFocus() const { return false; }
+ virtual bool HasTransparentBackground() { return true; }
+
+private:
+ DECLARE_NO_COPY_CLASS(wxStaticTextBase)
+};
+
+#if defined(__WXUNIVERSAL__)
+ #include "wx/univ/stattext.h"
+#elif defined(__WXMSW__)
+ #include "wx/msw/stattext.h"