]> git.saurik.com Git - wxWidgets.git/blame - include/wx/stattext.h
Added GetBitmap, GetIcon to wxImageList
[wxWidgets.git] / include / wx / stattext.h
CommitLineData
34138703
JS
1#ifndef _WX_STATTEXT_H_BASE_
2#define _WX_STATTEXT_H_BASE_
c801d85f 3
1e6feb95
VZ
4#if wxUSE_STATTEXT
5
6#include "wx/control.h"
7
16cba29d 8extern WXDLLEXPORT_DATA(const wxChar*) wxStaticTextNameStr;
1e6feb95
VZ
9
10class WXDLLEXPORT wxStaticTextBase : public wxControl
11{
12public:
fc7a2a60
VZ
13 wxStaticTextBase() { }
14
bd507486
RD
15 // overriden base virtuals
16 virtual bool AcceptsFocus() const { return false; }
7c7a653b 17 virtual bool HasTransparentBackground() { return true; }
fc7a2a60
VZ
18
19private:
20 DECLARE_NO_COPY_CLASS(wxStaticTextBase)
1e6feb95
VZ
21};
22
23#if defined(__WXUNIVERSAL__)
24 #include "wx/univ/stattext.h"
25#elif defined(__WXMSW__)
26 #include "wx/msw/stattext.h"
2049ba38 27#elif defined(__WXMOTIF__)
1e6feb95 28 #include "wx/motif/stattext.h"
2049ba38 29#elif defined(__WXGTK__)
1e6feb95 30 #include "wx/gtk/stattext.h"
34138703 31#elif defined(__WXMAC__)
1e6feb95 32 #include "wx/mac/stattext.h"
e64df9bc
DE
33#elif defined(__WXCOCOA__)
34 #include "wx/cocoa/stattext.h"
1777b9bb 35#elif defined(__WXPM__)
1e6feb95 36 #include "wx/os2/stattext.h"
a152561c
WS
37#elif defined(__WXPALMOS__)
38 #include "wx/palmos/stattext.h"
c801d85f
KB
39#endif
40
1e6feb95
VZ
41#endif // wxUSE_STATTEXT
42
c801d85f 43#endif
34138703 44 // _WX_STATTEXT_H_BASE_