1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_STATTEXT_H_BASE_
|
|
|
|
#define _WX_STATTEXT_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#if wxUSE_STATTEXT
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
|
2001-07-02 15:19:03 +00:00
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxStaticTextNameStr;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxStaticTextBase : public wxControl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// overriden base class virtuals
|
|
|
|
virtual bool AcceptsFocus() const { return FALSE; }
|
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/stattext.h"
|
|
|
|
#elif defined(__WXMSW__)
|
|
|
|
#include "wx/msw/stattext.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXMOTIF__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/motif/stattext.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXGTK__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/gtk/stattext.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/mac/stattext.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/os2/stattext.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#endif // wxUSE_STATTEXT
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_STATTEXT_H_BASE_
|