]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/text.tex
removed unneeded include from the header
[wxWidgets.git] / docs / latex / wx / text.tex
CommitLineData
a660d684
KB
1\section{\class{wxTextCtrl}}\label{wxtextctrl}
2
3A text control allows text to be displayed and edited. It may be
71777e2c 4single line or multi-line.
a660d684
KB
5
6\wxheading{Derived from}
7
8streambuf\\
9\helpref{wxControl}{wxcontrol}\\
10\helpref{wxWindow}{wxwindow}\\
11\helpref{wxEvtHandler}{wxevthandler}\\
12\helpref{wxObject}{wxobject}
13
954b8ae6
JS
14\wxheading{Include files}
15
16<wx/textctrl.h>
17
a660d684
KB
18\wxheading{Window styles}
19
20\twocolwidtha{5cm}
21\begin{twocollist}\itemsep=0pt
c50f1fb9
VZ
22\twocolitem{\windowstyle{wxTE\_PROCESS\_ENTER}}{The control will generate
23the message wxEVENT\_TYPE\_TEXT\_ENTER\_COMMAND (otherwise pressing <Enter> is
24either processed internally by the control or used for navigation between
25dialog controls).}
26\twocolitem{\windowstyle{wxTE\_PROCESS\_TAB}}{The control will receieve
27EVT\_CHAR messages for TAB pressed - normally, TAB is used for passing to the
28next control in a dialog instead. For the control created with this style,
29you can still use Ctrl-Enter to pass to the next control from the keyboard.}
a660d684
KB
30\twocolitem{\windowstyle{wxTE\_MULTILINE}}{The text control allows multiple lines.}
31\twocolitem{\windowstyle{wxTE\_PASSWORD}}{The text will be echoed as asterisks.}
32\twocolitem{\windowstyle{wxTE\_READONLY}}{The text will not be user-editable.}
c57e3339
VZ
33\twocolitem{\windowstyle{wxTE\_RICH}}{Use rich text control under Win32, this
34allows to have more than 64Kb of text in the control even under Win9x. This
35style is ignored under other platforms.}
36\twocolitem{\windowstyle{wxTE\_AUTO\_URL}}{Highlight the URLs and generate the
37wxTextUrlEvents when mouse events occur over them. This style is supported
38under Win32 only and requires wxTE\_RICH.}
5a8f04e3
VZ
39\twocolitem{\windowstyle{wxTE\_NOHIDESEL}}{By default, the Windows text control
40doesn't show the selection when it doesn't have focus - use this style to force
41it to always show it. It doesn't do anything under other platforms.}
9c884972 42\twocolitem{\windowstyle{wxHSCROLL}}{A horizontal scrollbar will be created. No effect under GTK+.}
a660d684
KB
43\end{twocollist}
44
eef97940 45See also \helpref{window styles overview}{windowstyles} and
f66205b6 46\helpref{wxTextCtrl::wxTextCtrl}{wxtextctrlconstr}.
a660d684 47
d73e6791 48\wxheading{wxTextCtrl and C++ streams}
a660d684 49
d73e6791
VZ
50This class multiply-inherits from {\bf streambuf} where compilers allow,
51allowing code such as the following:
a660d684
KB
52
53{\small%
54\begin{verbatim}
55 wxTextCtrl *control = new wxTextCtrl(...);
56
57 ostream stream(control)
58
59 stream << 123.456 << " some text\n";
60 stream.flush();
61\end{verbatim}
62}%
63
d73e6791
VZ
64If your compiler does not support derivation from {\bf streambuf} and gives a
65compile error, define the symbol {\bf NO\_TEXT\_WINDOW\_STREAM} in the
66wxTextCtrl header file.
9c884972 67
d73e6791
VZ
68Note that independently of this setting you can always use wxTextCtrl itself
69in a stream-like manner:
70
71{\small%
72\begin{verbatim}
73 wxTextCtrl *control = new wxTextCtrl(...);
74
75 *control << 123.456 << " some text\n";
76\end{verbatim}
77}%
78
79always works. However the possibility to create an ostream associated with
80wxTextCtrl may be useful if you need to redirect the output of a function
81taking an ostream as parameter to a text control.
82
83Another commonly requested need is to redirect {\bf std::cout} to the text
84control. This could be done in the following way:
85
86{\small%
87\begin{verbatim}
88 #include <iostream>
89
90 wxTextCtrl *control = new wxTextCtrl(...);
91
92 std::streambuf *sbOld = std::cout.rdbuf();
93 std::cout.rdbuf(*control);
94
95 // use cout as usual, the output appears in the text control
96 ...
97
98 std::cout.rdbuf(sbOld);
99\end{verbatim}
100}%
101
102But wxWindows provides a convenient class to make it even simpler so instead
103you may just do
104
105{\small%
106\begin{verbatim}
107 #include <iostream>
108
109 wxTextCtrl *control = new wxTextCtrl(...);
110
111 wxStreamToTextRedirector redirect(control);
112
113 // all output to cout goes into the text control until the exit from current
114 // scope
115\end{verbatim}
116}%
117
118See \helpref{wxStreamToTextRedirector}{wxstreamtotextredirector} for more
119details.
a660d684 120
5de76427
JS
121\wxheading{Event handling}
122
e702ff0f
JS
123The following commands are processed by default event handlers in wxTextCtrl: wxID\_CUT, wxID\_COPY,
124wxID\_PASTE, wxID\_UNDO, wxID\_REDO. The associated UI update events are also processed
125automatically, when the control has the focus.
126
5de76427
JS
127To process input from a text control, use these event handler macros to direct input to member
128functions that take a \helpref{wxCommandEvent}{wxcommandevent} argument.
129
130\twocolwidtha{7cm}%
131\begin{twocollist}\itemsep=0pt
132\twocolitem{{\bf EVT\_TEXT(id, func)}}{Respond to a wxEVT\_COMMAND\_TEXT\_UPDATED event,
a1665b22
VZ
133generated when the text changes. Notice that this event will always be sent
134when the text controls contents changes - whether this is due to user input or
135comes from the program itself (for example, if SetValue() is called)}
5de76427
JS
136\twocolitem{{\bf EVT\_TEXT\_ENTER(id, func)}}{Respond to a wxEVT\_COMMAND\_TEXT\_ENTER event,
137generated when enter is pressed in a single-line text control.}
f2616db5
VZ
138\twocolitem{{\bf EVT\_TEXT\_URL(id, func)}}{A mouse event occured over an URL
139in the text control (Win32 only)}
140\twocolitem{{\bf EVT\_TEXT\_MAXLEN(id, func)}}{User tried to enter more text
eef97940 141into the control than the limit set by
f2616db5 142\helpref{SetMaxLength}{wxtextctrlsetmaxlength}.}
5de76427
JS
143\end{twocollist}%
144
a660d684
KB
145\latexignore{\rtfignore{\wxheading{Members}}}
146
147\membersection{wxTextCtrl::wxTextCtrl}\label{wxtextctrlconstr}
148
149\func{}{wxTextCtrl}{\void}
150
151Default constructor.
152
eaaa6a06 153\func{}{wxTextCtrl}{\param{wxWindow* }{parent}, \param{wxWindowID}{ id},\rtfsp
36b3b54a 154\param{const wxString\& }{value = ``"}, \param{const wxPoint\& }{pos}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
eaaa6a06 155\param{long}{ style = 0}, \param{const wxValidator\& }{validator}, \param{const wxString\& }{name = ``text"}}
a660d684
KB
156
157Constructor, creating and showing a text control.
158
159\wxheading{Parameters}
160
161\docparam{parent}{Parent window. Should not be NULL.}
162
163\docparam{id}{Control identifier. A value of -1 denotes a default value.}
164
165\docparam{value}{Default text value.}
166
167\docparam{pos}{Text control position.}
168
169\docparam{size}{Text control size.}
170
171\docparam{style}{Window style. See \helpref{wxTextCtrl}{wxtextctrl}.}
172
173\docparam{validator}{Window validator.}
174
175\docparam{name}{Window name.}
176
177\wxheading{Remarks}
178
86975656
RD
179The horizontal scrollbar ({\bf wxTE\_HSCROLL} style flag) will only be created for multi-line text controls.
180Without a horizontal scrollbar, text lines that don't fit in the control's
71777e2c
HH
181size will be wrapped (but no newline character is inserted). Single line
182controls don't have a horizontal scrollbar, the text is automatically scrolled
86975656 183so that the \helpref{insertion point}{wxtextctrlgetinsertionpoint} is always
71777e2c
HH
184visible.
185
c57e3339
VZ
186% VZ: this is no longer true
187%Under Windows, if the {\bf wxTE\_MULTILINE} style is used, the window is implemented
188%as a Windows rich text control with unlimited capacity. Otherwise, normal edit control limits
189%apply.
a660d684
KB
190
191\wxheading{See also}
192
193\helpref{wxTextCtrl::Create}{wxtextctrlcreate}, \helpref{wxValidator}{wxvalidator}
194
195\membersection{wxTextCtrl::\destruct{wxTextCtrl}}
196
197\func{}{\destruct{wxTextCtrl}}{\void}
198
199Destructor, destroying the text control.
200
ca8b28f2
JS
201\membersection{wxTextCtrl::AppendText}\label{wxtextctrlappendtext}
202
203\func{void}{AppendText}{\param{const wxString\& }{ text}}
204
205Appends the text to the end of the text control.
206
207\wxheading{Parameters}
208
209\docparam{text}{Text to write to the text control.}
210
211\wxheading{Remarks}
212
213After the text is appended, the insertion point will be at the end of the text control. If this behaviour is not desired,
214the programmer should use \helpref{GetInsertionPoint}{wxtextctrlgetinsertionpoint} and \helpref{SetInsertionPoint}{wxtextctrlsetinsertionpoint}.
215
216\wxheading{See also}
217
218\helpref{wxTextCtrl::WriteText}{wxtextctrlwritetext}
219
220\membersection{wxTextCtrl::CanCopy}\label{wxtextctrlcancopy}
221
222\func{virtual bool}{CanCopy}{\void}
223
224Returns TRUE if the selection can be copied to the clipboard.
225
226\membersection{wxTextCtrl::CanCut}\label{wxtextctrlcancut}
227
228\func{virtual bool}{CanCut}{\void}
229
230Returns TRUE if the selection can be cut to the clipboard.
231
232\membersection{wxTextCtrl::CanPaste}\label{wxtextctrlcanpaste}
233
234\func{virtual bool}{CanPaste}{\void}
235
236Returns TRUE if the contents of the clipboard can be pasted into the
237text control. On some platforms (Motif, GTK) this is an approximation
238and returns TRUE if the control is editable, FALSE otherwise.
239
240\membersection{wxTextCtrl::CanRedo}\label{wxtextctrlcanredo}
241
242\func{virtual bool}{CanRedo}{\void}
243
244Returns TRUE if there is a redo facility available and the last operation
245can be redone.
246
247\membersection{wxTextCtrl::CanUndo}\label{wxtextctrlcanundo}
248
249\func{virtual bool}{CanUndo}{\void}
250
251Returns TRUE if there is an undo facility available and the last operation
252can be undone.
253
a660d684
KB
254\membersection{wxTextCtrl::Clear}\label{wxtextctrlclear}
255
256\func{virtual void}{Clear}{\void}
257
258Clears the text in the control.
259
260\membersection{wxTextCtrl::Copy}\label{wxtextctrlcopy}
261
262\func{virtual void}{Copy}{\void}
263
264Copies the selected text to the clipboard under Motif and MS Windows.
265
266\membersection{wxTextCtrl::Create}\label{wxtextctrlcreate}
267
eaaa6a06 268\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID}{ id},\rtfsp
36b3b54a 269\param{const wxString\& }{value = ``"}, \param{const wxPoint\& }{pos}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
eaaa6a06 270\param{long}{ style = 0}, \param{const wxValidator\& }{validator}, \param{const wxString\& }{name = ``text"}}
a660d684
KB
271
272Creates the text control for two-step construction. Derived classes
273should call or replace this function. See \helpref{wxTextCtrl::wxTextCtrl}{wxtextctrlconstr}\rtfsp
274for further details.
275
276\membersection{wxTextCtrl::Cut}\label{wxtextctrlcut}
277
278\func{virtual void}{Cut}{\void}
279
280Copies the selected text to the clipboard and removes the selection.
281
282\membersection{wxTextCtrl::DiscardEdits}
283
284\func{void}{DiscardEdits}{\void}
285
286Resets the internal `modified' flag as if the current edits had been saved.
287
288\membersection{wxTextCtrl::GetInsertionPoint}\label{wxtextctrlgetinsertionpoint}
289
290\constfunc{virtual long}{GetInsertionPoint}{\void}
291
71777e2c
HH
292Returns the insertion point. This is defined as the zero based index of the
293character position to the right of the insertion point. For example, if
294the insertion point is at the end of the text control, it is equal to
86975656
RD
295both \helpref{GetValue()}{wxtextctrlgetvalue}.Length() and
296\helpref{GetLastPosition()}{wxtextctrlgetlastposition}.
71777e2c
HH
297
298The following code snippet safely returns the character at the insertion
299point or the zero character if the point is at the end of the control.
300
301{\small%
302\begin{verbatim}
303 char GetCurrentChar(wxTextCtrl *tc) {
304 if (tc->GetInsertionPoint() == tc->GetLastPosition())
305 return '\0';
306 return tc->GetValue[tc->GetInsertionPoint()];
86975656 307 }
71777e2c
HH
308\end{verbatim}
309}%
a660d684
KB
310
311\membersection{wxTextCtrl::GetLastPosition}\label{wxtextctrlgetlastposition}
312
313\constfunc{virtual long}{GetLastPosition}{\void}
314
86975656 315Returns the zero based index of the last position in the text control,
71777e2c 316which is equal to the number of characters in the control.
a660d684
KB
317
318\membersection{wxTextCtrl::GetLineLength}\label{wxtextctrlgetlinelength}
319
320\constfunc{int}{GetLineLength}{\param{long}{ lineNo}}
321
86975656 322Gets the length of the specified line, not including any trailing newline
71777e2c 323character(s).
a660d684
KB
324
325\wxheading{Parameters}
326
327\docparam{lineNo}{Line number (starting from zero).}
328
329\wxheading{Return value}
330
331The length of the line, or -1 if {\it lineNo} was invalid.
332
333\membersection{wxTextCtrl::GetLineText}\label{wxtextctrlgetlinetext}
334
eaaa6a06 335\constfunc{wxString}{GetLineText}{\param{long}{ lineNo}}
a660d684 336
71777e2c
HH
337Returns the contents of a given line in the text control, not including
338any trailing newline character(s).
a660d684
KB
339
340\wxheading{Parameters}
341
342\docparam{lineNo}{The line number, starting from zero.}
343
344\wxheading{Return value}
345
346The contents of the line.
347
348\membersection{wxTextCtrl::GetNumberOfLines}\label{wxtextctrlgetnumberoflines}
349
350\constfunc{int}{GetNumberOfLines}{\void}
351
352Returns the number of lines in the text control buffer.
353
71777e2c
HH
354\wxheading{Remarks}
355
356Note that even empty text controls have one line (where the insertion point
357is), so GetNumberOfLines() never returns 0.
358
359For gtk\_text (multi-line) controls, the number of lines is
360calculated by actually counting newline characters in the buffer. You
361may wish to avoid using functions that work with line numbers if you are
362working with controls that contain large amounts of text.
363
ca8b28f2
JS
364\membersection{wxTextCtrl::GetSelection}\label{wxtextctrlgetselection}
365
366\func{virtual void}{GetSelection}{\param{long*}{ from}, \param{long*}{ to}}
367
368Gets the current selection span. If the returned values are equal, there was
369no selection.
370
18414479
VZ
371Please note that the indices returned may be used with the other wxTextctrl
372methods but don't necessarily represent the correct indices into the string
373returned by \helpref{GetValue()}{wxtextctrlgetvalue} for multiline controls
eef97940
RD
374under Windows (at least,) you should use
375\helpref{GetStringSelection()}{wxtextctrlgetstringselection} to get the selected
18414479
VZ
376text.
377
ca8b28f2
JS
378\wxheading{Parameters}
379
380\docparam{from}{The returned first position.}
381
382\docparam{to}{The returned last position.}
383
86975656
RD
384\pythonnote{The wxPython version of this method returns a tuple
385consisting of the from and to values.}
386
5873607e
VZ
387\perlnote{In wxPerl this method takes no parameter and returns a
3882-element list {\tt ( from, to )}.}
389
eef97940 390\membersection{wxTextCtrl::GetStringSelection}\label{wxtextctrlgetstringselection}
18414479 391
eef97940 392\func{virtual wxString}{GetStringSelection}{\void}
18414479
VZ
393
394Gets the text currently selected in the control. If there is no selection, the
395returned string is empty.
396
a660d684
KB
397\membersection{wxTextCtrl::GetValue}\label{wxtextctrlgetvalue}
398
399\constfunc{wxString}{GetValue}{\void}
400
9750fc42 401Gets the contents of the control. Notice that for a multiline text control,
b2cf617c
JS
402the lines will be separated by (Unix-style) $\backslash$n characters, even under
403Windows where they are separated by a $\backslash$r$\backslash$n sequence in the native control.
a660d684
KB
404
405\membersection{wxTextCtrl::IsModified}\label{wxtextctrlismodified}
406
407\constfunc{bool}{IsModified}{\void}
408
409Returns TRUE if the text has been modified.
410
411\membersection{wxTextCtrl::LoadFile}\label{wxtextctrlloadfile}
412
413\func{bool}{LoadFile}{\param{const wxString\& }{ filename}}
414
415Loads and displays the named file, if it exists.
416
417\wxheading{Parameters}
418
419\docparam{filename}{The filename of the file to load.}
420
421\wxheading{Return value}
422
423TRUE if successful, FALSE otherwise.
424
425\membersection{wxTextCtrl::OnChar}\label{wxtextctrlonchar}
426
427\func{void}{OnChar}{\param{wxKeyEvent\& }{event}}
428
429Default handler for character input.
430
431\wxheading{Remarks}
432
433It is possible to intercept character
434input by overriding this member. Call this function
435to let the default behaviour take place; not calling
436it results in the character being ignored. You can
437replace the {\it keyCode} member of {\it event} to
438translate keystrokes.
439
440Note that Windows and Motif have different ways
441of implementing the default behaviour. In Windows,
442calling wxTextCtrl::OnChar immediately
443processes the character. In Motif,
444calling this function simply sets a flag
445to let default processing happen. This might affect
446the way in which you write your OnChar function
447on different platforms.
448
449\wxheading{See also}
450
451\helpref{wxKeyEvent}{wxkeyevent}
452
453\membersection{wxTextCtrl::OnDropFiles}\label{wxtextctrlondropfiles}
454
455\func{void}{OnDropFiles}{\param{wxDropFilesEvent\& }{event}}
456
457This event handler function implements default drag and drop behaviour, which
458is to load the first dropped file into the control.
459
460\wxheading{Parameters}
461
462\docparam{event}{The drop files event.}
463
71777e2c
HH
464\wxheading{Remarks}
465
b2cf617c 466This is not implemented on non-Windows platforms.
71777e2c 467
a660d684
KB
468\wxheading{See also}
469
470\helpref{wxDropFilesEvent}{wxdropfilesevent}
471
472\membersection{wxTextCtrl::Paste}\label{wxtextctrlpaste}
473
474\func{virtual void}{Paste}{\void}
475
476Pastes text from the clipboard to the text item.
477
478\membersection{wxTextCtrl::PositionToXY}\label{wxtextctrlpositiontoxy}
479
0efe5ba7 480\constfunc{bool}{PositionToXY}{\param{long }{pos}, \param{long *}{x}, \param{long *}{y}}
a660d684 481
71777e2c 482Converts given position to a zero-based column, line number pair.
a660d684
KB
483
484\wxheading{Parameters}
485
486\docparam{pos}{Position.}
487
71777e2c 488\docparam{x}{Receives zero based column number.}
a660d684 489
71777e2c
HH
490\docparam{y}{Receives zero based line number.}
491
492\wxheading{Return value}
493
0efe5ba7 494TRUE on success, FALSE on failure (most likely due to a too large position
71777e2c 495parameter).
a660d684
KB
496
497\wxheading{See also}
498
499\helpref{wxTextCtrl::XYToPosition}{wxtextctrlxytoposition}
500
71777e2c
HH
501\pythonnote{In Python, PositionToXY() returns a tuple containing the x and
502y values, so (x,y) = PositionToXY() is equivalent to the call described
503above.}
504
5873607e
VZ
505\perlnote{In wxPerl this method only takes the {\tt pos} parameter, and
506returns a 2-element list {\tt ( x, y )}.}
507
ca8b28f2
JS
508\membersection{wxTextCtrl::Redo}\label{wxtextctrlredo}
509
510\func{virtual void}{Redo}{\void}
511
512If there is a redo facility and the last operation can be redone, redoes the last operation. Does nothing
513if there is no redo facility.
514
a660d684
KB
515\membersection{wxTextCtrl::Remove}\label{wxtextctrlremove}
516
eaaa6a06 517\func{virtual void}{Remove}{\param{long}{ from}, \param{long}{ to}}
a660d684 518
71777e2c
HH
519Removes the text starting at the first given position up to (but not including)
520the character at the last position.
a660d684
KB
521
522\wxheading{Parameters}
523
524\docparam{from}{The first position.}
525
526\docparam{to}{The last position.}
527
528\membersection{wxTextCtrl::Replace}\label{wxtextctrlreplace}
529
eaaa6a06 530\func{virtual void}{Replace}{\param{long}{ from}, \param{long}{ to}, \param{const wxString\& }{value}}
a660d684 531
86975656 532Replaces the text starting at the first position up to (but not including)
71777e2c 533the character at the last position with the given text.
a660d684
KB
534
535\wxheading{Parameters}
536
537\docparam{from}{The first position.}
538
539\docparam{to}{The last position.}
540
541\docparam{value}{The value to replace the existing text with.}
542
543\membersection{wxTextCtrl::SaveFile}\label{wxtextctrlsavefile}
544
545\func{bool}{SaveFile}{\param{const wxString\& }{ filename}}
546
547Saves the contents of the control in a text file.
548
549\wxheading{Parameters}
550
71777e2c 551\docparam{filename}{The name of the file in which to save the text.}
a660d684
KB
552
553\wxheading{Return value}
554
555TRUE if the operation was successful, FALSE otherwise.
556
557\membersection{wxTextCtrl::SetEditable}\label{wxtextctrlseteditable}
558
559\func{virtual void}{SetEditable}{\param{const bool}{ editable}}
560
b2cf617c 561Makes the text item editable or read-only, overriding the {\bf wxTE\_READONLY} flag.
a660d684
KB
562
563\wxheading{Parameters}
564
565\docparam{editable}{If TRUE, the control is editable. If FALSE, the control is read-only.}
566
567\membersection{wxTextCtrl::SetInsertionPoint}\label{wxtextctrlsetinsertionpoint}
568
eaaa6a06 569\func{virtual void}{SetInsertionPoint}{\param{long}{ pos}}
a660d684 570
71777e2c 571Sets the insertion point at the given position.
a660d684
KB
572
573\wxheading{Parameters}
574
575\docparam{pos}{Position to set.}
576
577\membersection{wxTextCtrl::SetInsertionPointEnd}\label{wxtextctrlsetinsertionpointend}
578
579\func{virtual void}{SetInsertionPointEnd}{\void}
580
71777e2c
HH
581Sets the insertion point at the end of the text control. This is equivalent
582to \helpref{SetInsertionPoint}{wxtextctrlsetinsertionpoint}(\helpref{GetLastPosition}{wxtextctrlgetlastposition}()).
a660d684 583
d7eee191
VZ
584\membersection{wxTextCtrl::SetMaxLength}\label{wxtextctrlsetmaxlength}
585
586\func{virtual void}{SetMaxLength}{\param{unsigned long }{len}}
587
588This function sets the maximum number of characters the user can enter into the
589control. In other words, it allows to limit the text value length to {\it len}
590not counting the terminating {\tt NUL} character.
591
5949fba6
VZ
592If {\it len} is $0$, the previously set max length limi, if any, is discarded
593and the user may enter as much text as the underlying native text control
594widget supports (typically at least 32Kb).
595
d7eee191 596If the user tries to enter more characters into the text control when it
eef97940 597already is filled up to the maximal length, a
d7eee191
VZ
598{\tt wxEVT\_COMMAND\_TEXT\_MAXLEN} event is sent to notify the program about it
599(giving it the possibility to show an explanatory message, for example) and the
600extra input is discarded.
601
602Note that this function may only be used with single line text controls.
603
604\wxheading{Compatibility}
605
606Only implemented in wxMSW/wxGTK starting with wxWindows 2.3.2.
607
a660d684
KB
608\membersection{wxTextCtrl::SetSelection}\label{wxtextctrlsetselection}
609
eaaa6a06 610\func{virtual void}{SetSelection}{\param{long}{ from}, \param{long}{ to}}
a660d684 611
71777e2c 612Selects the text starting at the first position up to (but not including) the character at the last position.
a660d684
KB
613
614\wxheading{Parameters}
615
616\docparam{from}{The first position.}
617
618\docparam{to}{The last position.}
619
620\membersection{wxTextCtrl::SetValue}\label{wxtextctrlsetvalue}
621
622\func{virtual void}{SetValue}{\param{const wxString\& }{ value}}
623
f6bcfd97 624Sets the text value and marks the control as not-modified.
a660d684
KB
625
626\wxheading{Parameters}
627
628\docparam{value}{The new value to set. It may contain newline characters if the text control is multi-line.}
629
630\membersection{wxTextCtrl::ShowPosition}\label{wxtextctrlshowposition}
631
eaaa6a06 632\func{void}{ShowPosition}{\param{long}{ pos}}
a660d684
KB
633
634Makes the line containing the given position visible.
635
636\wxheading{Parameters}
637
638\docparam{pos}{The position that should be visible.}
639
ca8b28f2
JS
640\membersection{wxTextCtrl::Undo}\label{wxtextctrlundo}
641
642\func{virtual void}{Undo}{\void}
643
644If there is an undo facility and the last operation can be undone, undoes the last operation. Does nothing
645if there is no undo facility.
646
a660d684
KB
647\membersection{wxTextCtrl::WriteText}\label{wxtextctrlwritetext}
648
649\func{void}{WriteText}{\param{const wxString\& }{ text}}
650
86975656 651Writes the text into the text control at the current insertion position.
a660d684
KB
652
653\wxheading{Parameters}
654
655\docparam{text}{Text to write to the text control.}
656
657\wxheading{Remarks}
658
659Newlines in the text string
660are the only control characters allowed, and they will cause appropriate
abaa2936 661line breaks. See \helpref{wxTextCtrl::\cinsert}{wxtextctrlinsert} and \helpref{wxTextCtrl::AppendText}{wxtextctrlappendtext} for more convenient ways of writing to the window.
71777e2c
HH
662
663After 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.
a660d684
KB
664
665\membersection{wxTextCtrl::XYToPosition}\label{wxtextctrlxytoposition}
666
eaaa6a06 667\func{long}{XYToPosition}{\param{long}{ x}, \param{long}{ y}}
a660d684 668
71777e2c 669Converts the given zero based column and line number to a position.
a660d684
KB
670
671\wxheading{Parameters}
672
71777e2c 673\docparam{x}{The column number.}
a660d684 674
71777e2c 675\docparam{y}{The line number.}
a660d684
KB
676
677\wxheading{Return value}
678
679The position value.
680
681\membersection{wxTextCtrl::operator \cinsert}\label{wxtextctrlinsert}
682
683\func{wxTextCtrl\&}{operator \cinsert}{\param{const wxString\& }{s}}
684
685\func{wxTextCtrl\&}{operator \cinsert}{\param{int}{ i}}
686
687\func{wxTextCtrl\&}{operator \cinsert}{\param{long}{ i}}
688
689\func{wxTextCtrl\&}{operator \cinsert}{\param{float}{ f}}
690
691\func{wxTextCtrl\&}{operator \cinsert}{\param{double}{ d}}
692
693\func{wxTextCtrl\&}{operator \cinsert}{\param{char}{ c}}
694
abaa2936 695Operator definitions for appending to a text control, for example:
a660d684
KB
696
697\begin{verbatim}
698 wxTextCtrl *wnd = new wxTextCtrl(my_frame);
699
700 (*wnd) << "Welcome to text control number " << 1 << ".\n";
701\end{verbatim}
702