added wxStaticText::Wrap()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35202 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-08-16 23:14:34 +00:00
parent 0d29fecd2e
commit 5d1b49193b
5 changed files with 208 additions and 86 deletions

View File

@@ -18,6 +18,7 @@ All:
All (GUI):
- Added wxStaticText::Wrap()
- Added wxXmlResource::Unload().
- Possibility of modeless wxWizard dialog (with presentation in sample).
- Fixed a rare crash due to malformed HTML in wxHTML (Xavier Nodet).

View File

@@ -36,6 +36,7 @@ See also \helpref{window styles overview}{windowstyles}.
\latexignore{\rtfignore{\wxheading{Members}}}
\membersection{wxStaticText::wxStaticText}\label{wxstatictextconstr}
\func{}{wxStaticText}{\void}
@@ -68,6 +69,7 @@ Constructor, creating and showing a text control.
\helpref{wxStaticText::Create}{wxstatictextcreate}
\membersection{wxStaticText::Create}\label{wxstatictextcreate}
\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID}{ id},\rtfsp
@@ -76,12 +78,14 @@ Constructor, creating and showing a text control.
Creation function, for two-step construction. For details see \helpref{wxStaticText::wxStaticText}{wxstatictextconstr}.
\membersection{wxStaticText::GetLabel}\label{wxstatictextgetlabel}
\constfunc{wxString}{GetLabel}{\void}
Returns the contents of the control.
\membersection{wxStaticText::SetLabel}\label{wxstatictextsetlabel}
\func{virtual void}{SetLabel}{\param{const wxString\& }{ label}}
@@ -93,3 +97,12 @@ label unless the control has wxST\_NO\_AUTORESIZE flag.
\docparam{label}{The new label to set. It may contain newline characters.}
\membersection{wxStaticText::Wrap}\label{wxstatictextwrpa}
\func{void}{Wrap}{\param{int }{width}}
This functions wraps the controls label so that each of its lines becomes at
most \arg{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 \arg{width}
is negative, no wrapping is done.