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;
108 virtual void SetValue(const wxString
& value
);
110 virtual int GetLineLength(wxTextCoord lineNo
) const;
111 virtual wxString
GetLineText(wxTextCoord lineNo
) const;
112 virtual int GetNumberOfLines() const;
114 virtual bool IsModified() const;
115 virtual bool IsEditable() const;
117 // If the return values from and to are the same, there is no selection.
118 virtual void GetSelection(wxTextPos
* from
, wxTextPos
* to
) const;
124 virtual void Clear();
125 virtual void Replace(wxTextPos from
, wxTextPos to
, const wxString
& value
);
126 virtual void Remove(wxTextPos from
, wxTextPos to
);
128 // sets/clears the dirty flag
129 virtual void MarkDirty();
130 virtual void DiscardEdits();
132 // writing text inserts it at the current position, appending always
133 // inserts it at the end
134 virtual void WriteText(const wxString
& text
);
135 virtual void AppendText(const wxString
& text
);
137 // translate between the position (which is just an index in the text ctrl
138 // considering all its contents as a single strings) and (x, y) coordinates
139 // which represent (logical, i.e. unwrapped) column and line.
140 virtual wxTextPos
XYToPosition(wxTextCoord x
, wxTextCoord y
) const;
141 virtual bool PositionToXY(wxTextPos pos
,
142 wxTextCoord
*x
, wxTextCoord
*y
) const;
144 // wxUniv-specific: find a screen position (in client coordinates) of the
145 // given text position or of the caret
146 bool PositionToLogicalXY(wxTextPos pos
, wxCoord
*x
, wxCoord
*y
) const;
147 bool PositionToDeviceXY(wxTextPos pos
, wxCoord
*x
, wxCoord
*y
) const;
148 wxPoint
GetCaretPosition() const;
150 virtual void ShowPosition(wxTextPos pos
);
152 // Clipboard operations
155 virtual void Paste();
161 virtual bool CanUndo() const;
162 virtual bool CanRedo() const;
165 virtual void SetInsertionPoint(wxTextPos pos
);
166 virtual void SetInsertionPointEnd();
167 virtual wxTextPos
GetInsertionPoint() const;
168 virtual wxTextPos
GetLastPosition() const;
170 virtual void SetSelection(wxTextPos from
, wxTextPos to
);
171 virtual void SetEditable(bool editable
);
173 // wxUniv-specific methods
174 // -----------------------
177 virtual void ShowCaret(bool show
= true);
178 void HideCaret() { ShowCaret(false); }
179 void CreateCaret(); // for the current font size
181 // helpers for cursor movement
182 wxTextPos
GetWordStart() const;
183 wxTextPos
GetWordEnd() const;
186 bool HasSelection() const
187 { return m_selStart
!= -1 && m_selEnd
> m_selStart
; }
188 void ClearSelection();
189 void RemoveSelection();
190 wxString
GetSelectionText() const;
192 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
, long *pos
) const;
193 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
,
195 wxTextCoord
*row
) const;
197 // find the character at this position in the given line, return value as
200 // NB: x is the logical coord (client and unscrolled)
201 wxTextCtrlHitTestResult
HitTestLine(const wxString
& line
,
203 wxTextCoord
*colOut
) const;
205 // bring the given position into view
206 void ShowHorzPosition(wxCoord pos
);
208 // scroll the window horizontally so that the first character shown is in
210 void ScrollText(wxTextCoord col
);
212 // adjust the DC for horz text control scrolling too
213 virtual void DoPrepareDC(wxDC
& dc
);
215 // implementation only from now on
216 // -------------------------------
218 // override this to take into account our scrollbar-less scrolling
219 virtual void CalcUnscrolledPosition(int x
, int y
, int *xx
, int *yy
) const;
220 virtual void CalcScrolledPosition(int x
, int y
, int *xx
, int *yy
) const;
222 // ensure we have correct default border
223 virtual wxBorder
GetDefaultBorder() const { return wxBORDER_SUNKEN
; }
226 virtual bool PerformAction(const wxControlAction
& action
,
228 const wxString
& strArg
= wxEmptyString
);
230 // override these methods to handle the caret
231 virtual bool SetFont(const wxFont
&font
);
232 virtual bool Enable(bool enable
= true);
234 // more readable flag testing methods
235 bool IsPassword() const { return (GetWindowStyle() & wxTE_PASSWORD
) != 0; }
236 bool WrapLines() const
237 { return !IsSingleLine() && !(GetWindowStyle() & wxHSCROLL
); }
239 // only for wxStdTextCtrlInputHandler
240 void RefreshSelection();
243 // override base class methods
244 virtual void DoDrawBorder(wxDC
& dc
, const wxRect
& rect
);
245 virtual void DoDraw(wxControlRenderer
*renderer
);
247 // calc the size from the text extent
248 virtual wxSize
DoGetBestClientSize() const;
250 // common part of all ctors
256 // draw the text in the given rectangle
257 void DoDrawTextInRect(wxDC
& dc
, const wxRect
& rectUpdate
);
259 // draw the line wrap marks in this rect
260 void DoDrawLineWrapMarks(wxDC
& dc
, const wxRect
& rectUpdate
);
262 // line/row geometry calculations
263 // ------------------------------
265 // get the extent (width) of the text
266 wxCoord
GetTextWidth(const wxString
& text
) const;
268 // get the logical text width (accounting for scrolling)
269 wxCoord
GetTotalWidth() const;
271 // get total number of rows (different from number of lines if the lines
273 wxTextCoord
GetRowCount() const;
275 // find the number of rows in this line (only if WrapLines())
276 wxTextCoord
GetRowsPerLine(wxTextCoord line
) const;
278 // get the starting row of the given line
279 wxTextCoord
GetFirstRowOfLine(wxTextCoord line
) const;
281 // get the row following this line
282 wxTextCoord
GetRowAfterLine(wxTextCoord line
) const;
287 // the text area is the part of the window in which the text can be
288 // displayed, i.e. part of it inside the margins and the real text area is
289 // the area in which the text *is* currently displayed: for example, in the
290 // multiline control case the text area can have extra space at the bottom
291 // which is not tall enough for another line and which is then not included
292 // into the real text area
293 wxRect
GetRealTextArea() const;
295 // refresh the text in the given (in logical coords) rect
296 void RefreshTextRect(const wxRect
& rect
, bool textOnly
= true);
298 // refresh the line wrap marks for the given range of lines (inclusive)
299 void RefreshLineWrapMarks(wxTextCoord rowFirst
, wxTextCoord rowLast
);
301 // refresh the text in the given range (in logical coords) of this line, if
302 // width is 0, refresh to the end of line
303 void RefreshPixelRange(wxTextCoord line
, wxCoord start
, wxCoord width
);
305 // refresh the text in the given range (in text coords) in this line
306 void RefreshColRange(wxTextCoord line
, wxTextPos start
, size_t count
);
308 // refresh the text from in the given line range (inclusive)
309 void RefreshLineRange(wxTextCoord lineFirst
, wxTextCoord lineLast
);
311 // refresh the text in the given range which can span multiple lines
312 // (this method accepts arguments in any order)
313 void RefreshTextRange(wxTextPos start
, wxTextPos end
);
315 // get the text to show: either the text itself or the text replaced with
316 // starts for wxTE_PASSWORD control
317 wxString
GetTextToShow(const wxString
& text
) const;
319 // find the row in this line where the given position (counted from the
321 wxTextCoord
GetRowInLine(wxTextCoord line
,
323 wxTextCoord
*colRowStart
= NULL
) const;
325 // find the number of characters of a line before it wraps
326 // (and optionally also the real width of the line)
327 size_t GetPartOfWrappedLine(const wxChar
* text
,
328 wxCoord
*widthReal
= NULL
) const;
330 // get the start and end of the selection for this line: if the line is
331 // outside the selection, both will be -1 and false will be returned
332 bool GetSelectedPartOfLine(wxTextCoord line
,
333 wxTextPos
*start
, wxTextPos
*end
) const;
335 // update the text rect: the zone inside our client rect (its coords are
336 // client coords) which contains the text
337 void UpdateTextRect();
339 // calculate the last visible position
340 void UpdateLastVisible();
342 // move caret to the given position unconditionally
343 // (SetInsertionPoint() does nothing if the position didn't change)
344 void DoSetInsertionPoint(wxTextPos pos
);
346 // move caret to the new position without updating the display (for
347 // internal use only)
348 void MoveInsertionPoint(wxTextPos pos
);
350 // set the caret to its initial (default) position
351 void InitInsertionPoint();
353 // get the width of the longest line in pixels
354 wxCoord
GetMaxWidth() const;
356 // force recalculation of the max line width
357 void RecalcMaxWidth();
359 // update the max width after the given line was modified
360 void UpdateMaxWidth(wxTextCoord line
);
365 // HitTest2() is more efficient than 2 consecutive HitTest()s with the same
366 // line (i.e. y) and it also returns the offset of the starting position in
369 // as the last hack, this function accepts either logical or device (by
370 // default) coords depending on devCoords flag
371 wxTextCtrlHitTestResult
HitTest2(wxCoord y
,
375 wxTextCoord
*colStart
,
377 wxTextCoord
*colRowStart
,
378 bool devCoords
= true) const;
380 // HitTest() version which takes the logical text coordinates and not the
382 wxTextCtrlHitTestResult
HitTestLogical(const wxPoint
& pos
,
384 wxTextCoord
*row
) const;
386 // get the line and the row in this line corresponding to the given row,
387 // return true if ok and false if row is out of range
389 // NB: this function can only be called for controls which wrap lines
390 bool GetLineAndRow(wxTextCoord row
,
392 wxTextCoord
*rowInLine
) const;
394 // get the height of one line (the same for all lines)
395 wxCoord
GetLineHeight() const
397 // this one should be already precalculated
398 wxASSERT_MSG( m_heightLine
!= -1, _T("should have line height") );
403 // get the average char width
404 wxCoord
GetAverageWidth() const { return m_widthAvg
; }
406 // recalc the line height and char width (to call when the font changes)
407 void RecalcFontMetrics();
409 // vertical scrolling helpers
410 // --------------------------
412 // all these functions are for multi line controls only
414 // get the number of visible lines
415 size_t GetLinesPerPage() const;
417 // return the position above the cursor or INVALID_POS_VALUE
418 wxTextPos
GetPositionAbove();
420 // return the position below the cursor or INVALID_POS_VALUE
421 wxTextPos
GetPositionBelow();
425 void OnChar(wxKeyEvent
& event
);
426 void OnSize(wxSizeEvent
& event
);
428 // overrdie wxScrollHelper method to prevent (auto)scrolling beyond the end
430 virtual bool SendAutoScrollEvents(wxScrollWinEvent
& event
) const;
432 // return the struct containing control-type dependent data
433 struct wxTextSingleLineData
& SData() { return *m_data
.sdata
; }
434 struct wxTextMultiLineData
& MData() { return *m_data
.mdata
; }
435 struct wxTextWrappedData
& WData() { return *m_data
.wdata
; }
436 const wxTextSingleLineData
& SData() const { return *m_data
.sdata
; }
437 const wxTextMultiLineData
& MData() const { return *m_data
.mdata
; }
438 const wxTextWrappedData
& WData() const { return *m_data
.wdata
; }
440 // clipboard operations (unlike the versions without Do prefix, they have a
446 virtual void OnInternalIdle();
448 // all these methods are for multiline text controls only
450 // update the scrollbars (only called from OnIdle)
451 void UpdateScrollbars();
453 // get read only access to the lines of multiline control
454 inline const wxArrayString
& GetLines() const;
455 inline size_t GetLineCount() const;
457 // replace a line (returns true if the number of rows in thel ine changed)
458 bool ReplaceLine(wxTextCoord line
, const wxString
& text
);
461 void RemoveLine(wxTextCoord line
);
463 // insert a line at this position
464 void InsertLine(wxTextCoord line
, const wxString
& text
);
466 // calculate geometry of this line
467 void LayoutLine(wxTextCoord line
, class wxWrappedLineData
& lineData
) const;
469 // calculate geometry of all lines until the given one
470 void LayoutLines(wxTextCoord lineLast
) const;
472 // the initially specified control size
473 wxSize m_sizeInitial
;
475 // the global control text
480 wxTextCoord m_curCol
,
483 // last position (only used by GetLastPosition())
487 wxTextPos m_selAnchor
,
496 // the rectangle (in client coordinates) to draw text inside
499 // the height of one line (cached value of GetCharHeight)
500 wxCoord m_heightLine
;
502 // and the average char width (cached value of GetCharWidth)
505 // we have some data which depends on the kind of control (single or multi
509 wxTextSingleLineData
*sdata
;
510 wxTextMultiLineData
*mdata
;
511 wxTextWrappedData
*wdata
;
515 // the object to which we delegate our undo/redo implementation
516 wxTextCtrlCommandProcessor
*m_cmdProcessor
;
518 DECLARE_EVENT_TABLE()
519 DECLARE_DYNAMIC_CLASS(wxTextCtrl
)
521 friend class wxWrappedLineData
;
524 // ----------------------------------------------------------------------------
525 // wxStdTextCtrlInputHandler: this control handles only the mouse/kbd actions
526 // common to Win32 and GTK, platform-specific things are implemented elsewhere
527 // ----------------------------------------------------------------------------
529 class WXDLLEXPORT wxStdTextCtrlInputHandler
: public wxStdInputHandler
532 wxStdTextCtrlInputHandler(wxInputHandler
*inphand
);
534 virtual bool HandleKey(wxInputConsumer
*consumer
,
535 const wxKeyEvent
& event
,
537 virtual bool HandleMouse(wxInputConsumer
*consumer
,
538 const wxMouseEvent
& event
);
539 virtual bool HandleMouseMove(wxInputConsumer
*consumer
,
540 const wxMouseEvent
& event
);
541 virtual bool HandleFocus(wxInputConsumer
*consumer
, const wxFocusEvent
& event
);
544 // get the position of the mouse click
545 static wxTextPos
HitTest(const wxTextCtrl
*text
, const wxPoint
& pos
);
548 wxTextCtrl
*m_winCapture
;
551 #endif // _WX_UNIV_TEXTCTRL_H_