1 \section{\class{wxTextCtrl
}}\label{wxtextctrl
}
3 A text control allows text to be displayed and edited. It may be
4 single line or multi-line.
6 \wxheading{Derived from
}
9 \helpref{wxControl
}{wxcontrol
}\\
10 \helpref{wxWindow
}{wxwindow
}\\
11 \helpref{wxEvtHandler
}{wxevthandler
}\\
12 \helpref{wxObject
}{wxobject
}
14 \wxheading{Include files
}
18 \wxheading{Window styles
}
21 \begin{twocollist
}\itemsep=
0pt
22 \twocolitem{\windowstyle{wxTE
\_PROCESS\_ENTER}}{The control will generate
23 the message wxEVENT
\_TYPE\_TEXT\_ENTER\_COMMAND (otherwise pressing <Enter> is
24 either processed internally by the control or used for navigation between
26 \twocolitem{\windowstyle{wxTE
\_PROCESS\_TAB}}{The control will receieve
27 EVT
\_CHAR messages for TAB pressed - normally, TAB is used for passing to the
28 next control in a dialog instead. For the control created with this style,
29 you can still use Ctrl-Enter to pass to the next control from the keyboard.
}
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.
}
33 \twocolitem{\windowstyle{wxHSCROLL
}}{A horizontal scrollbar will be created. No effect under GTK+.
}
36 See also
\helpref{window styles overview
}{windowstyles
} and
37 \helpref{wxTextCtrl::wxTextCtrl
}{wxtextctrlconstr
}.
41 This class multiply-inherits from
{\bf streambuf
} where compilers allow, allowing code such as
46 wxTextCtrl *control = new wxTextCtrl(...);
48 ostream stream(control)
50 stream <<
123.456 << " some text
\n";
55 If your compiler does not support derivation from
{\bf streambuf
} and gives a compile error, define the symbol
56 {\bf NO
\_TEXT\_WINDOW\_STREAM} in the wxTextCtrl header file.
58 Note that any use of C++ iostreams (including this one) deprecated and might get completely removed
61 \wxheading{Event handling
}
63 The following commands are processed by default event handlers in wxTextCtrl: wxID
\_CUT, wxID
\_COPY,
64 wxID
\_PASTE, wxID
\_UNDO, wxID
\_REDO. The associated UI update events are also processed
65 automatically, when the control has the focus.
67 To process input from a text control, use these event handler macros to direct input to member
68 functions that take a
\helpref{wxCommandEvent
}{wxcommandevent
} argument.
71 \begin{twocollist
}\itemsep=
0pt
72 \twocolitem{{\bf EVT
\_TEXT(id, func)
}}{Respond to a wxEVT
\_COMMAND\_TEXT\_UPDATED event,
73 generated when the text changes. Notice that this event will always be sent
74 when the text controls contents changes - whether this is due to user input or
75 comes from the program itself (for example, if SetValue() is called)
}
76 \twocolitem{{\bf EVT
\_TEXT\_ENTER(id, func)
}}{Respond to a wxEVT
\_COMMAND\_TEXT\_ENTER event,
77 generated when enter is pressed in a single-line text control.
}
82 %\helpref{wxRichTextCtrl}{wxrichtextctrl}
84 \latexignore{\rtfignore{\wxheading{Members
}}}
86 \membersection{wxTextCtrl::wxTextCtrl
}\label{wxtextctrlconstr
}
88 \func{}{wxTextCtrl
}{\void}
92 \func{}{wxTextCtrl
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{ id
},
\rtfsp
93 \param{const wxString\&
}{value = ``"
},
\param{const wxPoint\&
}{pos
},
\param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
94 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator
},
\param{const wxString\&
}{name = ``text"
}}
96 Constructor, creating and showing a text control.
98 \wxheading{Parameters
}
100 \docparam{parent
}{Parent window. Should not be NULL.
}
102 \docparam{id
}{Control identifier. A value of -
1 denotes a default value.
}
104 \docparam{value
}{Default text value.
}
106 \docparam{pos
}{Text control position.
}
108 \docparam{size
}{Text control size.
}
110 \docparam{style
}{Window style. See
\helpref{wxTextCtrl
}{wxtextctrl
}.
}
112 \docparam{validator
}{Window validator.
}
114 \docparam{name
}{Window name.
}
118 The horizontal scrollbar (
{\bf wxTE
\_HSCROLL} style flag) will only be created for multi-line text controls.
119 Without a horizontal scrollbar, text lines that don't fit in the control's
120 size will be wrapped (but no newline character is inserted). Single line
121 controls don't have a horizontal scrollbar, the text is automatically scrolled
122 so that the
\helpref{insertion point
}{wxtextctrlgetinsertionpoint
} is always
125 Under Windows, if the
{\bf wxTE
\_MULTILINE} style is used, the window is implemented
126 as a Windows rich text control with unlimited capacity. Otherwise, normal edit control limits
131 \helpref{wxTextCtrl::Create
}{wxtextctrlcreate
},
\helpref{wxValidator
}{wxvalidator
}
133 \membersection{wxTextCtrl::
\destruct{wxTextCtrl
}}
135 \func{}{\destruct{wxTextCtrl
}}{\void}
137 Destructor, destroying the text control.
139 \membersection{wxTextCtrl::AppendText
}\label{wxtextctrlappendtext
}
141 \func{void
}{AppendText
}{\param{const wxString\&
}{ text
}}
143 Appends the text to the end of the text control.
145 \wxheading{Parameters
}
147 \docparam{text
}{Text to write to the text control.
}
151 After the text is appended, the insertion point will be at the end of the text control. If this behaviour is not desired,
152 the programmer should use
\helpref{GetInsertionPoint
}{wxtextctrlgetinsertionpoint
} and
\helpref{SetInsertionPoint
}{wxtextctrlsetinsertionpoint
}.
156 \helpref{wxTextCtrl::WriteText
}{wxtextctrlwritetext
}
158 \membersection{wxTextCtrl::CanCopy
}\label{wxtextctrlcancopy
}
160 \func{virtual bool
}{CanCopy
}{\void}
162 Returns TRUE if the selection can be copied to the clipboard.
164 \membersection{wxTextCtrl::CanCut
}\label{wxtextctrlcancut
}
166 \func{virtual bool
}{CanCut
}{\void}
168 Returns TRUE if the selection can be cut to the clipboard.
170 \membersection{wxTextCtrl::CanPaste
}\label{wxtextctrlcanpaste
}
172 \func{virtual bool
}{CanPaste
}{\void}
174 Returns TRUE if the contents of the clipboard can be pasted into the
175 text control. On some platforms (Motif, GTK) this is an approximation
176 and returns TRUE if the control is editable, FALSE otherwise.
178 \membersection{wxTextCtrl::CanRedo
}\label{wxtextctrlcanredo
}
180 \func{virtual bool
}{CanRedo
}{\void}
182 Returns TRUE if there is a redo facility available and the last operation
185 \membersection{wxTextCtrl::CanUndo
}\label{wxtextctrlcanundo
}
187 \func{virtual bool
}{CanUndo
}{\void}
189 Returns TRUE if there is an undo facility available and the last operation
192 \membersection{wxTextCtrl::Clear
}\label{wxtextctrlclear
}
194 \func{virtual void
}{Clear
}{\void}
196 Clears the text in the control.
198 \membersection{wxTextCtrl::Copy
}\label{wxtextctrlcopy
}
200 \func{virtual void
}{Copy
}{\void}
202 Copies the selected text to the clipboard under Motif and MS Windows.
204 \membersection{wxTextCtrl::Create
}\label{wxtextctrlcreate
}
206 \func{bool
}{Create
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{ id
},
\rtfsp
207 \param{const wxString\&
}{value = ``"
},
\param{const wxPoint\&
}{pos
},
\param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
208 \param{long
}{ style =
0},
\param{const wxValidator\&
}{validator
},
\param{const wxString\&
}{name = ``text"
}}
210 Creates the text control for two-step construction. Derived classes
211 should call or replace this function. See
\helpref{wxTextCtrl::wxTextCtrl
}{wxtextctrlconstr
}\rtfsp
214 \membersection{wxTextCtrl::Cut
}\label{wxtextctrlcut
}
216 \func{virtual void
}{Cut
}{\void}
218 Copies the selected text to the clipboard and removes the selection.
220 \membersection{wxTextCtrl::DiscardEdits
}
222 \func{void
}{DiscardEdits
}{\void}
224 Resets the internal `modified' flag as if the current edits had been saved.
226 \membersection{wxTextCtrl::GetInsertionPoint
}\label{wxtextctrlgetinsertionpoint
}
228 \constfunc{virtual long
}{GetInsertionPoint
}{\void}
230 Returns the insertion point. This is defined as the zero based index of the
231 character position to the right of the insertion point. For example, if
232 the insertion point is at the end of the text control, it is equal to
233 both
\helpref{GetValue()
}{wxtextctrlgetvalue
}.Length() and
234 \helpref{GetLastPosition()
}{wxtextctrlgetlastposition
}.
236 The following code snippet safely returns the character at the insertion
237 point or the zero character if the point is at the end of the control.
241 char GetCurrentChar(wxTextCtrl *tc)
{
242 if (tc->GetInsertionPoint() == tc->GetLastPosition())
244 return tc->GetValue
[tc->GetInsertionPoint()
];
249 \membersection{wxTextCtrl::GetLastPosition
}\label{wxtextctrlgetlastposition
}
251 \constfunc{virtual long
}{GetLastPosition
}{\void}
253 Returns the zero based index of the last position in the text control,
254 which is equal to the number of characters in the control.
256 \membersection{wxTextCtrl::GetLineLength
}\label{wxtextctrlgetlinelength
}
258 \constfunc{int
}{GetLineLength
}{\param{long
}{ lineNo
}}
260 Gets the length of the specified line, not including any trailing newline
263 \wxheading{Parameters
}
265 \docparam{lineNo
}{Line number (starting from zero).
}
267 \wxheading{Return value
}
269 The length of the line, or -
1 if
{\it lineNo
} was invalid.
271 \membersection{wxTextCtrl::GetLineText
}\label{wxtextctrlgetlinetext
}
273 \constfunc{wxString
}{GetLineText
}{\param{long
}{ lineNo
}}
275 Returns the contents of a given line in the text control, not including
276 any trailing newline character(s).
278 \wxheading{Parameters
}
280 \docparam{lineNo
}{The line number, starting from zero.
}
282 \wxheading{Return value
}
284 The contents of the line.
286 \membersection{wxTextCtrl::GetNumberOfLines
}\label{wxtextctrlgetnumberoflines
}
288 \constfunc{int
}{GetNumberOfLines
}{\void}
290 Returns the number of lines in the text control buffer.
294 Note that even empty text controls have one line (where the insertion point
295 is), so GetNumberOfLines() never returns
0.
297 For gtk
\_text (multi-line) controls, the number of lines is
298 calculated by actually counting newline characters in the buffer. You
299 may wish to avoid using functions that work with line numbers if you are
300 working with controls that contain large amounts of text.
302 \membersection{wxTextCtrl::GetSelection
}\label{wxtextctrlgetselection
}
304 \func{virtual void
}{GetSelection
}{\param{long*
}{ from
},
\param{long*
}{ to
}}
306 Gets the current selection span. If the returned values are equal, there was
309 \wxheading{Parameters
}
311 \docparam{from
}{The returned first position.
}
313 \docparam{to
}{The returned last position.
}
315 \pythonnote{The wxPython version of this method returns a tuple
316 consisting of the from and to values.
}
318 \perlnote{In wxPerl this method takes no parameter and returns a
319 2-element list
{\tt ( from, to )
}.
}
321 \membersection{wxTextCtrl::GetValue
}\label{wxtextctrlgetvalue
}
323 \constfunc{wxString
}{GetValue
}{\void}
325 Gets the contents of the control. Notice that for a multiline text control,
326 the lines will be separated by (Unix-style) $
\backslash$n characters, even under
327 Windows where they are separated by a $
\backslash$r$
\backslash$n sequence in the native control.
329 \membersection{wxTextCtrl::IsModified
}\label{wxtextctrlismodified
}
331 \constfunc{bool
}{IsModified
}{\void}
333 Returns TRUE if the text has been modified.
335 \membersection{wxTextCtrl::LoadFile
}\label{wxtextctrlloadfile
}
337 \func{bool
}{LoadFile
}{\param{const wxString\&
}{ filename
}}
339 Loads and displays the named file, if it exists.
341 \wxheading{Parameters
}
343 \docparam{filename
}{The filename of the file to load.
}
345 \wxheading{Return value
}
347 TRUE if successful, FALSE otherwise.
349 \membersection{wxTextCtrl::OnChar
}\label{wxtextctrlonchar
}
351 \func{void
}{OnChar
}{\param{wxKeyEvent\&
}{event
}}
353 Default handler for character input.
357 It is possible to intercept character
358 input by overriding this member. Call this function
359 to let the default behaviour take place; not calling
360 it results in the character being ignored. You can
361 replace the
{\it keyCode
} member of
{\it event
} to
362 translate keystrokes.
364 Note that Windows and Motif have different ways
365 of implementing the default behaviour. In Windows,
366 calling wxTextCtrl::OnChar immediately
367 processes the character. In Motif,
368 calling this function simply sets a flag
369 to let default processing happen. This might affect
370 the way in which you write your OnChar function
371 on different platforms.
375 \helpref{wxKeyEvent
}{wxkeyevent
}
377 \membersection{wxTextCtrl::OnDropFiles
}\label{wxtextctrlondropfiles
}
379 \func{void
}{OnDropFiles
}{\param{wxDropFilesEvent\&
}{event
}}
381 This event handler function implements default drag and drop behaviour, which
382 is to load the first dropped file into the control.
384 \wxheading{Parameters
}
386 \docparam{event
}{The drop files event.
}
390 This is not implemented on non-Windows platforms.
394 \helpref{wxDropFilesEvent
}{wxdropfilesevent
}
396 \membersection{wxTextCtrl::Paste
}\label{wxtextctrlpaste
}
398 \func{virtual void
}{Paste
}{\void}
400 Pastes text from the clipboard to the text item.
402 \membersection{wxTextCtrl::PositionToXY
}\label{wxtextctrlpositiontoxy
}
404 \constfunc{bool
}{PositionToXY
}{\param{long
}{pos
},
\param{long *
}{x
},
\param{long *
}{y
}}
406 Converts given position to a zero-based column, line number pair.
408 \wxheading{Parameters
}
410 \docparam{pos
}{Position.
}
412 \docparam{x
}{Receives zero based column number.
}
414 \docparam{y
}{Receives zero based line number.
}
416 \wxheading{Return value
}
418 TRUE on success, FALSE on failure (most likely due to a too large position
423 \helpref{wxTextCtrl::XYToPosition
}{wxtextctrlxytoposition
}
425 \pythonnote{In Python, PositionToXY() returns a tuple containing the x and
426 y values, so (x,y) = PositionToXY() is equivalent to the call described
429 \perlnote{In wxPerl this method only takes the
{\tt pos
} parameter, and
430 returns a
2-element list
{\tt ( x, y )
}.
}
432 \membersection{wxTextCtrl::Redo
}\label{wxtextctrlredo
}
434 \func{virtual void
}{Redo
}{\void}
436 If there is a redo facility and the last operation can be redone, redoes the last operation. Does nothing
437 if there is no redo facility.
439 \membersection{wxTextCtrl::Remove
}\label{wxtextctrlremove
}
441 \func{virtual void
}{Remove
}{\param{long
}{ from
},
\param{long
}{ to
}}
443 Removes the text starting at the first given position up to (but not including)
444 the character at the last position.
446 \wxheading{Parameters
}
448 \docparam{from
}{The first position.
}
450 \docparam{to
}{The last position.
}
452 \membersection{wxTextCtrl::Replace
}\label{wxtextctrlreplace
}
454 \func{virtual void
}{Replace
}{\param{long
}{ from
},
\param{long
}{ to
},
\param{const wxString\&
}{value
}}
456 Replaces the text starting at the first position up to (but not including)
457 the character at the last position with the given text.
459 \wxheading{Parameters
}
461 \docparam{from
}{The first position.
}
463 \docparam{to
}{The last position.
}
465 \docparam{value
}{The value to replace the existing text with.
}
467 \membersection{wxTextCtrl::SaveFile
}\label{wxtextctrlsavefile
}
469 \func{bool
}{SaveFile
}{\param{const wxString\&
}{ filename
}}
471 Saves the contents of the control in a text file.
473 \wxheading{Parameters
}
475 \docparam{filename
}{The name of the file in which to save the text.
}
477 \wxheading{Return value
}
479 TRUE if the operation was successful, FALSE otherwise.
481 \membersection{wxTextCtrl::SetEditable
}\label{wxtextctrlseteditable
}
483 \func{virtual void
}{SetEditable
}{\param{const bool
}{ editable
}}
485 Makes the text item editable or read-only, overriding the
{\bf wxTE
\_READONLY} flag.
487 \wxheading{Parameters
}
489 \docparam{editable
}{If TRUE, the control is editable. If FALSE, the control is read-only.
}
491 \membersection{wxTextCtrl::SetInsertionPoint
}\label{wxtextctrlsetinsertionpoint
}
493 \func{virtual void
}{SetInsertionPoint
}{\param{long
}{ pos
}}
495 Sets the insertion point at the given position.
497 \wxheading{Parameters
}
499 \docparam{pos
}{Position to set.
}
501 \membersection{wxTextCtrl::SetInsertionPointEnd
}\label{wxtextctrlsetinsertionpointend
}
503 \func{virtual void
}{SetInsertionPointEnd
}{\void}
505 Sets the insertion point at the end of the text control. This is equivalent
506 to
\helpref{SetInsertionPoint
}{wxtextctrlsetinsertionpoint
}(
\helpref{GetLastPosition
}{wxtextctrlgetlastposition
}()).
508 \membersection{wxTextCtrl::SetSelection
}\label{wxtextctrlsetselection
}
510 \func{virtual void
}{SetSelection
}{\param{long
}{ from
},
\param{long
}{ to
}}
512 Selects the text starting at the first position up to (but not including) the character at the last position.
514 \wxheading{Parameters
}
516 \docparam{from
}{The first position.
}
518 \docparam{to
}{The last position.
}
520 \membersection{wxTextCtrl::SetValue
}\label{wxtextctrlsetvalue
}
522 \func{virtual void
}{SetValue
}{\param{const wxString\&
}{ value
}}
524 Sets the text value and marks the control as not-modified.
526 \wxheading{Parameters
}
528 \docparam{value
}{The new value to set. It may contain newline characters if the text control is multi-line.
}
530 \membersection{wxTextCtrl::ShowPosition
}\label{wxtextctrlshowposition
}
532 \func{void
}{ShowPosition
}{\param{long
}{ pos
}}
534 Makes the line containing the given position visible.
536 \wxheading{Parameters
}
538 \docparam{pos
}{The position that should be visible.
}
540 \membersection{wxTextCtrl::Undo
}\label{wxtextctrlundo
}
542 \func{virtual void
}{Undo
}{\void}
544 If there is an undo facility and the last operation can be undone, undoes the last operation. Does nothing
545 if there is no undo facility.
547 \membersection{wxTextCtrl::WriteText
}\label{wxtextctrlwritetext
}
549 \func{void
}{WriteText
}{\param{const wxString\&
}{ text
}}
551 Writes the text into the text control at the current insertion position.
553 \wxheading{Parameters
}
555 \docparam{text
}{Text to write to the text control.
}
559 Newlines in the text string
560 are the only control characters allowed, and they will cause appropriate
561 line breaks. See
\helpref{wxTextCtrl::
\cinsert}{wxtextctrlinsert
} and
\helpref{wxTextCtrl::AppendText
}{wxtextctrlappendtext
} for more convenient ways of writing to the window.
563 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.
565 \membersection{wxTextCtrl::XYToPosition
}\label{wxtextctrlxytoposition
}
567 \func{long
}{XYToPosition
}{\param{long
}{ x
},
\param{long
}{ y
}}
569 Converts the given zero based column and line number to a position.
571 \wxheading{Parameters
}
573 \docparam{x
}{The column number.
}
575 \docparam{y
}{The line number.
}
577 \wxheading{Return value
}
581 \membersection{wxTextCtrl::operator
\cinsert}\label{wxtextctrlinsert
}
583 \func{wxTextCtrl\&
}{operator
\cinsert}{\param{const wxString\&
}{s
}}
585 \func{wxTextCtrl\&
}{operator
\cinsert}{\param{int
}{ i
}}
587 \func{wxTextCtrl\&
}{operator
\cinsert}{\param{long
}{ i
}}
589 \func{wxTextCtrl\&
}{operator
\cinsert}{\param{float
}{ f
}}
591 \func{wxTextCtrl\&
}{operator
\cinsert}{\param{double
}{ d
}}
593 \func{wxTextCtrl\&
}{operator
\cinsert}{\param{char
}{ c
}}
595 Operator definitions for appending to a text control, for example:
598 wxTextCtrl *wnd = new wxTextCtrl(my_frame);
600 (*wnd) << "Welcome to text control number " << 1 << ".\n";