2005-03-16 16:18:31 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: stattext.h
|
|
|
|
// Purpose: wxStaticText base header
|
2005-05-04 18:57:50 +00:00
|
|
|
// Author: Julian Smart
|
2005-03-16 16:18:31 +00:00
|
|
|
// Modified by:
|
|
|
|
// Created:
|
2005-05-04 18:57:50 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2005-03-16 16:18:31 +00:00
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
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
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#if wxUSE_STATTEXT
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
|
2006-01-16 14:59:55 +00:00
|
|
|
extern WXDLLEXPORT_DATA(const wxChar) wxStaticTextNameStr[];
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxStaticTextBase : public wxControl
|
|
|
|
{
|
|
|
|
public:
|
2003-07-22 00:24:07 +00:00
|
|
|
wxStaticTextBase() { }
|
|
|
|
|
2005-08-17 00:01:35 +00:00
|
|
|
// in wxGTK wxStaticText doesn't derive from wxStaticTextBase so we have to
|
|
|
|
// declare this function directly in gtk header
|
2005-08-18 22:16:52 +00:00
|
|
|
#if !defined(__WXGTK__) || defined(__WXUNIVERSAL__)
|
2005-08-16 23:14:34 +00:00
|
|
|
// wrap the text of the control so that no line is longer than the given
|
|
|
|
// width (if possible: this function won't break words)
|
|
|
|
//
|
|
|
|
// NB: implemented in dlgcmn.cpp for now
|
|
|
|
void Wrap(int width);
|
2005-08-18 22:16:52 +00:00
|
|
|
#endif // ! native __WXGTK__
|
2005-08-16 23:14:34 +00:00
|
|
|
|
2004-03-04 17:03:55 +00:00
|
|
|
// overriden base virtuals
|
|
|
|
virtual bool AcceptsFocus() const { return false; }
|
2005-01-07 16:54:09 +00:00
|
|
|
virtual bool HasTransparentBackground() { return true; }
|
2003-07-22 00:24:07 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_NO_COPY_CLASS(wxStaticTextBase)
|
2001-06-26 20:59:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#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"
|
2003-03-22 06:18:36 +00:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/cocoa/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"
|
2005-01-31 08:04:44 +00:00
|
|
|
#elif defined(__WXPALMOS__)
|
|
|
|
#include "wx/palmos/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_
|