Corrections to take into account that range in the API has an end position
[wxWidgets.git] / include / wx / richtext / richtextctrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/richtext/richtextctrl.h
3 // Purpose: A rich edit control
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 2005-09-30
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_RICHTEXTCTRL_H_
13 #define _WX_RICHTEXTCTRL_H_
14
15 #include "wx/richtext/richtextbuffer.h"
16
17 #if wxUSE_RICHTEXT
18
19 #include "wx/scrolwin.h"
20 #include "wx/caret.h"
21
22 #if wxCHECK_VERSION(2,7,0)
23 #define wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE 1
24 #else
25 #define wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE 0
26 #endif
27
28 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
29 #include "wx/textctrl.h"
30 #endif
31
32 class WXDLLIMPEXP_RICHTEXT wxRichTextStyleDefinition;
33
34 /*!
35 * Styles and flags
36 */
37
38 /* Styles
39 */
40
41 #define wxRE_READONLY 0x0010
42 #define wxRE_MULTILINE 0x0020
43
44 /* Flags
45 */
46
47 #define wxRICHTEXT_SHIFT_DOWN 0x01
48 #define wxRICHTEXT_CTRL_DOWN 0x02
49 #define wxRICHTEXT_ALT_DOWN 0x04
50
51 /* Defaults
52 */
53
54 #define wxRICHTEXT_DEFAULT_OVERALL_SIZE wxSize(-1, -1)
55 #define wxRICHTEXT_DEFAULT_IMAGE_SIZE wxSize(80, 80)
56 #define wxRICHTEXT_DEFAULT_SPACING 3
57 #define wxRICHTEXT_DEFAULT_MARGIN 3
58 #define wxRICHTEXT_DEFAULT_UNFOCUSSED_BACKGROUND wxColour(175, 175, 175)
59 #define wxRICHTEXT_DEFAULT_FOCUSSED_BACKGROUND wxColour(140, 140, 140)
60 #define wxRICHTEXT_DEFAULT_UNSELECTED_BACKGROUND wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)
61 #define wxRICHTEXT_DEFAULT_TYPE_COLOUR wxColour(0, 0, 200)
62 #define wxRICHTEXT_DEFAULT_FOCUS_RECT_COLOUR wxColour(100, 80, 80)
63 #define wxRICHTEXT_DEFAULT_CARET_WIDTH 2
64 // Minimum buffer size before delayed layout kicks in
65 #define wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD 20000
66 // Milliseconds before layout occurs after resize
67 #define wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL 50
68
69 /*!
70 * Forward declarations
71 */
72
73 /*!
74 * wxRichTextItem class declaration
75 */
76
77 // Drawing styles/states
78 #define wxRICHTEXT_SELECTED 0x01
79 #define wxRICHTEXT_TAGGED 0x02
80 // The control is focussed
81 #define wxRICHTEXT_FOCUSSED 0x04
82 // The item itself has the focus
83 #define wxRICHTEXT_IS_FOCUS 0x08
84
85 /*!
86 * wxRichTextCtrl class declaration
87 */
88
89 class WXDLLIMPEXP_RICHTEXT wxRichTextCtrl:
90 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
91 public wxTextCtrlBase, public wxScrollHelper
92 #else
93 public wxScrolledWindow
94 #endif
95 {
96 DECLARE_CLASS( wxRichTextCtrl )
97 DECLARE_EVENT_TABLE()
98
99 public:
100 // Constructors
101
102 wxRichTextCtrl( );
103 wxRichTextCtrl( wxWindow* parent, wxWindowID id = -1, const wxString& value = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
104 long style = wxRE_MULTILINE );
105 virtual ~wxRichTextCtrl( );
106
107 // Operations
108
109 /// Creation
110 bool Create( wxWindow* parent, wxWindowID id = -1, const wxString& value = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
111 long style = wxRE_MULTILINE );
112
113 /// Member initialisation
114 void Init();
115
116 ///// wxTextCtrl compatibility
117
118 // Accessors
119
120 virtual wxString GetValue() const;
121 virtual void SetValue(const wxString& value);
122
123 virtual wxString GetRange(long from, long to) const;
124
125 virtual int GetLineLength(long lineNo) const ;
126 virtual wxString GetLineText(long lineNo) const ;
127 virtual int GetNumberOfLines() const ;
128
129 virtual bool IsModified() const ;
130 virtual bool IsEditable() const ;
131
132 // more readable flag testing methods
133 bool IsSingleLine() const { return !HasFlag(wxRE_MULTILINE); }
134 bool IsMultiLine() const { return !IsSingleLine(); }
135
136 // If the return values from and to are the same, there is no selection.
137 virtual void GetSelection(long* from, long* to) const;
138
139 virtual wxString GetStringSelection() const;
140
141 /// Get filename
142 wxString GetFilename() const { return m_filename; }
143
144 /// Set filename
145 void SetFilename(const wxString& filename) { m_filename = filename; }
146
147 /// Set the threshold in character positions for doing layout optimization during sizing
148 void SetDelayedLayoutThreshold(long threshold) { m_delayedLayoutThreshold = threshold; }
149
150 /// Get the threshold in character positions for doing layout optimization during sizing
151 long GetDelayedLayoutThreshold() const { return m_delayedLayoutThreshold; }
152
153 // Operations
154
155 // editing
156 virtual void Clear();
157 virtual void Replace(long from, long to, const wxString& value);
158 virtual void Remove(long from, long to);
159
160 // load/save the controls contents from/to the file
161 virtual bool LoadFile(const wxString& file, int type = wxRICHTEXT_TYPE_ANY);
162 virtual bool SaveFile(const wxString& file = wxEmptyString, int type = wxRICHTEXT_TYPE_ANY);
163
164 // sets/clears the dirty flag
165 virtual void MarkDirty();
166 virtual void DiscardEdits();
167
168 // set the max number of characters which may be entered in a single line
169 // text control
170 virtual void SetMaxLength(unsigned long WXUNUSED(len)) { }
171
172 // writing text inserts it at the current position, appending always
173 // inserts it at the end
174 virtual void WriteText(const wxString& text);
175 virtual void AppendText(const wxString& text);
176
177 // text control under some platforms supports the text styles: these
178 // methods allow to apply the given text style to the given selection or to
179 // set/get the style which will be used for all appended text
180 virtual bool SetStyle(long start, long end, const wxTextAttr& style);
181 virtual bool SetStyle(long start, long end, const wxTextAttrEx& style);
182 virtual bool SetStyle(const wxRichTextRange& range, const wxRichTextAttr& style);
183 virtual bool GetStyle(long position, wxTextAttr& style) const;
184 virtual bool GetStyle(long position, wxTextAttrEx& style) const;
185 virtual bool GetStyle(long position, wxRichTextAttr& style) const;
186 virtual bool SetDefaultStyle(const wxTextAttrEx& style);
187 virtual bool SetDefaultStyle(const wxTextAttr& style);
188
189 // TODO: change to GetDefaultStyle if we merge wxTextAttr and wxTextAttrEx
190 virtual const wxTextAttrEx& GetDefaultStyleEx() const;
191 virtual const wxTextAttr& GetDefaultStyle() const;
192
193 // translate between the position (which is just an index in the text ctrl
194 // considering all its contents as a single strings) and (x, y) coordinates
195 // which represent column and line.
196 virtual long XYToPosition(long x, long y) const;
197 virtual bool PositionToXY(long pos, long *x, long *y) const;
198
199 virtual void ShowPosition(long pos);
200
201 // find the character at position given in pixels
202 //
203 // NB: pt is in device coords (not adjusted for the client area origin nor
204 // scrolling)
205 virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const;
206 virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt,
207 wxTextCoord *col,
208 wxTextCoord *row) const;
209
210 // Clipboard operations
211 virtual void Copy();
212 virtual void Cut();
213 virtual void Paste();
214 virtual void DeleteSelection();
215
216 virtual bool CanCopy() const;
217 virtual bool CanCut() const;
218 virtual bool CanPaste() const;
219 virtual bool CanDeleteSelection() const;
220
221 // Undo/redo
222 virtual void Undo();
223 virtual void Redo();
224
225 virtual bool CanUndo() const;
226 virtual bool CanRedo() const;
227
228 // Insertion point
229 virtual void SetInsertionPoint(long pos);
230 virtual void SetInsertionPointEnd();
231 virtual long GetInsertionPoint() const;
232 virtual wxTextPos GetLastPosition() const;
233
234 virtual void SetSelection(long from, long to);
235 virtual void SelectAll();
236 virtual void SetEditable(bool editable);
237
238 /// Call Freeze to prevent refresh
239 virtual void Freeze();
240
241 /// Call Thaw to refresh
242 virtual void Thaw();
243
244 /// Call Thaw to refresh
245 virtual bool IsFrozen() const { return m_freezeCount > 0; }
246
247 virtual bool HasSelection() const;
248
249 ///// Functionality specific to wxRichTextCtrl
250
251 /// Write an image at the current insertion point. Supply optional type to use
252 /// for internal and file storage of the raw data.
253 virtual bool WriteImage(const wxImage& image, int bitmapType = wxBITMAP_TYPE_PNG);
254
255 /// Write a bitmap at the current insertion point. Supply optional type to use
256 /// for internal and file storage of the raw data.
257 virtual bool WriteImage(const wxBitmap& bitmap, int bitmapType = wxBITMAP_TYPE_PNG);
258
259 /// Load an image from file and write at the current insertion point.
260 virtual bool WriteImage(const wxString& filename, int bitmapType);
261
262 /// Write an image block at the current insertion point.
263 virtual bool WriteImage(const wxRichTextImageBlock& imageBlock);
264
265 /// Insert a newline (actually paragraph) at the current insertion point.
266 virtual bool Newline();
267
268 /// Set basic (overall) style
269 virtual void SetBasicStyle(const wxTextAttrEx& style) { GetBuffer().SetBasicStyle(style); }
270 virtual void SetBasicStyle(const wxRichTextAttr& style) { GetBuffer().SetBasicStyle(style); }
271
272 /// Get basic (overall) style
273 virtual const wxTextAttrEx& GetBasicStyle() const { return GetBuffer().GetBasicStyle(); }
274
275 /// Begin using a style
276 virtual bool BeginStyle(const wxTextAttrEx& style) { return GetBuffer().BeginStyle(style); }
277
278 /// End the style
279 virtual bool EndStyle() { return GetBuffer().EndStyle(); }
280
281 /// End all styles
282 virtual bool EndAllStyles() { return GetBuffer().EndAllStyles(); }
283
284 /// Begin using bold
285 bool BeginBold() { return GetBuffer().BeginBold(); }
286
287 /// End using bold
288 bool EndBold() { return GetBuffer().EndBold(); }
289
290 /// Begin using italic
291 bool BeginItalic() { return GetBuffer().BeginItalic(); }
292
293 /// End using italic
294 bool EndItalic() { return GetBuffer().EndItalic(); }
295
296 /// Begin using underline
297 bool BeginUnderline() { return GetBuffer().BeginUnderline(); }
298
299 /// End using underline
300 bool EndUnderline() { return GetBuffer().EndUnderline(); }
301
302 /// Begin using point size
303 bool BeginFontSize(int pointSize) { return GetBuffer().BeginFontSize(pointSize); }
304
305 /// End using point size
306 bool EndFontSize() { return GetBuffer().EndFontSize(); }
307
308 /// Begin using this font
309 bool BeginFont(const wxFont& font) { return GetBuffer().BeginFont(font); }
310
311 /// End using a font
312 bool EndFont() { return GetBuffer().EndFont(); }
313
314 /// Begin using this colour
315 bool BeginTextColour(const wxColour& colour) { return GetBuffer().BeginTextColour(colour); }
316
317 /// End using a colour
318 bool EndTextColour() { return GetBuffer().EndTextColour(); }
319
320 /// Begin using alignment
321 bool BeginAlignment(wxTextAttrAlignment alignment) { return GetBuffer().BeginAlignment(alignment); }
322
323 /// End alignment
324 bool EndAlignment() { return GetBuffer().EndAlignment(); }
325
326 /// Begin left indent
327 bool BeginLeftIndent(int leftIndent, int leftSubIndent = 0) { return GetBuffer().BeginLeftIndent(leftIndent, leftSubIndent); }
328
329 /// End left indent
330 bool EndLeftIndent() { return GetBuffer().EndLeftIndent(); }
331
332 /// Begin right indent
333 bool BeginRightIndent(int rightIndent) { return GetBuffer().BeginRightIndent(rightIndent); }
334
335 /// End right indent
336 bool EndRightIndent() { return GetBuffer().EndRightIndent(); }
337
338 /// Begin paragraph spacing
339 bool BeginParagraphSpacing(int before, int after) { return GetBuffer().BeginParagraphSpacing(before, after); }
340
341 /// End paragraph spacing
342 bool EndParagraphSpacing() { return GetBuffer().EndParagraphSpacing(); }
343
344 /// Begin line spacing
345 bool BeginLineSpacing(int lineSpacing) { return GetBuffer().BeginLineSpacing(lineSpacing); }
346
347 /// End line spacing
348 bool EndLineSpacing() { return GetBuffer().EndLineSpacing(); }
349
350 /// Begin numbered bullet
351 bool BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_ARABIC|wxTEXT_ATTR_BULLET_STYLE_PERIOD)
352 { return GetBuffer().BeginNumberedBullet(bulletNumber, leftIndent, leftSubIndent, bulletStyle); }
353
354 /// End numbered bullet
355 bool EndNumberedBullet() { return GetBuffer().EndNumberedBullet(); }
356
357 /// Begin symbol bullet
358 bool BeginSymbolBullet(wxChar symbol, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL)
359 { return GetBuffer().BeginSymbolBullet(symbol, leftIndent, leftSubIndent, bulletStyle); }
360
361 /// End symbol bullet
362 bool EndSymbolBullet() { return GetBuffer().EndSymbolBullet(); }
363
364 /// Begin named character style
365 bool BeginCharacterStyle(const wxString& characterStyle) { return GetBuffer().BeginCharacterStyle(characterStyle); }
366
367 /// End named character style
368 bool EndCharacterStyle() { return GetBuffer().EndCharacterStyle(); }
369
370 /// Begin named paragraph style
371 bool BeginParagraphStyle(const wxString& paragraphStyle) { return GetBuffer().BeginParagraphStyle(paragraphStyle); }
372
373 /// End named character style
374 bool EndParagraphStyle() { return GetBuffer().EndParagraphStyle(); }
375
376 /// Sets the default style to the style under the cursor
377 bool SetDefaultStyleToCursorStyle();
378
379 /// Clear the selection
380 virtual void SelectNone();
381
382 /// Get/set the selection range in character positions. -1, -1 means no selection.
383 /// The range is in API convention, i.e. a single character selection is denoted
384 /// by (n, n+1)
385 wxRichTextRange GetSelectionRange() const;
386 void SetSelectionRange(const wxRichTextRange& range);
387
388 /// Get/set the selection range in character positions. -1, -1 means no selection.
389 /// The range is in internal format, i.e. a single character selection is denoted
390 /// by (n, n)
391 const wxRichTextRange& GetInternalSelectionRange() const { return m_selectionRange; }
392 void SetInternalSelectionRange(const wxRichTextRange& range) { m_selectionRange = range; }
393
394 /// Add a new paragraph of text to the end of the buffer
395 virtual wxRichTextRange AddParagraph(const wxString& text);
396
397 /// Add an image
398 virtual wxRichTextRange AddImage(const wxImage& image);
399
400 /// Layout the buffer: which we must do before certain operations, such as
401 /// setting the caret position.
402 virtual bool LayoutContent(bool onlyVisibleRect = false);
403
404 /// Move the caret to the given character position
405 virtual bool MoveCaret(long pos, bool showAtLineStart = false);
406
407 /// Move right
408 virtual bool MoveRight(int noPositions = 1, int flags = 0);
409
410 /// Move left
411 virtual bool MoveLeft(int noPositions = 1, int flags = 0);
412
413 /// Move up
414 virtual bool MoveUp(int noLines = 1, int flags = 0);
415
416 /// Move up
417 virtual bool MoveDown(int noLines = 1, int flags = 0);
418
419 /// Move to the end of the line
420 virtual bool MoveToLineEnd(int flags = 0);
421
422 /// Move to the start of the line
423 virtual bool MoveToLineStart(int flags = 0);
424
425 /// Move to the end of the paragraph
426 virtual bool MoveToParagraphEnd(int flags = 0);
427
428 /// Move to the start of the paragraph
429 virtual bool MoveToParagraphStart(int flags = 0);
430
431 /// Move to the start of the buffer
432 virtual bool MoveHome(int flags = 0);
433
434 /// Move to the end of the buffer
435 virtual bool MoveEnd(int flags = 0);
436
437 /// Move n pages up
438 virtual bool PageUp(int noPages = 1, int flags = 0);
439
440 /// Move n pages down
441 virtual bool PageDown(int noPages = 1, int flags = 0);
442
443 /// Move n words left
444 virtual bool WordLeft(int noPages = 1, int flags = 0);
445
446 /// Move n words right
447 virtual bool WordRight(int noPages = 1, int flags = 0);
448
449 /// Returns the buffer associated with the control.
450 wxRichTextBuffer& GetBuffer() { return m_buffer; }
451 const wxRichTextBuffer& GetBuffer() const { return m_buffer; }
452
453 /// Start batching undo history for commands.
454 virtual bool BeginBatchUndo(const wxString& cmdName) { return m_buffer.BeginBatchUndo(cmdName); }
455
456 /// End batching undo history for commands.
457 virtual bool EndBatchUndo() { return m_buffer.EndBatchUndo(); }
458
459 /// Are we batching undo history for commands?
460 virtual bool BatchingUndo() const { return m_buffer.BatchingUndo(); }
461
462 /// Start suppressing undo history for commands.
463 virtual bool BeginSuppressUndo() { return m_buffer.BeginSuppressUndo(); }
464
465 /// End suppressing undo history for commands.
466 virtual bool EndSuppressUndo() { return m_buffer.EndSuppressUndo(); }
467
468 /// Are we suppressing undo history for commands?
469 virtual bool SuppressingUndo() const { return m_buffer.SuppressingUndo(); }
470
471 /// Test if this whole range has character attributes of the specified kind. If any
472 /// of the attributes are different within the range, the test fails. You
473 /// can use this to implement, for example, bold button updating. style must have
474 /// flags indicating which attributes are of interest.
475 virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxTextAttrEx& style) const
476 {
477 return GetBuffer().HasCharacterAttributes(range, style);
478 }
479 virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const
480 {
481 return GetBuffer().HasCharacterAttributes(range, style);
482 }
483
484 /// Test if this whole range has paragraph attributes of the specified kind. If any
485 /// of the attributes are different within the range, the test fails. You
486 /// can use this to implement, for example, centering button updating. style must have
487 /// flags indicating which attributes are of interest.
488 virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxTextAttrEx& style) const
489 {
490 return GetBuffer().HasParagraphAttributes(range, style);
491 }
492 virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const
493 {
494 return GetBuffer().HasParagraphAttributes(range, style);
495 }
496
497 /// Is all of the selection bold?
498 virtual bool IsSelectionBold() const;
499
500 /// Is all of the selection italics?
501 virtual bool IsSelectionItalics() const;
502
503 /// Is all of the selection underlined?
504 virtual bool IsSelectionUnderlined() const;
505
506 /// Is all of the selection aligned according to the specified flag?
507 virtual bool IsSelectionAligned(wxTextAttrAlignment alignment) const;
508
509 /// Apply bold to the selection
510 virtual bool ApplyBoldToSelection();
511
512 /// Apply italic to the selection
513 virtual bool ApplyItalicToSelection();
514
515 /// Apply underline to the selection
516 virtual bool ApplyUnderlineToSelection();
517
518 /// Apply alignment to the selection
519 virtual bool ApplyAlignmentToSelection(wxTextAttrAlignment alignment);
520
521 /// Apply a named style to the selection
522 virtual void ApplyStyle(wxRichTextStyleDefinition* def);
523
524 /// Set style sheet, if any.
525 void SetStyleSheet(wxRichTextStyleSheet* styleSheet) { GetBuffer().SetStyleSheet(styleSheet); }
526 wxRichTextStyleSheet* GetStyleSheet() const { return GetBuffer().GetStyleSheet(); }
527
528 // Command handlers
529
530 void Command(wxCommandEvent& event);
531 void OnDropFiles(wxDropFilesEvent& event);
532
533 void OnCut(wxCommandEvent& event);
534 void OnCopy(wxCommandEvent& event);
535 void OnPaste(wxCommandEvent& event);
536 void OnUndo(wxCommandEvent& event);
537 void OnRedo(wxCommandEvent& event);
538 void OnSelectAll(wxCommandEvent& event);
539 void OnClear(wxCommandEvent& event);
540
541 void OnUpdateCut(wxUpdateUIEvent& event);
542 void OnUpdateCopy(wxUpdateUIEvent& event);
543 void OnUpdatePaste(wxUpdateUIEvent& event);
544 void OnUpdateUndo(wxUpdateUIEvent& event);
545 void OnUpdateRedo(wxUpdateUIEvent& event);
546 void OnUpdateSelectAll(wxUpdateUIEvent& event);
547 void OnUpdateClear(wxUpdateUIEvent& event);
548
549 // Show a context menu for Rich Edit controls (the standard
550 // EDIT control has one already)
551 void OnContextMenu(wxContextMenuEvent& event);
552
553 // Event handlers
554
555 /// Painting
556 void OnPaint(wxPaintEvent& event);
557 void OnEraseBackground(wxEraseEvent& event);
558
559 /// Left-click
560 void OnLeftClick(wxMouseEvent& event);
561
562 /// Left-up
563 void OnLeftUp(wxMouseEvent& event);
564
565 /// Motion
566 void OnMoveMouse(wxMouseEvent& event);
567
568 /// Left-double-click
569 void OnLeftDClick(wxMouseEvent& event);
570
571 /// Middle-click
572 void OnMiddleClick(wxMouseEvent& event);
573
574 /// Right-click
575 void OnRightClick(wxMouseEvent& event);
576
577 /// Key press
578 void OnChar(wxKeyEvent& event);
579
580 /// Sizing
581 void OnSize(wxSizeEvent& event);
582
583 /// Setting/losing focus
584 void OnSetFocus(wxFocusEvent& event);
585 void OnKillFocus(wxFocusEvent& event);
586
587 /// Idle-time processing
588 void OnIdle(wxIdleEvent& event);
589
590 /// Scrolling
591 void OnScroll(wxScrollWinEvent& event);
592
593 // Implementation
594
595 /// Set font, and also default attributes
596 virtual bool SetFont(const wxFont& font);
597
598 /// Set up scrollbars, e.g. after a resize
599 virtual void SetupScrollbars(bool atTop = false);
600
601 /// Keyboard navigation
602 virtual bool KeyboardNavigate(int keyCode, int flags);
603
604 /// Paint the background
605 virtual void PaintBackground(wxDC& dc);
606
607 /// Recreate buffer bitmap if necessary
608 virtual bool RecreateBuffer(const wxSize& size = wxDefaultSize);
609
610 /// Set the selection
611 virtual void DoSetSelection(long from, long to, bool scrollCaret = true);
612
613 /// Write text
614 virtual void DoWriteText(const wxString& value, bool selectionOnly = true);
615
616 /// Send an update event
617 virtual bool SendUpdateEvent();
618
619 /// Init command event
620 void InitCommandEvent(wxCommandEvent& event) const;
621
622 /// do the window-specific processing after processing the update event
623 // (duplicated code from wxTextCtrlBase)
624 #if !wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
625 virtual void DoUpdateWindowUI(wxUpdateUIEvent& event);
626 #endif
627
628 /// Should we inherit colours?
629 virtual bool ShouldInheritColours() const { return false; }
630
631 /// Position the caret
632 virtual void PositionCaret();
633
634 /// Extend the selection, returning true if the selection was
635 /// changed. Selections are in caret positions.
636 virtual bool ExtendSelection(long oldPosition, long newPosition, int flags);
637
638 /// Scroll into view. This takes a _caret_ position.
639 virtual bool ScrollIntoView(long position, int keyCode);
640
641 /// The caret position is the character position just before the caret.
642 /// A value of -1 means the caret is at the start of the buffer.
643 void SetCaretPosition(long position, bool showAtLineStart = false) ;
644 long GetCaretPosition() const { return m_caretPosition; }
645
646 /// The adjusted caret position is the character position adjusted to take
647 /// into account whether we're at the start of a paragraph, in which case
648 /// style information should be taken from the next position, not current one.
649 long GetAdjustedCaretPosition(long caretPos) const;
650
651 /// Move caret one visual step forward: this may mean setting a flag
652 /// and keeping the same position if we're going from the end of one line
653 /// to the start of the next, which may be the exact same caret position.
654 void MoveCaretForward(long oldPosition) ;
655
656 /// Move caret one visual step forward: this may mean setting a flag
657 /// and keeping the same position if we're going from the end of one line
658 /// to the start of the next, which may be the exact same caret position.
659 void MoveCaretBack(long oldPosition) ;
660
661 /// Get the caret height and position for the given character position
662 bool GetCaretPositionForIndex(long position, wxRect& rect);
663
664 /// Gets the line for the visible caret position. If the caret is
665 /// shown at the very end of the line, it means the next character is actually
666 /// on the following line. So let's get the line we're expecting to find
667 /// if this is the case.
668 wxRichTextLine* GetVisibleLineForCaretPosition(long caretPosition) const;
669
670 /// Gets the command processor
671 wxCommandProcessor* GetCommandProcessor() const { return GetBuffer().GetCommandProcessor(); }
672
673 /// Delete content if there is a selection, e.g. when pressing a key.
674 /// Returns the new caret position in newPos, or leaves it if there
675 /// was no action.
676 bool DeleteSelectedContent(long* newPos= NULL);
677
678 /// Transform logical to physical
679 wxPoint GetPhysicalPoint(const wxPoint& ptLogical) const;
680
681 /// Transform physical to logical
682 wxPoint GetLogicalPoint(const wxPoint& ptPhysical) const;
683
684 /// Finds the caret position for the next word. Direction
685 /// is 1 (forward) or -1 (backwards).
686 virtual long FindNextWordPosition(int direction = 1) const;
687
688 /// Is the given position visible on the screen?
689 bool IsPositionVisible(long pos) const;
690
691 /// Returns the first visible position in the current view
692 long GetFirstVisiblePosition() const;
693
694 /// Returns the caret position since the default formatting was changed. As
695 /// soon as this position changes, we no longer reflect the default style
696 /// in the UI. A value of -2 means that we should only reflect the style of the
697 /// content under the caret.
698 long GetCaretPositionForDefaultStyle() const { return m_caretPositionForDefaultStyle; }
699
700 /// Set the caret position for the default style that the user is selecting.
701 void SetCaretPositionForDefaultStyle(long pos) { m_caretPositionForDefaultStyle = pos; }
702
703 /// Should the UI reflect the default style chosen by the user, rather than the style under
704 /// the caret?
705 bool IsDefaultStyleShowing() const { return m_caretPositionForDefaultStyle != -2; }
706
707 /// Convenience function that tells the control to start reflecting the default
708 /// style, since the user is changing it.
709 void SetAndShowDefaultStyle(const wxRichTextAttr& attr)
710 {
711 SetDefaultStyle(attr);
712 SetCaretPositionForDefaultStyle(GetCaretPosition());
713 }
714
715 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
716 WX_FORWARD_TO_SCROLL_HELPER()
717 #endif
718
719 // Overrides
720 protected:
721
722 virtual wxSize DoGetBestSize() const ;
723
724 // Data members
725 private:
726
727 /// Allows nested Freeze/Thaw
728 int m_freezeCount;
729
730 /// Buffer bitmap
731 wxBitmap m_bufferBitmap;
732
733 /// Text buffer
734 wxRichTextBuffer m_buffer;
735
736 /// Filename
737 wxString m_filename;
738
739 wxMenu* m_contextMenu;
740
741 /// Caret position (1 less than the character position, so -1 is the
742 /// first caret position).
743 long m_caretPosition;
744
745 /// Caret position when the default formatting has been changed. As
746 /// soon as this position changes, we no longer reflect the default style
747 /// in the UI.
748 long m_caretPositionForDefaultStyle;
749
750 /// Selection range in character positions. -2, -2 means no selection.
751 wxRichTextRange m_selectionRange;
752
753 /// Anchor so we know how to extend the selection
754 /// It's a caret position since it's between two characters.
755 long m_selectionAnchor;
756
757 /// Are we editable?
758 bool m_editable;
759
760 /// Are we showing the caret position at the start of a line
761 /// instead of at the end of the previous one?
762 bool m_caretAtLineStart;
763
764 /// Are we dragging a selection?
765 bool m_dragging;
766
767 /// Start position for drag
768 wxPoint m_dragStart;
769
770 /// Do we need full layout in idle?
771 bool m_fullLayoutRequired;
772 wxLongLong m_fullLayoutTime;
773 long m_fullLayoutSavedPosition;
774
775 /// Threshold for doing delayed layout
776 long m_delayedLayoutThreshold;
777 };
778
779 /*!
780 * wxRichTextEvent - the event class for wxRichTextCtrl notifications
781 */
782
783 class WXDLLIMPEXP_RICHTEXT wxRichTextEvent : public wxNotifyEvent
784 {
785 public:
786 wxRichTextEvent(wxEventType commandType = wxEVT_NULL, int winid = 0)
787 : wxNotifyEvent(commandType, winid),
788 m_itemIndex(-1), m_flags(0)
789 { }
790
791 wxRichTextEvent(const wxRichTextEvent& event)
792 : wxNotifyEvent(event),
793 m_itemIndex(event.m_itemIndex), m_flags(event.m_flags)
794 { }
795
796 int GetIndex() const { return m_itemIndex; }
797 void SetIndex(int n) { m_itemIndex = n; }
798
799 int GetFlags() const { return m_flags; }
800 void SetFlags(int flags) { m_flags = flags; }
801
802 virtual wxEvent *Clone() const { return new wxRichTextEvent(*this); }
803
804 protected:
805 int m_itemIndex;
806 int m_flags;
807
808 private:
809 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxRichTextEvent)
810 };
811
812 /*!
813 * wxRichTextCtrl event macros
814 */
815
816 BEGIN_DECLARE_EVENT_TYPES()
817 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_ITEM_SELECTED, 2600)
818 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_ITEM_DESELECTED, 2601)
819 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_LEFT_CLICK, 2602)
820 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK, 2603)
821 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK, 2604)
822 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK, 2605)
823 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_RETURN, 2606)
824 END_DECLARE_EVENT_TYPES()
825
826 typedef void (wxEvtHandler::*wxRichTextEventFunction)(wxRichTextEvent&);
827
828 #define EVT_RICHTEXT_ITEM_SELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_ITEM_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
829 #define EVT_RICHTEXT_ITEM_DESELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_ITEM_DESELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
830 #define EVT_RICHTEXT_LEFT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
831 #define EVT_RICHTEXT_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
832 #define EVT_RICHTEXT_MIDDLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
833 #define EVT_RICHTEXT_LEFT_DCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
834 #define EVT_RICHTEXT_RETURN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RETURN, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
835
836 #endif
837 // wxUSE_RICHTEXT
838
839 #endif
840 // _WX_RICHTEXTCTRL_H_
841