]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/text.tex
removed gtk_text references
[wxWidgets.git] / docs / latex / wx / text.tex
index 80f68cc1c75e368aabd24da7f5107deb86f6b056..d1229d93a119d84a5a8981623d9dcb45d777d4fc 100644 (file)
@@ -26,7 +26,7 @@ Windows.}
 \end{twocollist}
 
 See also \helpref{window styles overview}{windowstyles} and 
-\helpref{wxtextctrlconstr}.
+\helpref{wxTextCtrl::wxTextCtrl}{wxtextctrlconstr}.
 
 \wxheading{Remarks}
 
@@ -108,9 +108,6 @@ Under Windows, if the {\bf wxTE\_MULTILINE} style is used, the window is impleme
 as a Windows rich text control with unlimited capacity. Otherwise, normal edit control limits
 apply.
 
-For the GTK, the single line text control is implemented as a gtk\_entry, 
-while the multi-line control is a gtk\_text.
-
 \wxheading{See also}
 
 \helpref{wxTextCtrl::Create}{wxtextctrlcreate}, \helpref{wxValidator}{wxvalidator}
@@ -453,10 +450,29 @@ Writes the text into the text control at the current insertion position.
 
 Newlines in the text string
 are the only control characters allowed, and they will cause appropriate
-line breaks.  See \helpref{wxTextCtrl::\cinsert}{wxtextctrlinsert} for more convenient ways of writing to the window.
+line breaks.  See \helpref{wxTextCtrl::\cinsert}{wxtextctrlinsert} and \helpref{wxTextCtrl::AppendText}{wxtextctrlappendtext} for more convenient ways of writing to the window.
 
 After the write operation, the insertion point will be at the end of the inserted text, so subsequent write operations will be appended. To append text after the user may have interacted with the control, call \helpref{wxTextCtrl::SetInsertionPointEnd}{wxtextctrlsetinsertionpointend} before writing.
 
+\membersection{wxTextCtrl::AppendText}\label{wxtextctrlappendtext}
+
+\func{void}{AppendText}{\param{const wxString\& }{ text}}
+
+Appends the text to the end of the text control.
+
+\wxheading{Parameters}
+
+\docparam{text}{Text to write to the text control.}
+
+\wxheading{Remarks}
+
+After the text is appended, the insertion point will be at the end of the text control. If this behaviour is not desired,
+the programmer should use \helpref{GetInsertionPoint}{wxtextctrlgetinsertionpoint} and \helpref{SetInsertionPoint}{wxtextctrlsetinsertionpoint}.
+
+\wxheading{See also}
+
+\helpref{wxTextCtrl::WriteText}{wxtextctrlwritetext}
+
 \membersection{wxTextCtrl::XYToPosition}\label{wxtextctrlxytoposition}
 
 \func{long}{XYToPosition}{\param{long}{ x}, \param{long}{ y}}
@@ -487,7 +503,7 @@ The position value.
 
 \func{wxTextCtrl\&}{operator \cinsert}{\param{char}{ c}}
 
-Operator definitions for writing to a text control, for example:
+Operator definitions for appending to a text control, for example:
 
 \begin{verbatim}
   wxTextCtrl *wnd = new wxTextCtrl(my_frame);