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 WXDLLEXPORT wxCaret
;
16 class WXDLLEXPORT 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 WXDLLEXPORT 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 (GetWindowStyle() & wxTE_PASSWORD
) != 0; }
238 bool WrapLines() const
239 { return !IsSingleLine() && !(GetWindowStyle() & wxHSCROLL
); }
241 // only for wxStdTextCtrlInputHandler
242 void RefreshSelection();
244 // override wxScrollHelper method to prevent (auto)scrolling beyond the end
246 virtual bool SendAutoScrollEvents(wxScrollWinEvent
& event
) const;
249 virtual void OnInternalIdle();
252 // ensure we have correct default border
253 virtual wxBorder
GetDefaultBorder() const { return wxBORDER_SUNKEN
; }
255 // override base class methods
256 virtual void DoDrawBorder(wxDC
& dc
, const wxRect
& rect
);
257 virtual void DoDraw(wxControlRenderer
*renderer
);
259 // calc the size from the text extent
260 virtual wxSize
DoGetBestClientSize() const;
262 // implements Set/ChangeValue()
263 virtual void DoSetValue(const wxString
& value
, int flags
= 0);
265 // common part of all ctors
271 // draw the text in the given rectangle
272 void DoDrawTextInRect(wxDC
& dc
, const wxRect
& rectUpdate
);
274 // draw the line wrap marks in this rect
275 void DoDrawLineWrapMarks(wxDC
& dc
, const wxRect
& rectUpdate
);
277 // line/row geometry calculations
278 // ------------------------------
280 // get the extent (width) of the text
281 wxCoord
GetTextWidth(const wxString
& text
) const;
283 // get the logical text width (accounting for scrolling)
284 wxCoord
GetTotalWidth() const;
286 // get total number of rows (different from number of lines if the lines
288 wxTextCoord
GetRowCount() const;
290 // find the number of rows in this line (only if WrapLines())
291 wxTextCoord
GetRowsPerLine(wxTextCoord line
) const;
293 // get the starting row of the given line
294 wxTextCoord
GetFirstRowOfLine(wxTextCoord line
) const;
296 // get the row following this line
297 wxTextCoord
GetRowAfterLine(wxTextCoord line
) const;
302 // the text area is the part of the window in which the text can be
303 // displayed, i.e. part of it inside the margins and the real text area is
304 // the area in which the text *is* currently displayed: for example, in the
305 // multiline control case the text area can have extra space at the bottom
306 // which is not tall enough for another line and which is then not included
307 // into the real text area
308 wxRect
GetRealTextArea() const;
310 // refresh the text in the given (in logical coords) rect
311 void RefreshTextRect(const wxRect
& rect
, bool textOnly
= true);
313 // refresh the line wrap marks for the given range of lines (inclusive)
314 void RefreshLineWrapMarks(wxTextCoord rowFirst
, wxTextCoord rowLast
);
316 // refresh the text in the given range (in logical coords) of this line, if
317 // width is 0, refresh to the end of line
318 void RefreshPixelRange(wxTextCoord line
, wxCoord start
, wxCoord width
);
320 // refresh the text in the given range (in text coords) in this line
321 void RefreshColRange(wxTextCoord line
, wxTextPos start
, size_t count
);
323 // refresh the text from in the given line range (inclusive)
324 void RefreshLineRange(wxTextCoord lineFirst
, wxTextCoord lineLast
);
326 // refresh the text in the given range which can span multiple lines
327 // (this method accepts arguments in any order)
328 void RefreshTextRange(wxTextPos start
, wxTextPos end
);
330 // get the text to show: either the text itself or the text replaced with
331 // starts for wxTE_PASSWORD control
332 wxString
GetTextToShow(const wxString
& text
) const;
334 // find the row in this line where the given position (counted from the
336 wxTextCoord
GetRowInLine(wxTextCoord line
,
338 wxTextCoord
*colRowStart
= NULL
) const;
340 // find the number of characters of a line before it wraps
341 // (and optionally also the real width of the line)
342 size_t GetPartOfWrappedLine(const wxChar
* text
,
343 wxCoord
*widthReal
= NULL
) const;
345 // get the start and end of the selection for this line: if the line is
346 // outside the selection, both will be -1 and false will be returned
347 bool GetSelectedPartOfLine(wxTextCoord line
,
348 wxTextPos
*start
, wxTextPos
*end
) const;
350 // update the text rect: the zone inside our client rect (its coords are
351 // client coords) which contains the text
352 void UpdateTextRect();
354 // calculate the last visible position
355 void UpdateLastVisible();
357 // move caret to the given position unconditionally
358 // (SetInsertionPoint() does nothing if the position didn't change)
359 void DoSetInsertionPoint(wxTextPos pos
);
361 // move caret to the new position without updating the display (for
362 // internal use only)
363 void MoveInsertionPoint(wxTextPos pos
);
365 // set the caret to its initial (default) position
366 void InitInsertionPoint();
368 // get the width of the longest line in pixels
369 wxCoord
GetMaxWidth() const;
371 // force recalculation of the max line width
372 void RecalcMaxWidth();
374 // update the max width after the given line was modified
375 void UpdateMaxWidth(wxTextCoord line
);
380 // HitTest2() is more efficient than 2 consecutive HitTest()s with the same
381 // line (i.e. y) and it also returns the offset of the starting position in
384 // as the last hack, this function accepts either logical or device (by
385 // default) coords depending on devCoords flag
386 wxTextCtrlHitTestResult
HitTest2(wxCoord y
,
390 wxTextCoord
*colStart
,
392 wxTextCoord
*colRowStart
,
393 bool devCoords
= true) const;
395 // HitTest() version which takes the logical text coordinates and not the
397 wxTextCtrlHitTestResult
HitTestLogical(const wxPoint
& pos
,
399 wxTextCoord
*row
) const;
401 // get the line and the row in this line corresponding to the given row,
402 // return true if ok and false if row is out of range
404 // NB: this function can only be called for controls which wrap lines
405 bool GetLineAndRow(wxTextCoord row
,
407 wxTextCoord
*rowInLine
) const;
409 // get the height of one line (the same for all lines)
410 wxCoord
GetLineHeight() const
412 // this one should be already precalculated
413 wxASSERT_MSG( m_heightLine
!= -1, _T("should have line height") );
418 // get the average char width
419 wxCoord
GetAverageWidth() const { return m_widthAvg
; }
421 // recalc the line height and char width (to call when the font changes)
422 void RecalcFontMetrics();
424 // vertical scrolling helpers
425 // --------------------------
427 // all these functions are for multi line controls only
429 // get the number of visible lines
430 size_t GetLinesPerPage() const;
432 // return the position above the cursor or INVALID_POS_VALUE
433 wxTextPos
GetPositionAbove();
435 // return the position below the cursor or INVALID_POS_VALUE
436 wxTextPos
GetPositionBelow();
440 void OnChar(wxKeyEvent
& event
);
441 void OnSize(wxSizeEvent
& event
);
443 // return the struct containing control-type dependent data
444 struct wxTextSingleLineData
& SData() { return *m_data
.sdata
; }
445 struct wxTextMultiLineData
& MData() { return *m_data
.mdata
; }
446 struct wxTextWrappedData
& WData() { return *m_data
.wdata
; }
447 const wxTextSingleLineData
& SData() const { return *m_data
.sdata
; }
448 const wxTextMultiLineData
& MData() const { return *m_data
.mdata
; }
449 const wxTextWrappedData
& WData() const { return *m_data
.wdata
; }
451 // clipboard operations (unlike the versions without Do prefix, they have a
457 // all these methods are for multiline text controls only
459 // update the scrollbars (only called from OnIdle)
460 void UpdateScrollbars();
462 // get read only access to the lines of multiline control
463 inline const wxArrayString
& GetLines() const;
464 inline size_t GetLineCount() const;
466 // replace a line (returns true if the number of rows in thel ine changed)
467 bool ReplaceLine(wxTextCoord line
, const wxString
& text
);
470 void RemoveLine(wxTextCoord line
);
472 // insert a line at this position
473 void InsertLine(wxTextCoord line
, const wxString
& text
);
475 // calculate geometry of this line
476 void LayoutLine(wxTextCoord line
, class wxWrappedLineData
& lineData
) const;
478 // calculate geometry of all lines until the given one
479 void LayoutLines(wxTextCoord lineLast
) const;
481 // the initially specified control size
482 wxSize m_sizeInitial
;
484 // the global control text
489 wxTextCoord m_curCol
,
492 // last position (only used by GetLastPosition())
496 wxTextPos m_selAnchor
,
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_