]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/text.tex
removed some duplicate code, no real changes
[wxWidgets.git] / docs / latex / wx / text.tex
CommitLineData
eda40bfc
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%% wxTextAttr %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3\section{\class{wxTextAttr}}\label{wxtextattr}
4
5wxTextAttr represents the attributes, or style, for a range of text in a\rtfsp
6\helpref{wxTextCtrl}{wxtextctrl}.
7
8\wxheading{Derived from}
9
10No base class
11
12\wxheading{Include files}
13
14<wx/textctrl.h>
15
16\latexignore{\rtfignore{\wxheading{Members}}}
17
18\membersection{wxTextAttr::wxTextAttr}\label{wxtextattrctor}
19
20\func{}{wxTextAttr}{\void}
21
22\func{}{wxTextAttr}{\param{const wxColour\& }{colText}, \param{const wxColour\& }{colBack = wxNullColour}, \param{const wxFont\& }{font = wxNullFont}}
23
24The constructors initialize one or more of the text foreground and background
25colours and font. The values not initialized in the constructor can be set
26later, otherwise \helpref{wxTextCtrl::SetStyle}{wxtextctrlsetstyle} will use
27the default values for them.
28
29\membersection{wxTextAttr::GetBackgroundColour}
30
31\constfunc{const wxColour\&}{GetBackgroundColour}{\void}
32
33Return the background colour specified by this attribute.
34
35\membersection{wxTextAttr::GetFont}
36
37\constfunc{const wxFont\&}{GetFont}{\void}
38
39Return the text font specified by this attribute.
40
41\membersection{wxTextAttr::GetTextColour}
42
43\constfunc{const wxColour\&}{GetTextColour}{\void}
44
45Return the text colour specified by this attribute.
46
47\membersection{wxTextAttr::HasBackgroundColour}
48
49\constfunc{bool}{HasBackgroundColour}{\void}
50
51Returns {\tt TRUE} if this style specifies the background colour to use.
52
53\membersection{wxTextAttr::HasFont}
54
55\constfunc{bool}{HasFont}{\void}
56
57Returns {\tt TRUE} if this style specifies the font to use.
58
59\membersection{wxTextAttr::HasTextColour}
60
61\constfunc{bool}{HasTextColour}{\void}
62
63Returns {\tt TRUE} if this style specifies the foreground colour to use.
64
65\membersection{wxTextAttr::IsDefault}
66
67\constfunc{bool}{IsDefault}{\void}
68
69Returns {\tt TRUE} if this style specifies any non-default attributes.
70
71%%%%%%%%%%%%%%%%%%%%%%%%%%%% wxTextCtrl %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
72
a660d684
KB
73\section{\class{wxTextCtrl}}\label{wxtextctrl}
74
75A text control allows text to be displayed and edited. It may be
71777e2c 76single line or multi-line.
a660d684
KB
77
78\wxheading{Derived from}
79
80streambuf\\
81\helpref{wxControl}{wxcontrol}\\
82\helpref{wxWindow}{wxwindow}\\
83\helpref{wxEvtHandler}{wxevthandler}\\
84\helpref{wxObject}{wxobject}
85
954b8ae6
JS
86\wxheading{Include files}
87
88<wx/textctrl.h>
89
a660d684
KB
90\wxheading{Window styles}
91
92\twocolwidtha{5cm}
93\begin{twocollist}\itemsep=0pt
c50f1fb9
VZ
94\twocolitem{\windowstyle{wxTE\_PROCESS\_ENTER}}{The control will generate
95the message wxEVENT\_TYPE\_TEXT\_ENTER\_COMMAND (otherwise pressing <Enter> is
96either processed internally by the control or used for navigation between
97dialog controls).}
98\twocolitem{\windowstyle{wxTE\_PROCESS\_TAB}}{The control will receieve
99EVT\_CHAR messages for TAB pressed - normally, TAB is used for passing to the
100next control in a dialog instead. For the control created with this style,
101you can still use Ctrl-Enter to pass to the next control from the keyboard.}
a660d684
KB
102\twocolitem{\windowstyle{wxTE\_MULTILINE}}{The text control allows multiple lines.}
103\twocolitem{\windowstyle{wxTE\_PASSWORD}}{The text will be echoed as asterisks.}
104\twocolitem{\windowstyle{wxTE\_READONLY}}{The text will not be user-editable.}
c57e3339
VZ
105\twocolitem{\windowstyle{wxTE\_RICH}}{Use rich text control under Win32, this
106allows to have more than 64Kb of text in the control even under Win9x. This
107style is ignored under other platforms.}
a5aa8086
VZ
108\twocolitem{\windowstyle{wxTE\_RICH2}}{Use rich text control version 2.0 or 3.0
109under Win32, this style is ignored under other platforms}
c57e3339
VZ
110\twocolitem{\windowstyle{wxTE\_AUTO\_URL}}{Highlight the URLs and generate the
111wxTextUrlEvents when mouse events occur over them. This style is supported
112under Win32 only and requires wxTE\_RICH.}
5a8f04e3
VZ
113\twocolitem{\windowstyle{wxTE\_NOHIDESEL}}{By default, the Windows text control
114doesn't show the selection when it doesn't have focus - use this style to force
115it to always show it. It doesn't do anything under other platforms.}
9c884972 116\twocolitem{\windowstyle{wxHSCROLL}}{A horizontal scrollbar will be created. No effect under GTK+.}
74ede4eb
VZ
117\twocolitem{\windowstyle{wxTE\_DONTWRAP}}{Same as {\tt wxHSCROLL} style.}
118\twocolitem{\windowstyle{wxTE\_LINEWRAP}}{Wrap the lines too long to be shown entirely at any position (wxUniv only currently)}
119\twocolitem{\windowstyle{wxTE\_WORDWRAP}}{Wrap the lines too long to be shown entirely at word boundaries only (wxUniv only currently)}
a660d684
KB
120\end{twocollist}
121
eef97940 122See also \helpref{window styles overview}{windowstyles} and
f66205b6 123\helpref{wxTextCtrl::wxTextCtrl}{wxtextctrlconstr}.
a660d684 124
eda40bfc
VZ
125\wxheading{wxTextCtrl styles}
126
127Multi-line text controls support the styles, i.e. provide a possibility to set
128colours and font for individual characters in it (note that under Windows {\tt
129wxTE\_RICH} style is required for style support). To use the styles you can
130either call \helpref{SetDefaultStyle}{wxtextctrlsetdefaultstyle} before
131inserting the text or call \helpref{SetStyle}{wxtextctrlsetstyle} later to
132change the style of the text already in the control (the first solution is
133much more efficient).
134
135In either case, if the style doesn't specify some of the attributes (for
136example you only want to set the text colour but without changing the font nor
137the text background), the values of the default style will be used for them.
138If there is no default style, the attributes of the text control itself are
139used.
140
141So the following code correctly describes what it does: the second call
142to \helpref{SetDefaultStyle}{wxtextctrlsetdefaultstyle} doesn't change the
143text foreground colour (which stays red) while the last one doesn't change the
144background colour (which stays grey):
145
146{\small%
147\begin{verbatim}
148 text->SetDefaultStyle(wxTextAttr(*wxRED));
149 text->AppendText("Red text\n");
150 text->SetDefaultStyle(wxTextAttr(wxNullColour, *wxLIGHT_GREY));
151 text->AppendText("Red on grey text\n");
152 text->SetDefaultStyle(wxTextAttr(*wxBLUE);
153 text->AppendText("Blue on grey text\n");
154\end{verbatim}
155}%
156
d73e6791 157\wxheading{wxTextCtrl and C++ streams}
a660d684 158
d73e6791
VZ
159This class multiply-inherits from {\bf streambuf} where compilers allow,
160allowing code such as the following:
a660d684
KB
161
162{\small%
163\begin{verbatim}
164 wxTextCtrl *control = new wxTextCtrl(...);
165
166 ostream stream(control)
167
168 stream << 123.456 << " some text\n";
169 stream.flush();
170\end{verbatim}
171}%
172
d73e6791
VZ
173If your compiler does not support derivation from {\bf streambuf} and gives a
174compile error, define the symbol {\bf NO\_TEXT\_WINDOW\_STREAM} in the
175wxTextCtrl header file.
9c884972 176
d73e6791
VZ
177Note that independently of this setting you can always use wxTextCtrl itself
178in a stream-like manner:
179
180{\small%
181\begin{verbatim}
182 wxTextCtrl *control = new wxTextCtrl(...);
183
184 *control << 123.456 << " some text\n";
185\end{verbatim}
186}%
187
188always works. However the possibility to create an ostream associated with
189wxTextCtrl may be useful if you need to redirect the output of a function
190taking an ostream as parameter to a text control.
191
192Another commonly requested need is to redirect {\bf std::cout} to the text
193control. This could be done in the following way:
194
195{\small%
196\begin{verbatim}
197 #include <iostream>
198
199 wxTextCtrl *control = new wxTextCtrl(...);
200
201 std::streambuf *sbOld = std::cout.rdbuf();
202 std::cout.rdbuf(*control);
203
204 // use cout as usual, the output appears in the text control
205 ...
206
207 std::cout.rdbuf(sbOld);
208\end{verbatim}
209}%
210
211But wxWindows provides a convenient class to make it even simpler so instead
212you may just do
213
214{\small%
215\begin{verbatim}
216 #include <iostream>
217
218 wxTextCtrl *control = new wxTextCtrl(...);
219
220 wxStreamToTextRedirector redirect(control);
221
222 // all output to cout goes into the text control until the exit from current
223 // scope
224\end{verbatim}
225}%
226
227See \helpref{wxStreamToTextRedirector}{wxstreamtotextredirector} for more
228details.
a660d684 229
5de76427
JS
230\wxheading{Event handling}
231
e702ff0f
JS
232The following commands are processed by default event handlers in wxTextCtrl: wxID\_CUT, wxID\_COPY,
233wxID\_PASTE, wxID\_UNDO, wxID\_REDO. The associated UI update events are also processed
234automatically, when the control has the focus.
235
5de76427
JS
236To process input from a text control, use these event handler macros to direct input to member
237functions that take a \helpref{wxCommandEvent}{wxcommandevent} argument.
238
239\twocolwidtha{7cm}%
240\begin{twocollist}\itemsep=0pt
241\twocolitem{{\bf EVT\_TEXT(id, func)}}{Respond to a wxEVT\_COMMAND\_TEXT\_UPDATED event,
a1665b22
VZ
242generated when the text changes. Notice that this event will always be sent
243when the text controls contents changes - whether this is due to user input or
244comes from the program itself (for example, if SetValue() is called)}
5de76427
JS
245\twocolitem{{\bf EVT\_TEXT\_ENTER(id, func)}}{Respond to a wxEVT\_COMMAND\_TEXT\_ENTER event,
246generated when enter is pressed in a single-line text control.}
f2616db5
VZ
247\twocolitem{{\bf EVT\_TEXT\_URL(id, func)}}{A mouse event occured over an URL
248in the text control (Win32 only)}
249\twocolitem{{\bf EVT\_TEXT\_MAXLEN(id, func)}}{User tried to enter more text
eef97940 250into the control than the limit set by
f2616db5 251\helpref{SetMaxLength}{wxtextctrlsetmaxlength}.}
5de76427
JS
252\end{twocollist}%
253
a660d684
KB
254\latexignore{\rtfignore{\wxheading{Members}}}
255
256\membersection{wxTextCtrl::wxTextCtrl}\label{wxtextctrlconstr}
257
258\func{}{wxTextCtrl}{\void}
259
260Default constructor.
261
eaaa6a06 262\func{}{wxTextCtrl}{\param{wxWindow* }{parent}, \param{wxWindowID}{ id},\rtfsp
aa8a815b
JS
263\param{const wxString\& }{value = ``"}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
264\param{long}{ style = 0}, \param{const wxValidator\& }{validator = wxDefaultValidator}, \param{const wxString\& }{name = wxTextCtrlNameStr}}
a660d684
KB
265
266Constructor, creating and showing a text control.
267
268\wxheading{Parameters}
269
270\docparam{parent}{Parent window. Should not be NULL.}
271
272\docparam{id}{Control identifier. A value of -1 denotes a default value.}
273
274\docparam{value}{Default text value.}
275
276\docparam{pos}{Text control position.}
277
278\docparam{size}{Text control size.}
279
280\docparam{style}{Window style. See \helpref{wxTextCtrl}{wxtextctrl}.}
281
282\docparam{validator}{Window validator.}
283
284\docparam{name}{Window name.}
285
286\wxheading{Remarks}
287
74ede4eb
VZ
288The horizontal scrollbar ({\bf wxHSCROLL} style flag) will only be created
289for multi-line text controls.
86975656 290Without a horizontal scrollbar, text lines that don't fit in the control's
71777e2c
HH
291size will be wrapped (but no newline character is inserted). Single line
292controls don't have a horizontal scrollbar, the text is automatically scrolled
86975656 293so that the \helpref{insertion point}{wxtextctrlgetinsertionpoint} is always
71777e2c
HH
294visible.
295
c57e3339
VZ
296% VZ: this is no longer true
297%Under Windows, if the {\bf wxTE\_MULTILINE} style is used, the window is implemented
298%as a Windows rich text control with unlimited capacity. Otherwise, normal edit control limits
299%apply.
a660d684
KB
300
301\wxheading{See also}
302
303\helpref{wxTextCtrl::Create}{wxtextctrlcreate}, \helpref{wxValidator}{wxvalidator}
304
305\membersection{wxTextCtrl::\destruct{wxTextCtrl}}
306
307\func{}{\destruct{wxTextCtrl}}{\void}
308
309Destructor, destroying the text control.
310
ca8b28f2
JS
311\membersection{wxTextCtrl::AppendText}\label{wxtextctrlappendtext}
312
313\func{void}{AppendText}{\param{const wxString\& }{ text}}
314
315Appends the text to the end of the text control.
316
317\wxheading{Parameters}
318
319\docparam{text}{Text to write to the text control.}
320
321\wxheading{Remarks}
322
323After the text is appended, the insertion point will be at the end of the text control. If this behaviour is not desired,
324the programmer should use \helpref{GetInsertionPoint}{wxtextctrlgetinsertionpoint} and \helpref{SetInsertionPoint}{wxtextctrlsetinsertionpoint}.
325
326\wxheading{See also}
327
328\helpref{wxTextCtrl::WriteText}{wxtextctrlwritetext}
329
330\membersection{wxTextCtrl::CanCopy}\label{wxtextctrlcancopy}
331
332\func{virtual bool}{CanCopy}{\void}
333
29e1cfc2 334Returns {\tt TRUE} if the selection can be copied to the clipboard.
ca8b28f2
JS
335
336\membersection{wxTextCtrl::CanCut}\label{wxtextctrlcancut}
337
338\func{virtual bool}{CanCut}{\void}
339
29e1cfc2 340Returns {\tt TRUE} if the selection can be cut to the clipboard.
ca8b28f2
JS
341
342\membersection{wxTextCtrl::CanPaste}\label{wxtextctrlcanpaste}
343
344\func{virtual bool}{CanPaste}{\void}
345
29e1cfc2 346Returns {\tt TRUE} if the contents of the clipboard can be pasted into the
ca8b28f2 347text control. On some platforms (Motif, GTK) this is an approximation
29e1cfc2 348and returns {\tt TRUE} if the control is editable, {\tt FALSE} otherwise.
ca8b28f2
JS
349
350\membersection{wxTextCtrl::CanRedo}\label{wxtextctrlcanredo}
351
352\func{virtual bool}{CanRedo}{\void}
353
29e1cfc2 354Returns {\tt TRUE} if there is a redo facility available and the last operation
ca8b28f2
JS
355can be redone.
356
357\membersection{wxTextCtrl::CanUndo}\label{wxtextctrlcanundo}
358
359\func{virtual bool}{CanUndo}{\void}
360
29e1cfc2 361Returns {\tt TRUE} if there is an undo facility available and the last operation
ca8b28f2
JS
362can be undone.
363
a660d684
KB
364\membersection{wxTextCtrl::Clear}\label{wxtextctrlclear}
365
366\func{virtual void}{Clear}{\void}
367
368Clears the text in the control.
369
370\membersection{wxTextCtrl::Copy}\label{wxtextctrlcopy}
371
372\func{virtual void}{Copy}{\void}
373
374Copies the selected text to the clipboard under Motif and MS Windows.
375
376\membersection{wxTextCtrl::Create}\label{wxtextctrlcreate}
377
eaaa6a06 378\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID}{ id},\rtfsp
aa8a815b
JS
379\param{const wxString\& }{value = ``"}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
380\param{long}{ style = 0}, \param{const wxValidator\& }{validator = wxDefaultValidator}, \param{const wxString\& }{name = wxTextCtrlNameStr}}
a660d684
KB
381
382Creates the text control for two-step construction. Derived classes
383should call or replace this function. See \helpref{wxTextCtrl::wxTextCtrl}{wxtextctrlconstr}\rtfsp
384for further details.
385
386\membersection{wxTextCtrl::Cut}\label{wxtextctrlcut}
387
388\func{virtual void}{Cut}{\void}
389
390Copies the selected text to the clipboard and removes the selection.
391
392\membersection{wxTextCtrl::DiscardEdits}
393
394\func{void}{DiscardEdits}{\void}
395
396Resets the internal `modified' flag as if the current edits had been saved.
397
94af7d45
VZ
398\membersection{wxTextCtrl::EmulateKeyPress}
399
400\func{bool}{EmulateKeyPress}{\param{const wxKeyEvent\& }{event}}
401
402This functions inserts into the control the character which would have been
403inserted if the given key event had occured in the text control. The
404{\it event} object should be the same as the one passed to {\tt EVT\_KEY\_DOWN}
405handler previously by wxWindows.
406
407\wxheading{Return value}
408
409{\tt TRUE} if the event resulted in a change to the control, {\tt FALSE}
410otherwise.
411
02a3b391 412\membersection{wxTextCtrl::GetDefaultStyle}\label{wxtextctrlgetdefaultstyle}
eda40bfc
VZ
413
414\constfunc{const wxTextAttr\& }{GetDefaultStyle}{\void}
415
416Returns the style currently used for the new text.
417
418\wxheading{See also}
419
420\helpref{SetDefaultStyle}{wxtextctrlsetdefaultstyle}
421
a660d684
KB
422\membersection{wxTextCtrl::GetInsertionPoint}\label{wxtextctrlgetinsertionpoint}
423
424\constfunc{virtual long}{GetInsertionPoint}{\void}
425
71777e2c
HH
426Returns the insertion point. This is defined as the zero based index of the
427character position to the right of the insertion point. For example, if
428the insertion point is at the end of the text control, it is equal to
86975656
RD
429both \helpref{GetValue()}{wxtextctrlgetvalue}.Length() and
430\helpref{GetLastPosition()}{wxtextctrlgetlastposition}.
71777e2c
HH
431
432The following code snippet safely returns the character at the insertion
433point or the zero character if the point is at the end of the control.
434
435{\small%
436\begin{verbatim}
437 char GetCurrentChar(wxTextCtrl *tc) {
438 if (tc->GetInsertionPoint() == tc->GetLastPosition())
439 return '\0';
440 return tc->GetValue[tc->GetInsertionPoint()];
86975656 441 }
71777e2c
HH
442\end{verbatim}
443}%
a660d684
KB
444
445\membersection{wxTextCtrl::GetLastPosition}\label{wxtextctrlgetlastposition}
446
447\constfunc{virtual long}{GetLastPosition}{\void}
448
86975656 449Returns the zero based index of the last position in the text control,
71777e2c 450which is equal to the number of characters in the control.
a660d684
KB
451
452\membersection{wxTextCtrl::GetLineLength}\label{wxtextctrlgetlinelength}
453
454\constfunc{int}{GetLineLength}{\param{long}{ lineNo}}
455
86975656 456Gets the length of the specified line, not including any trailing newline
71777e2c 457character(s).
a660d684
KB
458
459\wxheading{Parameters}
460
461\docparam{lineNo}{Line number (starting from zero).}
462
463\wxheading{Return value}
464
465The length of the line, or -1 if {\it lineNo} was invalid.
466
467\membersection{wxTextCtrl::GetLineText}\label{wxtextctrlgetlinetext}
468
eaaa6a06 469\constfunc{wxString}{GetLineText}{\param{long}{ lineNo}}
a660d684 470
71777e2c
HH
471Returns the contents of a given line in the text control, not including
472any trailing newline character(s).
a660d684
KB
473
474\wxheading{Parameters}
475
476\docparam{lineNo}{The line number, starting from zero.}
477
478\wxheading{Return value}
479
480The contents of the line.
481
482\membersection{wxTextCtrl::GetNumberOfLines}\label{wxtextctrlgetnumberoflines}
483
484\constfunc{int}{GetNumberOfLines}{\void}
485
486Returns the number of lines in the text control buffer.
487
71777e2c
HH
488\wxheading{Remarks}
489
490Note that even empty text controls have one line (where the insertion point
491is), so GetNumberOfLines() never returns 0.
492
493For gtk\_text (multi-line) controls, the number of lines is
494calculated by actually counting newline characters in the buffer. You
495may wish to avoid using functions that work with line numbers if you are
496working with controls that contain large amounts of text.
497
a5aa8086
VZ
498\membersection{wxTextCtrl::GetRange}\label{wxtextctrlgetrange}
499
500\constfunc{virtual wxString}{GetRange}{\param{long}{ from}, \param{long}{ to}}
501
502Returns the string containing the text staring in the positions {\it from} and
503up to {\it to} in the control. The positions must have been returned by another
504wxTextCtrl method.
505
506Please note that the positions in a multiline wxTextCtrl do {\bf not}
507correspond to the indices in the string returned by
508\helpref{GetValue}{wxtextctrlgetvalue} because of the different new line
509representations ({\tt CR} or {\tt CR LF}) and so this method should be used to
510obtain the correct results instead of extracting parts of the entire value. It
511may also be more efficient, especially if the control contains a lot of data.
512
ca8b28f2
JS
513\membersection{wxTextCtrl::GetSelection}\label{wxtextctrlgetselection}
514
a5aa8086 515\constfunc{virtual void}{GetSelection}{\param{long*}{ from}, \param{long*}{ to}}
ca8b28f2
JS
516
517Gets the current selection span. If the returned values are equal, there was
518no selection.
519
18414479
VZ
520Please note that the indices returned may be used with the other wxTextctrl
521methods but don't necessarily represent the correct indices into the string
522returned by \helpref{GetValue()}{wxtextctrlgetvalue} for multiline controls
eef97940
RD
523under Windows (at least,) you should use
524\helpref{GetStringSelection()}{wxtextctrlgetstringselection} to get the selected
18414479
VZ
525text.
526
ca8b28f2
JS
527\wxheading{Parameters}
528
529\docparam{from}{The returned first position.}
530
531\docparam{to}{The returned last position.}
532
86975656
RD
533\pythonnote{The wxPython version of this method returns a tuple
534consisting of the from and to values.}
535
5873607e
VZ
536\perlnote{In wxPerl this method takes no parameter and returns a
5372-element list {\tt ( from, to )}.}
538
eef97940 539\membersection{wxTextCtrl::GetStringSelection}\label{wxtextctrlgetstringselection}
18414479 540
eef97940 541\func{virtual wxString}{GetStringSelection}{\void}
18414479
VZ
542
543Gets the text currently selected in the control. If there is no selection, the
544returned string is empty.
545
a660d684
KB
546\membersection{wxTextCtrl::GetValue}\label{wxtextctrlgetvalue}
547
548\constfunc{wxString}{GetValue}{\void}
549
9750fc42 550Gets the contents of the control. Notice that for a multiline text control,
b2cf617c
JS
551the lines will be separated by (Unix-style) $\backslash$n characters, even under
552Windows where they are separated by a $\backslash$r$\backslash$n sequence in the native control.
a660d684 553
9e3229b7
VZ
554\membersection{wxTextCtrl::IsEditable}\label{wxtextctrliseditable}
555
556\constfunc{bool}{IsEditable}{\void}
557
558Returns {\tt TRUE} if the controls contents may be edited by user (note that it
559always can be changed by the program), i.e. if the control hasn't been put in
560read-only mode by a previous call to
561\helpref{SetEditable}{wxtextctrlseteditable}.
562
a660d684
KB
563\membersection{wxTextCtrl::IsModified}\label{wxtextctrlismodified}
564
565\constfunc{bool}{IsModified}{\void}
566
29e1cfc2
VZ
567Returns {\tt TRUE} if the text has been modified by user. Note that calling
568\helpref{SetValue}{wxtextctrlsetvalue} doesn't make the control modified.
a660d684
KB
569
570\membersection{wxTextCtrl::LoadFile}\label{wxtextctrlloadfile}
571
572\func{bool}{LoadFile}{\param{const wxString\& }{ filename}}
573
574Loads and displays the named file, if it exists.
575
576\wxheading{Parameters}
577
578\docparam{filename}{The filename of the file to load.}
579
580\wxheading{Return value}
581
29e1cfc2 582{\tt TRUE} if successful, {\tt FALSE} otherwise.
a660d684 583
d2d50a41
VZ
584% VZ: commenting this out as: (a) the docs are wrong (you can't replace
585% anything), (b) wxTextCtrl doesn't have any OnChar() anyhow
586%% \membersection{wxTextCtrl::OnChar}\label{wxtextctrlonchar}
587%%
588%% \func{void}{OnChar}{\param{wxKeyEvent\& }{event}}
589%%
590%% Default handler for character input.
591%%
592%% \wxheading{Remarks}
593%%
594%% It is possible to intercept character
595%% input by overriding this member. Call this function
596%% to let the default behaviour take place; not calling
597%% it results in the character being ignored. You can
598%% replace the {\it keyCode} member of {\it event} to
599%% translate keystrokes.
600%%
601%% Note that Windows and Motif have different ways
602%% of implementing the default behaviour. In Windows,
603%% calling wxTextCtrl::OnChar immediately
604%% processes the character. In Motif,
605%% calling this function simply sets a flag
606%% to let default processing happen. This might affect
607%% the way in which you write your OnChar function
608%% on different platforms.
609%%
610%% \wxheading{See also}
611%%
612%% \helpref{wxKeyEvent}{wxkeyevent}
a660d684
KB
613
614\membersection{wxTextCtrl::OnDropFiles}\label{wxtextctrlondropfiles}
615
616\func{void}{OnDropFiles}{\param{wxDropFilesEvent\& }{event}}
617
618This event handler function implements default drag and drop behaviour, which
619is to load the first dropped file into the control.
620
621\wxheading{Parameters}
622
623\docparam{event}{The drop files event.}
624
71777e2c
HH
625\wxheading{Remarks}
626
b2cf617c 627This is not implemented on non-Windows platforms.
71777e2c 628
a660d684
KB
629\wxheading{See also}
630
631\helpref{wxDropFilesEvent}{wxdropfilesevent}
632
633\membersection{wxTextCtrl::Paste}\label{wxtextctrlpaste}
634
635\func{virtual void}{Paste}{\void}
636
637Pastes text from the clipboard to the text item.
638
639\membersection{wxTextCtrl::PositionToXY}\label{wxtextctrlpositiontoxy}
640
0efe5ba7 641\constfunc{bool}{PositionToXY}{\param{long }{pos}, \param{long *}{x}, \param{long *}{y}}
a660d684 642
71777e2c 643Converts given position to a zero-based column, line number pair.
a660d684
KB
644
645\wxheading{Parameters}
646
647\docparam{pos}{Position.}
648
71777e2c 649\docparam{x}{Receives zero based column number.}
a660d684 650
71777e2c
HH
651\docparam{y}{Receives zero based line number.}
652
653\wxheading{Return value}
654
29e1cfc2 655{\tt TRUE} on success, {\tt FALSE} on failure (most likely due to a too large position
71777e2c 656parameter).
a660d684
KB
657
658\wxheading{See also}
659
660\helpref{wxTextCtrl::XYToPosition}{wxtextctrlxytoposition}
661
71777e2c
HH
662\pythonnote{In Python, PositionToXY() returns a tuple containing the x and
663y values, so (x,y) = PositionToXY() is equivalent to the call described
664above.}
665
5873607e
VZ
666\perlnote{In wxPerl this method only takes the {\tt pos} parameter, and
667returns a 2-element list {\tt ( x, y )}.}
668
ca8b28f2
JS
669\membersection{wxTextCtrl::Redo}\label{wxtextctrlredo}
670
671\func{virtual void}{Redo}{\void}
672
673If there is a redo facility and the last operation can be redone, redoes the last operation. Does nothing
674if there is no redo facility.
675
a660d684
KB
676\membersection{wxTextCtrl::Remove}\label{wxtextctrlremove}
677
eaaa6a06 678\func{virtual void}{Remove}{\param{long}{ from}, \param{long}{ to}}
a660d684 679
71777e2c
HH
680Removes the text starting at the first given position up to (but not including)
681the character at the last position.
a660d684
KB
682
683\wxheading{Parameters}
684
685\docparam{from}{The first position.}
686
687\docparam{to}{The last position.}
688
689\membersection{wxTextCtrl::Replace}\label{wxtextctrlreplace}
690
eaaa6a06 691\func{virtual void}{Replace}{\param{long}{ from}, \param{long}{ to}, \param{const wxString\& }{value}}
a660d684 692
86975656 693Replaces the text starting at the first position up to (but not including)
71777e2c 694the character at the last position with the given text.
a660d684
KB
695
696\wxheading{Parameters}
697
698\docparam{from}{The first position.}
699
700\docparam{to}{The last position.}
701
702\docparam{value}{The value to replace the existing text with.}
703
704\membersection{wxTextCtrl::SaveFile}\label{wxtextctrlsavefile}
705
706\func{bool}{SaveFile}{\param{const wxString\& }{ filename}}
707
708Saves the contents of the control in a text file.
709
710\wxheading{Parameters}
711
71777e2c 712\docparam{filename}{The name of the file in which to save the text.}
a660d684
KB
713
714\wxheading{Return value}
715
29e1cfc2 716{\tt TRUE} if the operation was successful, {\tt FALSE} otherwise.
a660d684 717
eda40bfc
VZ
718\membersection{wxTextCtrl::SetDefaultStyle}\label{wxtextctrlsetdefaultstyle}
719
720\func{bool}{SetDefaultStyle}{\param{const wxTextAttr\& }{style}}
721
722Changes the default style to use for the new text which is going to be added
723to the control using \helpref{WriteText}{wxtextctrlwritetext} or\rtfsp
724\helpref{AppendText}{wxtextctrlappendtext}.
725
726If either of the font, foreground, or background colour is not set in\rtfsp
727{\it style}, the values of the previous default style are used for them. If
728the previous default style didn't set them neither, the global font or colours
729of the text control itself are used as fall back.
730
c598f225
VZ
731However if the {\it style} parameter is the default wxTextAttr, then the
732default style is just reset (instead of being combined with the new style which
733wouldn't change it at all).
734
eda40bfc
VZ
735\wxheading{Parameters}
736
737\docparam{style}{The style for the new text.}
738
739\wxheading{Return value}
740
741{\tt TRUE} on success, {\tt FALSE} if an error occured - may also mean that
742the styles are not supported under this platform.
743
744\wxheading{See also}
745
746\helpref{GetDefaultStyle}{wxtextctrlgetdefaultstyle}
747
a660d684
KB
748\membersection{wxTextCtrl::SetEditable}\label{wxtextctrlseteditable}
749
750\func{virtual void}{SetEditable}{\param{const bool}{ editable}}
751
b2cf617c 752Makes the text item editable or read-only, overriding the {\bf wxTE\_READONLY} flag.
a660d684
KB
753
754\wxheading{Parameters}
755
29e1cfc2 756\docparam{editable}{If {\tt TRUE}, the control is editable. If {\tt FALSE}, the control is read-only.}
a660d684 757
9e3229b7
VZ
758\wxheading{See also}
759
760\helpref{IsEditable}{wxtextctrliseditable}
761
a660d684
KB
762\membersection{wxTextCtrl::SetInsertionPoint}\label{wxtextctrlsetinsertionpoint}
763
eaaa6a06 764\func{virtual void}{SetInsertionPoint}{\param{long}{ pos}}
a660d684 765
71777e2c 766Sets the insertion point at the given position.
a660d684
KB
767
768\wxheading{Parameters}
769
770\docparam{pos}{Position to set.}
771
772\membersection{wxTextCtrl::SetInsertionPointEnd}\label{wxtextctrlsetinsertionpointend}
773
774\func{virtual void}{SetInsertionPointEnd}{\void}
775
71777e2c
HH
776Sets the insertion point at the end of the text control. This is equivalent
777to \helpref{SetInsertionPoint}{wxtextctrlsetinsertionpoint}(\helpref{GetLastPosition}{wxtextctrlgetlastposition}()).
a660d684 778
d7eee191
VZ
779\membersection{wxTextCtrl::SetMaxLength}\label{wxtextctrlsetmaxlength}
780
781\func{virtual void}{SetMaxLength}{\param{unsigned long }{len}}
782
783This function sets the maximum number of characters the user can enter into the
784control. In other words, it allows to limit the text value length to {\it len}
785not counting the terminating {\tt NUL} character.
786
5949fba6
VZ
787If {\it len} is $0$, the previously set max length limi, if any, is discarded
788and the user may enter as much text as the underlying native text control
789widget supports (typically at least 32Kb).
790
d7eee191 791If the user tries to enter more characters into the text control when it
eef97940 792already is filled up to the maximal length, a
d7eee191
VZ
793{\tt wxEVT\_COMMAND\_TEXT\_MAXLEN} event is sent to notify the program about it
794(giving it the possibility to show an explanatory message, for example) and the
795extra input is discarded.
796
797Note that this function may only be used with single line text controls.
798
799\wxheading{Compatibility}
800
801Only implemented in wxMSW/wxGTK starting with wxWindows 2.3.2.
802
a660d684
KB
803\membersection{wxTextCtrl::SetSelection}\label{wxtextctrlsetselection}
804
eaaa6a06 805\func{virtual void}{SetSelection}{\param{long}{ from}, \param{long}{ to}}
a660d684 806
71777e2c 807Selects the text starting at the first position up to (but not including) the character at the last position.
a660d684
KB
808
809\wxheading{Parameters}
810
811\docparam{from}{The first position.}
812
813\docparam{to}{The last position.}
814
eda40bfc
VZ
815\membersection{wxTextCtrl::SetStyle}\label{wxtextctrlsetstyle}
816
817\func{bool}{SetStyle}{\param{long }{start}, \param{long }{end}, \param{const wxTextAttr\& }{style}}
818
819Changes the style of the selection. If either of the font, foreground, or
820background colour is not set in {\it style}, the values of\rtfsp
821\helpref{GetDefaultStyle()}{wxtextctrlgetdefaultstyle} are used.
822
823\wxheading{Parameters}
824
825\docparam{start}{The start of selection to change.}
826
827\docparam{end}{The end of selection to change.}
828
829\docparam{style}{The new style for the selection.}
830
831\wxheading{Return value}
832
833{\tt TRUE} on success, {\tt FALSE} if an error occured - may also mean that
834the styles are not supported under this platform.
835
a660d684
KB
836\membersection{wxTextCtrl::SetValue}\label{wxtextctrlsetvalue}
837
838\func{virtual void}{SetValue}{\param{const wxString\& }{ value}}
839
29e1cfc2
VZ
840Sets the text value and marks the control as not-modified (which means that
841\helpref{IsModified}{wxtextctrlismodified} would return {\tt FALSE} immediately
842after the call to SetValue).
a660d684
KB
843
844\wxheading{Parameters}
845
846\docparam{value}{The new value to set. It may contain newline characters if the text control is multi-line.}
847
848\membersection{wxTextCtrl::ShowPosition}\label{wxtextctrlshowposition}
849
eaaa6a06 850\func{void}{ShowPosition}{\param{long}{ pos}}
a660d684
KB
851
852Makes the line containing the given position visible.
853
854\wxheading{Parameters}
855
856\docparam{pos}{The position that should be visible.}
857
ca8b28f2
JS
858\membersection{wxTextCtrl::Undo}\label{wxtextctrlundo}
859
860\func{virtual void}{Undo}{\void}
861
862If there is an undo facility and the last operation can be undone, undoes the last operation. Does nothing
863if there is no undo facility.
864
a660d684
KB
865\membersection{wxTextCtrl::WriteText}\label{wxtextctrlwritetext}
866
867\func{void}{WriteText}{\param{const wxString\& }{ text}}
868
86975656 869Writes the text into the text control at the current insertion position.
a660d684
KB
870
871\wxheading{Parameters}
872
873\docparam{text}{Text to write to the text control.}
874
875\wxheading{Remarks}
876
877Newlines in the text string
878are the only control characters allowed, and they will cause appropriate
abaa2936 879line breaks. See \helpref{wxTextCtrl::\cinsert}{wxtextctrlinsert} and \helpref{wxTextCtrl::AppendText}{wxtextctrlappendtext} for more convenient ways of writing to the window.
71777e2c
HH
880
881After 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
882
883\membersection{wxTextCtrl::XYToPosition}\label{wxtextctrlxytoposition}
884
eaaa6a06 885\func{long}{XYToPosition}{\param{long}{ x}, \param{long}{ y}}
a660d684 886
71777e2c 887Converts the given zero based column and line number to a position.
a660d684
KB
888
889\wxheading{Parameters}
890
71777e2c 891\docparam{x}{The column number.}
a660d684 892
71777e2c 893\docparam{y}{The line number.}
a660d684
KB
894
895\wxheading{Return value}
896
897The position value.
898
899\membersection{wxTextCtrl::operator \cinsert}\label{wxtextctrlinsert}
900
901\func{wxTextCtrl\&}{operator \cinsert}{\param{const wxString\& }{s}}
902
903\func{wxTextCtrl\&}{operator \cinsert}{\param{int}{ i}}
904
905\func{wxTextCtrl\&}{operator \cinsert}{\param{long}{ i}}
906
907\func{wxTextCtrl\&}{operator \cinsert}{\param{float}{ f}}
908
909\func{wxTextCtrl\&}{operator \cinsert}{\param{double}{ d}}
910
911\func{wxTextCtrl\&}{operator \cinsert}{\param{char}{ c}}
912
abaa2936 913Operator definitions for appending to a text control, for example:
a660d684
KB
914
915\begin{verbatim}
916 wxTextCtrl *wnd = new wxTextCtrl(my_frame);
917
918 (*wnd) << "Welcome to text control number " << 1 << ".\n";
919\end{verbatim}
920