]> git.saurik.com Git - wxWidgets.git/blob - include/wx/stattext.h
missing WXDLLEXPORT_DATA added
[wxWidgets.git] / include / wx / stattext.h
1 #ifndef _WX_STATTEXT_H_BASE_
2 #define _WX_STATTEXT_H_BASE_
3
4 #if wxUSE_STATTEXT
5
6 #include "wx/control.h"
7
8 WXDLLEXPORT_DATA(extern const wxChar*) wxStaticTextNameStr;
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"
21 #elif defined(__WXMOTIF__)
22 #include "wx/motif/stattext.h"
23 #elif defined(__WXGTK__)
24 #include "wx/gtk/stattext.h"
25 #elif defined(__WXQT__)
26 #include "wx/qt/stattext.h"
27 #elif defined(__WXMAC__)
28 #include "wx/mac/stattext.h"
29 #elif defined(__WXPM__)
30 #include "wx/os2/stattext.h"
31 #elif defined(__WXSTUBS__)
32 #include "wx/stubs/stattext.h"
33 #endif
34
35 #endif // wxUSE_STATTEXT
36
37 #endif
38 // _WX_STATTEXT_H_BASE_