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 #include "wx/textctrl.h"
24 #if !defined(__WXGTK__) && !defined(__WXMAC__)
25 #define wxRICHTEXT_BUFFERED_PAINTING 1
27 #define wxRICHTEXT_BUFFERED_PAINTING 0
30 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextStyleDefinition
;
40 #define wxRE_READONLY 0x0010
41 #define wxRE_MULTILINE 0x0020
42 #define wxRE_CENTRE_CARET 0x8000
43 #define wxRE_CENTER_CARET wxRE_CENTRE_CARET
49 #define wxRICHTEXT_SHIFT_DOWN 0x01
50 #define wxRICHTEXT_CTRL_DOWN 0x02
51 #define wxRICHTEXT_ALT_DOWN 0x04
57 // Don't draw guide lines around boxes and tables
58 #define wxRICHTEXT_EX_NO_GUIDELINES 0x00000100
65 #define wxRICHTEXT_DEFAULT_OVERALL_SIZE wxSize(-1, -1)
66 #define wxRICHTEXT_DEFAULT_IMAGE_SIZE wxSize(80, 80)
67 #define wxRICHTEXT_DEFAULT_SPACING 3
68 #define wxRICHTEXT_DEFAULT_MARGIN 3
69 #define wxRICHTEXT_DEFAULT_UNFOCUSSED_BACKGROUND wxColour(175, 175, 175)
70 #define wxRICHTEXT_DEFAULT_FOCUSSED_BACKGROUND wxColour(140, 140, 140)
71 #define wxRICHTEXT_DEFAULT_UNSELECTED_BACKGROUND wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)
72 #define wxRICHTEXT_DEFAULT_TYPE_COLOUR wxColour(0, 0, 200)
73 #define wxRICHTEXT_DEFAULT_FOCUS_RECT_COLOUR wxColour(100, 80, 80)
74 #define wxRICHTEXT_DEFAULT_CARET_WIDTH 2
75 // Minimum buffer size before delayed layout kicks in
76 #define wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD 20000
77 // Milliseconds before layout occurs after resize
78 #define wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL 50
82 #define wxID_RICHTEXT_PROPERTIES1 (wxID_HIGHEST + 1)
83 #define wxID_RICHTEXT_PROPERTIES2 (wxID_HIGHEST + 2)
84 #define wxID_RICHTEXT_PROPERTIES3 (wxID_HIGHEST + 3)
87 Normal selection occurs initially and as user drags within one container.
88 Common ancestor selection occurs when the user starts dragging across containers
89 that have a common ancestor, for example the cells in a table.
92 enum wxRichTextCtrlSelectionState
94 wxRichTextCtrlSelectionState_Normal
,
95 wxRichTextCtrlSelectionState_CommonAncestor
99 @class wxRichTextContextMenuPropertiesInfo
101 wxRichTextContextMenuPropertiesInfo keeps track of objects that appear in the context menu,
102 whose properties are available to be edited.
105 class WXDLLIMPEXP_RICHTEXT wxRichTextContextMenuPropertiesInfo
111 wxRichTextContextMenuPropertiesInfo() { Init(); }
123 bool AddItem(const wxString
& label
, wxRichTextObject
* obj
);
126 Returns the number of menu items that were added.
128 int AddMenuItems(wxMenu
* menu
, int startCmd
= wxID_RICHTEXT_PROPERTIES1
) const;
131 Adds appropriate menu items for the current container and clicked on object
132 (and container's parent, if appropriate).
134 int AddItems(wxRichTextObject
* container
, wxRichTextObject
* obj
);
139 void Clear() { m_objects
.Clear(); m_labels
.Clear(); }
144 Returns the nth label.
146 wxString
GetLabel(int n
) const { return m_labels
[n
]; }
149 Returns the nth object.
151 wxRichTextObject
* GetObject(int n
) const { return m_objects
[n
]; }
154 Returns the array of objects.
156 wxRichTextObjectPtrArray
& GetObjects() { return m_objects
; }
159 Returns the array of objects.
161 const wxRichTextObjectPtrArray
& GetObjects() const { return m_objects
; }
164 Returns the array of labels.
166 wxArrayString
& GetLabels() { return m_labels
; }
169 Returns the array of labels.
171 const wxArrayString
& GetLabels() const { return m_labels
; }
174 Returns the number of items.
176 int GetCount() const { return m_objects
.GetCount(); }
178 wxRichTextObjectPtrArray m_objects
;
179 wxArrayString m_labels
;
183 @class wxRichTextCtrl
185 wxRichTextCtrl provides a generic, ground-up implementation of a text control
186 capable of showing multiple styles and images.
188 wxRichTextCtrl sends notification events: see wxRichTextEvent.
190 It also sends the standard wxTextCtrl events @c wxEVT_COMMAND_TEXT_ENTER and
191 @c wxEVT_COMMAND_TEXT_UPDATED, and wxTextUrlEvent when URL content is clicked.
193 For more information, see the @ref overview_richtextctrl.
196 @style{wxRE_CENTRE_CARET}
197 The control will try to keep the caret line centred vertically while editing.
198 wxRE_CENTER_CARET is a synonym for this style.
199 @style{wxRE_MULTILINE}
200 The control will be multiline (mandatory).
201 @style{wxRE_READONLY}
202 The control will not be editable.
207 @appearance{richtextctrl.png}
211 class WXDLLIMPEXP_RICHTEXT wxRichTextCtrl
: public wxControl
,
212 public wxTextCtrlIface
,
213 public wxScrollHelper
215 DECLARE_DYNAMIC_CLASS( wxRichTextCtrl
)
216 DECLARE_EVENT_TABLE()
227 Constructor, creating and showing a rich text control.
230 Parent window. Must not be @NULL.
232 Window identifier. The value @c wxID_ANY indicates a default value.
246 @see Create(), wxValidator
248 wxRichTextCtrl( wxWindow
* parent
, wxWindowID id
= -1, const wxString
& value
= wxEmptyString
, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
249 long style
= wxRE_MULTILINE
, const wxValidator
& validator
= wxDefaultValidator
, const wxString
& name
= wxTextCtrlNameStr
);
254 virtual ~wxRichTextCtrl( );
259 Creates the underlying window.
261 bool Create( wxWindow
* parent
, wxWindowID id
= -1, const wxString
& value
= wxEmptyString
, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
262 long style
= wxRE_MULTILINE
, const wxValidator
& validator
= wxDefaultValidator
, const wxString
& name
= wxTextCtrlNameStr
);
265 Initialises the members of the control.
272 Gets the text for the given range.
273 The end point of range is specified as the last character position of
274 the span of text, plus one.
276 virtual wxString
GetRange(long from
, long to
) const;
279 Returns the length of the specified line in characters.
281 virtual int GetLineLength(long lineNo
) const ;
284 Returns the text for the given line.
286 virtual wxString
GetLineText(long lineNo
) const ;
289 Returns the number of lines in the buffer.
291 virtual int GetNumberOfLines() const ;
294 Returns @true if the buffer has been modified.
296 virtual bool IsModified() const ;
299 Returns @true if the control is editable.
301 virtual bool IsEditable() const ;
304 Returns @true if the control is single-line.
305 Currently wxRichTextCtrl does not support single-line editing.
307 bool IsSingleLine() const { return !HasFlag(wxRE_MULTILINE
); }
310 Returns @true if the control is multiline.
312 bool IsMultiLine() const { return !IsSingleLine(); }
316 Returns the range of the current selection.
317 The end point of range is specified as the last character position of the span
319 If the return values @a from and @a to are the same, there is no selection.
321 virtual void GetSelection(long* from
, long* to
) const;
322 const wxRichTextSelection
& GetSelection() const { return m_selection
; }
323 wxRichTextSelection
& GetSelection() { return m_selection
; }
327 Returns the text within the current selection range, if any.
329 virtual wxString
GetStringSelection() const;
332 Gets the current filename associated with the control.
334 wxString
GetFilename() const { return m_filename
; }
337 Sets the current filename.
339 void SetFilename(const wxString
& filename
) { m_filename
= filename
; }
342 Sets the size of the buffer beyond which layout is delayed during resizing.
343 This optimizes sizing for large buffers. The default is 20000.
345 void SetDelayedLayoutThreshold(long threshold
) { m_delayedLayoutThreshold
= threshold
; }
348 Gets the size of the buffer beyond which layout is delayed during resizing.
349 This optimizes sizing for large buffers. The default is 20000.
351 long GetDelayedLayoutThreshold() const { return m_delayedLayoutThreshold
; }
354 Gets the flag indicating that full layout is required.
356 bool GetFullLayoutRequired() const { return m_fullLayoutRequired
; }
359 Sets the flag indicating that full layout is required.
361 void SetFullLayoutRequired(bool b
) { m_fullLayoutRequired
= b
; }
364 Returns the last time full layout was performed.
366 wxLongLong
GetFullLayoutTime() const { return m_fullLayoutTime
; }
369 Sets the last time full layout was performed.
371 void SetFullLayoutTime(wxLongLong t
) { m_fullLayoutTime
= t
; }
374 Returns the position that should be shown when full (delayed) layout is performed.
376 long GetFullLayoutSavedPosition() const { return m_fullLayoutSavedPosition
; }
379 Sets the position that should be shown when full (delayed) layout is performed.
381 void SetFullLayoutSavedPosition(long p
) { m_fullLayoutSavedPosition
= p
; }
384 Forces any pending layout due to delayed, partial layout when the control
387 void ForceDelayedLayout();
390 Sets the text (normal) cursor.
392 void SetTextCursor(const wxCursor
& cursor
) { m_textCursor
= cursor
; }
395 Returns the text (normal) cursor.
397 wxCursor
GetTextCursor() const { return m_textCursor
; }
400 Sets the cursor to be used over URLs.
402 void SetURLCursor(const wxCursor
& cursor
) { m_urlCursor
= cursor
; }
405 Returns the cursor to be used over URLs.
407 wxCursor
GetURLCursor() const { return m_urlCursor
; }
410 Returns @true if we are showing the caret position at the start of a line
411 instead of at the end of the previous one.
413 bool GetCaretAtLineStart() const { return m_caretAtLineStart
; }
416 Sets a flag to remember that we are showing the caret position at the start of a line
417 instead of at the end of the previous one.
419 void SetCaretAtLineStart(bool atStart
) { m_caretAtLineStart
= atStart
; }
422 Returns @true if we are dragging a selection.
424 bool GetDragging() const { return m_dragging
; }
427 Sets a flag to remember if we are dragging a selection.
429 void SetDragging(bool dragging
) { m_dragging
= dragging
; }
432 Returns the drag start position.
434 const wxPoint
& GetDragStart() const { return m_dragStart
; }
437 Sets the drag start position.
439 void SetDragStart(const wxPoint
& pt
) { m_dragStart
= pt
; }
441 #if wxRICHTEXT_BUFFERED_PAINTING
444 Returns the buffer bitmap if using buffered painting.
446 const wxBitmap
& GetBufferBitmap() const { return m_bufferBitmap
; }
447 wxBitmap
& GetBufferBitmap() { return m_bufferBitmap
; }
452 Returns the current context menu.
454 wxMenu
* GetContextMenu() const { return m_contextMenu
; }
457 Sets the current context menu.
459 void SetContextMenu(wxMenu
* menu
);
462 Returns an anchor so we know how to extend the selection.
463 It's a caret position since it's between two characters.
465 long GetSelectionAnchor() const { return m_selectionAnchor
; }
468 Sets an anchor so we know how to extend the selection.
469 It's a caret position since it's between two characters.
471 void SetSelectionAnchor(long anchor
) { m_selectionAnchor
= anchor
; }
474 Returns the anchor object if selecting multiple containers.
476 wxRichTextObject
* GetSelectionAnchorObject() const { return m_selectionAnchorObject
; }
479 Sets the anchor object if selecting multiple containers.
481 void SetSelectionAnchorObject(wxRichTextObject
* anchor
) { m_selectionAnchorObject
= anchor
; }
485 Returns an object that stores information about context menu property item(s),
486 in order to communicate between the context menu event handler and the code
487 that responds to it. The wxRichTextContextMenuPropertiesInfo stores one
488 item for each object that could respond to a property-editing event. If
489 objects are nested, several might be editable.
491 wxRichTextContextMenuPropertiesInfo
& GetContextMenuPropertiesInfo() { return m_contextMenuPropertiesInfo
; }
492 const wxRichTextContextMenuPropertiesInfo
& GetContextMenuPropertiesInfo() const { return m_contextMenuPropertiesInfo
; }
496 Returns the wxRichTextObject object that currently has the editing focus.
497 If there are no composite objects, this will be the top-level buffer.
499 wxRichTextParagraphLayoutBox
* GetFocusObject() const { return m_focusObject
; }
502 Sets the wxRichTextObject object that currently has the editing focus.
504 bool SetFocusObject(wxRichTextParagraphLayoutBox
* obj
, bool setCaretPosition
= true);
509 Invalidates the whole buffer to trigger painting later.
511 void Invalidate() { GetBuffer().Invalidate(wxRICHTEXT_ALL
); }
514 Clears the buffer content, leaving a single empty paragraph. Cannot be undone.
516 virtual void Clear();
519 Replaces the content in the specified range with the string specified by
522 virtual void Replace(long from
, long to
, const wxString
& value
);
525 Removes the content in the specified range.
527 virtual void Remove(long from
, long to
);
531 Loads content into the control's buffer using the given type.
533 If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from
534 the filename extension.
536 This function looks for a suitable wxRichTextFileHandler object.
538 bool LoadFile(const wxString
& file
,
539 int type
= wxRICHTEXT_TYPE_ANY
);
543 Helper function for LoadFile(). Loads content into the control's buffer using the given type.
545 If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from
546 the filename extension.
548 This function looks for a suitable wxRichTextFileHandler object.
550 virtual bool DoLoadFile(const wxString
& file
, int fileType
);
554 Saves the buffer content using the given type.
556 If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from
557 the filename extension.
559 This function looks for a suitable wxRichTextFileHandler object.
561 bool SaveFile(const wxString
& file
= wxEmptyString
,
562 int type
= wxRICHTEXT_TYPE_ANY
);
566 Helper function for SaveFile(). Saves the buffer content using the given type.
568 If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from
569 the filename extension.
571 This function looks for a suitable wxRichTextFileHandler object.
573 virtual bool DoSaveFile(const wxString
& file
= wxEmptyString
,
574 int fileType
= wxRICHTEXT_TYPE_ANY
);
577 Sets flags that change the behaviour of loading or saving.
579 See the documentation for each handler class to see what flags are
580 relevant for each handler.
582 void SetHandlerFlags(int flags
) { GetBuffer().SetHandlerFlags(flags
); }
585 Returns flags that change the behaviour of loading or saving.
586 See the documentation for each handler class to see what flags are
587 relevant for each handler.
589 int GetHandlerFlags() const { return GetBuffer().GetHandlerFlags(); }
592 Marks the buffer as modified.
594 virtual void MarkDirty();
597 Sets the buffer's modified status to @false, and clears the buffer's command
600 virtual void DiscardEdits();
603 Sets the maximum number of characters that may be entered in a single line
604 text control. For compatibility only; currently does nothing.
606 virtual void SetMaxLength(unsigned long WXUNUSED(len
)) { }
609 Writes text at the current position.
611 virtual void WriteText(const wxString
& text
);
614 Sets the insertion point to the end of the buffer and writes the text.
616 virtual void AppendText(const wxString
& text
);
620 Gets the attributes at the given position.
621 This function gets the combined style - that is, the style you see on the
622 screen as a result of combining base style, paragraph style and character
625 To get the character or paragraph style alone, use GetUncombinedStyle().
628 In wxPerl this method is implemented as GetStyle(@a position)
629 returning a 2-element list (ok, attr).
632 virtual bool GetStyle(long position
, wxTextAttr
& style
);
633 virtual bool GetStyle(long position
, wxRichTextAttr
& style
);
634 virtual bool GetStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
);
639 Sets the attributes for the given range.
640 The end point of range is specified as the last character position of the span
643 So, for example, to set the style for a character at position 5, use the range
646 virtual bool SetStyle(long start
, long end
, const wxTextAttr
& style
);
647 virtual bool SetStyle(long start
, long end
, const wxRichTextAttr
& style
);
648 virtual bool SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
);
649 virtual bool SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
);
653 Sets the attributes for a single object
655 virtual void SetStyle(wxRichTextObject
*obj
, const wxRichTextAttr
& textAttr
);
659 Gets the attributes common to the specified range.
660 Attributes that differ in value within the range will not be included
664 In wxPerl this method is implemented as GetStyleForRange(@a position)
665 returning a 2-element list (ok, attr).
668 virtual bool GetStyleForRange(const wxRichTextRange
& range
, wxTextAttr
& style
);
669 virtual bool GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
);
670 virtual bool GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
);
674 Sets the attributes for the given range, passing flags to determine how the
677 The end point of range is specified as the last character position of the span
678 of text, plus one. So, for example, to set the style for a character at
679 position 5, use the range (5,6).
681 @a flags may contain a bit list of the following values:
682 - wxRICHTEXT_SETSTYLE_NONE: no style flag.
683 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this operation should be
685 - wxRICHTEXT_SETSTYLE_OPTIMIZE: specifies that the style should not be applied
686 if the combined style at this point is already the style in question.
687 - wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY: specifies that the style should only be
688 applied to paragraphs, and not the content.
689 This allows content styling to be preserved independently from that
690 of e.g. a named paragraph style.
691 - wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY: specifies that the style should only be
692 applied to characters, and not the paragraph.
693 This allows content styling to be preserved independently from that
694 of e.g. a named paragraph style.
695 - wxRICHTEXT_SETSTYLE_RESET: resets (clears) the existing style before applying
697 - wxRICHTEXT_SETSTYLE_REMOVE: removes the specified style. Only the style flags
698 are used in this operation.
700 virtual bool SetStyleEx(const wxRichTextRange
& range
, const wxRichTextAttr
& style
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
704 Gets the attributes at the given position.
705 This function gets the @e uncombined style - that is, the attributes associated
706 with the paragraph or character content, and not necessarily the combined
707 attributes you see on the screen.
708 To get the combined attributes, use GetStyle().
710 If you specify (any) paragraph attribute in @e style's flags, this function
711 will fetch the paragraph attributes.
712 Otherwise, it will return the character attributes.
715 In wxPerl this method is implemented as GetUncombinedStyle(@a position)
716 returning a 2-element list (ok, attr).
719 virtual bool GetUncombinedStyle(long position
, wxRichTextAttr
& style
);
720 virtual bool GetUncombinedStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
);
725 Sets the current default style, which can be used to change how subsequently
726 inserted text is displayed.
728 virtual bool SetDefaultStyle(const wxTextAttr
& style
);
729 virtual bool SetDefaultStyle(const wxRichTextAttr
& style
);
733 Returns the current default style, which can be used to change how subsequently
734 inserted text is displayed.
736 virtual const wxRichTextAttr
& GetDefaultStyleEx() const;
738 //virtual const wxTextAttr& GetDefaultStyle() const;
742 Sets the list attributes for the given range, passing flags to determine how
743 the attributes are set.
745 Either the style definition or the name of the style definition (in the current
746 sheet) can be passed.
747 @a flags is a bit list of the following:
748 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
749 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
750 @a startFrom, otherwise existing attributes are used.
751 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
752 as the level for all paragraphs, otherwise the current indentation will be used.
754 @see NumberList(), PromoteList(), ClearListStyle().
756 virtual bool SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
757 virtual bool SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
761 Clears the list style from the given range, clearing list-related attributes
762 and applying any named paragraph style associated with each paragraph.
764 @a flags is a bit list of the following:
765 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
767 @see SetListStyle(), PromoteList(), NumberList().
769 virtual bool ClearListStyle(const wxRichTextRange
& range
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
773 Numbers the paragraphs in the given range.
774 Pass flags to determine how the attributes are set.
776 Either the style definition or the name of the style definition (in the current
777 sheet) can be passed.
779 @a flags is a bit list of the following:
780 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
781 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
782 @a startFrom, otherwise existing attributes are used.
783 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
784 as the level for all paragraphs, otherwise the current indentation will be used.
786 @see SetListStyle(), PromoteList(), ClearListStyle().
788 virtual bool NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
789 virtual bool NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
794 Promotes or demotes the paragraphs in the given range.
795 A positive @a promoteBy produces a smaller indent, and a negative number
796 produces a larger indent. Pass flags to determine how the attributes are set.
797 Either the style definition or the name of the style definition (in the current
798 sheet) can be passed.
800 @a flags is a bit list of the following:
801 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
802 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
803 @a startFrom, otherwise existing attributes are used.
804 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
805 as the level for all paragraphs, otherwise the current indentation will be used.
807 @see SetListStyle(), @see SetListStyle(), ClearListStyle().
809 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
810 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
814 Deletes the content within the given range.
816 virtual bool Delete(const wxRichTextRange
& range
);
819 Translates from column and line number to position.
821 virtual long XYToPosition(long x
, long y
) const;
824 Converts a text position to zero-based column and line numbers.
826 virtual bool PositionToXY(long pos
, long *x
, long *y
) const;
829 Scrolls the buffer so that the given position is in view.
831 virtual void ShowPosition(long pos
);
835 Finds the character at the given position in pixels.
836 @a pt is in device coords (not adjusted for the client area origin nor for
839 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
, long *pos
) const;
840 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
,
842 wxTextCoord
*row
) const;
845 // Clipboard operations
848 Copies the selected content (if any) to the clipboard.
853 Copies the selected content (if any) to the clipboard and deletes the selection.
859 Pastes content from the clipboard to the buffer.
861 virtual void Paste();
864 Deletes the content in the selection, if any. This is undoable.
866 virtual void DeleteSelection();
869 Returns @true if selected content can be copied to the clipboard.
871 virtual bool CanCopy() const;
874 Returns @true if selected content can be copied to the clipboard and deleted.
876 virtual bool CanCut() const;
879 Returns @true if the clipboard content can be pasted to the buffer.
881 virtual bool CanPaste() const;
884 Returns @true if selected content can be deleted.
886 virtual bool CanDeleteSelection() const;
889 Undoes the command at the top of the command history, if there is one.
894 Redoes the current command.
899 Returns @true if there is a command in the command history that can be undone.
901 virtual bool CanUndo() const;
904 Returns @true if there is a command in the command history that can be redone.
906 virtual bool CanRedo() const;
909 Sets the insertion point and causes the current editing style to be taken from
910 the new position (unlike wxRichTextCtrl::SetCaretPosition).
912 virtual void SetInsertionPoint(long pos
);
915 Sets the insertion point to the end of the text control.
917 virtual void SetInsertionPointEnd();
920 Returns the current insertion point.
922 virtual long GetInsertionPoint() const;
925 Returns the last position in the buffer.
927 virtual wxTextPos
GetLastPosition() const;
931 Sets the selection to the given range.
932 The end point of range is specified as the last character position of the span
935 So, for example, to set the selection for a character at position 5, use the
938 virtual void SetSelection(long from
, long to
);
939 void SetSelection(const wxRichTextSelection
& sel
) { m_selection
= sel
; }
944 Selects all the text in the buffer.
946 virtual void SelectAll();
949 Makes the control editable, or not.
951 virtual void SetEditable(bool editable
);
954 Returns @true if there is a selection and the object containing the selection
955 was the same as the current focus object.
957 virtual bool HasSelection() const;
960 Returns @true if there was a selection, whether or not the current focus object
961 is the same as the selection's container object.
963 virtual bool HasUnfocusedSelection() const;
967 Write a bitmap or image at the current insertion point.
968 Supply an optional type to use for internal and file storage of the raw data.
970 virtual bool WriteImage(const wxImage
& image
, wxBitmapType bitmapType
= wxBITMAP_TYPE_PNG
,
971 const wxRichTextAttr
& textAttr
= wxRichTextAttr());
973 virtual bool WriteImage(const wxBitmap
& bitmap
, wxBitmapType bitmapType
= wxBITMAP_TYPE_PNG
,
974 const wxRichTextAttr
& textAttr
= wxRichTextAttr());
978 Loads an image from a file and writes it at the current insertion point.
980 virtual bool WriteImage(const wxString
& filename
, wxBitmapType bitmapType
,
981 const wxRichTextAttr
& textAttr
= wxRichTextAttr());
984 Writes an image block at the current insertion point.
986 virtual bool WriteImage(const wxRichTextImageBlock
& imageBlock
,
987 const wxRichTextAttr
& textAttr
= wxRichTextAttr());
990 Write a text box at the current insertion point, returning the text box.
991 You can then call SetFocusObject() to set the focus to the new object.
993 virtual wxRichTextBox
* WriteTextBox(const wxRichTextAttr
& textAttr
= wxRichTextAttr());
996 Write a table at the current insertion point, returning the table.
997 You can then call SetFocusObject() to set the focus to the new object.
999 virtual wxRichTextTable
* WriteTable(int rows
, int cols
, const wxRichTextAttr
& tableAttr
= wxRichTextAttr(), const wxRichTextAttr
& cellAttr
= wxRichTextAttr());
1002 Inserts a new paragraph at the current insertion point. @see LineBreak().
1004 virtual bool Newline();
1007 Inserts a line break at the current insertion point.
1009 A line break forces wrapping within a paragraph, and can be introduced by
1010 using this function, by appending the wxChar value @b wxRichTextLineBreakChar
1011 to text content, or by typing Shift-Return.
1013 virtual bool LineBreak();
1016 Sets the basic (overall) style.
1018 This is the style of the whole buffer before further styles are applied,
1019 unlike the default style, which only affects the style currently being
1020 applied (for example, setting the default style to bold will cause
1021 subsequently inserted text to be bold).
1023 virtual void SetBasicStyle(const wxRichTextAttr
& style
) { GetBuffer().SetBasicStyle(style
); }
1026 Gets the basic (overall) style.
1028 This is the style of the whole buffer before further styles are applied,
1029 unlike the default style, which only affects the style currently being
1030 applied (for example, setting the default style to bold will cause
1031 subsequently inserted text to be bold).
1033 virtual const wxRichTextAttr
& GetBasicStyle() const { return GetBuffer().GetBasicStyle(); }
1036 Begins applying a style.
1038 virtual bool BeginStyle(const wxRichTextAttr
& style
) { return GetBuffer().BeginStyle(style
); }
1041 Ends the current style.
1043 virtual bool EndStyle() { return GetBuffer().EndStyle(); }
1046 Ends application of all styles in the current style stack.
1048 virtual bool EndAllStyles() { return GetBuffer().EndAllStyles(); }
1053 bool BeginBold() { return GetBuffer().BeginBold(); }
1058 bool EndBold() { return GetBuffer().EndBold(); }
1061 Begins using italic.
1063 bool BeginItalic() { return GetBuffer().BeginItalic(); }
1068 bool EndItalic() { return GetBuffer().EndItalic(); }
1071 Begins using underlining.
1073 bool BeginUnderline() { return GetBuffer().BeginUnderline(); }
1076 End applying underlining.
1078 bool EndUnderline() { return GetBuffer().EndUnderline(); }
1081 Begins using the given point size.
1083 bool BeginFontSize(int pointSize
) { return GetBuffer().BeginFontSize(pointSize
); }
1086 Ends using a point size.
1088 bool EndFontSize() { return GetBuffer().EndFontSize(); }
1091 Begins using this font.
1093 bool BeginFont(const wxFont
& font
) { return GetBuffer().BeginFont(font
); }
1098 bool EndFont() { return GetBuffer().EndFont(); }
1101 Begins using this colour.
1103 bool BeginTextColour(const wxColour
& colour
) { return GetBuffer().BeginTextColour(colour
); }
1106 Ends applying a text colour.
1108 bool EndTextColour() { return GetBuffer().EndTextColour(); }
1111 Begins using alignment.
1112 For alignment values, see wxTextAttr.
1114 bool BeginAlignment(wxTextAttrAlignment alignment
) { return GetBuffer().BeginAlignment(alignment
); }
1119 bool EndAlignment() { return GetBuffer().EndAlignment(); }
1122 Begins applying a left indent and subindent in tenths of a millimetre.
1123 The subindent is an offset from the left edge of the paragraph, and is
1124 used for all but the first line in a paragraph. A positive value will
1125 cause the first line to appear to the left of the subsequent lines, and
1126 a negative value will cause the first line to be indented to the right
1127 of the subsequent lines.
1129 wxRichTextBuffer uses indentation to render a bulleted item. The
1130 content of the paragraph, including the first line, starts at the
1131 @a leftIndent plus the @a leftSubIndent.
1134 The distance between the margin and the bullet.
1135 @param leftSubIndent
1136 The distance between the left edge of the bullet and the left edge
1137 of the actual paragraph.
1139 bool BeginLeftIndent(int leftIndent
, int leftSubIndent
= 0) { return GetBuffer().BeginLeftIndent(leftIndent
, leftSubIndent
); }
1144 bool EndLeftIndent() { return GetBuffer().EndLeftIndent(); }
1147 Begins a right indent, specified in tenths of a millimetre.
1149 bool BeginRightIndent(int rightIndent
) { return GetBuffer().BeginRightIndent(rightIndent
); }
1154 bool EndRightIndent() { return GetBuffer().EndRightIndent(); }
1157 Begins paragraph spacing; pass the before-paragraph and after-paragraph spacing
1158 in tenths of a millimetre.
1160 bool BeginParagraphSpacing(int before
, int after
) { return GetBuffer().BeginParagraphSpacing(before
, after
); }
1163 Ends paragraph spacing.
1165 bool EndParagraphSpacing() { return GetBuffer().EndParagraphSpacing(); }
1168 Begins appling line spacing. @e spacing is a multiple, where 10 means
1169 single-spacing, 15 means 1.5 spacing, and 20 means double spacing.
1171 The ::wxTextAttrLineSpacing constants are defined for convenience.
1173 bool BeginLineSpacing(int lineSpacing
) { return GetBuffer().BeginLineSpacing(lineSpacing
); }
1178 bool EndLineSpacing() { return GetBuffer().EndLineSpacing(); }
1181 Begins a numbered bullet.
1183 This call will be needed for each item in the list, and the
1184 application should take care of incrementing the numbering.
1186 @a bulletNumber is a number, usually starting with 1.
1187 @a leftIndent and @a leftSubIndent are values in tenths of a millimetre.
1188 @a bulletStyle is a bitlist of the ::wxTextAttrBulletStyle values.
1190 wxRichTextBuffer uses indentation to render a bulleted item.
1191 The left indent is the distance between the margin and the bullet.
1192 The content of the paragraph, including the first line, starts
1193 at leftMargin + leftSubIndent.
1194 So the distance between the left edge of the bullet and the
1195 left of the actual paragraph is leftSubIndent.
1197 bool BeginNumberedBullet(int bulletNumber
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
)
1198 { return GetBuffer().BeginNumberedBullet(bulletNumber
, leftIndent
, leftSubIndent
, bulletStyle
); }
1201 Ends application of a numbered bullet.
1203 bool EndNumberedBullet() { return GetBuffer().EndNumberedBullet(); }
1206 Begins applying a symbol bullet, using a character from the current font.
1207 See BeginNumberedBullet() for an explanation of how indentation is used
1208 to render the bulleted paragraph.
1210 bool BeginSymbolBullet(const wxString
& symbol
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_SYMBOL
)
1211 { return GetBuffer().BeginSymbolBullet(symbol
, leftIndent
, leftSubIndent
, bulletStyle
); }
1214 Ends applying a symbol bullet.
1216 bool EndSymbolBullet() { return GetBuffer().EndSymbolBullet(); }
1219 Begins applying a symbol bullet.
1221 bool BeginStandardBullet(const wxString
& bulletName
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_STANDARD
)
1222 { return GetBuffer().BeginStandardBullet(bulletName
, leftIndent
, leftSubIndent
, bulletStyle
); }
1225 Begins applying a standard bullet.
1227 bool EndStandardBullet() { return GetBuffer().EndStandardBullet(); }
1230 Begins using the named character style.
1232 bool BeginCharacterStyle(const wxString
& characterStyle
) { return GetBuffer().BeginCharacterStyle(characterStyle
); }
1235 Ends application of a named character style.
1237 bool EndCharacterStyle() { return GetBuffer().EndCharacterStyle(); }
1240 Begins applying the named paragraph style.
1242 bool BeginParagraphStyle(const wxString
& paragraphStyle
) { return GetBuffer().BeginParagraphStyle(paragraphStyle
); }
1245 Ends application of a named paragraph style.
1247 bool EndParagraphStyle() { return GetBuffer().EndParagraphStyle(); }
1250 Begins using a specified list style.
1251 Optionally, you can also pass a level and a number.
1253 bool BeginListStyle(const wxString
& listStyle
, int level
= 1, int number
= 1) { return GetBuffer().BeginListStyle(listStyle
, level
, number
); }
1256 Ends using a specified list style.
1258 bool EndListStyle() { return GetBuffer().EndListStyle(); }
1261 Begins applying wxTEXT_ATTR_URL to the content.
1263 Pass a URL and optionally, a character style to apply, since it is common
1264 to mark a URL with a familiar style such as blue text with underlining.
1266 bool BeginURL(const wxString
& url
, const wxString
& characterStyle
= wxEmptyString
) { return GetBuffer().BeginURL(url
, characterStyle
); }
1269 Ends applying a URL.
1271 bool EndURL() { return GetBuffer().EndURL(); }
1274 Sets the default style to the style under the cursor.
1276 bool SetDefaultStyleToCursorStyle();
1279 Cancels any selection.
1281 virtual void SelectNone();
1284 Selects the word at the given character position.
1286 virtual bool SelectWord(long position
);
1289 Returns the selection range in character positions. -1, -1 means no selection.
1291 The range is in API convention, i.e. a single character selection is denoted
1294 wxRichTextRange
GetSelectionRange() const;
1297 Sets the selection to the given range.
1298 The end point of range is specified as the last character position of the span
1301 So, for example, to set the selection for a character at position 5, use the
1304 void SetSelectionRange(const wxRichTextRange
& range
);
1307 Returns the selection range in character positions. -2, -2 means no selection
1308 -1, -1 means select everything.
1309 The range is in internal format, i.e. a single character selection is denoted
1312 wxRichTextRange
GetInternalSelectionRange() const { return m_selection
.GetRange(); }
1315 Sets the selection range in character positions. -2, -2 means no selection
1316 -1, -1 means select everything.
1317 The range is in internal format, i.e. a single character selection is denoted
1320 void SetInternalSelectionRange(const wxRichTextRange
& range
) { m_selection
.Set(range
, GetFocusObject()); }
1323 Adds a new paragraph of text to the end of the buffer.
1325 virtual wxRichTextRange
AddParagraph(const wxString
& text
);
1328 Adds an image to the control's buffer.
1330 virtual wxRichTextRange
AddImage(const wxImage
& image
);
1333 Lays out the buffer, which must be done before certain operations, such as
1334 setting the caret position.
1335 This function should not normally be required by the application.
1337 virtual bool LayoutContent(bool onlyVisibleRect
= false);
1340 Move the caret to the given character position.
1342 Please note that this does not update the current editing style
1343 from the new position; to do that, call wxRichTextCtrl::SetInsertionPoint instead.
1345 virtual bool MoveCaret(long pos
, bool showAtLineStart
= false, wxRichTextParagraphLayoutBox
* container
= NULL
);
1350 virtual bool MoveRight(int noPositions
= 1, int flags
= 0);
1355 virtual bool MoveLeft(int noPositions
= 1, int flags
= 0);
1358 Moves to the start of the paragraph.
1360 virtual bool MoveUp(int noLines
= 1, int flags
= 0);
1363 Moves the caret down.
1365 virtual bool MoveDown(int noLines
= 1, int flags
= 0);
1368 Moves to the end of the line.
1370 virtual bool MoveToLineEnd(int flags
= 0);
1373 Moves to the start of the line.
1375 virtual bool MoveToLineStart(int flags
= 0);
1378 Moves to the end of the paragraph.
1380 virtual bool MoveToParagraphEnd(int flags
= 0);
1383 Moves to the start of the paragraph.
1385 virtual bool MoveToParagraphStart(int flags
= 0);
1388 Moves to the start of the buffer.
1390 virtual bool MoveHome(int flags
= 0);
1393 Moves to the end of the buffer.
1395 virtual bool MoveEnd(int flags
= 0);
1398 Moves one or more pages up.
1400 virtual bool PageUp(int noPages
= 1, int flags
= 0);
1403 Moves one or more pages down.
1405 virtual bool PageDown(int noPages
= 1, int flags
= 0);
1408 Moves a number of words to the left.
1410 virtual bool WordLeft(int noPages
= 1, int flags
= 0);
1413 Move a nuber of words to the right.
1415 virtual bool WordRight(int noPages
= 1, int flags
= 0);
1419 Returns the buffer associated with the control.
1421 wxRichTextBuffer
& GetBuffer() { return m_buffer
; }
1422 const wxRichTextBuffer
& GetBuffer() const { return m_buffer
; }
1426 Starts batching undo history for commands.
1428 virtual bool BeginBatchUndo(const wxString
& cmdName
) { return m_buffer
.BeginBatchUndo(cmdName
); }
1431 Ends batching undo command history.
1433 virtual bool EndBatchUndo() { return m_buffer
.EndBatchUndo(); }
1436 Returns @true if undo commands are being batched.
1438 virtual bool BatchingUndo() const { return m_buffer
.BatchingUndo(); }
1441 Starts suppressing undo history for commands.
1443 virtual bool BeginSuppressUndo() { return m_buffer
.BeginSuppressUndo(); }
1446 Ends suppressing undo command history.
1448 virtual bool EndSuppressUndo() { return m_buffer
.EndSuppressUndo(); }
1451 Returns @true if undo history suppression is on.
1453 virtual bool SuppressingUndo() const { return m_buffer
.SuppressingUndo(); }
1456 Test if this whole range has character attributes of the specified kind.
1457 If any of the attributes are different within the range, the test fails.
1459 You can use this to implement, for example, bold button updating.
1460 @a style must have flags indicating which attributes are of interest.
1462 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
1464 return GetBuffer().HasCharacterAttributes(range
.ToInternal(), style
);
1468 Test if this whole range has paragraph attributes of the specified kind.
1469 If any of the attributes are different within the range, the test fails.
1470 You can use this to implement, for example, centering button updating.
1471 @a style must have flags indicating which attributes are of interest.
1473 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
1475 return GetBuffer().HasParagraphAttributes(range
.ToInternal(), style
);
1479 Returns @true if all of the selection is bold.
1481 virtual bool IsSelectionBold();
1484 Returns @true if all of the selection is italic.
1486 virtual bool IsSelectionItalics();
1489 Returns @true if all of the selection is underlined.
1491 virtual bool IsSelectionUnderlined();
1494 Returns @true if all of the selection is aligned according to the specified flag.
1496 virtual bool IsSelectionAligned(wxTextAttrAlignment alignment
);
1499 Apples bold to the selection (undoable).
1501 virtual bool ApplyBoldToSelection();
1504 Applies italic to the selection (undoable).
1506 virtual bool ApplyItalicToSelection();
1509 Applies underline to the selection (undoable).
1511 virtual bool ApplyUnderlineToSelection();
1514 Applies the given alignment to the selection (undoable).
1515 For alignment values, see wxTextAttr.
1517 virtual bool ApplyAlignmentToSelection(wxTextAttrAlignment alignment
);
1520 Applies the style sheet to the buffer, matching paragraph styles in the sheet
1521 against named styles in the buffer.
1523 This might be useful if the styles have changed.
1524 If @a sheet is @NULL, the sheet set with SetStyleSheet() is used.
1525 Currently this applies paragraph styles only.
1527 virtual bool ApplyStyle(wxRichTextStyleDefinition
* def
);
1530 Sets the style sheet associated with the control.
1531 A style sheet allows named character and paragraph styles to be applied.
1533 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
) { GetBuffer().SetStyleSheet(styleSheet
); }
1536 Returns the style sheet associated with the control, if any.
1537 A style sheet allows named character and paragraph styles to be applied.
1539 wxRichTextStyleSheet
* GetStyleSheet() const { return GetBuffer().GetStyleSheet(); }
1542 Push the style sheet to top of stack.
1544 bool PushStyleSheet(wxRichTextStyleSheet
* styleSheet
) { return GetBuffer().PushStyleSheet(styleSheet
); }
1547 Pops the style sheet from top of stack.
1549 wxRichTextStyleSheet
* PopStyleSheet() { return GetBuffer().PopStyleSheet(); }
1552 Applies the style sheet to the buffer, for example if the styles have changed.
1554 bool ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
= NULL
);
1559 Sends the event to the control.
1561 void Command(wxCommandEvent
& event
);
1564 Loads the first dropped file.
1566 void OnDropFiles(wxDropFilesEvent
& event
);
1568 void OnCaptureLost(wxMouseCaptureLostEvent
& event
);
1569 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
1572 Standard handler for the wxID_CUT command.
1574 void OnCut(wxCommandEvent
& event
);
1577 Standard handler for the wxID_COPY command.
1579 void OnCopy(wxCommandEvent
& event
);
1582 Standard handler for the wxID_PASTE command.
1584 void OnPaste(wxCommandEvent
& event
);
1587 Standard handler for the wxID_UNDO command.
1589 void OnUndo(wxCommandEvent
& event
);
1592 Standard handler for the wxID_REDO command.
1594 void OnRedo(wxCommandEvent
& event
);
1597 Standard handler for the wxID_SELECTALL command.
1599 void OnSelectAll(wxCommandEvent
& event
);
1602 Standard handler for property commands.
1604 void OnProperties(wxCommandEvent
& event
);
1607 Standard handler for the wxID_CLEAR command.
1609 void OnClear(wxCommandEvent
& event
);
1612 Standard update handler for the wxID_CUT command.
1614 void OnUpdateCut(wxUpdateUIEvent
& event
);
1617 Standard update handler for the wxID_COPY command.
1619 void OnUpdateCopy(wxUpdateUIEvent
& event
);
1622 Standard update handler for the wxID_PASTE command.
1624 void OnUpdatePaste(wxUpdateUIEvent
& event
);
1627 Standard update handler for the wxID_UNDO command.
1629 void OnUpdateUndo(wxUpdateUIEvent
& event
);
1632 Standard update handler for the wxID_REDO command.
1634 void OnUpdateRedo(wxUpdateUIEvent
& event
);
1637 Standard update handler for the wxID_SELECTALL command.
1639 void OnUpdateSelectAll(wxUpdateUIEvent
& event
);
1642 Standard update handler for property commands.
1645 void OnUpdateProperties(wxUpdateUIEvent
& event
);
1648 Standard update handler for the wxID_CLEAR command.
1650 void OnUpdateClear(wxUpdateUIEvent
& event
);
1653 Shows a standard context menu with undo, redo, cut, copy, paste, clear, and
1654 select all commands.
1656 void OnContextMenu(wxContextMenuEvent
& event
);
1661 void OnPaint(wxPaintEvent
& event
);
1662 void OnEraseBackground(wxEraseEvent
& event
);
1665 void OnLeftClick(wxMouseEvent
& event
);
1668 void OnLeftUp(wxMouseEvent
& event
);
1671 void OnMoveMouse(wxMouseEvent
& event
);
1673 // Left-double-click
1674 void OnLeftDClick(wxMouseEvent
& event
);
1677 void OnMiddleClick(wxMouseEvent
& event
);
1680 void OnRightClick(wxMouseEvent
& event
);
1683 void OnChar(wxKeyEvent
& event
);
1686 void OnSize(wxSizeEvent
& event
);
1688 // Setting/losing focus
1689 void OnSetFocus(wxFocusEvent
& event
);
1690 void OnKillFocus(wxFocusEvent
& event
);
1692 // Idle-time processing
1693 void OnIdle(wxIdleEvent
& event
);
1696 void OnScroll(wxScrollWinEvent
& event
);
1699 Sets the font, and also the basic and default attributes
1700 (see wxRichTextCtrl::SetDefaultStyle).
1702 virtual bool SetFont(const wxFont
& font
);
1705 A helper function setting up scrollbars, for example after a resize.
1707 virtual void SetupScrollbars(bool atTop
= false);
1710 Helper function implementing keyboard navigation.
1712 virtual bool KeyboardNavigate(int keyCode
, int flags
);
1715 Paints the background.
1717 virtual void PaintBackground(wxDC
& dc
);
1720 Other user defined painting after everything else (i.e. all text) is painted.
1724 virtual void PaintAboveContent(wxDC
& WXUNUSED(dc
)) {}
1726 #if wxRICHTEXT_BUFFERED_PAINTING
1728 Recreates the buffer bitmap if necessary.
1730 virtual bool RecreateBuffer(const wxSize
& size
= wxDefaultSize
);
1734 virtual void DoWriteText(const wxString
& value
, int flags
= 0);
1736 // Should we inherit colours?
1737 virtual bool ShouldInheritColours() const { return false; }
1740 Internal function to position the visible caret according to the current caret
1743 virtual void PositionCaret(wxRichTextParagraphLayoutBox
* container
= NULL
);
1746 Helper function for extending the selection, returning @true if the selection
1747 was changed. Selections are in caret positions.
1749 virtual bool ExtendSelection(long oldPosition
, long newPosition
, int flags
);
1752 Scrolls @a position into view. This function takes a caret position.
1754 virtual bool ScrollIntoView(long position
, int keyCode
);
1757 Refreshes the area affected by a selection change.
1759 bool RefreshForSelectionChange(const wxRichTextSelection
& oldSelection
, const wxRichTextSelection
& newSelection
);
1762 Sets the caret position.
1764 The caret position is the character position just before the caret.
1765 A value of -1 means the caret is at the start of the buffer.
1766 Please note that this does not update the current editing style
1767 from the new position or cause the actual caret to be refreshed; to do that,
1768 call wxRichTextCtrl::SetInsertionPoint instead.
1770 void SetCaretPosition(long position
, bool showAtLineStart
= false) ;
1773 Returns the current caret position.
1775 long GetCaretPosition() const { return m_caretPosition
; }
1778 The adjusted caret position is the character position adjusted to take
1779 into account whether we're at the start of a paragraph, in which case
1780 style information should be taken from the next position, not current one.
1782 long GetAdjustedCaretPosition(long caretPos
) const;
1785 Move the caret one visual step forward: this may mean setting a flag
1786 and keeping the same position if we're going from the end of one line
1787 to the start of the next, which may be the exact same caret position.
1789 void MoveCaretForward(long oldPosition
) ;
1792 Move the caret one visual step forward: this may mean setting a flag
1793 and keeping the same position if we're going from the end of one line
1794 to the start of the next, which may be the exact same caret position.
1796 void MoveCaretBack(long oldPosition
) ;
1799 Returns the caret height and position for the given character position.
1800 If container is null, the current focus object will be used.
1803 In wxPerl this method is implemented as
1804 GetCaretPositionForIndex(@a position) returning a
1805 2-element list (ok, rect).
1808 bool GetCaretPositionForIndex(long position
, wxRect
& rect
, wxRichTextParagraphLayoutBox
* container
= NULL
);
1811 Internal helper function returning the line for the visible caret position.
1812 If the caret is shown at the very end of the line, it means the next character
1813 is actually on the following line.
1814 So this function gets the line we're expecting to find if this is the case.
1816 wxRichTextLine
* GetVisibleLineForCaretPosition(long caretPosition
) const;
1819 Gets the command processor associated with the control's buffer.
1821 wxCommandProcessor
* GetCommandProcessor() const { return GetBuffer().GetCommandProcessor(); }
1824 Deletes content if there is a selection, e.g. when pressing a key.
1825 Returns the new caret position in @e newPos, or leaves it if there
1826 was no action. This is undoable.
1829 In wxPerl this method takes no arguments and returns a 2-element
1833 bool DeleteSelectedContent(long* newPos
= NULL
);
1836 Transforms logical (unscrolled) position to physical window position.
1838 wxPoint
GetPhysicalPoint(const wxPoint
& ptLogical
) const;
1841 Transforms physical window position to logical (unscrolled) position.
1843 wxPoint
GetLogicalPoint(const wxPoint
& ptPhysical
) const;
1846 Helper function for finding the caret position for the next word.
1847 Direction is 1 (forward) or -1 (backwards).
1849 virtual long FindNextWordPosition(int direction
= 1) const;
1852 Returns @true if the given position is visible on the screen.
1854 bool IsPositionVisible(long pos
) const;
1857 Returns the first visible position in the current view.
1859 long GetFirstVisiblePosition() const;
1862 Returns the caret position since the default formatting was changed. As
1863 soon as this position changes, we no longer reflect the default style
1864 in the UI. A value of -2 means that we should only reflect the style of the
1865 content under the caret.
1867 long GetCaretPositionForDefaultStyle() const { return m_caretPositionForDefaultStyle
; }
1870 Set the caret position for the default style that the user is selecting.
1872 void SetCaretPositionForDefaultStyle(long pos
) { m_caretPositionForDefaultStyle
= pos
; }
1875 Returns @true if the user has recently set the default style without moving
1876 the caret, and therefore the UI needs to reflect the default style and not
1877 the style at the caret.
1879 Below is an example of code that uses this function to determine whether the UI
1880 should show that the current style is bold.
1882 @see SetAndShowDefaultStyle().
1884 bool IsDefaultStyleShowing() const { return m_caretPositionForDefaultStyle
!= -2; }
1887 Sets @a attr as the default style and tells the control that the UI should
1888 reflect this attribute until the user moves the caret.
1890 @see IsDefaultStyleShowing().
1892 void SetAndShowDefaultStyle(const wxRichTextAttr
& attr
)
1894 SetDefaultStyle(attr
);
1895 SetCaretPositionForDefaultStyle(GetCaretPosition());
1899 Returns the first visible point in the window.
1901 wxPoint
GetFirstVisiblePoint() const;
1905 Returns the content of the entire control as a string.
1907 virtual wxString
GetValue() const;
1910 Replaces existing content with the given text.
1912 virtual void SetValue(const wxString
& value
);
1915 Call this function to prevent refresh and allow fast updates, and then Thaw() to
1916 refresh the control.
1921 Call this function to end a Freeze and refresh the display.
1926 Returns @true if Freeze has been called without a Thaw.
1928 bool IsFrozen() const;
1935 Sets up the caret for the given position and container, after a mouse click.
1937 bool SetCaretPositionAfterClick(wxRichTextParagraphLayoutBox
* container
, long position
, int hitTestFlags
, bool extendSelection
= false);
1940 Find the caret position for the combination of hit-test flags and character position.
1941 Returns the caret position and also an indication of where to place the caret (caretLineStart)
1942 since this is ambiguous (same position used for end of line and start of next).
1944 long FindCaretPositionForCharacterPosition(long position
, int hitTestFlags
, wxRichTextParagraphLayoutBox
* container
,
1945 bool& caretLineStart
);
1948 Font names take a long time to retrieve, so cache them (on demand).
1950 static const wxArrayString
& GetAvailableFontNames();
1953 Clears the cache of available font names.
1955 static void ClearAvailableFontNames();
1957 WX_FORWARD_TO_SCROLL_HELPER()
1959 // implement wxTextEntry methods
1960 virtual wxString
DoGetValue() const;
1963 // implement the wxTextEntry pure virtual method
1964 virtual wxWindow
*GetEditableWindow() { return this; }
1966 // margins functions
1967 virtual bool DoSetMargins(const wxPoint
& pt
);
1968 virtual wxPoint
DoGetMargins() const;
1970 // FIXME: this does not work, it allows this code to compile but will fail
1972 #ifndef __WXUNIVERSAL__
1974 virtual WXHWND
GetEditHWND() const { return GetHWND(); }
1977 virtual WXWidget
GetTextWidget() const { return NULL
; }
1980 virtual GtkEditable
*GetEditable() const { return NULL
; }
1981 virtual GtkEntry
*GetEntry() const { return NULL
; }
1983 #endif // !__WXUNIVERSAL__
1989 Currently this simply returns @c wxSize(10, 10).
1991 virtual wxSize
DoGetBestSize() const ;
1993 virtual void DoSetValue(const wxString
& value
, int flags
= 0);
1995 virtual void DoThaw();
2000 #if wxRICHTEXT_BUFFERED_PAINTING
2002 wxBitmap m_bufferBitmap
;
2006 wxRichTextBuffer m_buffer
;
2008 wxMenu
* m_contextMenu
;
2010 /// Caret position (1 less than the character position, so -1 is the
2011 /// first caret position).
2012 long m_caretPosition
;
2014 /// Caret position when the default formatting has been changed. As
2015 /// soon as this position changes, we no longer reflect the default style
2017 long m_caretPositionForDefaultStyle
;
2019 /// Selection range in character positions. -2, -2 means no selection.
2020 wxRichTextSelection m_selection
;
2022 wxRichTextCtrlSelectionState m_selectionState
;
2024 /// Anchor so we know how to extend the selection
2025 /// It's a caret position since it's between two characters.
2026 long m_selectionAnchor
;
2028 /// Anchor object if selecting multiple container objects, such as grid cells.
2029 wxRichTextObject
* m_selectionAnchorObject
;
2031 /// Are we editable?
2034 /// Are we showing the caret position at the start of a line
2035 /// instead of at the end of the previous one?
2036 bool m_caretAtLineStart
;
2038 /// Are we dragging a selection?
2041 /// Start position for drag
2042 wxPoint m_dragStart
;
2044 /// Do we need full layout in idle?
2045 bool m_fullLayoutRequired
;
2046 wxLongLong m_fullLayoutTime
;
2047 long m_fullLayoutSavedPosition
;
2049 /// Threshold for doing delayed layout
2050 long m_delayedLayoutThreshold
;
2053 wxCursor m_textCursor
;
2054 wxCursor m_urlCursor
;
2056 static wxArrayString sm_availableFontNames
;
2058 wxRichTextContextMenuPropertiesInfo m_contextMenuPropertiesInfo
;
2060 /// The object that currently has the editing focus
2061 wxRichTextParagraphLayoutBox
* m_focusObject
;
2065 @class wxRichTextEvent
2067 This is the event class for wxRichTextCtrl notifications.
2069 @beginEventTable{wxRichTextEvent}
2070 @event{EVT_RICHTEXT_LEFT_CLICK(id, func)}
2071 Process a @c wxEVT_COMMAND_RICHTEXT_LEFT_CLICK event, generated when the user
2072 releases the left mouse button over an object.
2073 @event{EVT_RICHTEXT_RIGHT_CLICK(id, func)}
2074 Process a @c wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK event, generated when the user
2075 releases the right mouse button over an object.
2076 @event{EVT_RICHTEXT_MIDDLE_CLICK(id, func)}
2077 Process a @c wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK event, generated when the user
2078 releases the middle mouse button over an object.
2079 @event{EVT_RICHTEXT_LEFT_DCLICK(id, func)}
2080 Process a @c wxEVT_COMMAND_RICHTEXT_DLEFT_CLICK event, generated when the user
2081 double-clicks an object.
2082 @event{EVT_RICHTEXT_RETURN(id, func)}
2083 Process a @c wxEVT_COMMAND_RICHTEXT_RETURN event, generated when the user
2084 presses the return key. Valid event functions: GetFlags, GetPosition.
2085 @event{EVT_RICHTEXT_CHARACTER(id, func)}
2086 Process a @c wxEVT_COMMAND_RICHTEXT_CHARACTER event, generated when the user
2087 presses a character key. Valid event functions: GetFlags, GetPosition, GetCharacter.
2088 @event{EVT_RICHTEXT_DELETE(id, func)}
2089 Process a @c wxEVT_COMMAND_RICHTEXT_DELETE event, generated when the user
2090 presses the backspace or delete key. Valid event functions: GetFlags, GetPosition.
2091 @event{EVT_RICHTEXT_RETURN(id, func)}
2092 Process a @c wxEVT_COMMAND_RICHTEXT_RETURN event, generated when the user
2093 presses the return key. Valid event functions: GetFlags, GetPosition.
2094 @event{EVT_RICHTEXT_STYLE_CHANGED(id, func)}
2095 Process a @c wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED event, generated when
2096 styling has been applied to the control. Valid event functions: GetPosition, GetRange.
2097 @event{EVT_RICHTEXT_STYLESHEET_CHANGED(id, func)}
2098 Process a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING event, generated
2099 when the control's stylesheet has changed, for example the user added,
2100 edited or deleted a style. Valid event functions: GetRange, GetPosition.
2101 @event{EVT_RICHTEXT_STYLESHEET_REPLACING(id, func)}
2102 Process a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING event, generated
2103 when the control's stylesheet is about to be replaced, for example when
2104 a file is loaded into the control.
2105 Valid event functions: Veto, GetOldStyleSheet, GetNewStyleSheet.
2106 @event{EVT_RICHTEXT_STYLESHEET_REPLACED(id, func)}
2107 Process a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED event, generated
2108 when the control's stylesheet has been replaced, for example when a file
2109 is loaded into the control.
2110 Valid event functions: GetOldStyleSheet, GetNewStyleSheet.
2111 @event{EVT_RICHTEXT_CONTENT_INSERTED(id, func)}
2112 Process a @c wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED event, generated when
2113 content has been inserted into the control.
2114 Valid event functions: GetPosition, GetRange.
2115 @event{EVT_RICHTEXT_CONTENT_DELETED(id, func)}
2116 Process a @c wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED event, generated when
2117 content has been deleted from the control.
2118 Valid event functions: GetPosition, GetRange.
2119 @event{EVT_RICHTEXT_BUFFER_RESET(id, func)}
2120 Process a @c wxEVT_COMMAND_RICHTEXT_BUFFER_RESET event, generated when the
2121 buffer has been reset by deleting all content.
2122 You can use this to set a default style for the first new paragraph.
2123 @event{EVT_RICHTEXT_SELECTION_CHANGED(id, func)}
2124 Process a @c wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED event, generated when the
2125 selection range has changed.
2126 @event{EVT_RICHTEXT_FOCUS_OBJECT_CHANGED(id, func)}
2127 Process a @c wxEVT_COMMAND_RICHTEXT_FOCUS_OBJECT_CHANGED event, generated when the
2128 current focus object has changed.
2131 @library{wxrichtext}
2132 @category{events,richtext}
2135 class WXDLLIMPEXP_RICHTEXT wxRichTextEvent
: public wxNotifyEvent
2142 The type of the event.
2144 Window identifier. The value @c wxID_ANY indicates a default value.
2146 wxRichTextEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0)
2147 : wxNotifyEvent(commandType
, winid
),
2148 m_flags(0), m_position(-1), m_oldStyleSheet(NULL
), m_newStyleSheet(NULL
),
2149 m_char((wxChar
) 0), m_container(NULL
), m_oldContainer(NULL
)
2155 wxRichTextEvent(const wxRichTextEvent
& event
)
2156 : wxNotifyEvent(event
),
2157 m_flags(event
.m_flags
), m_position(-1),
2158 m_oldStyleSheet(event
.m_oldStyleSheet
), m_newStyleSheet(event
.m_newStyleSheet
),
2159 m_char((wxChar
) 0), m_container(event
.m_container
), m_oldContainer(event
.m_oldContainer
)
2163 Returns the buffer position at which the event occured.
2165 long GetPosition() const { return m_position
; }
2168 Sets the buffer position variable.
2170 void SetPosition(long pos
) { m_position
= pos
; }
2173 Returns flags indicating modifier keys pressed.
2175 Possible values are @c wxRICHTEXT_CTRL_DOWN, @c wxRICHTEXT_SHIFT_DOWN, and @c wxRICHTEXT_ALT_DOWN.
2177 int GetFlags() const { return m_flags
; }
2180 Sets flags indicating modifier keys pressed.
2182 Possible values are @c wxRICHTEXT_CTRL_DOWN, @c wxRICHTEXT_SHIFT_DOWN, and @c wxRICHTEXT_ALT_DOWN.
2184 void SetFlags(int flags
) { m_flags
= flags
; }
2187 Returns the old style sheet.
2189 Can be used in a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING or
2190 @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED event handler.
2192 wxRichTextStyleSheet
* GetOldStyleSheet() const { return m_oldStyleSheet
; }
2195 Sets the old style sheet variable.
2197 void SetOldStyleSheet(wxRichTextStyleSheet
* sheet
) { m_oldStyleSheet
= sheet
; }
2200 Returns the new style sheet.
2202 Can be used in a @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING or
2203 @c wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED event handler.
2205 wxRichTextStyleSheet
* GetNewStyleSheet() const { return m_newStyleSheet
; }
2208 Sets the new style sheet variable.
2210 void SetNewStyleSheet(wxRichTextStyleSheet
* sheet
) { m_newStyleSheet
= sheet
; }
2213 Gets the range for the current operation.
2215 const wxRichTextRange
& GetRange() const { return m_range
; }
2218 Sets the range variable.
2220 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
2223 Returns the character pressed, within a @c wxEVT_COMMAND_RICHTEXT_CHARACTER event.
2225 wxChar
GetCharacter() const { return m_char
; }
2228 Sets the character variable.
2230 void SetCharacter(wxChar ch
) { m_char
= ch
; }
2233 Returns the container for which the event is relevant.
2235 wxRichTextParagraphLayoutBox
* GetContainer() const { return m_container
; }
2238 Sets the container for which the event is relevant.
2240 void SetContainer(wxRichTextParagraphLayoutBox
* container
) { m_container
= container
; }
2243 Returns the old container, for a focus change event.
2245 wxRichTextParagraphLayoutBox
* GetOldContainer() const { return m_oldContainer
; }
2248 Sets the old container, for a focus change event.
2250 void SetOldContainer(wxRichTextParagraphLayoutBox
* container
) { m_oldContainer
= container
; }
2252 virtual wxEvent
*Clone() const { return new wxRichTextEvent(*this); }
2257 wxRichTextStyleSheet
* m_oldStyleSheet
;
2258 wxRichTextStyleSheet
* m_newStyleSheet
;
2259 wxRichTextRange m_range
;
2261 wxRichTextParagraphLayoutBox
* m_container
;
2262 wxRichTextParagraphLayoutBox
* m_oldContainer
;
2265 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxRichTextEvent
)
2269 * wxRichTextCtrl events
2271 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_LEFT_CLICK
, wxRichTextEvent
);
2272 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK
, wxRichTextEvent
);
2273 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK
, wxRichTextEvent
);
2274 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK
, wxRichTextEvent
);
2275 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_RETURN
, wxRichTextEvent
);
2276 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_CHARACTER
, wxRichTextEvent
);
2277 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_DELETE
, wxRichTextEvent
);
2279 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING
, wxRichTextEvent
);
2280 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED
, wxRichTextEvent
);
2281 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING
, wxRichTextEvent
);
2282 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED
, wxRichTextEvent
);
2284 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED
, wxRichTextEvent
);
2285 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED
, wxRichTextEvent
);
2286 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED
, wxRichTextEvent
);
2287 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED
, wxRichTextEvent
);
2288 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_BUFFER_RESET
, wxRichTextEvent
);
2289 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_COMMAND_RICHTEXT_FOCUS_OBJECT_CHANGED
, wxRichTextEvent
);
2291 typedef void (wxEvtHandler::*wxRichTextEventFunction
)(wxRichTextEvent
&);
2293 #define wxRichTextEventHandler(func) \
2294 wxEVENT_HANDLER_CAST(wxRichTextEventFunction, func)
2296 #define EVT_RICHTEXT_LEFT_CLICK(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_CLICK, id, -1, wxRichTextEventHandler( fn ), NULL ),
2297 #define EVT_RICHTEXT_RIGHT_CLICK(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK, id, -1, wxRichTextEventHandler( fn ), NULL ),
2298 #define EVT_RICHTEXT_MIDDLE_CLICK(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK, id, -1, wxRichTextEventHandler( fn ), NULL ),
2299 #define EVT_RICHTEXT_LEFT_DCLICK(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK, id, -1, wxRichTextEventHandler( fn ), NULL ),
2300 #define EVT_RICHTEXT_RETURN(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RETURN, id, -1, wxRichTextEventHandler( fn ), NULL ),
2301 #define EVT_RICHTEXT_CHARACTER(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_CHARACTER, id, -1, wxRichTextEventHandler( fn ), NULL ),
2302 #define EVT_RICHTEXT_DELETE(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_DELETE, id, -1, wxRichTextEventHandler( fn ), NULL ),
2304 #define EVT_RICHTEXT_STYLESHEET_CHANGING(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING, id, -1, wxRichTextEventHandler( fn ), NULL ),
2305 #define EVT_RICHTEXT_STYLESHEET_CHANGED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2306 #define EVT_RICHTEXT_STYLESHEET_REPLACING(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING, id, -1, wxRichTextEventHandler( fn ), NULL ),
2307 #define EVT_RICHTEXT_STYLESHEET_REPLACED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2309 #define EVT_RICHTEXT_CONTENT_INSERTED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2310 #define EVT_RICHTEXT_CONTENT_DELETED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2311 #define EVT_RICHTEXT_STYLE_CHANGED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2312 #define EVT_RICHTEXT_SELECTION_CHANGED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2313 #define EVT_RICHTEXT_BUFFER_RESET(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_BUFFER_RESET, id, -1, wxRichTextEventHandler( fn ), NULL ),
2319 // _WX_RICHTEXTCTRL_H_