home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / include / wx / stattext.h < prev    next >
C/C++ Source or Header  |  2001-08-25  |  849b  |  37 lines

  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(__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_
  37.