1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/richtext/richtextctrl.h
3 // Purpose: A rich edit control
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RICHTEXTCTRL_H_
13 #define _WX_RICHTEXTCTRL_H_
15 #include "wx/richtext/richtextbuffer.h"
19 #include "wx/scrolwin.h"
22 #if wxCHECK_VERSION(2,7,0)
23 #define wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE 1
25 #define wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE 0
28 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
29 #include "wx/textctrl.h"
32 class WXDLLIMPEXP_RICHTEXT wxRichTextStyleDefinition
;
41 #define wxRE_READONLY 0x0010
42 #define wxRE_MULTILINE 0x0020
47 #define wxRICHTEXT_SHIFT_DOWN 0x01
48 #define wxRICHTEXT_CTRL_DOWN 0x02
49 #define wxRICHTEXT_ALT_DOWN 0x04
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
70 * Forward declarations
74 * wxRichTextItem class declaration
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
86 * wxRichTextCtrl class declaration
89 class WXDLLIMPEXP_RICHTEXT wxRichTextCtrl
:
90 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
91 public wxTextCtrlBase
, public wxScrollHelper
93 public wxScrolledWindow
96 DECLARE_CLASS( 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( );
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
);
113 /// Member initialisation
116 ///// wxTextCtrl compatibility
120 virtual wxString
GetValue() const;
121 virtual void SetValue(const wxString
& value
);
123 virtual wxString
GetRange(long from
, long to
) const;
125 virtual int GetLineLength(long lineNo
) const ;
126 virtual wxString
GetLineText(long lineNo
) const ;
127 virtual int GetNumberOfLines() const ;
129 virtual bool IsModified() const ;
130 virtual bool IsEditable() const ;
132 // more readable flag testing methods
133 bool IsSingleLine() const { return !HasFlag(wxRE_MULTILINE
); }
134 bool IsMultiLine() const { return !IsSingleLine(); }
136 // If the return values from and to are the same, there is no selection.
137 virtual void GetSelection(long* from
, long* to
) const;
139 virtual wxString
GetStringSelection() const;
142 wxString
GetFilename() const { return m_filename
; }
145 void SetFilename(const wxString
& filename
) { m_filename
= filename
; }
147 /// Set the threshold in character positions for doing layout optimization during sizing
148 void SetDelayedLayoutThreshold(long threshold
) { m_delayedLayoutThreshold
= threshold
; }
150 /// Get the threshold in character positions for doing layout optimization during sizing
151 long GetDelayedLayoutThreshold() const { return m_delayedLayoutThreshold
; }
156 virtual void Clear();
157 virtual void Replace(long from
, long to
, const wxString
& value
);
158 virtual void Remove(long from
, long to
);
160 #if !wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
161 bool LoadFile(const wxString
& file
, int fileType
= wxRICHTEXT_TYPE_ANY
);
162 bool SaveFile(const wxString
& file
= wxEmptyString
, int fileType
= wxRICHTEXT_TYPE_ANY
);
165 // load/save the controls contents from/to the file
166 virtual bool DoLoadFile(const wxString
& file
, int fileType
);
167 virtual bool DoSaveFile(const wxString
& file
= wxEmptyString
, int fileType
= wxRICHTEXT_TYPE_ANY
);
169 // sets/clears the dirty flag
170 virtual void MarkDirty();
171 virtual void DiscardEdits();
173 // set the max number of characters which may be entered in a single line
175 virtual void SetMaxLength(unsigned long WXUNUSED(len
)) { }
177 // writing text inserts it at the current position, appending always
178 // inserts it at the end
179 virtual void WriteText(const wxString
& text
);
180 virtual void AppendText(const wxString
& text
);
182 // text control under some platforms supports the text styles: these
183 // methods allow to apply the given text style to the given selection or to
184 // set/get the style which will be used for all appended text
185 virtual bool SetStyle(long start
, long end
, const wxTextAttr
& style
);
186 virtual bool SetStyle(long start
, long end
, const wxTextAttrEx
& style
);
187 virtual bool SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
);
188 virtual bool GetStyle(long position
, wxTextAttr
& style
);
189 virtual bool GetStyle(long position
, wxTextAttrEx
& style
);
190 virtual bool GetStyle(long position
, wxRichTextAttr
& style
);
192 /// Get the content (uncombined) attributes for this position.
193 virtual bool GetUncombinedStyle(long position
, wxTextAttr
& style
);
194 virtual bool GetUncombinedStyle(long position
, wxTextAttrEx
& style
);
195 virtual bool GetUncombinedStyle(long position
, wxRichTextAttr
& style
);
197 virtual bool SetDefaultStyle(const wxTextAttrEx
& style
);
198 virtual bool SetDefaultStyle(const wxTextAttr
& style
);
200 // TODO: change to GetDefaultStyle if we merge wxTextAttr and wxTextAttrEx
201 virtual const wxTextAttrEx
& GetDefaultStyleEx() const;
202 virtual const wxTextAttr
& GetDefaultStyle() const;
204 // translate between the position (which is just an index in the text ctrl
205 // considering all its contents as a single strings) and (x, y) coordinates
206 // which represent column and line.
207 virtual long XYToPosition(long x
, long y
) const;
208 virtual bool PositionToXY(long pos
, long *x
, long *y
) const;
210 virtual void ShowPosition(long pos
);
212 // find the character at position given in pixels
214 // NB: pt is in device coords (not adjusted for the client area origin nor
216 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
, long *pos
) const;
217 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
,
219 wxTextCoord
*row
) const;
221 // Clipboard operations
224 virtual void Paste();
225 virtual void DeleteSelection();
227 virtual bool CanCopy() const;
228 virtual bool CanCut() const;
229 virtual bool CanPaste() const;
230 virtual bool CanDeleteSelection() const;
236 virtual bool CanUndo() const;
237 virtual bool CanRedo() const;
240 virtual void SetInsertionPoint(long pos
);
241 virtual void SetInsertionPointEnd();
242 virtual long GetInsertionPoint() const;
243 virtual wxTextPos
GetLastPosition() const;
245 virtual void SetSelection(long from
, long to
);
246 virtual void SelectAll();
247 virtual void SetEditable(bool editable
);
249 /// Call Freeze to prevent refresh
250 virtual void Freeze();
252 /// Call Thaw to refresh
255 /// Call Thaw to refresh
256 virtual bool IsFrozen() const { return m_freezeCount
> 0; }
258 virtual bool HasSelection() const;
260 ///// Functionality specific to wxRichTextCtrl
262 /// Write an image at the current insertion point. Supply optional type to use
263 /// for internal and file storage of the raw data.
264 virtual bool WriteImage(const wxImage
& image
, int bitmapType
= wxBITMAP_TYPE_PNG
);
266 /// Write a bitmap at the current insertion point. Supply optional type to use
267 /// for internal and file storage of the raw data.
268 virtual bool WriteImage(const wxBitmap
& bitmap
, int bitmapType
= wxBITMAP_TYPE_PNG
);
270 /// Load an image from file and write at the current insertion point.
271 virtual bool WriteImage(const wxString
& filename
, int bitmapType
);
273 /// Write an image block at the current insertion point.
274 virtual bool WriteImage(const wxRichTextImageBlock
& imageBlock
);
276 /// Insert a newline (actually paragraph) at the current insertion point.
277 virtual bool Newline();
279 /// Set basic (overall) style
280 virtual void SetBasicStyle(const wxTextAttrEx
& style
) { GetBuffer().SetBasicStyle(style
); }
281 virtual void SetBasicStyle(const wxRichTextAttr
& style
) { GetBuffer().SetBasicStyle(style
); }
283 /// Get basic (overall) style
284 virtual const wxTextAttrEx
& GetBasicStyle() const { return GetBuffer().GetBasicStyle(); }
286 /// Begin using a style
287 virtual bool BeginStyle(const wxTextAttrEx
& style
) { return GetBuffer().BeginStyle(style
); }
290 virtual bool EndStyle() { return GetBuffer().EndStyle(); }
293 virtual bool EndAllStyles() { return GetBuffer().EndAllStyles(); }
296 bool BeginBold() { return GetBuffer().BeginBold(); }
299 bool EndBold() { return GetBuffer().EndBold(); }
301 /// Begin using italic
302 bool BeginItalic() { return GetBuffer().BeginItalic(); }
305 bool EndItalic() { return GetBuffer().EndItalic(); }
307 /// Begin using underline
308 bool BeginUnderline() { return GetBuffer().BeginUnderline(); }
310 /// End using underline
311 bool EndUnderline() { return GetBuffer().EndUnderline(); }
313 /// Begin using point size
314 bool BeginFontSize(int pointSize
) { return GetBuffer().BeginFontSize(pointSize
); }
316 /// End using point size
317 bool EndFontSize() { return GetBuffer().EndFontSize(); }
319 /// Begin using this font
320 bool BeginFont(const wxFont
& font
) { return GetBuffer().BeginFont(font
); }
323 bool EndFont() { return GetBuffer().EndFont(); }
325 /// Begin using this colour
326 bool BeginTextColour(const wxColour
& colour
) { return GetBuffer().BeginTextColour(colour
); }
328 /// End using a colour
329 bool EndTextColour() { return GetBuffer().EndTextColour(); }
331 /// Begin using alignment
332 bool BeginAlignment(wxTextAttrAlignment alignment
) { return GetBuffer().BeginAlignment(alignment
); }
335 bool EndAlignment() { return GetBuffer().EndAlignment(); }
337 /// Begin left indent
338 bool BeginLeftIndent(int leftIndent
, int leftSubIndent
= 0) { return GetBuffer().BeginLeftIndent(leftIndent
, leftSubIndent
); }
341 bool EndLeftIndent() { return GetBuffer().EndLeftIndent(); }
343 /// Begin right indent
344 bool BeginRightIndent(int rightIndent
) { return GetBuffer().BeginRightIndent(rightIndent
); }
347 bool EndRightIndent() { return GetBuffer().EndRightIndent(); }
349 /// Begin paragraph spacing
350 bool BeginParagraphSpacing(int before
, int after
) { return GetBuffer().BeginParagraphSpacing(before
, after
); }
352 /// End paragraph spacing
353 bool EndParagraphSpacing() { return GetBuffer().EndParagraphSpacing(); }
355 /// Begin line spacing
356 bool BeginLineSpacing(int lineSpacing
) { return GetBuffer().BeginLineSpacing(lineSpacing
); }
359 bool EndLineSpacing() { return GetBuffer().EndLineSpacing(); }
361 /// Begin numbered bullet
362 bool BeginNumberedBullet(int bulletNumber
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
)
363 { return GetBuffer().BeginNumberedBullet(bulletNumber
, leftIndent
, leftSubIndent
, bulletStyle
); }
365 /// End numbered bullet
366 bool EndNumberedBullet() { return GetBuffer().EndNumberedBullet(); }
368 /// Begin symbol bullet
369 bool BeginSymbolBullet(wxChar symbol
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_SYMBOL
)
370 { return GetBuffer().BeginSymbolBullet(symbol
, leftIndent
, leftSubIndent
, bulletStyle
); }
372 /// End symbol bullet
373 bool EndSymbolBullet() { return GetBuffer().EndSymbolBullet(); }
375 /// Begin named character style
376 bool BeginCharacterStyle(const wxString
& characterStyle
) { return GetBuffer().BeginCharacterStyle(characterStyle
); }
378 /// End named character style
379 bool EndCharacterStyle() { return GetBuffer().EndCharacterStyle(); }
381 /// Begin named paragraph style
382 bool BeginParagraphStyle(const wxString
& paragraphStyle
) { return GetBuffer().BeginParagraphStyle(paragraphStyle
); }
384 /// End named character style
385 bool EndParagraphStyle() { return GetBuffer().EndParagraphStyle(); }
387 /// Sets the default style to the style under the cursor
388 bool SetDefaultStyleToCursorStyle();
390 /// Clear the selection
391 virtual void SelectNone();
393 /// Select the word at the given character position
394 virtual bool SelectWord(long position
);
396 /// Get/set the selection range in character positions. -1, -1 means no selection.
397 /// The range is in API convention, i.e. a single character selection is denoted
399 wxRichTextRange
GetSelectionRange() const;
400 void SetSelectionRange(const wxRichTextRange
& range
);
402 /// Get/set the selection range in character positions. -1, -1 means no selection.
403 /// The range is in internal format, i.e. a single character selection is denoted
405 const wxRichTextRange
& GetInternalSelectionRange() const { return m_selectionRange
; }
406 void SetInternalSelectionRange(const wxRichTextRange
& range
) { m_selectionRange
= range
; }
408 /// Add a new paragraph of text to the end of the buffer
409 virtual wxRichTextRange
AddParagraph(const wxString
& text
);
412 virtual wxRichTextRange
AddImage(const wxImage
& image
);
414 /// Layout the buffer: which we must do before certain operations, such as
415 /// setting the caret position.
416 virtual bool LayoutContent(bool onlyVisibleRect
= false);
418 /// Move the caret to the given character position
419 virtual bool MoveCaret(long pos
, bool showAtLineStart
= false);
422 virtual bool MoveRight(int noPositions
= 1, int flags
= 0);
425 virtual bool MoveLeft(int noPositions
= 1, int flags
= 0);
428 virtual bool MoveUp(int noLines
= 1, int flags
= 0);
431 virtual bool MoveDown(int noLines
= 1, int flags
= 0);
433 /// Move to the end of the line
434 virtual bool MoveToLineEnd(int flags
= 0);
436 /// Move to the start of the line
437 virtual bool MoveToLineStart(int flags
= 0);
439 /// Move to the end of the paragraph
440 virtual bool MoveToParagraphEnd(int flags
= 0);
442 /// Move to the start of the paragraph
443 virtual bool MoveToParagraphStart(int flags
= 0);
445 /// Move to the start of the buffer
446 virtual bool MoveHome(int flags
= 0);
448 /// Move to the end of the buffer
449 virtual bool MoveEnd(int flags
= 0);
452 virtual bool PageUp(int noPages
= 1, int flags
= 0);
454 /// Move n pages down
455 virtual bool PageDown(int noPages
= 1, int flags
= 0);
457 /// Move n words left
458 virtual bool WordLeft(int noPages
= 1, int flags
= 0);
460 /// Move n words right
461 virtual bool WordRight(int noPages
= 1, int flags
= 0);
463 /// Returns the buffer associated with the control.
464 wxRichTextBuffer
& GetBuffer() { return m_buffer
; }
465 const wxRichTextBuffer
& GetBuffer() const { return m_buffer
; }
467 /// Start batching undo history for commands.
468 virtual bool BeginBatchUndo(const wxString
& cmdName
) { return m_buffer
.BeginBatchUndo(cmdName
); }
470 /// End batching undo history for commands.
471 virtual bool EndBatchUndo() { return m_buffer
.EndBatchUndo(); }
473 /// Are we batching undo history for commands?
474 virtual bool BatchingUndo() const { return m_buffer
.BatchingUndo(); }
476 /// Start suppressing undo history for commands.
477 virtual bool BeginSuppressUndo() { return m_buffer
.BeginSuppressUndo(); }
479 /// End suppressing undo history for commands.
480 virtual bool EndSuppressUndo() { return m_buffer
.EndSuppressUndo(); }
482 /// Are we suppressing undo history for commands?
483 virtual bool SuppressingUndo() const { return m_buffer
.SuppressingUndo(); }
485 /// Test if this whole range has character attributes of the specified kind. If any
486 /// of the attributes are different within the range, the test fails. You
487 /// can use this to implement, for example, bold button updating. style must have
488 /// flags indicating which attributes are of interest.
489 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const
491 return GetBuffer().HasCharacterAttributes(range
, style
);
493 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
495 return GetBuffer().HasCharacterAttributes(range
, style
);
498 /// Test if this whole range has paragraph attributes of the specified kind. If any
499 /// of the attributes are different within the range, the test fails. You
500 /// can use this to implement, for example, centering button updating. style must have
501 /// flags indicating which attributes are of interest.
502 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const
504 return GetBuffer().HasParagraphAttributes(range
, style
);
506 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
508 return GetBuffer().HasParagraphAttributes(range
, style
);
511 /// Is all of the selection bold?
512 virtual bool IsSelectionBold();
514 /// Is all of the selection italics?
515 virtual bool IsSelectionItalics();
517 /// Is all of the selection underlined?
518 virtual bool IsSelectionUnderlined();
520 /// Is all of the selection aligned according to the specified flag?
521 virtual bool IsSelectionAligned(wxTextAttrAlignment alignment
);
523 /// Apply bold to the selection
524 virtual bool ApplyBoldToSelection();
526 /// Apply italic to the selection
527 virtual bool ApplyItalicToSelection();
529 /// Apply underline to the selection
530 virtual bool ApplyUnderlineToSelection();
532 /// Apply alignment to the selection
533 virtual bool ApplyAlignmentToSelection(wxTextAttrAlignment alignment
);
535 /// Apply a named style to the selection
536 virtual void ApplyStyle(wxRichTextStyleDefinition
* def
);
538 /// Set style sheet, if any.
539 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
) { GetBuffer().SetStyleSheet(styleSheet
); }
540 wxRichTextStyleSheet
* GetStyleSheet() const { return GetBuffer().GetStyleSheet(); }
542 /// Apply the style sheet to the buffer, for example if the styles have changed.
543 bool ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
= NULL
);
547 void Command(wxCommandEvent
& event
);
548 void OnDropFiles(wxDropFilesEvent
& event
);
550 void OnCut(wxCommandEvent
& event
);
551 void OnCopy(wxCommandEvent
& event
);
552 void OnPaste(wxCommandEvent
& event
);
553 void OnUndo(wxCommandEvent
& event
);
554 void OnRedo(wxCommandEvent
& event
);
555 void OnSelectAll(wxCommandEvent
& event
);
556 void OnClear(wxCommandEvent
& event
);
558 void OnUpdateCut(wxUpdateUIEvent
& event
);
559 void OnUpdateCopy(wxUpdateUIEvent
& event
);
560 void OnUpdatePaste(wxUpdateUIEvent
& event
);
561 void OnUpdateUndo(wxUpdateUIEvent
& event
);
562 void OnUpdateRedo(wxUpdateUIEvent
& event
);
563 void OnUpdateSelectAll(wxUpdateUIEvent
& event
);
564 void OnUpdateClear(wxUpdateUIEvent
& event
);
566 // Show a context menu for Rich Edit controls (the standard
567 // EDIT control has one already)
568 void OnContextMenu(wxContextMenuEvent
& event
);
573 void OnPaint(wxPaintEvent
& event
);
574 void OnEraseBackground(wxEraseEvent
& event
);
577 void OnLeftClick(wxMouseEvent
& event
);
580 void OnLeftUp(wxMouseEvent
& event
);
583 void OnMoveMouse(wxMouseEvent
& event
);
585 /// Left-double-click
586 void OnLeftDClick(wxMouseEvent
& event
);
589 void OnMiddleClick(wxMouseEvent
& event
);
592 void OnRightClick(wxMouseEvent
& event
);
595 void OnChar(wxKeyEvent
& event
);
598 void OnSize(wxSizeEvent
& event
);
600 /// Setting/losing focus
601 void OnSetFocus(wxFocusEvent
& event
);
602 void OnKillFocus(wxFocusEvent
& event
);
604 /// Idle-time processing
605 void OnIdle(wxIdleEvent
& event
);
608 void OnScroll(wxScrollWinEvent
& event
);
610 /// Set font, and also default attributes
611 virtual bool SetFont(const wxFont
& font
);
613 /// Set up scrollbars, e.g. after a resize
614 virtual void SetupScrollbars(bool atTop
= false);
616 /// Keyboard navigation
617 virtual bool KeyboardNavigate(int keyCode
, int flags
);
619 /// Paint the background
620 virtual void PaintBackground(wxDC
& dc
);
622 /// Recreate buffer bitmap if necessary
623 virtual bool RecreateBuffer(const wxSize
& size
= wxDefaultSize
);
625 /// Set the selection
626 virtual void DoSetSelection(long from
, long to
, bool scrollCaret
= true);
629 virtual void DoWriteText(const wxString
& value
, bool selectionOnly
= true);
631 /// Send an update event
632 virtual bool SendUpdateEvent();
634 /// Init command event
635 void InitCommandEvent(wxCommandEvent
& event
) const;
637 /// do the window-specific processing after processing the update event
638 // (duplicated code from wxTextCtrlBase)
639 #if !wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
640 virtual void DoUpdateWindowUI(wxUpdateUIEvent
& event
);
643 /// Should we inherit colours?
644 virtual bool ShouldInheritColours() const { return false; }
646 /// Position the caret
647 virtual void PositionCaret();
649 /// Extend the selection, returning true if the selection was
650 /// changed. Selections are in caret positions.
651 virtual bool ExtendSelection(long oldPosition
, long newPosition
, int flags
);
653 /// Scroll into view. This takes a _caret_ position.
654 virtual bool ScrollIntoView(long position
, int keyCode
);
656 /// The caret position is the character position just before the caret.
657 /// A value of -1 means the caret is at the start of the buffer.
658 void SetCaretPosition(long position
, bool showAtLineStart
= false) ;
659 long GetCaretPosition() const { return m_caretPosition
; }
661 /// The adjusted caret position is the character position adjusted to take
662 /// into account whether we're at the start of a paragraph, in which case
663 /// style information should be taken from the next position, not current one.
664 long GetAdjustedCaretPosition(long caretPos
) const;
666 /// Move caret one visual step forward: this may mean setting a flag
667 /// and keeping the same position if we're going from the end of one line
668 /// to the start of the next, which may be the exact same caret position.
669 void MoveCaretForward(long oldPosition
) ;
671 /// Move caret one visual step forward: this may mean setting a flag
672 /// and keeping the same position if we're going from the end of one line
673 /// to the start of the next, which may be the exact same caret position.
674 void MoveCaretBack(long oldPosition
) ;
676 /// Get the caret height and position for the given character position
677 bool GetCaretPositionForIndex(long position
, wxRect
& rect
);
679 /// Gets the line for the visible caret position. If the caret is
680 /// shown at the very end of the line, it means the next character is actually
681 /// on the following line. So let's get the line we're expecting to find
682 /// if this is the case.
683 wxRichTextLine
* GetVisibleLineForCaretPosition(long caretPosition
) const;
685 /// Gets the command processor
686 wxCommandProcessor
* GetCommandProcessor() const { return GetBuffer().GetCommandProcessor(); }
688 /// Delete content if there is a selection, e.g. when pressing a key.
689 /// Returns the new caret position in newPos, or leaves it if there
691 bool DeleteSelectedContent(long* newPos
= NULL
);
693 /// Transform logical to physical
694 wxPoint
GetPhysicalPoint(const wxPoint
& ptLogical
) const;
696 /// Transform physical to logical
697 wxPoint
GetLogicalPoint(const wxPoint
& ptPhysical
) const;
699 /// Finds the caret position for the next word. Direction
700 /// is 1 (forward) or -1 (backwards).
701 virtual long FindNextWordPosition(int direction
= 1) const;
703 /// Is the given position visible on the screen?
704 bool IsPositionVisible(long pos
) const;
706 /// Returns the first visible position in the current view
707 long GetFirstVisiblePosition() const;
709 /// Returns the caret position since the default formatting was changed. As
710 /// soon as this position changes, we no longer reflect the default style
711 /// in the UI. A value of -2 means that we should only reflect the style of the
712 /// content under the caret.
713 long GetCaretPositionForDefaultStyle() const { return m_caretPositionForDefaultStyle
; }
715 /// Set the caret position for the default style that the user is selecting.
716 void SetCaretPositionForDefaultStyle(long pos
) { m_caretPositionForDefaultStyle
= pos
; }
718 /// Should the UI reflect the default style chosen by the user, rather than the style under
720 bool IsDefaultStyleShowing() const { return m_caretPositionForDefaultStyle
!= -2; }
722 /// Convenience function that tells the control to start reflecting the default
723 /// style, since the user is changing it.
724 void SetAndShowDefaultStyle(const wxRichTextAttr
& attr
)
726 SetDefaultStyle(attr
);
727 SetCaretPositionForDefaultStyle(GetCaretPosition());
732 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
733 WX_FORWARD_TO_SCROLL_HELPER()
739 virtual wxSize
DoGetBestSize() const ;
744 /// Allows nested Freeze/Thaw
748 wxBitmap m_bufferBitmap
;
751 wxRichTextBuffer m_buffer
;
753 #if !wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
758 wxMenu
* m_contextMenu
;
760 /// Caret position (1 less than the character position, so -1 is the
761 /// first caret position).
762 long m_caretPosition
;
764 /// Caret position when the default formatting has been changed. As
765 /// soon as this position changes, we no longer reflect the default style
767 long m_caretPositionForDefaultStyle
;
769 /// Selection range in character positions. -2, -2 means no selection.
770 wxRichTextRange m_selectionRange
;
772 /// Anchor so we know how to extend the selection
773 /// It's a caret position since it's between two characters.
774 long m_selectionAnchor
;
779 /// Are we showing the caret position at the start of a line
780 /// instead of at the end of the previous one?
781 bool m_caretAtLineStart
;
783 /// Are we dragging a selection?
786 /// Start position for drag
789 /// Do we need full layout in idle?
790 bool m_fullLayoutRequired
;
791 wxLongLong m_fullLayoutTime
;
792 long m_fullLayoutSavedPosition
;
794 /// Threshold for doing delayed layout
795 long m_delayedLayoutThreshold
;
799 * wxRichTextEvent - the event class for wxRichTextCtrl notifications
802 class WXDLLIMPEXP_RICHTEXT wxRichTextEvent
: public wxNotifyEvent
805 wxRichTextEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0)
806 : wxNotifyEvent(commandType
, winid
),
807 m_itemIndex(-1), m_flags(0)
810 wxRichTextEvent(const wxRichTextEvent
& event
)
811 : wxNotifyEvent(event
),
812 m_itemIndex(event
.m_itemIndex
), m_flags(event
.m_flags
)
815 int GetIndex() const { return m_itemIndex
; }
816 void SetIndex(int n
) { m_itemIndex
= n
; }
818 int GetFlags() const { return m_flags
; }
819 void SetFlags(int flags
) { m_flags
= flags
; }
821 virtual wxEvent
*Clone() const { return new wxRichTextEvent(*this); }
828 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxRichTextEvent
)
832 * wxRichTextCtrl event macros
835 BEGIN_DECLARE_EVENT_TYPES()
836 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_ITEM_SELECTED
, 2600)
837 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_ITEM_DESELECTED
, 2601)
838 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
, 2602)
839 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
, 2603)
840 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
, 2604)
841 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
, 2605)
842 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_RETURN
, 2606)
843 END_DECLARE_EVENT_TYPES()
845 typedef void (wxEvtHandler::*wxRichTextEventFunction
)(wxRichTextEvent
&);
847 #define EVT_RICHTEXT_ITEM_SELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_ITEM_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
848 #define EVT_RICHTEXT_ITEM_DESELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_ITEM_DESELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
849 #define EVT_RICHTEXT_LEFT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
850 #define EVT_RICHTEXT_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
851 #define EVT_RICHTEXT_MIDDLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
852 #define EVT_RICHTEXT_LEFT_DCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
853 #define EVT_RICHTEXT_RETURN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RETURN, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
859 // _WX_RICHTEXTCTRL_H_