moved DoSetValue() to wxTextCtrlBase instead of having it in almost, but not quite...
[wxWidgets.git] / include / wx / univ / textctrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/textctrl.h
3 // Purpose: wxTextCtrl class
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 15.09.00
7 // RCS-ID: $Id$
8 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_UNIV_TEXTCTRL_H_
13 #define _WX_UNIV_TEXTCTRL_H_
14
15 class WXDLLEXPORT wxCaret;
16 class WXDLLEXPORT wxTextCtrlCommandProcessor;
17
18 #include "wx/scrolwin.h" // for wxScrollHelper
19
20 #include "wx/univ/inphand.h"
21
22 // ----------------------------------------------------------------------------
23 // wxTextCtrl actions
24 // ----------------------------------------------------------------------------
25
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")
40
41 // clipboard operations
42 #define wxACTION_TEXT_COPY _T("copy")
43 #define wxACTION_TEXT_CUT _T("cut")
44 #define wxACTION_TEXT_PASTE _T("paste")
45
46 // insert text at the cursor position: the text is in strArg of PerformAction
47 #define wxACTION_TEXT_INSERT _T("insert")
48
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")
54
55 // mouse selection
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")
60
61 // undo or redo
62 #define wxACTION_TEXT_UNDO _T("undo")
63 #define wxACTION_TEXT_REDO _T("redo")
64
65 // ----------------------------------------------------------------------------
66 // wxTextCtrl
67 // ----------------------------------------------------------------------------
68
69 class WXDLLEXPORT wxTextCtrl : public wxTextCtrlBase,
70 public wxScrollHelper
71 {
72 public:
73 // creation
74 // --------
75
76 wxTextCtrl() : wxScrollHelper(this) { Init(); }
77
78 wxTextCtrl(wxWindow *parent,
79 wxWindowID id,
80 const wxString& value = wxEmptyString,
81 const wxPoint& pos = wxDefaultPosition,
82 const wxSize& size = wxDefaultSize,
83 long style = 0,
84 const wxValidator& validator = wxDefaultValidator,
85 const wxString& name = wxTextCtrlNameStr)
86 : wxScrollHelper(this)
87 {
88 Init();
89
90 Create(parent, id, value, pos, size, style, validator, name);
91 }
92
93 bool Create(wxWindow *parent,
94 wxWindowID id,
95 const wxString& value = wxEmptyString,
96 const wxPoint& pos = wxDefaultPosition,
97 const wxSize& size = wxDefaultSize,
98 long style = 0,
99 const wxValidator& validator = wxDefaultValidator,
100 const wxString& name = wxTextCtrlNameStr);
101
102 virtual ~wxTextCtrl();
103
104 // implement base class pure virtuals
105 // ----------------------------------
106
107 virtual wxString GetValue() const;
108
109 virtual int GetLineLength(wxTextCoord lineNo) const;
110 virtual wxString GetLineText(wxTextCoord lineNo) const;
111 virtual int GetNumberOfLines() const;
112
113 virtual bool IsModified() const;
114 virtual bool IsEditable() const;
115
116 // If the return values from and to are the same, there is no selection.
117 virtual void GetSelection(wxTextPos* from, wxTextPos* to) const;
118
119 // operations
120 // ----------
121
122 // editing
123 virtual void Clear();
124 virtual void Replace(wxTextPos from, wxTextPos to, const wxString& value);
125 virtual void Remove(wxTextPos from, wxTextPos to);
126
127 // sets/clears the dirty flag
128 virtual void MarkDirty();
129 virtual void DiscardEdits();
130
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);
135
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;
142
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;
148
149 virtual void ShowPosition(wxTextPos pos);
150
151 // Clipboard operations
152 virtual void Copy();
153 virtual void Cut();
154 virtual void Paste();
155
156 // Undo/redo
157 virtual void Undo();
158 virtual void Redo();
159
160 virtual bool CanUndo() const;
161 virtual bool CanRedo() const;
162
163 // Insertion point
164 virtual void SetInsertionPoint(wxTextPos pos);
165 virtual void SetInsertionPointEnd();
166 virtual wxTextPos GetInsertionPoint() const;
167 virtual wxTextPos GetLastPosition() const;
168
169 virtual void SetSelection(wxTextPos from, wxTextPos to);
170 virtual void SetEditable(bool editable);
171
172 // wxUniv-specific methods
173 // -----------------------
174
175 // caret stuff
176 virtual void ShowCaret(bool show = true);
177 void HideCaret() { ShowCaret(false); }
178 void CreateCaret(); // for the current font size
179
180 // helpers for cursor movement
181 wxTextPos GetWordStart() const;
182 wxTextPos GetWordEnd() const;
183
184 // selection helpers
185 bool HasSelection() const
186 { return m_selStart != -1 && m_selEnd > m_selStart; }
187 void ClearSelection();
188 void RemoveSelection();
189 wxString GetSelectionText() const;
190
191 virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const;
192 virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt,
193 wxTextCoord *col,
194 wxTextCoord *row) const;
195
196 // find the character at this position in the given line, return value as
197 // for HitTest()
198 //
199 // NB: x is the logical coord (client and unscrolled)
200 wxTextCtrlHitTestResult HitTestLine(const wxString& line,
201 wxCoord x,
202 wxTextCoord *colOut) const;
203
204 // bring the given position into view
205 void ShowHorzPosition(wxCoord pos);
206
207 // scroll the window horizontally so that the first character shown is in
208 // position pos
209 void ScrollText(wxTextCoord col);
210
211 // adjust the DC for horz text control scrolling too
212 virtual void DoPrepareDC(wxDC& dc);
213
214 // implementation only from now on
215 // -------------------------------
216
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;
220
221 // perform an action
222 virtual bool PerformAction(const wxControlAction& action,
223 long numArg = -1,
224 const wxString& strArg = wxEmptyString);
225
226 static wxInputHandler *GetStdInputHandler(wxInputHandler *handlerDef);
227 virtual wxInputHandler *DoGetStdInputHandler(wxInputHandler *handlerDef)
228 {
229 return GetStdInputHandler(handlerDef);
230 }
231
232 // override these methods to handle the caret
233 virtual bool SetFont(const wxFont &font);
234 virtual bool Enable(bool enable = true);
235
236 // more readable flag testing methods
237 bool IsPassword() const { return (GetWindowStyle() & wxTE_PASSWORD) != 0; }
238 bool WrapLines() const
239 { return !IsSingleLine() && !(GetWindowStyle() & wxHSCROLL); }
240
241 // only for wxStdTextCtrlInputHandler
242 void RefreshSelection();
243
244 // override wxScrollHelper method to prevent (auto)scrolling beyond the end
245 // of line
246 virtual bool SendAutoScrollEvents(wxScrollWinEvent& event) const;
247
248 // idle processing
249 virtual void OnInternalIdle();
250
251 protected:
252 // ensure we have correct default border
253 virtual wxBorder GetDefaultBorder() const { return wxBORDER_SUNKEN; }
254
255 // override base class methods
256 virtual void DoDrawBorder(wxDC& dc, const wxRect& rect);
257 virtual void DoDraw(wxControlRenderer *renderer);
258
259 // calc the size from the text extent
260 virtual wxSize DoGetBestClientSize() const;
261
262 // implements Set/ChangeValue()
263 virtual void DoSetValue(const wxString& value, int flags = 0);
264
265 // common part of all ctors
266 void Init();
267
268 // drawing
269 // -------
270
271 // draw the text in the given rectangle
272 void DoDrawTextInRect(wxDC& dc, const wxRect& rectUpdate);
273
274 // draw the line wrap marks in this rect
275 void DoDrawLineWrapMarks(wxDC& dc, const wxRect& rectUpdate);
276
277 // line/row geometry calculations
278 // ------------------------------
279
280 // get the extent (width) of the text
281 wxCoord GetTextWidth(const wxString& text) const;
282
283 // get the logical text width (accounting for scrolling)
284 wxCoord GetTotalWidth() const;
285
286 // get total number of rows (different from number of lines if the lines
287 // can be wrapped)
288 wxTextCoord GetRowCount() const;
289
290 // find the number of rows in this line (only if WrapLines())
291 wxTextCoord GetRowsPerLine(wxTextCoord line) const;
292
293 // get the starting row of the given line
294 wxTextCoord GetFirstRowOfLine(wxTextCoord line) const;
295
296 // get the row following this line
297 wxTextCoord GetRowAfterLine(wxTextCoord line) const;
298
299 // refresh functions
300 // -----------------
301
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;
309
310 // refresh the text in the given (in logical coords) rect
311 void RefreshTextRect(const wxRect& rect, bool textOnly = true);
312
313 // refresh the line wrap marks for the given range of lines (inclusive)
314 void RefreshLineWrapMarks(wxTextCoord rowFirst, wxTextCoord rowLast);
315
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);
319
320 // refresh the text in the given range (in text coords) in this line
321 void RefreshColRange(wxTextCoord line, wxTextPos start, size_t count);
322
323 // refresh the text from in the given line range (inclusive)
324 void RefreshLineRange(wxTextCoord lineFirst, wxTextCoord lineLast);
325
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);
329
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;
333
334 // find the row in this line where the given position (counted from the
335 // start of line) is
336 wxTextCoord GetRowInLine(wxTextCoord line,
337 wxTextCoord col,
338 wxTextCoord *colRowStart = NULL) const;
339
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;
344
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;
349
350 // update the text rect: the zone inside our client rect (its coords are
351 // client coords) which contains the text
352 void UpdateTextRect();
353
354 // calculate the last visible position
355 void UpdateLastVisible();
356
357 // move caret to the given position unconditionally
358 // (SetInsertionPoint() does nothing if the position didn't change)
359 void DoSetInsertionPoint(wxTextPos pos);
360
361 // move caret to the new position without updating the display (for
362 // internal use only)
363 void MoveInsertionPoint(wxTextPos pos);
364
365 // set the caret to its initial (default) position
366 void InitInsertionPoint();
367
368 // get the width of the longest line in pixels
369 wxCoord GetMaxWidth() const;
370
371 // force recalculation of the max line width
372 void RecalcMaxWidth();
373
374 // update the max width after the given line was modified
375 void UpdateMaxWidth(wxTextCoord line);
376
377 // hit testing
378 // -----------
379
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
382 // pixels
383 //
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,
387 wxCoord x1,
388 wxCoord x2,
389 wxTextCoord *row,
390 wxTextCoord *colStart,
391 wxTextCoord *colEnd,
392 wxTextCoord *colRowStart,
393 bool devCoords = true) const;
394
395 // HitTest() version which takes the logical text coordinates and not the
396 // device ones
397 wxTextCtrlHitTestResult HitTestLogical(const wxPoint& pos,
398 wxTextCoord *col,
399 wxTextCoord *row) const;
400
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
403 //
404 // NB: this function can only be called for controls which wrap lines
405 bool GetLineAndRow(wxTextCoord row,
406 wxTextCoord *line,
407 wxTextCoord *rowInLine) const;
408
409 // get the height of one line (the same for all lines)
410 wxCoord GetLineHeight() const
411 {
412 // this one should be already precalculated
413 wxASSERT_MSG( m_heightLine != -1, _T("should have line height") );
414
415 return m_heightLine;
416 }
417
418 // get the average char width
419 wxCoord GetAverageWidth() const { return m_widthAvg; }
420
421 // recalc the line height and char width (to call when the font changes)
422 void RecalcFontMetrics();
423
424 // vertical scrolling helpers
425 // --------------------------
426
427 // all these functions are for multi line controls only
428
429 // get the number of visible lines
430 size_t GetLinesPerPage() const;
431
432 // return the position above the cursor or INVALID_POS_VALUE
433 wxTextPos GetPositionAbove();
434
435 // return the position below the cursor or INVALID_POS_VALUE
436 wxTextPos GetPositionBelow();
437
438 // event handlers
439 // --------------
440 void OnChar(wxKeyEvent& event);
441 void OnSize(wxSizeEvent& event);
442
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; }
450
451 // clipboard operations (unlike the versions without Do prefix, they have a
452 // return code)
453 bool DoCut();
454 bool DoPaste();
455
456 private:
457 // all these methods are for multiline text controls only
458
459 // update the scrollbars (only called from OnIdle)
460 void UpdateScrollbars();
461
462 // get read only access to the lines of multiline control
463 inline const wxArrayString& GetLines() const;
464 inline size_t GetLineCount() const;
465
466 // replace a line (returns true if the number of rows in thel ine changed)
467 bool ReplaceLine(wxTextCoord line, const wxString& text);
468
469 // remove a line
470 void RemoveLine(wxTextCoord line);
471
472 // insert a line at this position
473 void InsertLine(wxTextCoord line, const wxString& text);
474
475 // calculate geometry of this line
476 void LayoutLine(wxTextCoord line, class wxWrappedLineData& lineData) const;
477
478 // calculate geometry of all lines until the given one
479 void LayoutLines(wxTextCoord lineLast) const;
480
481 // the initially specified control size
482 wxSize m_sizeInitial;
483
484 // the global control text
485 wxString m_value;
486
487 // current position
488 wxTextPos m_curPos;
489 wxTextCoord m_curCol,
490 m_curRow;
491
492 // last position (only used by GetLastPosition())
493 wxTextPos m_posLast;
494
495 // selection
496 wxTextPos m_selAnchor,
497 m_selStart,
498 m_selEnd;
499
500 // flags
501 bool m_isModified:1,
502 m_isEditable:1,
503 m_hasCaret:1;
504
505 // the rectangle (in client coordinates) to draw text inside
506 wxRect m_rectText;
507
508 // the height of one line (cached value of GetCharHeight)
509 wxCoord m_heightLine;
510
511 // and the average char width (cached value of GetCharWidth)
512 wxCoord m_widthAvg;
513
514 // we have some data which depends on the kind of control (single or multi
515 // line)
516 union
517 {
518 wxTextSingleLineData *sdata;
519 wxTextMultiLineData *mdata;
520 wxTextWrappedData *wdata;
521 void *data;
522 } m_data;
523
524 // the object to which we delegate our undo/redo implementation
525 wxTextCtrlCommandProcessor *m_cmdProcessor;
526
527 DECLARE_EVENT_TABLE()
528 DECLARE_DYNAMIC_CLASS(wxTextCtrl)
529
530 friend class wxWrappedLineData;
531 };
532
533 #endif // _WX_UNIV_TEXTCTRL_H_
534