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