1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/textctrl.h
3 // Purpose: wxTextCtrl class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_UNIV_TEXTCTRL_H_
13 #define _WX_UNIV_TEXTCTRL_H_
15 class WXDLLIMPEXP_FWD_CORE wxCaret
;
16 class WXDLLIMPEXP_FWD_CORE wxTextCtrlCommandProcessor
;
18 #include "wx/scrolwin.h" // for wxScrollHelper
20 #include "wx/univ/inphand.h"
22 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
26 // cursor movement and also selection and delete operations
27 #define wxACTION_TEXT_GOTO _T("goto") // to pos in numArg
28 #define wxACTION_TEXT_FIRST _T("first") // go to pos 0
29 #define wxACTION_TEXT_LAST _T("last") // go to last pos
30 #define wxACTION_TEXT_HOME _T("home")
31 #define wxACTION_TEXT_END _T("end")
32 #define wxACTION_TEXT_LEFT _T("left")
33 #define wxACTION_TEXT_RIGHT _T("right")
34 #define wxACTION_TEXT_UP _T("up")
35 #define wxACTION_TEXT_DOWN _T("down")
36 #define wxACTION_TEXT_WORD_LEFT _T("wordleft")
37 #define wxACTION_TEXT_WORD_RIGHT _T("wordright")
38 #define wxACTION_TEXT_PAGE_UP _T("pageup")
39 #define wxACTION_TEXT_PAGE_DOWN _T("pagedown")
41 // clipboard operations
42 #define wxACTION_TEXT_COPY _T("copy")
43 #define wxACTION_TEXT_CUT _T("cut")
44 #define wxACTION_TEXT_PASTE _T("paste")
46 // insert text at the cursor position: the text is in strArg of PerformAction
47 #define wxACTION_TEXT_INSERT _T("insert")
49 // if the action starts with either of these prefixes and the rest of the
50 // string is one of the movement commands, it means to select/delete text from
51 // the current cursor position to the new one
52 #define wxACTION_TEXT_PREFIX_SEL _T("sel")
53 #define wxACTION_TEXT_PREFIX_DEL _T("del")
56 #define wxACTION_TEXT_ANCHOR_SEL _T("anchorsel")
57 #define wxACTION_TEXT_EXTEND_SEL _T("extendsel")
58 #define wxACTION_TEXT_SEL_WORD _T("wordsel")
59 #define wxACTION_TEXT_SEL_LINE _T("linesel")
62 #define wxACTION_TEXT_UNDO _T("undo")
63 #define wxACTION_TEXT_REDO _T("redo")
65 // ----------------------------------------------------------------------------
67 // ----------------------------------------------------------------------------
69 class WXDLLIMPEXP_CORE wxTextCtrl
: public wxTextCtrlBase
,
76 wxTextCtrl() : wxScrollHelper(this) { Init(); }
78 wxTextCtrl(wxWindow
*parent
,
80 const wxString
& value
= wxEmptyString
,
81 const wxPoint
& pos
= wxDefaultPosition
,
82 const wxSize
& size
= wxDefaultSize
,
84 const wxValidator
& validator
= wxDefaultValidator
,
85 const wxString
& name
= wxTextCtrlNameStr
)
86 : wxScrollHelper(this)
90 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
93 bool Create(wxWindow
*parent
,
95 const wxString
& value
= wxEmptyString
,
96 const wxPoint
& pos
= wxDefaultPosition
,
97 const wxSize
& size
= wxDefaultSize
,
99 const wxValidator
& validator
= wxDefaultValidator
,
100 const wxString
& name
= wxTextCtrlNameStr
);
102 virtual ~wxTextCtrl();
104 // implement base class pure virtuals
105 // ----------------------------------
107 virtual wxString
GetValue() const;
109 virtual int GetLineLength(wxTextCoord lineNo
) const;
110 virtual wxString
GetLineText(wxTextCoord lineNo
) const;
111 virtual int GetNumberOfLines() const;
113 virtual bool IsModified() const;
114 virtual bool IsEditable() const;
116 // If the return values from and to are the same, there is no selection.
117 virtual void GetSelection(wxTextPos
* from
, wxTextPos
* to
) const;
123 virtual void Clear();
124 virtual void Replace(wxTextPos from
, wxTextPos to
, const wxString
& value
);
125 virtual void Remove(wxTextPos from
, wxTextPos to
);
127 // sets/clears the dirty flag
128 virtual void MarkDirty();
129 virtual void DiscardEdits();
131 // writing text inserts it at the current position, appending always
132 // inserts it at the end
133 virtual void WriteText(const wxString
& text
);
134 virtual void AppendText(const wxString
& text
);
136 // translate between the position (which is just an index in the text ctrl
137 // considering all its contents as a single strings) and (x, y) coordinates
138 // which represent (logical, i.e. unwrapped) column and line.
139 virtual wxTextPos
XYToPosition(wxTextCoord x
, wxTextCoord y
) const;
140 virtual bool PositionToXY(wxTextPos pos
,
141 wxTextCoord
*x
, wxTextCoord
*y
) const;
143 // wxUniv-specific: find a screen position (in client coordinates) of the
144 // given text position or of the caret
145 bool PositionToLogicalXY(wxTextPos pos
, wxCoord
*x
, wxCoord
*y
) const;
146 bool PositionToDeviceXY(wxTextPos pos
, wxCoord
*x
, wxCoord
*y
) const;
147 wxPoint
GetCaretPosition() const;
149 virtual void ShowPosition(wxTextPos pos
);
151 // Clipboard operations
154 virtual void Paste();
160 virtual bool CanUndo() const;
161 virtual bool CanRedo() const;
164 virtual void SetInsertionPoint(wxTextPos pos
);
165 virtual void SetInsertionPointEnd();
166 virtual wxTextPos
GetInsertionPoint() const;
167 virtual wxTextPos
GetLastPosition() const;
169 virtual void SetSelection(wxTextPos from
, wxTextPos to
);
170 virtual void SetEditable(bool editable
);
172 // wxUniv-specific methods
173 // -----------------------
176 virtual void ShowCaret(bool show
= true);
177 void HideCaret() { ShowCaret(false); }
178 void CreateCaret(); // for the current font size
180 // helpers for cursor movement
181 wxTextPos
GetWordStart() const;
182 wxTextPos
GetWordEnd() const;
185 bool HasSelection() const
186 { return m_selStart
!= -1 && m_selEnd
> m_selStart
; }
187 void ClearSelection();
188 void RemoveSelection();
189 wxString
GetSelectionText() const;
191 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
, long *pos
) const;
192 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
,
194 wxTextCoord
*row
) const;
196 // find the character at this position in the given line, return value as
199 // NB: x is the logical coord (client and unscrolled)
200 wxTextCtrlHitTestResult
HitTestLine(const wxString
& line
,
202 wxTextCoord
*colOut
) const;
204 // bring the given position into view
205 void ShowHorzPosition(wxCoord pos
);
207 // scroll the window horizontally so that the first character shown is in
209 void ScrollText(wxTextCoord col
);
211 // adjust the DC for horz text control scrolling too
212 virtual void DoPrepareDC(wxDC
& dc
);
214 // implementation only from now on
215 // -------------------------------
217 // override this to take into account our scrollbar-less scrolling
218 virtual void CalcUnscrolledPosition(int x
, int y
, int *xx
, int *yy
) const;
219 virtual void CalcScrolledPosition(int x
, int y
, int *xx
, int *yy
) const;
222 virtual bool PerformAction(const wxControlAction
& action
,
224 const wxString
& strArg
= wxEmptyString
);
226 static wxInputHandler
*GetStdInputHandler(wxInputHandler
*handlerDef
);
227 virtual wxInputHandler
*DoGetStdInputHandler(wxInputHandler
*handlerDef
)
229 return GetStdInputHandler(handlerDef
);
232 // override these methods to handle the caret
233 virtual bool SetFont(const wxFont
&font
);
234 virtual bool Enable(bool enable
= true);
236 // more readable flag testing methods
237 bool IsPassword() const { return HasFlag(wxTE_PASSWORD
); }
238 bool WrapLines() const { return m_wrapLines
; }
240 // only for wxStdTextCtrlInputHandler
241 void RefreshSelection();
243 // override wxScrollHelper method to prevent (auto)scrolling beyond the end
245 virtual bool SendAutoScrollEvents(wxScrollWinEvent
& event
) const;
248 virtual void OnInternalIdle();
251 // ensure we have correct default border
252 virtual wxBorder
GetDefaultBorder() const { return wxBORDER_SUNKEN
; }
254 // override base class methods
255 virtual void DoDrawBorder(wxDC
& dc
, const wxRect
& rect
);
256 virtual void DoDraw(wxControlRenderer
*renderer
);
258 // calc the size from the text extent
259 virtual wxSize
DoGetBestClientSize() const;
261 // implements Set/ChangeValue()
262 virtual void DoSetValue(const wxString
& value
, int flags
= 0);
264 // common part of all ctors
270 // draw the text in the given rectangle
271 void DoDrawTextInRect(wxDC
& dc
, const wxRect
& rectUpdate
);
273 // draw the line wrap marks in this rect
274 void DoDrawLineWrapMarks(wxDC
& dc
, const wxRect
& rectUpdate
);
276 // line/row geometry calculations
277 // ------------------------------
279 // get the extent (width) of the text
280 wxCoord
GetTextWidth(const wxString
& text
) const;
282 // get the logical text width (accounting for scrolling)
283 wxCoord
GetTotalWidth() const;
285 // get total number of rows (different from number of lines if the lines
287 wxTextCoord
GetRowCount() const;
289 // find the number of rows in this line (only if WrapLines())
290 wxTextCoord
GetRowsPerLine(wxTextCoord line
) const;
292 // get the starting row of the given line
293 wxTextCoord
GetFirstRowOfLine(wxTextCoord line
) const;
295 // get the row following this line
296 wxTextCoord
GetRowAfterLine(wxTextCoord line
) const;
301 // the text area is the part of the window in which the text can be
302 // displayed, i.e. part of it inside the margins and the real text area is
303 // the area in which the text *is* currently displayed: for example, in the
304 // multiline control case the text area can have extra space at the bottom
305 // which is not tall enough for another line and which is then not included
306 // into the real text area
307 wxRect
GetRealTextArea() const;
309 // refresh the text in the given (in logical coords) rect
310 void RefreshTextRect(const wxRect
& rect
, bool textOnly
= true);
312 // refresh the line wrap marks for the given range of lines (inclusive)
313 void RefreshLineWrapMarks(wxTextCoord rowFirst
, wxTextCoord rowLast
);
315 // refresh the text in the given range (in logical coords) of this line, if
316 // width is 0, refresh to the end of line
317 void RefreshPixelRange(wxTextCoord line
, wxCoord start
, wxCoord width
);
319 // refresh the text in the given range (in text coords) in this line
320 void RefreshColRange(wxTextCoord line
, wxTextPos start
, size_t count
);
322 // refresh the text from in the given line range (inclusive)
323 void RefreshLineRange(wxTextCoord lineFirst
, wxTextCoord lineLast
);
325 // refresh the text in the given range which can span multiple lines
326 // (this method accepts arguments in any order)
327 void RefreshTextRange(wxTextPos start
, wxTextPos end
);
329 // get the text to show: either the text itself or the text replaced with
330 // starts for wxTE_PASSWORD control
331 wxString
GetTextToShow(const wxString
& text
) const;
333 // find the row in this line where the given position (counted from the
335 wxTextCoord
GetRowInLine(wxTextCoord line
,
337 wxTextCoord
*colRowStart
= NULL
) const;
339 // find the number of characters of a line before it wraps
340 // (and optionally also the real width of the line)
341 size_t GetPartOfWrappedLine(const wxChar
* text
,
342 wxCoord
*widthReal
= NULL
) const;
344 // get the start and end of the selection for this line: if the line is
345 // outside the selection, both will be -1 and false will be returned
346 bool GetSelectedPartOfLine(wxTextCoord line
,
347 wxTextPos
*start
, wxTextPos
*end
) const;
349 // update the text rect: the zone inside our client rect (its coords are
350 // client coords) which contains the text
351 void UpdateTextRect();
353 // calculate the last visible position
354 void UpdateLastVisible();
356 // move caret to the given position unconditionally
357 // (SetInsertionPoint() does nothing if the position didn't change)
358 void DoSetInsertionPoint(wxTextPos pos
);
360 // move caret to the new position without updating the display (for
361 // internal use only)
362 void MoveInsertionPoint(wxTextPos pos
);
364 // set the caret to its initial (default) position
365 void InitInsertionPoint();
367 // get the width of the longest line in pixels
368 wxCoord
GetMaxWidth() const;
370 // force recalculation of the max line width
371 void RecalcMaxWidth();
373 // update the max width after the given line was modified
374 void UpdateMaxWidth(wxTextCoord line
);
379 // HitTest2() is more efficient than 2 consecutive HitTest()s with the same
380 // line (i.e. y) and it also returns the offset of the starting position in
383 // as the last hack, this function accepts either logical or device (by
384 // default) coords depending on devCoords flag
385 wxTextCtrlHitTestResult
HitTest2(wxCoord y
,
389 wxTextCoord
*colStart
,
391 wxTextCoord
*colRowStart
,
392 bool devCoords
= true) const;
394 // HitTest() version which takes the logical text coordinates and not the
396 wxTextCtrlHitTestResult
HitTestLogical(const wxPoint
& pos
,
398 wxTextCoord
*row
) const;
400 // get the line and the row in this line corresponding to the given row,
401 // return true if ok and false if row is out of range
403 // NB: this function can only be called for controls which wrap lines
404 bool GetLineAndRow(wxTextCoord row
,
406 wxTextCoord
*rowInLine
) const;
408 // get the height of one line (the same for all lines)
409 wxCoord
GetLineHeight() const
411 // this one should be already precalculated
412 wxASSERT_MSG( m_heightLine
!= -1, _T("should have line height") );
417 // get the average char width
418 wxCoord
GetAverageWidth() const { return m_widthAvg
; }
420 // recalc the line height and char width (to call when the font changes)
421 void RecalcFontMetrics();
423 // vertical scrolling helpers
424 // --------------------------
426 // all these functions are for multi line controls only
428 // get the number of visible lines
429 size_t GetLinesPerPage() const;
431 // return the position above the cursor or INVALID_POS_VALUE
432 wxTextPos
GetPositionAbove();
434 // return the position below the cursor or INVALID_POS_VALUE
435 wxTextPos
GetPositionBelow();
439 void OnChar(wxKeyEvent
& event
);
440 void OnSize(wxSizeEvent
& event
);
442 // return the struct containing control-type dependent data
443 struct wxTextSingleLineData
& SData() { return *m_data
.sdata
; }
444 struct wxTextMultiLineData
& MData() { return *m_data
.mdata
; }
445 struct wxTextWrappedData
& WData() { return *m_data
.wdata
; }
446 const wxTextSingleLineData
& SData() const { return *m_data
.sdata
; }
447 const wxTextMultiLineData
& MData() const { return *m_data
.mdata
; }
448 const wxTextWrappedData
& WData() const { return *m_data
.wdata
; }
450 // clipboard operations (unlike the versions without Do prefix, they have a
456 // all these methods are for multiline text controls only
458 // update the scrollbars (only called from OnIdle)
459 void UpdateScrollbars();
461 // get read only access to the lines of multiline control
462 inline const wxArrayString
& GetLines() const;
463 inline size_t GetLineCount() const;
465 // replace a line (returns true if the number of rows in thel ine changed)
466 bool ReplaceLine(wxTextCoord line
, const wxString
& text
);
469 void RemoveLine(wxTextCoord line
);
471 // insert a line at this position
472 void InsertLine(wxTextCoord line
, const wxString
& text
);
474 // calculate geometry of this line
475 void LayoutLine(wxTextCoord line
, class wxWrappedLineData
& lineData
) const;
477 // calculate geometry of all lines until the given one
478 void LayoutLines(wxTextCoord lineLast
) const;
480 // the initially specified control size
481 wxSize m_sizeInitial
;
483 // the global control text
488 wxTextCoord m_curCol
,
491 // last position (only used by GetLastPosition())
495 wxTextPos m_selAnchor
,
503 m_wrapLines
:1; // can't be changed after creation
505 // the rectangle (in client coordinates) to draw text inside
508 // the height of one line (cached value of GetCharHeight)
509 wxCoord m_heightLine
;
511 // and the average char width (cached value of GetCharWidth)
514 // we have some data which depends on the kind of control (single or multi
518 wxTextSingleLineData
*sdata
;
519 wxTextMultiLineData
*mdata
;
520 wxTextWrappedData
*wdata
;
524 // the object to which we delegate our undo/redo implementation
525 wxTextCtrlCommandProcessor
*m_cmdProcessor
;
527 DECLARE_EVENT_TABLE()
528 DECLARE_DYNAMIC_CLASS(wxTextCtrl
)
530 friend class wxWrappedLineData
;
533 #endif // _WX_UNIV_TEXTCTRL_H_