]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/stattext.h
changed wxSystemSettings::HasFrameDecorations to more general GetCapability(index)
[wxWidgets.git] / include / wx / stattext.h
... / ...
CommitLineData
1#ifndef _WX_STATTEXT_H_BASE_
2#define _WX_STATTEXT_H_BASE_
3
4#if wxUSE_STATTEXT
5
6#include "wx/control.h"
7
8WXDLLEXPORT_DATA(extern const wxChar*) wxStaticTextNameStr;
9
10class WXDLLEXPORT wxStaticTextBase : public wxControl
11{
12public:
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"
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(__WXPM__)
28 #include "wx/os2/stattext.h"
29#elif defined(__WXSTUBS__)
30 #include "wx/stubs/stattext.h"
31#endif
32
33#endif // wxUSE_STATTEXT
34
35#endif
36 // _WX_STATTEXT_H_BASE_