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
, public wxScrollHelper
75 wxTextCtrl() { Init(); }
77 wxTextCtrl(wxWindow
*parent
,
79 const wxString
& value
= wxEmptyString
,
80 const wxPoint
& pos
= wxDefaultPosition
,
81 const wxSize
& size
= wxDefaultSize
,
83 const wxValidator
& validator
= wxDefaultValidator
,
84 const wxString
& name
= wxTextCtrlNameStr
)
88 Create(parent
, id
, value
, pos
, size
, style
, validator
, name
);
91 bool Create(wxWindow
*parent
,
93 const wxString
& value
= wxEmptyString
,
94 const wxPoint
& pos
= wxDefaultPosition
,
95 const wxSize
& size
= wxDefaultSize
,
97 const wxValidator
& validator
= wxDefaultValidator
,
98 const wxString
& name
= wxTextCtrlNameStr
);
100 virtual ~wxTextCtrl();
102 // implement base class pure virtuals
103 // ----------------------------------
105 virtual wxString
GetValue() const;
106 virtual void SetValue(const wxString
& value
);
108 virtual int GetLineLength(wxTextCoord lineNo
) const;
109 virtual wxString
GetLineText(wxTextCoord lineNo
) const;
110 virtual int GetNumberOfLines() const;
112 virtual bool IsModified() const;
113 virtual bool IsEditable() const;
115 // If the return values from and to are the same, there is no selection.
116 virtual void GetSelection(wxTextPos
* from
, wxTextPos
* to
) const;
122 virtual void Clear();
123 virtual void Replace(wxTextPos from
, wxTextPos to
, const wxString
& value
);
124 virtual void Remove(wxTextPos from
, wxTextPos to
);
126 // sets/clears the dirty flag
127 virtual void MarkDirty();
128 virtual void DiscardEdits();
130 // writing text inserts it at the current position, appending always
131 // inserts it at the end
132 virtual void WriteText(const wxString
& text
);
133 virtual void AppendText(const wxString
& text
);
135 // translate between the position (which is just an index in the text ctrl
136 // considering all its contents as a single strings) and (x, y) coordinates
137 // which represent (logical, i.e. unwrapped) column and line.
138 virtual wxTextPos
XYToPosition(wxTextCoord x
, wxTextCoord y
) const;
139 virtual bool PositionToXY(wxTextPos pos
,
140 wxTextCoord
*x
, wxTextCoord
*y
) const;
142 // wxUniv-specific: find a screen position (in client coordinates) of the
143 // given text position or of the caret
144 bool PositionToLogicalXY(wxTextPos pos
, wxCoord
*x
, wxCoord
*y
) const;
145 bool PositionToDeviceXY(wxTextPos pos
, wxCoord
*x
, wxCoord
*y
) const;
146 wxPoint
GetCaretPosition() const;
148 virtual void ShowPosition(wxTextPos pos
);
150 // Clipboard operations
153 virtual void Paste();
159 virtual bool CanUndo() const;
160 virtual bool CanRedo() const;
163 virtual void SetInsertionPoint(wxTextPos pos
);
164 virtual void SetInsertionPointEnd();
165 virtual wxTextPos
GetInsertionPoint() const;
166 virtual wxTextPos
GetLastPosition() const;
168 virtual void SetSelection(wxTextPos from
, wxTextPos to
);
169 virtual void SetEditable(bool editable
);
171 // wxUniv-specific methods
172 // -----------------------
175 virtual void ShowCaret(bool show
= true);
176 void HideCaret() { ShowCaret(false); }
177 void CreateCaret(); // for the current font size
179 // helpers for cursor movement
180 wxTextPos
GetWordStart() const;
181 wxTextPos
GetWordEnd() const;
184 bool HasSelection() const
185 { return m_selStart
!= -1 && m_selEnd
> m_selStart
; }
186 void ClearSelection();
187 void RemoveSelection();
188 wxString
GetSelectionText() const;
190 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
, long *pos
) const;
191 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
,
193 wxTextCoord
*row
) const;
195 // find the character at this position in the given line, return value as
198 // NB: x is the logical coord (client and unscrolled)
199 wxTextCtrlHitTestResult
HitTestLine(const wxString
& line
,
201 wxTextCoord
*colOut
) const;
203 // bring the given position into view
204 void ShowHorzPosition(wxCoord pos
);
206 // scroll the window horizontally so that the first character shown is in
208 void ScrollText(wxTextCoord col
);
210 // adjust the DC for horz text control scrolling too
211 virtual void DoPrepareDC(wxDC
& dc
);
213 // implementation only from now on
214 // -------------------------------
216 // override this to take into account our scrollbar-less scrolling
217 virtual void CalcUnscrolledPosition(int x
, int y
, int *xx
, int *yy
) const;
218 virtual void CalcScrolledPosition(int x
, int y
, int *xx
, int *yy
) const;
220 // ensure we have correct default border
221 virtual wxBorder
GetDefaultBorder() const { return wxBORDER_SUNKEN
; }
224 virtual bool PerformAction(const wxControlAction
& action
,
226 const wxString
& strArg
= wxEmptyString
);
228 // override these methods to handle the caret
229 virtual bool SetFont(const wxFont
&font
);
230 virtual bool Enable(bool enable
= true);
232 // more readable flag testing methods
233 bool IsPassword() const { return (GetWindowStyle() & wxTE_PASSWORD
) != 0; }
234 bool WrapLines() const
235 { return !IsSingleLine() && !(GetWindowStyle() & wxHSCROLL
); }
237 // only for wxStdTextCtrlInputHandler
238 void RefreshSelection();
241 // override base class methods
242 virtual void DoDrawBorder(wxDC
& dc
, const wxRect
& rect
);
243 virtual void DoDraw(wxControlRenderer
*renderer
);
245 // calc the size from the text extent
246 virtual wxSize
DoGetBestClientSize() const;
248 // common part of all ctors
254 // draw the text in the given rectangle
255 void DoDrawTextInRect(wxDC
& dc
, const wxRect
& rectUpdate
);
257 // draw the line wrap marks in this rect
258 void DoDrawLineWrapMarks(wxDC
& dc
, const wxRect
& rectUpdate
);
260 // line/row geometry calculations
261 // ------------------------------
263 // get the extent (width) of the text
264 wxCoord
GetTextWidth(const wxString
& text
) const;
266 // get the logical text width (accounting for scrolling)
267 wxCoord
GetTotalWidth() const;
269 // get total number of rows (different from number of lines if the lines
271 wxTextCoord
GetRowCount() const;
273 // find the number of rows in this line (only if WrapLines())
274 wxTextCoord
GetRowsPerLine(wxTextCoord line
) const;
276 // get the starting row of the given line
277 wxTextCoord
GetFirstRowOfLine(wxTextCoord line
) const;
279 // get the row following this line
280 wxTextCoord
GetRowAfterLine(wxTextCoord line
) const;
285 // the text area is the part of the window in which the text can be
286 // displayed, i.e. part of it inside the margins and the real text area is
287 // the area in which the text *is* currently displayed: for example, in the
288 // multiline control case the text area can have extra space at the bottom
289 // which is not tall enough for another line and which is then not included
290 // into the real text area
291 wxRect
GetRealTextArea() const;
293 // refresh the text in the given (in logical coords) rect
294 void RefreshTextRect(const wxRect
& rect
, bool textOnly
= true);
296 // refresh the line wrap marks for the given range of lines (inclusive)
297 void RefreshLineWrapMarks(wxTextCoord rowFirst
, wxTextCoord rowLast
);
299 // refresh the text in the given range (in logical coords) of this line, if
300 // width is 0, refresh to the end of line
301 void RefreshPixelRange(wxTextCoord line
, wxCoord start
, wxCoord width
);
303 // refresh the text in the given range (in text coords) in this line
304 void RefreshColRange(wxTextCoord line
, wxTextPos start
, size_t count
);
306 // refresh the text from in the given line range (inclusive)
307 void RefreshLineRange(wxTextCoord lineFirst
, wxTextCoord lineLast
);
309 // refresh the text in the given range which can span multiple lines
310 // (this method accepts arguments in any order)
311 void RefreshTextRange(wxTextPos start
, wxTextPos end
);
313 // get the text to show: either the text itself or the text replaced with
314 // starts for wxTE_PASSWORD control
315 wxString
GetTextToShow(const wxString
& text
) const;
317 // find the row in this line where the given position (counted from the
319 wxTextCoord
GetRowInLine(wxTextCoord line
,
321 wxTextCoord
*colRowStart
= NULL
) const;
323 // find the number of characters of a line before it wraps
324 // (and optionally also the real width of the line)
325 size_t GetPartOfWrappedLine(const wxChar
* text
,
326 wxCoord
*widthReal
= NULL
) const;
328 // get the start and end of the selection for this line: if the line is
329 // outside the selection, both will be -1 and false will be returned
330 bool GetSelectedPartOfLine(wxTextCoord line
,
331 wxTextPos
*start
, wxTextPos
*end
) const;
333 // update the text rect: the zone inside our client rect (its coords are
334 // client coords) which contains the text
335 void UpdateTextRect();
337 // calculate the last visible position
338 void UpdateLastVisible();
340 // move caret to the given position unconditionally
341 // (SetInsertionPoint() does nothing if the position didn't change)
342 void DoSetInsertionPoint(wxTextPos pos
);
344 // move caret to the new position without updating the display (for
345 // internal use only)
346 void MoveInsertionPoint(wxTextPos pos
);
348 // set the caret to its initial (default) position
349 void InitInsertionPoint();
351 // get the width of the longest line in pixels
352 wxCoord
GetMaxWidth() const;
354 // force recalculation of the max line width
355 void RecalcMaxWidth();
357 // update the max width after the given line was modified
358 void UpdateMaxWidth(wxTextCoord line
);
363 // HitTest2() is more efficient than 2 consecutive HitTest()s with the same
364 // line (i.e. y) and it also returns the offset of the starting position in
367 // as the last hack, this function accepts either logical or device (by
368 // default) coords depending on devCoords flag
369 wxTextCtrlHitTestResult
HitTest2(wxCoord y
,
373 wxTextCoord
*colStart
,
375 wxTextCoord
*colRowStart
,
376 bool devCoords
= true) const;
378 // HitTest() version which takes the logical text coordinates and not the
380 wxTextCtrlHitTestResult
HitTestLogical(const wxPoint
& pos
,
382 wxTextCoord
*row
) const;
384 // get the line and the row in this line corresponding to the given row,
385 // return true if ok and false if row is out of range
387 // NB: this function can only be called for controls which wrap lines
388 bool GetLineAndRow(wxTextCoord row
,
390 wxTextCoord
*rowInLine
) const;
392 // get the height of one line (the same for all lines)
393 wxCoord
GetLineHeight() const
395 // this one should be already precalculated
396 wxASSERT_MSG( m_heightLine
!= -1, _T("should have line height") );
401 // get the average char width
402 wxCoord
GetAverageWidth() const { return m_widthAvg
; }
404 // recalc the line height and char width (to call when the font changes)
405 void RecalcFontMetrics();
407 // vertical scrolling helpers
408 // --------------------------
410 // all these functions are for multi line controls only
412 // get the number of visible lines
413 size_t GetLinesPerPage() const;
415 // return the position above the cursor or INVALID_POS_VALUE
416 wxTextPos
GetPositionAbove();
418 // return the position below the cursor or INVALID_POS_VALUE
419 wxTextPos
GetPositionBelow();
423 void OnChar(wxKeyEvent
& event
);
424 void OnSize(wxSizeEvent
& event
);
426 // overrdie wxScrollHelper method to prevent (auto)scrolling beyond the end
428 virtual bool SendAutoScrollEvents(wxScrollWinEvent
& event
) const;
430 // return the struct containing control-type dependent data
431 struct wxTextSingleLineData
& SData() { return *m_data
.sdata
; }
432 struct wxTextMultiLineData
& MData() { return *m_data
.mdata
; }
433 struct wxTextWrappedData
& WData() { return *m_data
.wdata
; }
434 const wxTextSingleLineData
& SData() const { return *m_data
.sdata
; }
435 const wxTextMultiLineData
& MData() const { return *m_data
.mdata
; }
436 const wxTextWrappedData
& WData() const { return *m_data
.wdata
; }
438 // clipboard operations (unlike the versions without Do prefix, they have a
444 virtual void OnInternalIdle();
446 // all these methods are for multiline text controls only
448 // update the scrollbars (only called from OnIdle)
449 void UpdateScrollbars();
451 // get read only access to the lines of multiline control
452 inline const wxArrayString
& GetLines() const;
453 inline size_t GetLineCount() const;
455 // replace a line (returns true if the number of rows in thel ine changed)
456 bool ReplaceLine(wxTextCoord line
, const wxString
& text
);
459 void RemoveLine(wxTextCoord line
);
461 // insert a line at this position
462 void InsertLine(wxTextCoord line
, const wxString
& text
);
464 // calculate geometry of this line
465 void LayoutLine(wxTextCoord line
, class wxWrappedLineData
& lineData
) const;
467 // calculate geometry of all lines until the given one
468 void LayoutLines(wxTextCoord lineLast
) const;
470 // the initially specified control size
471 wxSize m_sizeInitial
;
473 // the global control text
478 wxTextCoord m_curCol
,
481 // last position (only used by GetLastPosition())
485 wxTextPos m_selAnchor
,
494 // the rectangle (in client coordinates) to draw text inside
497 // the height of one line (cached value of GetCharHeight)
498 wxCoord m_heightLine
;
500 // and the average char width (cached value of GetCharWidth)
503 // we have some data which depends on the kind of control (single or multi
507 wxTextSingleLineData
*sdata
;
508 wxTextMultiLineData
*mdata
;
509 wxTextWrappedData
*wdata
;
513 // the object to which we delegate our undo/redo implementation
514 wxTextCtrlCommandProcessor
*m_cmdProcessor
;
516 DECLARE_EVENT_TABLE()
517 DECLARE_DYNAMIC_CLASS(wxTextCtrl
)
519 friend class wxWrappedLineData
;
522 // ----------------------------------------------------------------------------
523 // wxStdTextCtrlInputHandler: this control handles only the mouse/kbd actions
524 // common to Win32 and GTK, platform-specific things are implemented elsewhere
525 // ----------------------------------------------------------------------------
527 class WXDLLEXPORT wxStdTextCtrlInputHandler
: public wxStdInputHandler
530 wxStdTextCtrlInputHandler(wxInputHandler
*inphand
);
532 virtual bool HandleKey(wxInputConsumer
*consumer
,
533 const wxKeyEvent
& event
,
535 virtual bool HandleMouse(wxInputConsumer
*consumer
,
536 const wxMouseEvent
& event
);
537 virtual bool HandleMouseMove(wxInputConsumer
*consumer
,
538 const wxMouseEvent
& event
);
539 virtual bool HandleFocus(wxInputConsumer
*consumer
, const wxFocusEvent
& event
);
542 // get the position of the mouse click
543 static wxTextPos
HitTest(const wxTextCtrl
*text
, const wxPoint
& pos
);
546 wxTextCtrl
*m_winCapture
;
549 #endif // _WX_UNIV_TEXTCTRL_H_