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"
|
|
|
|
|
2007-04-01 14:13:15 +00:00
|
|
|
/*
|
|
|
|
* wxStaticText flags
|
|
|
|
*/
|
|
|
|
#define wxST_NO_AUTORESIZE 0x0001
|
|
|
|
#define wxST_MARKUP 0x0002
|
|
|
|
|
|
|
|
#define wxST_ELLIPSIZE_START 0x0004
|
|
|
|
#define wxST_ELLIPSIZE_MIDDLE 0x0008
|
|
|
|
#define wxST_ELLIPSIZE_END 0x0010
|
|
|
|
|
|
|
|
|
2007-11-12 21:37:46 +00:00
|
|
|
extern WXDLLEXPORT_DATA(const char) 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-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)
|
2007-04-01 14:13:15 +00:00
|
|
|
// This function will modify the value returned by GetLabel()!
|
2005-08-16 23:14:34 +00:00
|
|
|
void Wrap(int width);
|
|
|
|
|
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
|
|
|
|
2007-04-01 14:13:15 +00:00
|
|
|
bool IsEllipsized() const
|
|
|
|
{
|
|
|
|
return HasFlag(wxST_ELLIPSIZE_START) ||
|
|
|
|
HasFlag(wxST_ELLIPSIZE_MIDDLE) ||
|
|
|
|
HasFlag(wxST_ELLIPSIZE_END);
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the string without mnemonic characters ('&') and without markup
|
|
|
|
// (if wxST_MARKUP is being used)
|
|
|
|
virtual wxString GetLabelText() const;
|
|
|
|
|
|
|
|
// public utilities (symmetric to those in wxControl about mnemonics):
|
|
|
|
|
2007-08-05 18:54:22 +00:00
|
|
|
// get the string without mnemonic characters ('&') and without markup
|
|
|
|
static wxString GetLabelText(const wxString& label);
|
|
|
|
|
2007-04-01 14:13:15 +00:00
|
|
|
// removes the markup accepted by wxStaticText when wxST_MARKUP is used,
|
|
|
|
// and then returns the cleaned string
|
|
|
|
static wxString RemoveMarkup(const wxString& str);
|
|
|
|
|
|
|
|
// escapes the alls special symbols (<>"'&) present inside the given string
|
|
|
|
// using the corresponding entities (< > " ' &)
|
|
|
|
static wxString EscapeMarkup(const wxString& str);
|
|
|
|
|
|
|
|
|
|
|
|
protected: // functions required for wxST_ELLIPSIZE_* support
|
|
|
|
|
2007-11-13 12:10:34 +00:00
|
|
|
// choose the default border for this window
|
|
|
|
virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
|
|
|
|
|
2007-04-01 14:13:15 +00:00
|
|
|
// just calls RemoveMarkup & Ellipsize on the original label.
|
|
|
|
virtual wxString GetEllipsizedLabelWithoutMarkup() const;
|
|
|
|
|
|
|
|
// replaces parts of the string with ellipsis if needed
|
|
|
|
wxString Ellipsize(const wxString& label) const;
|
|
|
|
|
|
|
|
// to be called when updating the size of the static text:
|
|
|
|
// updates the label redoing ellipsization calculations
|
|
|
|
void UpdateLabel();
|
|
|
|
|
|
|
|
// These functions are platform-specific and must be overridden in ports
|
|
|
|
// which do not natively support ellipsization and they must be implemented
|
|
|
|
// in a way so that the m_label member of wxControl is not touched:
|
|
|
|
|
|
|
|
// returns the real label currently displayed inside the control.
|
|
|
|
virtual wxString DoGetLabel() const { return wxEmptyString; }
|
|
|
|
|
|
|
|
// sets the real label currently displayed inside the control,
|
|
|
|
// _without_ invalidating the size. The text passed is always markup-free.
|
|
|
|
virtual void DoSetLabel(const wxString& WXUNUSED(str)) { }
|
|
|
|
|
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"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK20__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/gtk/stattext.h"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk1/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_
|