#include </home/zeitlin/src/wx/github/interface/wx/stattext.h>
A static text control displays one or more lines of read-only text.
wxStaticText supports the three classic text alignments, label ellipsization i.e. replacing parts of the text with the ellipsis ("...") if the label doesn't fit into the provided space and also formatting markup with wxControl::SetLabelMarkup().
This class supports the following styles:
wxALIGN_RIGHT
or the wxALIGN_CENTRE_HORIZONTAL
style because otherwise they won't make sense any longer after a call to SetLabel()). wxMSW appearance | wxGTK appearance | wxMac appearance |
Public Member Functions | |
wxStaticText () | |
Default constructor. | |
wxStaticText (wxWindow *parent, wxWindowID id, const wxString &label, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=0, const wxString &name=wxStaticTextNameStr) | |
Constructor, creating and showing a text control. | |
bool | Create (wxWindow *parent, wxWindowID id, const wxString &label, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=0, const wxString &name=wxStaticTextNameStr) |
Creation function, for two-step construction. | |
bool | IsEllipsized () const |
Returns true if the window styles for this control contains one of the wxST_ELLIPSIZE_START , wxST_ELLIPSIZE_MIDDLE or wxST_ELLIPSIZE_END styles. | |
void | Wrap (int width) |
This functions wraps the controls label so that each of its lines becomes at most width pixels wide if possible (the lines are broken at words boundaries so it might not be the case if words are too long). |
wxStaticText::wxStaticText | ( | ) |
Default constructor.
wxStaticText::wxStaticText | ( | wxWindow * | parent, |
wxWindowID | id, | ||
const wxString & | label, | ||
const wxPoint & | pos = wxDefaultPosition , |
||
const wxSize & | size = wxDefaultSize , |
||
long | style = 0 , |
||
const wxString & | name = wxStaticTextNameStr |
||
) |
Constructor, creating and showing a text control.
parent | Parent window. Should not be NULL. |
id | Control identifier. A value of -1 denotes a default value. |
label | Text label. |
pos | Window position. |
size | Window size. |
style | Window style. See wxStaticText. |
name | Window name. |
bool wxStaticText::Create | ( | wxWindow * | parent, |
wxWindowID | id, | ||
const wxString & | label, | ||
const wxPoint & | pos = wxDefaultPosition , |
||
const wxSize & | size = wxDefaultSize , |
||
long | style = 0 , |
||
const wxString & | name = wxStaticTextNameStr |
||
) |
Creation function, for two-step construction.
For details see wxStaticText().
bool wxStaticText::IsEllipsized | ( | ) | const |
Returns true if the window styles for this control contains one of the wxST_ELLIPSIZE_START
, wxST_ELLIPSIZE_MIDDLE
or wxST_ELLIPSIZE_END
styles.
void wxStaticText::Wrap | ( | int | width | ) |
This functions wraps the controls label so that each of its lines becomes at most width pixels wide if possible (the lines are broken at words boundaries so it might not be the case if words are too long).
If width is negative, no wrapping is done. Note that this width is not necessarily the total width of the control, since a few pixels for the border (depending on the controls border style) may be added.