]>
Commit | Line | Data |
---|---|---|
1e6feb95 VZ |
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$ | |
442b35b5 | 8 | // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com) |
65571936 | 9 | // Licence: wxWindows licence |
1e6feb95 VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_UNIV_TEXTCTRL_H_ | |
13 | #define _WX_UNIV_TEXTCTRL_H_ | |
14 | ||
1e6feb95 VZ |
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 | ||
1e6feb95 VZ |
65 | // ---------------------------------------------------------------------------- |
66 | // wxTextCtrl | |
67 | // ---------------------------------------------------------------------------- | |
68 | ||
c3ee2228 VZ |
69 | class WXDLLEXPORT wxTextCtrl : public wxTextCtrlBase, |
70 | public wxScrollHelper | |
1e6feb95 VZ |
71 | { |
72 | public: | |
73 | // creation | |
74 | // -------- | |
75 | ||
c3ee2228 | 76 | wxTextCtrl() : wxScrollHelper(this) { Init(); } |
1e6feb95 VZ |
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, | |
6463b9f5 | 85 | const wxString& name = wxTextCtrlNameStr) |
c3ee2228 | 86 | : wxScrollHelper(this) |
6463b9f5 JS |
87 | { |
88 | Init(); | |
89 | ||
90 | Create(parent, id, value, pos, size, style, validator, name); | |
91 | } | |
1e6feb95 VZ |
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 | virtual void SetValue(const wxString& value); | |
109 | ||
110 | virtual int GetLineLength(wxTextCoord lineNo) const; | |
111 | virtual wxString GetLineText(wxTextCoord lineNo) const; | |
112 | virtual int GetNumberOfLines() const; | |
113 | ||
114 | virtual bool IsModified() const; | |
115 | virtual bool IsEditable() const; | |
116 | ||
117 | // If the return values from and to are the same, there is no selection. | |
118 | virtual void GetSelection(wxTextPos* from, wxTextPos* to) const; | |
119 | ||
120 | // operations | |
121 | // ---------- | |
122 | ||
123 | // editing | |
124 | virtual void Clear(); | |
125 | virtual void Replace(wxTextPos from, wxTextPos to, const wxString& value); | |
126 | virtual void Remove(wxTextPos from, wxTextPos to); | |
127 | ||
3a9fa0d6 VZ |
128 | // sets/clears the dirty flag |
129 | virtual void MarkDirty(); | |
1e6feb95 VZ |
130 | virtual void DiscardEdits(); |
131 | ||
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); | |
136 | ||
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; | |
143 | ||
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; | |
149 | ||
150 | virtual void ShowPosition(wxTextPos pos); | |
151 | ||
152 | // Clipboard operations | |
153 | virtual void Copy(); | |
154 | virtual void Cut(); | |
155 | virtual void Paste(); | |
156 | ||
157 | // Undo/redo | |
158 | virtual void Undo(); | |
159 | virtual void Redo(); | |
160 | ||
161 | virtual bool CanUndo() const; | |
162 | virtual bool CanRedo() const; | |
163 | ||
164 | // Insertion point | |
165 | virtual void SetInsertionPoint(wxTextPos pos); | |
166 | virtual void SetInsertionPointEnd(); | |
167 | virtual wxTextPos GetInsertionPoint() const; | |
168 | virtual wxTextPos GetLastPosition() const; | |
169 | ||
170 | virtual void SetSelection(wxTextPos from, wxTextPos to); | |
171 | virtual void SetEditable(bool editable); | |
172 | ||
173 | // wxUniv-specific methods | |
174 | // ----------------------- | |
175 | ||
176 | // caret stuff | |
a290fa5a WS |
177 | virtual void ShowCaret(bool show = true); |
178 | void HideCaret() { ShowCaret(false); } | |
1e6feb95 VZ |
179 | void CreateCaret(); // for the current font size |
180 | ||
181 | // helpers for cursor movement | |
182 | wxTextPos GetWordStart() const; | |
183 | wxTextPos GetWordEnd() const; | |
184 | ||
185 | // selection helpers | |
186 | bool HasSelection() const | |
187 | { return m_selStart != -1 && m_selEnd > m_selStart; } | |
188 | void ClearSelection(); | |
189 | void RemoveSelection(); | |
190 | wxString GetSelectionText() const; | |
191 | ||
692c9b86 | 192 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const; |
f08bc784 VZ |
193 | virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, |
194 | wxTextCoord *col, | |
195 | wxTextCoord *row) const; | |
1e6feb95 VZ |
196 | |
197 | // find the character at this position in the given line, return value as | |
198 | // for HitTest() | |
199 | // | |
200 | // NB: x is the logical coord (client and unscrolled) | |
201 | wxTextCtrlHitTestResult HitTestLine(const wxString& line, | |
202 | wxCoord x, | |
203 | wxTextCoord *colOut) const; | |
204 | ||
205 | // bring the given position into view | |
206 | void ShowHorzPosition(wxCoord pos); | |
207 | ||
208 | // scroll the window horizontally so that the first character shown is in | |
209 | // position pos | |
210 | void ScrollText(wxTextCoord col); | |
211 | ||
212 | // adjust the DC for horz text control scrolling too | |
213 | virtual void DoPrepareDC(wxDC& dc); | |
214 | ||
215 | // implementation only from now on | |
216 | // ------------------------------- | |
217 | ||
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; | |
221 | ||
1e6feb95 VZ |
222 | // perform an action |
223 | virtual bool PerformAction(const wxControlAction& action, | |
224 | long numArg = -1, | |
225 | const wxString& strArg = wxEmptyString); | |
226 | ||
227 | // override these methods to handle the caret | |
228 | virtual bool SetFont(const wxFont &font); | |
a290fa5a | 229 | virtual bool Enable(bool enable = true); |
1e6feb95 VZ |
230 | |
231 | // more readable flag testing methods | |
1e6feb95 VZ |
232 | bool IsPassword() const { return (GetWindowStyle() & wxTE_PASSWORD) != 0; } |
233 | bool WrapLines() const | |
234 | { return !IsSingleLine() && !(GetWindowStyle() & wxHSCROLL); } | |
235 | ||
236 | // only for wxStdTextCtrlInputHandler | |
237 | void RefreshSelection(); | |
238 | ||
6f02a879 VZ |
239 | // override wxScrollHelper method to prevent (auto)scrolling beyond the end |
240 | // of line | |
241 | virtual bool SendAutoScrollEvents(wxScrollWinEvent& event) const; | |
242 | ||
243 | // idle processing | |
244 | virtual void OnInternalIdle(); | |
245 | ||
1e6feb95 | 246 | protected: |
6f02a879 VZ |
247 | // ensure we have correct default border |
248 | virtual wxBorder GetDefaultBorder() const { return wxBORDER_SUNKEN; } | |
249 | ||
1e6feb95 VZ |
250 | // override base class methods |
251 | virtual void DoDrawBorder(wxDC& dc, const wxRect& rect); | |
252 | virtual void DoDraw(wxControlRenderer *renderer); | |
253 | ||
254 | // calc the size from the text extent | |
255 | virtual wxSize DoGetBestClientSize() const; | |
256 | ||
257 | // common part of all ctors | |
258 | void Init(); | |
259 | ||
260 | // drawing | |
261 | // ------- | |
262 | ||
263 | // draw the text in the given rectangle | |
264 | void DoDrawTextInRect(wxDC& dc, const wxRect& rectUpdate); | |
265 | ||
266 | // draw the line wrap marks in this rect | |
267 | void DoDrawLineWrapMarks(wxDC& dc, const wxRect& rectUpdate); | |
268 | ||
269 | // line/row geometry calculations | |
270 | // ------------------------------ | |
271 | ||
272 | // get the extent (width) of the text | |
273 | wxCoord GetTextWidth(const wxString& text) const; | |
274 | ||
275 | // get the logical text width (accounting for scrolling) | |
276 | wxCoord GetTotalWidth() const; | |
277 | ||
278 | // get total number of rows (different from number of lines if the lines | |
279 | // can be wrapped) | |
280 | wxTextCoord GetRowCount() const; | |
281 | ||
282 | // find the number of rows in this line (only if WrapLines()) | |
283 | wxTextCoord GetRowsPerLine(wxTextCoord line) const; | |
284 | ||
285 | // get the starting row of the given line | |
286 | wxTextCoord GetFirstRowOfLine(wxTextCoord line) const; | |
287 | ||
288 | // get the row following this line | |
289 | wxTextCoord GetRowAfterLine(wxTextCoord line) const; | |
290 | ||
291 | // refresh functions | |
292 | // ----------------- | |
293 | ||
294 | // the text area is the part of the window in which the text can be | |
295 | // displayed, i.e. part of it inside the margins and the real text area is | |
296 | // the area in which the text *is* currently displayed: for example, in the | |
297 | // multiline control case the text area can have extra space at the bottom | |
298 | // which is not tall enough for another line and which is then not included | |
299 | // into the real text area | |
300 | wxRect GetRealTextArea() const; | |
301 | ||
302 | // refresh the text in the given (in logical coords) rect | |
a290fa5a | 303 | void RefreshTextRect(const wxRect& rect, bool textOnly = true); |
1e6feb95 VZ |
304 | |
305 | // refresh the line wrap marks for the given range of lines (inclusive) | |
306 | void RefreshLineWrapMarks(wxTextCoord rowFirst, wxTextCoord rowLast); | |
307 | ||
308 | // refresh the text in the given range (in logical coords) of this line, if | |
309 | // width is 0, refresh to the end of line | |
310 | void RefreshPixelRange(wxTextCoord line, wxCoord start, wxCoord width); | |
311 | ||
312 | // refresh the text in the given range (in text coords) in this line | |
313 | void RefreshColRange(wxTextCoord line, wxTextPos start, size_t count); | |
314 | ||
315 | // refresh the text from in the given line range (inclusive) | |
316 | void RefreshLineRange(wxTextCoord lineFirst, wxTextCoord lineLast); | |
317 | ||
318 | // refresh the text in the given range which can span multiple lines | |
319 | // (this method accepts arguments in any order) | |
320 | void RefreshTextRange(wxTextPos start, wxTextPos end); | |
321 | ||
322 | // get the text to show: either the text itself or the text replaced with | |
323 | // starts for wxTE_PASSWORD control | |
324 | wxString GetTextToShow(const wxString& text) const; | |
325 | ||
326 | // find the row in this line where the given position (counted from the | |
327 | // start of line) is | |
328 | wxTextCoord GetRowInLine(wxTextCoord line, | |
329 | wxTextCoord col, | |
330 | wxTextCoord *colRowStart = NULL) const; | |
331 | ||
332 | // find the number of characters of a line before it wraps | |
333 | // (and optionally also the real width of the line) | |
334 | size_t GetPartOfWrappedLine(const wxChar* text, | |
335 | wxCoord *widthReal = NULL) const; | |
336 | ||
337 | // get the start and end of the selection for this line: if the line is | |
a290fa5a | 338 | // outside the selection, both will be -1 and false will be returned |
1e6feb95 VZ |
339 | bool GetSelectedPartOfLine(wxTextCoord line, |
340 | wxTextPos *start, wxTextPos *end) const; | |
341 | ||
342 | // update the text rect: the zone inside our client rect (its coords are | |
343 | // client coords) which contains the text | |
344 | void UpdateTextRect(); | |
345 | ||
346 | // calculate the last visible position | |
347 | void UpdateLastVisible(); | |
348 | ||
349 | // move caret to the given position unconditionally | |
350 | // (SetInsertionPoint() does nothing if the position didn't change) | |
351 | void DoSetInsertionPoint(wxTextPos pos); | |
352 | ||
353 | // move caret to the new position without updating the display (for | |
354 | // internal use only) | |
355 | void MoveInsertionPoint(wxTextPos pos); | |
356 | ||
357 | // set the caret to its initial (default) position | |
358 | void InitInsertionPoint(); | |
359 | ||
360 | // get the width of the longest line in pixels | |
361 | wxCoord GetMaxWidth() const; | |
362 | ||
363 | // force recalculation of the max line width | |
364 | void RecalcMaxWidth(); | |
365 | ||
366 | // update the max width after the given line was modified | |
367 | void UpdateMaxWidth(wxTextCoord line); | |
368 | ||
369 | // hit testing | |
370 | // ----------- | |
371 | ||
372 | // HitTest2() is more efficient than 2 consecutive HitTest()s with the same | |
373 | // line (i.e. y) and it also returns the offset of the starting position in | |
374 | // pixels | |
375 | // | |
376 | // as the last hack, this function accepts either logical or device (by | |
377 | // default) coords depending on devCoords flag | |
378 | wxTextCtrlHitTestResult HitTest2(wxCoord y, | |
379 | wxCoord x1, | |
380 | wxCoord x2, | |
381 | wxTextCoord *row, | |
382 | wxTextCoord *colStart, | |
383 | wxTextCoord *colEnd, | |
384 | wxTextCoord *colRowStart, | |
a290fa5a | 385 | bool devCoords = true) const; |
1e6feb95 VZ |
386 | |
387 | // HitTest() version which takes the logical text coordinates and not the | |
388 | // device ones | |
389 | wxTextCtrlHitTestResult HitTestLogical(const wxPoint& pos, | |
390 | wxTextCoord *col, | |
391 | wxTextCoord *row) const; | |
392 | ||
393 | // get the line and the row in this line corresponding to the given row, | |
a290fa5a | 394 | // return true if ok and false if row is out of range |
1e6feb95 VZ |
395 | // |
396 | // NB: this function can only be called for controls which wrap lines | |
397 | bool GetLineAndRow(wxTextCoord row, | |
398 | wxTextCoord *line, | |
399 | wxTextCoord *rowInLine) const; | |
400 | ||
401 | // get the height of one line (the same for all lines) | |
402 | wxCoord GetLineHeight() const | |
403 | { | |
404 | // this one should be already precalculated | |
405 | wxASSERT_MSG( m_heightLine != -1, _T("should have line height") ); | |
406 | ||
407 | return m_heightLine; | |
408 | } | |
409 | ||
410 | // get the average char width | |
411 | wxCoord GetAverageWidth() const { return m_widthAvg; } | |
412 | ||
413 | // recalc the line height and char width (to call when the font changes) | |
414 | void RecalcFontMetrics(); | |
415 | ||
416 | // vertical scrolling helpers | |
417 | // -------------------------- | |
418 | ||
419 | // all these functions are for multi line controls only | |
420 | ||
421 | // get the number of visible lines | |
422 | size_t GetLinesPerPage() const; | |
423 | ||
424 | // return the position above the cursor or INVALID_POS_VALUE | |
425 | wxTextPos GetPositionAbove(); | |
426 | ||
427 | // return the position below the cursor or INVALID_POS_VALUE | |
428 | wxTextPos GetPositionBelow(); | |
429 | ||
430 | // event handlers | |
431 | // -------------- | |
1e6feb95 VZ |
432 | void OnChar(wxKeyEvent& event); |
433 | void OnSize(wxSizeEvent& event); | |
434 | ||
1e6feb95 VZ |
435 | // return the struct containing control-type dependent data |
436 | struct wxTextSingleLineData& SData() { return *m_data.sdata; } | |
437 | struct wxTextMultiLineData& MData() { return *m_data.mdata; } | |
438 | struct wxTextWrappedData& WData() { return *m_data.wdata; } | |
439 | const wxTextSingleLineData& SData() const { return *m_data.sdata; } | |
440 | const wxTextMultiLineData& MData() const { return *m_data.mdata; } | |
441 | const wxTextWrappedData& WData() const { return *m_data.wdata; } | |
442 | ||
443 | // clipboard operations (unlike the versions without Do prefix, they have a | |
444 | // return code) | |
445 | bool DoCut(); | |
446 | bool DoPaste(); | |
447 | ||
448 | private: | |
449 | // all these methods are for multiline text controls only | |
450 | ||
451 | // update the scrollbars (only called from OnIdle) | |
452 | void UpdateScrollbars(); | |
453 | ||
454 | // get read only access to the lines of multiline control | |
455 | inline const wxArrayString& GetLines() const; | |
456 | inline size_t GetLineCount() const; | |
457 | ||
a290fa5a | 458 | // replace a line (returns true if the number of rows in thel ine changed) |
1e6feb95 VZ |
459 | bool ReplaceLine(wxTextCoord line, const wxString& text); |
460 | ||
461 | // remove a line | |
462 | void RemoveLine(wxTextCoord line); | |
463 | ||
464 | // insert a line at this position | |
465 | void InsertLine(wxTextCoord line, const wxString& text); | |
466 | ||
467 | // calculate geometry of this line | |
468 | void LayoutLine(wxTextCoord line, class wxWrappedLineData& lineData) const; | |
469 | ||
470 | // calculate geometry of all lines until the given one | |
471 | void LayoutLines(wxTextCoord lineLast) const; | |
472 | ||
473 | // the initially specified control size | |
474 | wxSize m_sizeInitial; | |
475 | ||
476 | // the global control text | |
477 | wxString m_value; | |
478 | ||
479 | // current position | |
480 | wxTextPos m_curPos; | |
481 | wxTextCoord m_curCol, | |
482 | m_curRow; | |
483 | ||
484 | // last position (only used by GetLastPosition()) | |
485 | wxTextPos m_posLast; | |
486 | ||
487 | // selection | |
488 | wxTextPos m_selAnchor, | |
489 | m_selStart, | |
490 | m_selEnd; | |
491 | ||
492 | // flags | |
493 | bool m_isModified:1, | |
494 | m_isEditable:1, | |
495 | m_hasCaret:1; | |
496 | ||
497 | // the rectangle (in client coordinates) to draw text inside | |
498 | wxRect m_rectText; | |
499 | ||
500 | // the height of one line (cached value of GetCharHeight) | |
501 | wxCoord m_heightLine; | |
502 | ||
503 | // and the average char width (cached value of GetCharWidth) | |
504 | wxCoord m_widthAvg; | |
505 | ||
506 | // we have some data which depends on the kind of control (single or multi | |
507 | // line) | |
508 | union | |
509 | { | |
510 | wxTextSingleLineData *sdata; | |
511 | wxTextMultiLineData *mdata; | |
512 | wxTextWrappedData *wdata; | |
513 | void *data; | |
514 | } m_data; | |
515 | ||
516 | // the object to which we delegate our undo/redo implementation | |
517 | wxTextCtrlCommandProcessor *m_cmdProcessor; | |
518 | ||
519 | DECLARE_EVENT_TABLE() | |
520 | DECLARE_DYNAMIC_CLASS(wxTextCtrl) | |
b4d3bed8 VS |
521 | |
522 | friend class wxWrappedLineData; | |
1e6feb95 VZ |
523 | }; |
524 | ||
525 | // ---------------------------------------------------------------------------- | |
526 | // wxStdTextCtrlInputHandler: this control handles only the mouse/kbd actions | |
527 | // common to Win32 and GTK, platform-specific things are implemented elsewhere | |
528 | // ---------------------------------------------------------------------------- | |
529 | ||
530 | class WXDLLEXPORT wxStdTextCtrlInputHandler : public wxStdInputHandler | |
531 | { | |
532 | public: | |
533 | wxStdTextCtrlInputHandler(wxInputHandler *inphand); | |
534 | ||
23645bfa | 535 | virtual bool HandleKey(wxInputConsumer *consumer, |
1e6feb95 VZ |
536 | const wxKeyEvent& event, |
537 | bool pressed); | |
23645bfa | 538 | virtual bool HandleMouse(wxInputConsumer *consumer, |
1e6feb95 | 539 | const wxMouseEvent& event); |
23645bfa | 540 | virtual bool HandleMouseMove(wxInputConsumer *consumer, |
1e6feb95 | 541 | const wxMouseEvent& event); |
23645bfa | 542 | virtual bool HandleFocus(wxInputConsumer *consumer, const wxFocusEvent& event); |
1e6feb95 VZ |
543 | |
544 | protected: | |
545 | // get the position of the mouse click | |
546 | static wxTextPos HitTest(const wxTextCtrl *text, const wxPoint& pos); | |
547 | ||
548 | // capture data | |
549 | wxTextCtrl *m_winCapture; | |
550 | }; | |
551 | ||
552 | #endif // _WX_UNIV_TEXTCTRL_H_ | |
553 |