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 wxUSE_DRAG_AND_DROP
28 #if !defined(__WXGTK__) && !defined(__WXMAC__)
29 #define wxRICHTEXT_BUFFERED_PAINTING 1
31 #define wxRICHTEXT_BUFFERED_PAINTING 0
34 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextStyleDefinition
;
44 #define wxRE_READONLY 0x0010
45 #define wxRE_MULTILINE 0x0020
46 #define wxRE_CENTRE_CARET 0x8000
47 #define wxRE_CENTER_CARET wxRE_CENTRE_CARET
53 #define wxRICHTEXT_SHIFT_DOWN 0x01
54 #define wxRICHTEXT_CTRL_DOWN 0x02
55 #define wxRICHTEXT_ALT_DOWN 0x04
61 // Don't draw guide lines around boxes and tables
62 #define wxRICHTEXT_EX_NO_GUIDELINES 0x00000100
69 #define wxRICHTEXT_DEFAULT_OVERALL_SIZE wxSize(-1, -1)
70 #define wxRICHTEXT_DEFAULT_IMAGE_SIZE wxSize(80, 80)
71 #define wxRICHTEXT_DEFAULT_SPACING 3
72 #define wxRICHTEXT_DEFAULT_MARGIN 3
73 #define wxRICHTEXT_DEFAULT_UNFOCUSSED_BACKGROUND wxColour(175, 175, 175)
74 #define wxRICHTEXT_DEFAULT_FOCUSSED_BACKGROUND wxColour(140, 140, 140)
75 #define wxRICHTEXT_DEFAULT_UNSELECTED_BACKGROUND wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)
76 #define wxRICHTEXT_DEFAULT_TYPE_COLOUR wxColour(0, 0, 200)
77 #define wxRICHTEXT_DEFAULT_FOCUS_RECT_COLOUR wxColour(100, 80, 80)
78 #define wxRICHTEXT_DEFAULT_CARET_WIDTH 2
79 // Minimum buffer size before delayed layout kicks in
80 #define wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD 20000
81 // Milliseconds before layout occurs after resize
82 #define wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL 50
86 #define wxID_RICHTEXT_PROPERTIES1 (wxID_HIGHEST + 1)
87 #define wxID_RICHTEXT_PROPERTIES2 (wxID_HIGHEST + 2)
88 #define wxID_RICHTEXT_PROPERTIES3 (wxID_HIGHEST + 3)
91 Normal selection occurs initially and as user drags within one container.
92 Common ancestor selection occurs when the user starts dragging across containers
93 that have a common ancestor, for example the cells in a table.
96 enum wxRichTextCtrlSelectionState
98 wxRichTextCtrlSelectionState_Normal
,
99 wxRichTextCtrlSelectionState_CommonAncestor
103 @class wxRichTextContextMenuPropertiesInfo
105 wxRichTextContextMenuPropertiesInfo keeps track of objects that appear in the context menu,
106 whose properties are available to be edited.
109 class WXDLLIMPEXP_RICHTEXT wxRichTextContextMenuPropertiesInfo
115 wxRichTextContextMenuPropertiesInfo() { Init(); }
127 bool AddItem(const wxString
& label
, wxRichTextObject
* obj
);
130 Returns the number of menu items that were added.
132 int AddMenuItems(wxMenu
* menu
, int startCmd
= wxID_RICHTEXT_PROPERTIES1
) const;
135 Adds appropriate menu items for the current container and clicked on object
136 (and container's parent, if appropriate).
138 int AddItems(wxRichTextCtrl
* ctrl
, wxRichTextObject
* container
, wxRichTextObject
* obj
);
143 void Clear() { m_objects
.Clear(); m_labels
.Clear(); }
148 Returns the nth label.
150 wxString
GetLabel(int n
) const { return m_labels
[n
]; }
153 Returns the nth object.
155 wxRichTextObject
* GetObject(int n
) const { return m_objects
[n
]; }
158 Returns the array of objects.
160 wxRichTextObjectPtrArray
& GetObjects() { return m_objects
; }
163 Returns the array of objects.
165 const wxRichTextObjectPtrArray
& GetObjects() const { return m_objects
; }
168 Returns the array of labels.
170 wxArrayString
& GetLabels() { return m_labels
; }
173 Returns the array of labels.
175 const wxArrayString
& GetLabels() const { return m_labels
; }
178 Returns the number of items.
180 int GetCount() const { return m_objects
.GetCount(); }
182 wxRichTextObjectPtrArray m_objects
;
183 wxArrayString m_labels
;
187 @class wxRichTextCtrl
189 wxRichTextCtrl provides a generic, ground-up implementation of a text control
190 capable of showing multiple styles and images.
192 wxRichTextCtrl sends notification events: see wxRichTextEvent.
194 It also sends the standard wxTextCtrl events @c wxEVT_TEXT_ENTER and
195 @c wxEVT_TEXT, and wxTextUrlEvent when URL content is clicked.
197 For more information, see the @ref overview_richtextctrl.
200 @style{wxRE_CENTRE_CARET}
201 The control will try to keep the caret line centred vertically while editing.
202 wxRE_CENTER_CARET is a synonym for this style.
203 @style{wxRE_MULTILINE}
204 The control will be multiline (mandatory).
205 @style{wxRE_READONLY}
206 The control will not be editable.
211 @appearance{richtextctrl.png}
215 class WXDLLIMPEXP_RICHTEXT wxRichTextCtrl
: public wxControl
,
216 public wxTextCtrlIface
,
217 public wxScrollHelper
219 DECLARE_DYNAMIC_CLASS( wxRichTextCtrl
)
220 DECLARE_EVENT_TABLE()
231 Constructor, creating and showing a rich text control.
234 Parent window. Must not be @NULL.
236 Window identifier. The value @c wxID_ANY indicates a default value.
250 @see Create(), wxValidator
252 wxRichTextCtrl( wxWindow
* parent
, wxWindowID id
= -1, const wxString
& value
= wxEmptyString
, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
253 long style
= wxRE_MULTILINE
, const wxValidator
& validator
= wxDefaultValidator
, const wxString
& name
= wxTextCtrlNameStr
);
258 virtual ~wxRichTextCtrl( );
263 Creates the underlying window.
265 bool Create( wxWindow
* parent
, wxWindowID id
= -1, const wxString
& value
= wxEmptyString
, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
266 long style
= wxRE_MULTILINE
, const wxValidator
& validator
= wxDefaultValidator
, const wxString
& name
= wxTextCtrlNameStr
);
269 Initialises the members of the control.
276 Gets the text for the given range.
277 The end point of range is specified as the last character position of
278 the span of text, plus one.
280 virtual wxString
GetRange(long from
, long to
) const;
283 Returns the length of the specified line in characters.
285 virtual int GetLineLength(long lineNo
) const ;
288 Returns the text for the given line.
290 virtual wxString
GetLineText(long lineNo
) const ;
293 Returns the number of lines in the buffer.
295 virtual int GetNumberOfLines() const ;
298 Returns @true if the buffer has been modified.
300 virtual bool IsModified() const ;
303 Returns @true if the control is editable.
305 virtual bool IsEditable() const ;
308 Returns @true if the control is single-line.
309 Currently wxRichTextCtrl does not support single-line editing.
311 bool IsSingleLine() const { return !HasFlag(wxRE_MULTILINE
); }
314 Returns @true if the control is multiline.
316 bool IsMultiLine() const { return !IsSingleLine(); }
320 Returns the range of the current selection.
321 The end point of range is specified as the last character position of the span
323 If the return values @a from and @a to are the same, there is no selection.
325 virtual void GetSelection(long* from
, long* to
) const;
326 const wxRichTextSelection
& GetSelection() const { return m_selection
; }
327 wxRichTextSelection
& GetSelection() { return m_selection
; }
331 Returns the text within the current selection range, if any.
333 virtual wxString
GetStringSelection() const;
336 Gets the current filename associated with the control.
338 wxString
GetFilename() const { return m_filename
; }
341 Sets the current filename.
343 void SetFilename(const wxString
& filename
) { m_filename
= filename
; }
346 Sets the size of the buffer beyond which layout is delayed during resizing.
347 This optimizes sizing for large buffers. The default is 20000.
349 void SetDelayedLayoutThreshold(long threshold
) { m_delayedLayoutThreshold
= threshold
; }
352 Gets the size of the buffer beyond which layout is delayed during resizing.
353 This optimizes sizing for large buffers. The default is 20000.
355 long GetDelayedLayoutThreshold() const { return m_delayedLayoutThreshold
; }
358 Gets the flag indicating that full layout is required.
360 bool GetFullLayoutRequired() const { return m_fullLayoutRequired
; }
363 Sets the flag indicating that full layout is required.
365 void SetFullLayoutRequired(bool b
) { m_fullLayoutRequired
= b
; }
368 Returns the last time full layout was performed.
370 wxLongLong
GetFullLayoutTime() const { return m_fullLayoutTime
; }
373 Sets the last time full layout was performed.
375 void SetFullLayoutTime(wxLongLong t
) { m_fullLayoutTime
= t
; }
378 Returns the position that should be shown when full (delayed) layout is performed.
380 long GetFullLayoutSavedPosition() const { return m_fullLayoutSavedPosition
; }
383 Sets the position that should be shown when full (delayed) layout is performed.
385 void SetFullLayoutSavedPosition(long p
) { m_fullLayoutSavedPosition
= p
; }
388 Forces any pending layout due to delayed, partial layout when the control
391 void ForceDelayedLayout();
394 Sets the text (normal) cursor.
396 void SetTextCursor(const wxCursor
& cursor
) { m_textCursor
= cursor
; }
399 Returns the text (normal) cursor.
401 wxCursor
GetTextCursor() const { return m_textCursor
; }
404 Sets the cursor to be used over URLs.
406 void SetURLCursor(const wxCursor
& cursor
) { m_urlCursor
= cursor
; }
409 Returns the cursor to be used over URLs.
411 wxCursor
GetURLCursor() const { return m_urlCursor
; }
414 Returns @true if we are showing the caret position at the start of a line
415 instead of at the end of the previous one.
417 bool GetCaretAtLineStart() const { return m_caretAtLineStart
; }
420 Sets a flag to remember that we are showing the caret position at the start of a line
421 instead of at the end of the previous one.
423 void SetCaretAtLineStart(bool atStart
) { m_caretAtLineStart
= atStart
; }
426 Returns @true if we are dragging a selection.
428 bool GetDragging() const { return m_dragging
; }
431 Sets a flag to remember if we are dragging a selection.
433 void SetDragging(bool dragging
) { m_dragging
= dragging
; }
435 #if wxUSE_DRAG_AND_DROP
437 Are we trying to start Drag'n'Drop?
439 bool GetPreDrag() const { return m_preDrag
; }
442 Set if we're trying to start Drag'n'Drop
444 void SetPreDrag(bool pd
) { m_preDrag
= pd
; }
447 Get the possible Drag'n'Drop start point
449 const wxPoint
GetDragStartPoint() const { return m_dragStartPoint
; }
452 Set the possible Drag'n'Drop start point
454 void SetDragStartPoint(wxPoint sp
) { m_dragStartPoint
= sp
; }
458 Get the possible Drag'n'Drop start time
460 const wxDateTime
GetDragStartTime() const { return m_dragStartTime
; }
463 Set the possible Drag'n'Drop start time
465 void SetDragStartTime(wxDateTime st
) { m_dragStartTime
= st
; }
466 #endif // wxUSE_DATETIME
468 #endif // wxUSE_DRAG_AND_DROP
470 #if wxRICHTEXT_BUFFERED_PAINTING
473 Returns the buffer bitmap if using buffered painting.
475 const wxBitmap
& GetBufferBitmap() const { return m_bufferBitmap
; }
476 wxBitmap
& GetBufferBitmap() { return m_bufferBitmap
; }
481 Returns the current context menu.
483 wxMenu
* GetContextMenu() const { return m_contextMenu
; }
486 Sets the current context menu.
488 void SetContextMenu(wxMenu
* menu
);
491 Returns an anchor so we know how to extend the selection.
492 It's a caret position since it's between two characters.
494 long GetSelectionAnchor() const { return m_selectionAnchor
; }
497 Sets an anchor so we know how to extend the selection.
498 It's a caret position since it's between two characters.
500 void SetSelectionAnchor(long anchor
) { m_selectionAnchor
= anchor
; }
503 Returns the anchor object if selecting multiple containers.
505 wxRichTextObject
* GetSelectionAnchorObject() const { return m_selectionAnchorObject
; }
508 Sets the anchor object if selecting multiple containers.
510 void SetSelectionAnchorObject(wxRichTextObject
* anchor
) { m_selectionAnchorObject
= anchor
; }
514 Returns an object that stores information about context menu property item(s),
515 in order to communicate between the context menu event handler and the code
516 that responds to it. The wxRichTextContextMenuPropertiesInfo stores one
517 item for each object that could respond to a property-editing event. If
518 objects are nested, several might be editable.
520 wxRichTextContextMenuPropertiesInfo
& GetContextMenuPropertiesInfo() { return m_contextMenuPropertiesInfo
; }
521 const wxRichTextContextMenuPropertiesInfo
& GetContextMenuPropertiesInfo() const { return m_contextMenuPropertiesInfo
; }
525 Returns the wxRichTextObject object that currently has the editing focus.
526 If there are no composite objects, this will be the top-level buffer.
528 wxRichTextParagraphLayoutBox
* GetFocusObject() const { return m_focusObject
; }
531 Sets m_focusObject without making any alterations.
533 void StoreFocusObject(wxRichTextParagraphLayoutBox
* obj
) { m_focusObject
= obj
; }
536 Sets the wxRichTextObject object that currently has the editing focus.
538 bool SetFocusObject(wxRichTextParagraphLayoutBox
* obj
, bool setCaretPosition
= true);
543 Invalidates the whole buffer to trigger painting later.
545 void Invalidate() { GetBuffer().Invalidate(wxRICHTEXT_ALL
); }
548 Clears the buffer content, leaving a single empty paragraph. Cannot be undone.
550 virtual void Clear();
553 Replaces the content in the specified range with the string specified by
556 virtual void Replace(long from
, long to
, const wxString
& value
);
559 Removes the content in the specified range.
561 virtual void Remove(long from
, long to
);
565 Loads content into the control's buffer using the given type.
567 If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from
568 the filename extension.
570 This function looks for a suitable wxRichTextFileHandler object.
572 bool LoadFile(const wxString
& file
,
573 int type
= wxRICHTEXT_TYPE_ANY
);
576 #if wxUSE_FFILE && wxUSE_STREAMS
578 Helper function for LoadFile(). Loads content into the control's buffer using the given type.
580 If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from
581 the filename extension.
583 This function looks for a suitable wxRichTextFileHandler object.
585 virtual bool DoLoadFile(const wxString
& file
, int fileType
);
586 #endif // wxUSE_FFILE && wxUSE_STREAMS
590 Saves the buffer content using the given type.
592 If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from
593 the filename extension.
595 This function looks for a suitable wxRichTextFileHandler object.
597 bool SaveFile(const wxString
& file
= wxEmptyString
,
598 int type
= wxRICHTEXT_TYPE_ANY
);
601 #if wxUSE_FFILE && wxUSE_STREAMS
603 Helper function for SaveFile(). Saves the buffer content using the given type.
605 If the specified type is wxRICHTEXT_TYPE_ANY, the type is deduced from
606 the filename extension.
608 This function looks for a suitable wxRichTextFileHandler object.
610 virtual bool DoSaveFile(const wxString
& file
= wxEmptyString
,
611 int fileType
= wxRICHTEXT_TYPE_ANY
);
612 #endif // wxUSE_FFILE && wxUSE_STREAMS
615 Sets flags that change the behaviour of loading or saving.
617 See the documentation for each handler class to see what flags are
618 relevant for each handler.
620 void SetHandlerFlags(int flags
) { GetBuffer().SetHandlerFlags(flags
); }
623 Returns flags that change the behaviour of loading or saving.
624 See the documentation for each handler class to see what flags are
625 relevant for each handler.
627 int GetHandlerFlags() const { return GetBuffer().GetHandlerFlags(); }
630 Marks the buffer as modified.
632 virtual void MarkDirty();
635 Sets the buffer's modified status to @false, and clears the buffer's command
638 virtual void DiscardEdits();
641 Sets the maximum number of characters that may be entered in a single line
642 text control. For compatibility only; currently does nothing.
644 virtual void SetMaxLength(unsigned long WXUNUSED(len
)) { }
647 Writes text at the current position.
649 virtual void WriteText(const wxString
& text
);
652 Sets the insertion point to the end of the buffer and writes the text.
654 virtual void AppendText(const wxString
& text
);
658 Gets the attributes at the given position.
659 This function gets the combined style - that is, the style you see on the
660 screen as a result of combining base style, paragraph style and character
663 To get the character or paragraph style alone, use GetUncombinedStyle().
666 In wxPerl this method is implemented as GetStyle(@a position)
667 returning a 2-element list (ok, attr).
670 virtual bool GetStyle(long position
, wxTextAttr
& style
);
671 virtual bool GetStyle(long position
, wxRichTextAttr
& style
);
672 virtual bool GetStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
);
677 Sets the attributes for the given range.
678 The end point of range is specified as the last character position of the span
681 So, for example, to set the style for a character at position 5, use the range
684 virtual bool SetStyle(long start
, long end
, const wxTextAttr
& style
);
685 virtual bool SetStyle(long start
, long end
, const wxRichTextAttr
& style
);
686 virtual bool SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
);
687 virtual bool SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
);
691 Sets the attributes for a single object
693 virtual void SetStyle(wxRichTextObject
*obj
, const wxRichTextAttr
& textAttr
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
697 Gets the attributes common to the specified range.
698 Attributes that differ in value within the range will not be included
702 In wxPerl this method is implemented as GetStyleForRange(@a position)
703 returning a 2-element list (ok, attr).
706 virtual bool GetStyleForRange(const wxRichTextRange
& range
, wxTextAttr
& style
);
707 virtual bool GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
);
708 virtual bool GetStyleForRange(const wxRichTextRange
& range
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
);
712 Sets the attributes for the given range, passing flags to determine how the
715 The end point of range is specified as the last character position of the span
716 of text, plus one. So, for example, to set the style for a character at
717 position 5, use the range (5,6).
719 @a flags may contain a bit list of the following values:
720 - wxRICHTEXT_SETSTYLE_NONE: no style flag.
721 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this operation should be
723 - wxRICHTEXT_SETSTYLE_OPTIMIZE: specifies that the style should not be applied
724 if the combined style at this point is already the style in question.
725 - wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY: specifies that the style should only be
726 applied to paragraphs, and not the content.
727 This allows content styling to be preserved independently from that
728 of e.g. a named paragraph style.
729 - wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY: specifies that the style should only be
730 applied to characters, and not the paragraph.
731 This allows content styling to be preserved independently from that
732 of e.g. a named paragraph style.
733 - wxRICHTEXT_SETSTYLE_RESET: resets (clears) the existing style before applying
735 - wxRICHTEXT_SETSTYLE_REMOVE: removes the specified style. Only the style flags
736 are used in this operation.
738 virtual bool SetStyleEx(const wxRichTextRange
& range
, const wxRichTextAttr
& style
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
742 Gets the attributes at the given position.
743 This function gets the @e uncombined style - that is, the attributes associated
744 with the paragraph or character content, and not necessarily the combined
745 attributes you see on the screen.
746 To get the combined attributes, use GetStyle().
748 If you specify (any) paragraph attribute in @e style's flags, this function
749 will fetch the paragraph attributes.
750 Otherwise, it will return the character attributes.
753 In wxPerl this method is implemented as GetUncombinedStyle(@a position)
754 returning a 2-element list (ok, attr).
757 virtual bool GetUncombinedStyle(long position
, wxRichTextAttr
& style
);
758 virtual bool GetUncombinedStyle(long position
, wxRichTextAttr
& style
, wxRichTextParagraphLayoutBox
* container
);
763 Sets the current default style, which can be used to change how subsequently
764 inserted text is displayed.
766 virtual bool SetDefaultStyle(const wxTextAttr
& style
);
767 virtual bool SetDefaultStyle(const wxRichTextAttr
& style
);
771 Returns the current default style, which can be used to change how subsequently
772 inserted text is displayed.
774 virtual const wxRichTextAttr
& GetDefaultStyleEx() const;
776 //virtual const wxTextAttr& GetDefaultStyle() const;
780 Sets the list attributes for the given range, passing flags to determine how
781 the attributes are set.
783 Either the style definition or the name of the style definition (in the current
784 sheet) can be passed.
785 @a flags is a bit list of the following:
786 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
787 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
788 @a startFrom, otherwise existing attributes are used.
789 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
790 as the level for all paragraphs, otherwise the current indentation will be used.
792 @see NumberList(), PromoteList(), ClearListStyle().
794 virtual bool SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
795 virtual bool SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
799 Clears the list style from the given range, clearing list-related attributes
800 and applying any named paragraph style associated with each paragraph.
802 @a flags is a bit list of the following:
803 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
805 @see SetListStyle(), PromoteList(), NumberList().
807 virtual bool ClearListStyle(const wxRichTextRange
& range
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
811 Numbers the paragraphs in the given range.
812 Pass flags to determine how the attributes are set.
814 Either the style definition or the name of the style definition (in the current
815 sheet) can be passed.
817 @a flags is a bit list of the following:
818 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
819 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
820 @a startFrom, otherwise existing attributes are used.
821 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
822 as the level for all paragraphs, otherwise the current indentation will be used.
824 @see SetListStyle(), PromoteList(), ClearListStyle().
826 virtual bool NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
827 virtual bool NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
832 Promotes or demotes the paragraphs in the given range.
833 A positive @a promoteBy produces a smaller indent, and a negative number
834 produces a larger indent. Pass flags to determine how the attributes are set.
835 Either the style definition or the name of the style definition (in the current
836 sheet) can be passed.
838 @a flags is a bit list of the following:
839 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
840 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
841 @a startFrom, otherwise existing attributes are used.
842 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
843 as the level for all paragraphs, otherwise the current indentation will be used.
845 @see SetListStyle(), @see SetListStyle(), ClearListStyle().
847 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
848 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
852 Sets the properties for the given range, passing flags to determine how the
853 attributes are set. You can merge properties or replace them.
855 The end point of range is specified as the last character position of the span
856 of text, plus one. So, for example, to set the properties for a character at
857 position 5, use the range (5,6).
859 @a flags may contain a bit list of the following values:
860 - wxRICHTEXT_SETSPROPERTIES_NONE: no flag.
861 - wxRICHTEXT_SETPROPERTIES_WITH_UNDO: specifies that this operation should be
863 - wxRICHTEXT_SETPROPERTIES_PARAGRAPHS_ONLY: specifies that the properties should only be
864 applied to paragraphs, and not the content.
865 - wxRICHTEXT_SETPROPERTIES_CHARACTERS_ONLY: specifies that the properties should only be
866 applied to characters, and not the paragraph.
867 - wxRICHTEXT_SETPROPERTIES_RESET: resets (clears) the existing properties before applying
869 - wxRICHTEXT_SETPROPERTIES_REMOVE: removes the specified properties.
871 virtual bool SetProperties(const wxRichTextRange
& range
, const wxRichTextProperties
& properties
, int flags
= wxRICHTEXT_SETPROPERTIES_WITH_UNDO
);
874 Deletes the content within the given range.
876 virtual bool Delete(const wxRichTextRange
& range
);
879 Translates from column and line number to position.
881 virtual long XYToPosition(long x
, long y
) const;
884 Converts a text position to zero-based column and line numbers.
886 virtual bool PositionToXY(long pos
, long *x
, long *y
) const;
889 Scrolls the buffer so that the given position is in view.
891 virtual void ShowPosition(long pos
);
895 Finds the character at the given position in pixels.
896 @a pt is in device coords (not adjusted for the client area origin nor for
899 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
, long *pos
) const;
900 virtual wxTextCtrlHitTestResult
HitTest(const wxPoint
& pt
,
902 wxTextCoord
*row
) const;
905 Finds the container at the given point, which is in screen coordinates.
907 wxRichTextParagraphLayoutBox
* FindContainerAtPoint(const wxPoint pt
, long& position
, int& hit
, wxRichTextObject
* hitObj
, int flags
= 0);
910 #if wxUSE_DRAG_AND_DROP
912 Does the 'drop' of Drag'n'Drop.
914 void OnDrop(wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
), wxDragResult def
, wxDataObject
* DataObj
);
917 // Clipboard operations
920 Copies the selected content (if any) to the clipboard.
925 Copies the selected content (if any) to the clipboard and deletes the selection.
931 Pastes content from the clipboard to the buffer.
933 virtual void Paste();
936 Deletes the content in the selection, if any. This is undoable.
938 virtual void DeleteSelection();
941 Returns @true if selected content can be copied to the clipboard.
943 virtual bool CanCopy() const;
946 Returns @true if selected content can be copied to the clipboard and deleted.
948 virtual bool CanCut() const;
951 Returns @true if the clipboard content can be pasted to the buffer.
953 virtual bool CanPaste() const;
956 Returns @true if selected content can be deleted.
958 virtual bool CanDeleteSelection() const;
961 Undoes the command at the top of the command history, if there is one.
966 Redoes the current command.
971 Returns @true if there is a command in the command history that can be undone.
973 virtual bool CanUndo() const;
976 Returns @true if there is a command in the command history that can be redone.
978 virtual bool CanRedo() const;
981 Sets the insertion point and causes the current editing style to be taken from
982 the new position (unlike wxRichTextCtrl::SetCaretPosition).
984 virtual void SetInsertionPoint(long pos
);
987 Sets the insertion point to the end of the text control.
989 virtual void SetInsertionPointEnd();
992 Returns the current insertion point.
994 virtual long GetInsertionPoint() const;
997 Returns the last position in the buffer.
999 virtual wxTextPos
GetLastPosition() const;
1003 Sets the selection to the given range.
1004 The end point of range is specified as the last character position of the span
1007 So, for example, to set the selection for a character at position 5, use the
1010 virtual void SetSelection(long from
, long to
);
1011 void SetSelection(const wxRichTextSelection
& sel
) { m_selection
= sel
; }
1015 Makes the control editable, or not.
1017 virtual void SetEditable(bool editable
);
1020 Returns @true if there is a selection and the object containing the selection
1021 was the same as the current focus object.
1023 virtual bool HasSelection() const;
1026 Returns @true if there was a selection, whether or not the current focus object
1027 is the same as the selection's container object.
1029 virtual bool HasUnfocusedSelection() const;
1033 Write a bitmap or image at the current insertion point.
1034 Supply an optional type to use for internal and file storage of the raw data.
1036 virtual bool WriteImage(const wxImage
& image
, wxBitmapType bitmapType
= wxBITMAP_TYPE_PNG
,
1037 const wxRichTextAttr
& textAttr
= wxRichTextAttr());
1039 virtual bool WriteImage(const wxBitmap
& bitmap
, wxBitmapType bitmapType
= wxBITMAP_TYPE_PNG
,
1040 const wxRichTextAttr
& textAttr
= wxRichTextAttr());
1044 Loads an image from a file and writes it at the current insertion point.
1046 virtual bool WriteImage(const wxString
& filename
, wxBitmapType bitmapType
,
1047 const wxRichTextAttr
& textAttr
= wxRichTextAttr());
1050 Writes an image block at the current insertion point.
1052 virtual bool WriteImage(const wxRichTextImageBlock
& imageBlock
,
1053 const wxRichTextAttr
& textAttr
= wxRichTextAttr());
1056 Write a text box at the current insertion point, returning the text box.
1057 You can then call SetFocusObject() to set the focus to the new object.
1059 virtual wxRichTextBox
* WriteTextBox(const wxRichTextAttr
& textAttr
= wxRichTextAttr());
1062 Writes a field at the current insertion point.
1065 The field type, matching an existing field type definition.
1067 Extra data for the field.
1069 Optional attributes.
1071 @see wxRichTextField, wxRichTextFieldType, wxRichTextFieldTypeStandard
1073 virtual wxRichTextField
* WriteField(const wxString
& fieldType
, const wxRichTextProperties
& properties
,
1074 const wxRichTextAttr
& textAttr
= wxRichTextAttr());
1077 Write a table at the current insertion point, returning the table.
1078 You can then call SetFocusObject() to set the focus to the new object.
1080 virtual wxRichTextTable
* WriteTable(int rows
, int cols
, const wxRichTextAttr
& tableAttr
= wxRichTextAttr(), const wxRichTextAttr
& cellAttr
= wxRichTextAttr());
1083 Inserts a new paragraph at the current insertion point. @see LineBreak().
1085 virtual bool Newline();
1088 Inserts a line break at the current insertion point.
1090 A line break forces wrapping within a paragraph, and can be introduced by
1091 using this function, by appending the wxChar value @b wxRichTextLineBreakChar
1092 to text content, or by typing Shift-Return.
1094 virtual bool LineBreak();
1097 Sets the basic (overall) style.
1099 This is the style of the whole buffer before further styles are applied,
1100 unlike the default style, which only affects the style currently being
1101 applied (for example, setting the default style to bold will cause
1102 subsequently inserted text to be bold).
1104 virtual void SetBasicStyle(const wxRichTextAttr
& style
) { GetBuffer().SetBasicStyle(style
); }
1107 Gets the basic (overall) style.
1109 This is the style of the whole buffer before further styles are applied,
1110 unlike the default style, which only affects the style currently being
1111 applied (for example, setting the default style to bold will cause
1112 subsequently inserted text to be bold).
1114 virtual const wxRichTextAttr
& GetBasicStyle() const { return GetBuffer().GetBasicStyle(); }
1117 Begins applying a style.
1119 virtual bool BeginStyle(const wxRichTextAttr
& style
) { return GetBuffer().BeginStyle(style
); }
1122 Ends the current style.
1124 virtual bool EndStyle() { return GetBuffer().EndStyle(); }
1127 Ends application of all styles in the current style stack.
1129 virtual bool EndAllStyles() { return GetBuffer().EndAllStyles(); }
1134 bool BeginBold() { return GetBuffer().BeginBold(); }
1139 bool EndBold() { return GetBuffer().EndBold(); }
1142 Begins using italic.
1144 bool BeginItalic() { return GetBuffer().BeginItalic(); }
1149 bool EndItalic() { return GetBuffer().EndItalic(); }
1152 Begins using underlining.
1154 bool BeginUnderline() { return GetBuffer().BeginUnderline(); }
1157 End applying underlining.
1159 bool EndUnderline() { return GetBuffer().EndUnderline(); }
1162 Begins using the given point size.
1164 bool BeginFontSize(int pointSize
) { return GetBuffer().BeginFontSize(pointSize
); }
1167 Ends using a point size.
1169 bool EndFontSize() { return GetBuffer().EndFontSize(); }
1172 Begins using this font.
1174 bool BeginFont(const wxFont
& font
) { return GetBuffer().BeginFont(font
); }
1179 bool EndFont() { return GetBuffer().EndFont(); }
1182 Begins using this colour.
1184 bool BeginTextColour(const wxColour
& colour
) { return GetBuffer().BeginTextColour(colour
); }
1187 Ends applying a text colour.
1189 bool EndTextColour() { return GetBuffer().EndTextColour(); }
1192 Begins using alignment.
1193 For alignment values, see wxTextAttr.
1195 bool BeginAlignment(wxTextAttrAlignment alignment
) { return GetBuffer().BeginAlignment(alignment
); }
1200 bool EndAlignment() { return GetBuffer().EndAlignment(); }
1203 Begins applying a left indent and subindent in tenths of a millimetre.
1204 The subindent is an offset from the left edge of the paragraph, and is
1205 used for all but the first line in a paragraph. A positive value will
1206 cause the first line to appear to the left of the subsequent lines, and
1207 a negative value will cause the first line to be indented to the right
1208 of the subsequent lines.
1210 wxRichTextBuffer uses indentation to render a bulleted item. The
1211 content of the paragraph, including the first line, starts at the
1212 @a leftIndent plus the @a leftSubIndent.
1215 The distance between the margin and the bullet.
1216 @param leftSubIndent
1217 The distance between the left edge of the bullet and the left edge
1218 of the actual paragraph.
1220 bool BeginLeftIndent(int leftIndent
, int leftSubIndent
= 0) { return GetBuffer().BeginLeftIndent(leftIndent
, leftSubIndent
); }
1225 bool EndLeftIndent() { return GetBuffer().EndLeftIndent(); }
1228 Begins a right indent, specified in tenths of a millimetre.
1230 bool BeginRightIndent(int rightIndent
) { return GetBuffer().BeginRightIndent(rightIndent
); }
1235 bool EndRightIndent() { return GetBuffer().EndRightIndent(); }
1238 Begins paragraph spacing; pass the before-paragraph and after-paragraph spacing
1239 in tenths of a millimetre.
1241 bool BeginParagraphSpacing(int before
, int after
) { return GetBuffer().BeginParagraphSpacing(before
, after
); }
1244 Ends paragraph spacing.
1246 bool EndParagraphSpacing() { return GetBuffer().EndParagraphSpacing(); }
1249 Begins appling line spacing. @e spacing is a multiple, where 10 means
1250 single-spacing, 15 means 1.5 spacing, and 20 means double spacing.
1252 The ::wxTextAttrLineSpacing constants are defined for convenience.
1254 bool BeginLineSpacing(int lineSpacing
) { return GetBuffer().BeginLineSpacing(lineSpacing
); }
1259 bool EndLineSpacing() { return GetBuffer().EndLineSpacing(); }
1262 Begins a numbered bullet.
1264 This call will be needed for each item in the list, and the
1265 application should take care of incrementing the numbering.
1267 @a bulletNumber is a number, usually starting with 1.
1268 @a leftIndent and @a leftSubIndent are values in tenths of a millimetre.
1269 @a bulletStyle is a bitlist of the ::wxTextAttrBulletStyle values.
1271 wxRichTextBuffer uses indentation to render a bulleted item.
1272 The left indent is the distance between the margin and the bullet.
1273 The content of the paragraph, including the first line, starts
1274 at leftMargin + leftSubIndent.
1275 So the distance between the left edge of the bullet and the
1276 left of the actual paragraph is leftSubIndent.
1278 bool BeginNumberedBullet(int bulletNumber
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
)
1279 { return GetBuffer().BeginNumberedBullet(bulletNumber
, leftIndent
, leftSubIndent
, bulletStyle
); }
1282 Ends application of a numbered bullet.
1284 bool EndNumberedBullet() { return GetBuffer().EndNumberedBullet(); }
1287 Begins applying a symbol bullet, using a character from the current font.
1288 See BeginNumberedBullet() for an explanation of how indentation is used
1289 to render the bulleted paragraph.
1291 bool BeginSymbolBullet(const wxString
& symbol
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_SYMBOL
)
1292 { return GetBuffer().BeginSymbolBullet(symbol
, leftIndent
, leftSubIndent
, bulletStyle
); }
1295 Ends applying a symbol bullet.
1297 bool EndSymbolBullet() { return GetBuffer().EndSymbolBullet(); }
1300 Begins applying a symbol bullet.
1302 bool BeginStandardBullet(const wxString
& bulletName
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_STANDARD
)
1303 { return GetBuffer().BeginStandardBullet(bulletName
, leftIndent
, leftSubIndent
, bulletStyle
); }
1306 Begins applying a standard bullet.
1308 bool EndStandardBullet() { return GetBuffer().EndStandardBullet(); }
1311 Begins using the named character style.
1313 bool BeginCharacterStyle(const wxString
& characterStyle
) { return GetBuffer().BeginCharacterStyle(characterStyle
); }
1316 Ends application of a named character style.
1318 bool EndCharacterStyle() { return GetBuffer().EndCharacterStyle(); }
1321 Begins applying the named paragraph style.
1323 bool BeginParagraphStyle(const wxString
& paragraphStyle
) { return GetBuffer().BeginParagraphStyle(paragraphStyle
); }
1326 Ends application of a named paragraph style.
1328 bool EndParagraphStyle() { return GetBuffer().EndParagraphStyle(); }
1331 Begins using a specified list style.
1332 Optionally, you can also pass a level and a number.
1334 bool BeginListStyle(const wxString
& listStyle
, int level
= 1, int number
= 1) { return GetBuffer().BeginListStyle(listStyle
, level
, number
); }
1337 Ends using a specified list style.
1339 bool EndListStyle() { return GetBuffer().EndListStyle(); }
1342 Begins applying wxTEXT_ATTR_URL to the content.
1344 Pass a URL and optionally, a character style to apply, since it is common
1345 to mark a URL with a familiar style such as blue text with underlining.
1347 bool BeginURL(const wxString
& url
, const wxString
& characterStyle
= wxEmptyString
) { return GetBuffer().BeginURL(url
, characterStyle
); }
1350 Ends applying a URL.
1352 bool EndURL() { return GetBuffer().EndURL(); }
1355 Sets the default style to the style under the cursor.
1357 bool SetDefaultStyleToCursorStyle();
1360 Cancels any selection.
1362 virtual void SelectNone();
1365 Selects the word at the given character position.
1367 virtual bool SelectWord(long position
);
1370 Returns the selection range in character positions. -1, -1 means no selection.
1372 The range is in API convention, i.e. a single character selection is denoted
1375 wxRichTextRange
GetSelectionRange() const;
1378 Sets the selection to the given range.
1379 The end point of range is specified as the last character position of the span
1382 So, for example, to set the selection for a character at position 5, use the
1385 void SetSelectionRange(const wxRichTextRange
& range
);
1388 Returns the selection range in character positions. -2, -2 means no selection
1389 -1, -1 means select everything.
1390 The range is in internal format, i.e. a single character selection is denoted
1393 wxRichTextRange
GetInternalSelectionRange() const { return m_selection
.GetRange(); }
1396 Sets the selection range in character positions. -2, -2 means no selection
1397 -1, -1 means select everything.
1398 The range is in internal format, i.e. a single character selection is denoted
1401 void SetInternalSelectionRange(const wxRichTextRange
& range
) { m_selection
.Set(range
, GetFocusObject()); }
1404 Adds a new paragraph of text to the end of the buffer.
1406 virtual wxRichTextRange
AddParagraph(const wxString
& text
);
1409 Adds an image to the control's buffer.
1411 virtual wxRichTextRange
AddImage(const wxImage
& image
);
1414 Lays out the buffer, which must be done before certain operations, such as
1415 setting the caret position.
1416 This function should not normally be required by the application.
1418 virtual bool LayoutContent(bool onlyVisibleRect
= false);
1421 Move the caret to the given character position.
1423 Please note that this does not update the current editing style
1424 from the new position; to do that, call wxRichTextCtrl::SetInsertionPoint instead.
1426 virtual bool MoveCaret(long pos
, bool showAtLineStart
= false, wxRichTextParagraphLayoutBox
* container
= NULL
);
1431 virtual bool MoveRight(int noPositions
= 1, int flags
= 0);
1436 virtual bool MoveLeft(int noPositions
= 1, int flags
= 0);
1439 Moves to the start of the paragraph.
1441 virtual bool MoveUp(int noLines
= 1, int flags
= 0);
1444 Moves the caret down.
1446 virtual bool MoveDown(int noLines
= 1, int flags
= 0);
1449 Moves to the end of the line.
1451 virtual bool MoveToLineEnd(int flags
= 0);
1454 Moves to the start of the line.
1456 virtual bool MoveToLineStart(int flags
= 0);
1459 Moves to the end of the paragraph.
1461 virtual bool MoveToParagraphEnd(int flags
= 0);
1464 Moves to the start of the paragraph.
1466 virtual bool MoveToParagraphStart(int flags
= 0);
1469 Moves to the start of the buffer.
1471 virtual bool MoveHome(int flags
= 0);
1474 Moves to the end of the buffer.
1476 virtual bool MoveEnd(int flags
= 0);
1479 Moves one or more pages up.
1481 virtual bool PageUp(int noPages
= 1, int flags
= 0);
1484 Moves one or more pages down.
1486 virtual bool PageDown(int noPages
= 1, int flags
= 0);
1489 Moves a number of words to the left.
1491 virtual bool WordLeft(int noPages
= 1, int flags
= 0);
1494 Move a nuber of words to the right.
1496 virtual bool WordRight(int noPages
= 1, int flags
= 0);
1500 Returns the buffer associated with the control.
1502 wxRichTextBuffer
& GetBuffer() { return m_buffer
; }
1503 const wxRichTextBuffer
& GetBuffer() const { return m_buffer
; }
1507 Starts batching undo history for commands.
1509 virtual bool BeginBatchUndo(const wxString
& cmdName
) { return m_buffer
.BeginBatchUndo(cmdName
); }
1512 Ends batching undo command history.
1514 virtual bool EndBatchUndo() { return m_buffer
.EndBatchUndo(); }
1517 Returns @true if undo commands are being batched.
1519 virtual bool BatchingUndo() const { return m_buffer
.BatchingUndo(); }
1522 Starts suppressing undo history for commands.
1524 virtual bool BeginSuppressUndo() { return m_buffer
.BeginSuppressUndo(); }
1527 Ends suppressing undo command history.
1529 virtual bool EndSuppressUndo() { return m_buffer
.EndSuppressUndo(); }
1532 Returns @true if undo history suppression is on.
1534 virtual bool SuppressingUndo() const { return m_buffer
.SuppressingUndo(); }
1537 Test if this whole range has character attributes of the specified kind.
1538 If any of the attributes are different within the range, the test fails.
1540 You can use this to implement, for example, bold button updating.
1541 @a style must have flags indicating which attributes are of interest.
1543 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
1545 return GetBuffer().HasCharacterAttributes(range
.ToInternal(), style
);
1549 Test if this whole range has paragraph attributes of the specified kind.
1550 If any of the attributes are different within the range, the test fails.
1551 You can use this to implement, for example, centering button updating.
1552 @a style must have flags indicating which attributes are of interest.
1554 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
1556 return GetBuffer().HasParagraphAttributes(range
.ToInternal(), style
);
1560 Returns @true if all of the selection, or the content at the caret position, is bold.
1562 virtual bool IsSelectionBold();
1565 Returns @true if all of the selection, or the content at the caret position, is italic.
1567 virtual bool IsSelectionItalics();
1570 Returns @true if all of the selection, or the content at the caret position, is underlined.
1572 virtual bool IsSelectionUnderlined();
1575 Returns @true if all of the selection, or the content at the current caret position, has the supplied wxTextAttrEffects flag(s).
1577 virtual bool DoesSelectionHaveTextEffectFlag(int flag
);
1580 Returns @true if all of the selection, or the content at the caret position, is aligned according to the specified flag.
1582 virtual bool IsSelectionAligned(wxTextAttrAlignment alignment
);
1585 Apples bold to the selection or default style (undoable).
1587 virtual bool ApplyBoldToSelection();
1590 Applies italic to the selection or default style (undoable).
1592 virtual bool ApplyItalicToSelection();
1595 Applies underline to the selection or default style (undoable).
1597 virtual bool ApplyUnderlineToSelection();
1600 Applies one or more wxTextAttrEffects flags to the selection (undoable).
1601 If there is no selection, it is applied to the default style.
1603 virtual bool ApplyTextEffectToSelection(int flags
);
1606 Applies the given alignment to the selection or the default style (undoable).
1607 For alignment values, see wxTextAttr.
1609 virtual bool ApplyAlignmentToSelection(wxTextAttrAlignment alignment
);
1612 Applies the style sheet to the buffer, matching paragraph styles in the sheet
1613 against named styles in the buffer.
1615 This might be useful if the styles have changed.
1616 If @a sheet is @NULL, the sheet set with SetStyleSheet() is used.
1617 Currently this applies paragraph styles only.
1619 virtual bool ApplyStyle(wxRichTextStyleDefinition
* def
);
1622 Sets the style sheet associated with the control.
1623 A style sheet allows named character and paragraph styles to be applied.
1625 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
) { GetBuffer().SetStyleSheet(styleSheet
); }
1628 Returns the style sheet associated with the control, if any.
1629 A style sheet allows named character and paragraph styles to be applied.
1631 wxRichTextStyleSheet
* GetStyleSheet() const { return GetBuffer().GetStyleSheet(); }
1634 Push the style sheet to top of stack.
1636 bool PushStyleSheet(wxRichTextStyleSheet
* styleSheet
) { return GetBuffer().PushStyleSheet(styleSheet
); }
1639 Pops the style sheet from top of stack.
1641 wxRichTextStyleSheet
* PopStyleSheet() { return GetBuffer().PopStyleSheet(); }
1644 Applies the style sheet to the buffer, for example if the styles have changed.
1646 bool ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
= NULL
);
1649 Shows the given context menu, optionally adding appropriate property-editing commands for the current position in the object hierarchy.
1651 virtual bool ShowContextMenu(wxMenu
* menu
, const wxPoint
& pt
, bool addPropertyCommands
= true);
1654 Prepares the context menu, optionally adding appropriate property-editing commands.
1655 Returns the number of property commands added.
1657 virtual int PrepareContextMenu(wxMenu
* menu
, const wxPoint
& pt
, bool addPropertyCommands
= true);
1660 Returns @true if we can edit the object's properties via a GUI.
1662 virtual bool CanEditProperties(wxRichTextObject
* obj
) const { return obj
->CanEditProperties(); }
1665 Edits the object's properties via a GUI.
1667 virtual bool EditProperties(wxRichTextObject
* obj
, wxWindow
* parent
) { return obj
->EditProperties(parent
, & GetBuffer()); }
1670 Gets the object's properties menu label.
1672 virtual wxString
GetPropertiesMenuLabel(wxRichTextObject
* obj
) { return obj
->GetPropertiesMenuLabel(); }
1675 Prepares the content just before insertion (or after buffer reset). Called by the same function in wxRichTextBuffer.
1676 Currently is only called if undo mode is on.
1678 virtual void PrepareContent(wxRichTextParagraphLayoutBox
& WXUNUSED(container
)) {}
1681 Can we delete this range?
1682 Sends an event to the control.
1684 virtual bool CanDeleteRange(wxRichTextParagraphLayoutBox
& container
, const wxRichTextRange
& range
) const;
1687 Can we insert content at this position?
1688 Sends an event to the control.
1690 virtual bool CanInsertContent(wxRichTextParagraphLayoutBox
& container
, long pos
) const;
1693 Enable or disable the vertical scrollbar.
1695 virtual void EnableVerticalScrollbar(bool enable
);
1698 Returns @true if the vertical scrollbar is enabled.
1700 virtual bool GetVerticalScrollbarEnabled() const { return m_verticalScrollbarEnabled
; }
1703 Sets the scale factor for displaying fonts, for example for more comfortable
1706 void SetFontScale(double fontScale
, bool refresh
= false);
1709 Returns the scale factor for displaying fonts, for example for more comfortable
1712 double GetFontScale() const { return GetBuffer().GetFontScale(); }
1715 Sets the scale factor for displaying certain dimensions such as indentation and
1716 inter-paragraph spacing. This can be useful when editing in a small control
1717 where you still want legible text, but a minimum of wasted white space.
1719 void SetDimensionScale(double dimScale
, bool refresh
= false);
1722 Returns the scale factor for displaying certain dimensions such as indentation
1723 and inter-paragraph spacing.
1725 double GetDimensionScale() const { return GetBuffer().GetDimensionScale(); }
1728 Sets an overall scale factor for displaying and editing the content.
1730 void SetScale(double scale
, bool refresh
= false);
1733 Returns an overall scale factor for displaying and editing the content.
1735 double GetScale() const { return m_scale
; }
1738 Returns an unscaled point.
1740 wxPoint
GetUnscaledPoint(const wxPoint
& pt
) const;
1743 Returns a scaled point.
1745 wxPoint
GetScaledPoint(const wxPoint
& pt
) const;
1748 Returns an unscaled size.
1750 wxSize
GetUnscaledSize(const wxSize
& sz
) const;
1753 Returns a scaled size.
1755 wxSize
GetScaledSize(const wxSize
& sz
) const;
1758 Returns an unscaled rectangle.
1760 wxRect
GetUnscaledRect(const wxRect
& rect
) const;
1763 Returns a scaled rectangle.
1765 wxRect
GetScaledRect(const wxRect
& rect
) const;
1768 Returns @true if this control can use virtual attributes and virtual text.
1769 The default is @false.
1771 bool GetVirtualAttributesEnabled() const { return m_useVirtualAttributes
; }
1774 Pass @true to let the control use virtual attributes.
1775 The default is @false.
1777 void EnableVirtualAttributes(bool b
) { m_useVirtualAttributes
= b
; }
1782 Sends the event to the control.
1784 void Command(wxCommandEvent
& event
);
1787 Loads the first dropped file.
1789 void OnDropFiles(wxDropFilesEvent
& event
);
1791 void OnCaptureLost(wxMouseCaptureLostEvent
& event
);
1792 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
1795 Standard handler for the wxID_CUT command.
1797 void OnCut(wxCommandEvent
& event
);
1800 Standard handler for the wxID_COPY command.
1802 void OnCopy(wxCommandEvent
& event
);
1805 Standard handler for the wxID_PASTE command.
1807 void OnPaste(wxCommandEvent
& event
);
1810 Standard handler for the wxID_UNDO command.
1812 void OnUndo(wxCommandEvent
& event
);
1815 Standard handler for the wxID_REDO command.
1817 void OnRedo(wxCommandEvent
& event
);
1820 Standard handler for the wxID_SELECTALL command.
1822 void OnSelectAll(wxCommandEvent
& event
);
1825 Standard handler for property commands.
1827 void OnProperties(wxCommandEvent
& event
);
1830 Standard handler for the wxID_CLEAR command.
1832 void OnClear(wxCommandEvent
& event
);
1835 Standard update handler for the wxID_CUT command.
1837 void OnUpdateCut(wxUpdateUIEvent
& event
);
1840 Standard update handler for the wxID_COPY command.
1842 void OnUpdateCopy(wxUpdateUIEvent
& event
);
1845 Standard update handler for the wxID_PASTE command.
1847 void OnUpdatePaste(wxUpdateUIEvent
& event
);
1850 Standard update handler for the wxID_UNDO command.
1852 void OnUpdateUndo(wxUpdateUIEvent
& event
);
1855 Standard update handler for the wxID_REDO command.
1857 void OnUpdateRedo(wxUpdateUIEvent
& event
);
1860 Standard update handler for the wxID_SELECTALL command.
1862 void OnUpdateSelectAll(wxUpdateUIEvent
& event
);
1865 Standard update handler for property commands.
1868 void OnUpdateProperties(wxUpdateUIEvent
& event
);
1871 Standard update handler for the wxID_CLEAR command.
1873 void OnUpdateClear(wxUpdateUIEvent
& event
);
1876 Shows a standard context menu with undo, redo, cut, copy, paste, clear, and
1877 select all commands.
1879 void OnContextMenu(wxContextMenuEvent
& event
);
1884 void OnPaint(wxPaintEvent
& event
);
1885 void OnEraseBackground(wxEraseEvent
& event
);
1888 void OnLeftClick(wxMouseEvent
& event
);
1891 void OnLeftUp(wxMouseEvent
& event
);
1894 void OnMoveMouse(wxMouseEvent
& event
);
1896 // Left-double-click
1897 void OnLeftDClick(wxMouseEvent
& event
);
1900 void OnMiddleClick(wxMouseEvent
& event
);
1903 void OnRightClick(wxMouseEvent
& event
);
1906 void OnChar(wxKeyEvent
& event
);
1909 void OnSize(wxSizeEvent
& event
);
1911 // Setting/losing focus
1912 void OnSetFocus(wxFocusEvent
& event
);
1913 void OnKillFocus(wxFocusEvent
& event
);
1915 // Idle-time processing
1916 void OnIdle(wxIdleEvent
& event
);
1919 void OnScroll(wxScrollWinEvent
& event
);
1922 Sets the font, and also the basic and default attributes
1923 (see wxRichTextCtrl::SetDefaultStyle).
1925 virtual bool SetFont(const wxFont
& font
);
1928 A helper function setting up scrollbars, for example after a resize.
1930 virtual void SetupScrollbars(bool atTop
= false);
1933 Helper function implementing keyboard navigation.
1935 virtual bool KeyboardNavigate(int keyCode
, int flags
);
1938 Paints the background.
1940 virtual void PaintBackground(wxDC
& dc
);
1943 Other user defined painting after everything else (i.e. all text) is painted.
1947 virtual void PaintAboveContent(wxDC
& WXUNUSED(dc
)) {}
1949 #if wxRICHTEXT_BUFFERED_PAINTING
1951 Recreates the buffer bitmap if necessary.
1953 virtual bool RecreateBuffer(const wxSize
& size
= wxDefaultSize
);
1957 virtual void DoWriteText(const wxString
& value
, int flags
= 0);
1959 // Should we inherit colours?
1960 virtual bool ShouldInheritColours() const { return false; }
1963 Internal function to position the visible caret according to the current caret
1966 virtual void PositionCaret(wxRichTextParagraphLayoutBox
* container
= NULL
);
1969 Helper function for extending the selection, returning @true if the selection
1970 was changed. Selections are in caret positions.
1972 virtual bool ExtendSelection(long oldPosition
, long newPosition
, int flags
);
1975 Scrolls @a position into view. This function takes a caret position.
1977 virtual bool ScrollIntoView(long position
, int keyCode
);
1980 Refreshes the area affected by a selection change.
1982 bool RefreshForSelectionChange(const wxRichTextSelection
& oldSelection
, const wxRichTextSelection
& newSelection
);
1985 Sets the caret position.
1987 The caret position is the character position just before the caret.
1988 A value of -1 means the caret is at the start of the buffer.
1989 Please note that this does not update the current editing style
1990 from the new position or cause the actual caret to be refreshed; to do that,
1991 call wxRichTextCtrl::SetInsertionPoint instead.
1993 void SetCaretPosition(long position
, bool showAtLineStart
= false) ;
1996 Returns the current caret position.
1998 long GetCaretPosition() const { return m_caretPosition
; }
2001 The adjusted caret position is the character position adjusted to take
2002 into account whether we're at the start of a paragraph, in which case
2003 style information should be taken from the next position, not current one.
2005 long GetAdjustedCaretPosition(long caretPos
) const;
2008 Move the caret one visual step forward: this may mean setting a flag
2009 and keeping the same position if we're going from the end of one line
2010 to the start of the next, which may be the exact same caret position.
2012 void MoveCaretForward(long oldPosition
) ;
2015 Move the caret one visual step forward: this may mean setting a flag
2016 and keeping the same position if we're going from the end of one line
2017 to the start of the next, which may be the exact same caret position.
2019 void MoveCaretBack(long oldPosition
) ;
2022 Returns the caret height and position for the given character position.
2023 If container is null, the current focus object will be used.
2026 In wxPerl this method is implemented as
2027 GetCaretPositionForIndex(@a position) returning a
2028 2-element list (ok, rect).
2031 bool GetCaretPositionForIndex(long position
, wxRect
& rect
, wxRichTextParagraphLayoutBox
* container
= NULL
);
2034 Internal helper function returning the line for the visible caret position.
2035 If the caret is shown at the very end of the line, it means the next character
2036 is actually on the following line.
2037 So this function gets the line we're expecting to find if this is the case.
2039 wxRichTextLine
* GetVisibleLineForCaretPosition(long caretPosition
) const;
2042 Gets the command processor associated with the control's buffer.
2044 wxCommandProcessor
* GetCommandProcessor() const { return GetBuffer().GetCommandProcessor(); }
2047 Deletes content if there is a selection, e.g. when pressing a key.
2048 Returns the new caret position in @e newPos, or leaves it if there
2049 was no action. This is undoable.
2052 In wxPerl this method takes no arguments and returns a 2-element
2056 bool DeleteSelectedContent(long* newPos
= NULL
);
2059 Transforms logical (unscrolled) position to physical window position.
2061 wxPoint
GetPhysicalPoint(const wxPoint
& ptLogical
) const;
2064 Transforms physical window position to logical (unscrolled) position.
2066 wxPoint
GetLogicalPoint(const wxPoint
& ptPhysical
) const;
2069 Helper function for finding the caret position for the next word.
2070 Direction is 1 (forward) or -1 (backwards).
2072 virtual long FindNextWordPosition(int direction
= 1) const;
2075 Returns @true if the given position is visible on the screen.
2077 bool IsPositionVisible(long pos
) const;
2080 Returns the first visible position in the current view.
2082 long GetFirstVisiblePosition() const;
2085 Returns the caret position since the default formatting was changed. As
2086 soon as this position changes, we no longer reflect the default style
2087 in the UI. A value of -2 means that we should only reflect the style of the
2088 content under the caret.
2090 long GetCaretPositionForDefaultStyle() const { return m_caretPositionForDefaultStyle
; }
2093 Set the caret position for the default style that the user is selecting.
2095 void SetCaretPositionForDefaultStyle(long pos
) { m_caretPositionForDefaultStyle
= pos
; }
2098 Returns @true if the user has recently set the default style without moving
2099 the caret, and therefore the UI needs to reflect the default style and not
2100 the style at the caret.
2102 Below is an example of code that uses this function to determine whether the UI
2103 should show that the current style is bold.
2105 @see SetAndShowDefaultStyle().
2107 bool IsDefaultStyleShowing() const { return m_caretPositionForDefaultStyle
!= -2; }
2110 Sets @a attr as the default style and tells the control that the UI should
2111 reflect this attribute until the user moves the caret.
2113 @see IsDefaultStyleShowing().
2115 void SetAndShowDefaultStyle(const wxRichTextAttr
& attr
)
2117 SetDefaultStyle(attr
);
2118 SetCaretPositionForDefaultStyle(GetCaretPosition());
2122 Returns the first visible point in the window.
2124 wxPoint
GetFirstVisiblePoint() const;
2128 Returns the content of the entire control as a string.
2130 virtual wxString
GetValue() const;
2133 Replaces existing content with the given text.
2135 virtual void SetValue(const wxString
& value
);
2138 Call this function to prevent refresh and allow fast updates, and then Thaw() to
2139 refresh the control.
2144 Call this function to end a Freeze and refresh the display.
2149 Returns @true if Freeze has been called without a Thaw.
2151 bool IsFrozen() const;
2158 Processes the back key.
2160 virtual bool ProcessBackKey(wxKeyEvent
& event
, int flags
);
2163 Given a character position at which there is a list style, find the range
2164 encompassing the same list style by looking backwards and forwards.
2166 virtual wxRichTextRange
FindRangeForList(long pos
, bool& isNumberedList
);
2169 Sets up the caret for the given position and container, after a mouse click.
2171 bool SetCaretPositionAfterClick(wxRichTextParagraphLayoutBox
* container
, long position
, int hitTestFlags
, bool extendSelection
= false);
2174 Find the caret position for the combination of hit-test flags and character position.
2175 Returns the caret position and also an indication of where to place the caret (caretLineStart)
2176 since this is ambiguous (same position used for end of line and start of next).
2178 long FindCaretPositionForCharacterPosition(long position
, int hitTestFlags
, wxRichTextParagraphLayoutBox
* container
,
2179 bool& caretLineStart
);
2182 Processes mouse movement in order to change the cursor
2184 virtual bool ProcessMouseMovement(wxRichTextParagraphLayoutBox
* container
, wxRichTextObject
* obj
, long position
, const wxPoint
& pos
);
2187 Font names take a long time to retrieve, so cache them (on demand).
2189 static const wxArrayString
& GetAvailableFontNames();
2192 Clears the cache of available font names.
2194 static void ClearAvailableFontNames();
2196 WX_FORWARD_TO_SCROLL_HELPER()
2198 // implement wxTextEntry methods
2199 virtual wxString
DoGetValue() const;
2202 // implement the wxTextEntry pure virtual method
2203 virtual wxWindow
*GetEditableWindow() { return this; }
2205 // margins functions
2206 virtual bool DoSetMargins(const wxPoint
& pt
);
2207 virtual wxPoint
DoGetMargins() const;
2209 // FIXME: this does not work, it allows this code to compile but will fail
2211 #ifndef __WXUNIVERSAL__
2213 virtual WXHWND
GetEditHWND() const { return GetHWND(); }
2216 virtual WXWidget
GetTextWidget() const { return NULL
; }
2219 virtual GtkEditable
*GetEditable() const { return NULL
; }
2220 virtual GtkEntry
*GetEntry() const { return NULL
; }
2222 #endif // !__WXUNIVERSAL__
2228 Currently this simply returns @c wxSize(10, 10).
2230 virtual wxSize
DoGetBestSize() const ;
2232 virtual void DoSetValue(const wxString
& value
, int flags
= 0);
2234 virtual void DoThaw();
2239 #if wxRICHTEXT_BUFFERED_PAINTING
2241 wxBitmap m_bufferBitmap
;
2245 wxRichTextBuffer m_buffer
;
2247 wxMenu
* m_contextMenu
;
2249 /// Caret position (1 less than the character position, so -1 is the
2250 /// first caret position).
2251 long m_caretPosition
;
2253 /// Caret position when the default formatting has been changed. As
2254 /// soon as this position changes, we no longer reflect the default style
2256 long m_caretPositionForDefaultStyle
;
2258 /// Selection range in character positions. -2, -2 means no selection.
2259 wxRichTextSelection m_selection
;
2261 wxRichTextCtrlSelectionState m_selectionState
;
2263 /// Anchor so we know how to extend the selection
2264 /// It's a caret position since it's between two characters.
2265 long m_selectionAnchor
;
2267 /// Anchor object if selecting multiple container objects, such as grid cells.
2268 wxRichTextObject
* m_selectionAnchorObject
;
2270 /// Are we editable?
2273 /// Can we use virtual attributes and virtual text?
2274 bool m_useVirtualAttributes
;
2276 /// Is the vertical scrollbar enabled?
2277 bool m_verticalScrollbarEnabled
;
2279 /// Are we showing the caret position at the start of a line
2280 /// instead of at the end of the previous one?
2281 bool m_caretAtLineStart
;
2283 /// Are we dragging (i.e. extending) a selection?
2286 #if wxUSE_DRAG_AND_DROP
2287 /// Are we trying to start Drag'n'Drop?
2290 /// Initial position when starting Drag'n'Drop
2291 wxPoint m_dragStartPoint
;
2294 /// Initial time when starting Drag'n'Drop
2295 wxDateTime m_dragStartTime
;
2296 #endif // wxUSE_DATETIME
2297 #endif // wxUSE_DRAG_AND_DROP
2299 /// Do we need full layout in idle?
2300 bool m_fullLayoutRequired
;
2301 wxLongLong m_fullLayoutTime
;
2302 long m_fullLayoutSavedPosition
;
2304 /// Threshold for doing delayed layout
2305 long m_delayedLayoutThreshold
;
2308 wxCursor m_textCursor
;
2309 wxCursor m_urlCursor
;
2311 static wxArrayString sm_availableFontNames
;
2313 wxRichTextContextMenuPropertiesInfo m_contextMenuPropertiesInfo
;
2315 /// The object that currently has the editing focus
2316 wxRichTextParagraphLayoutBox
* m_focusObject
;
2318 /// An overall scale factor
2322 #if wxUSE_DRAG_AND_DROP
2323 class WXDLLIMPEXP_RICHTEXT wxRichTextDropSource
: public wxDropSource
2326 wxRichTextDropSource(wxDataObject
& data
, wxRichTextCtrl
* tc
)
2327 : wxDropSource(data
, tc
), m_rtc(tc
) {}
2330 bool GiveFeedback(wxDragResult effect
);
2332 wxRichTextCtrl
* m_rtc
;
2335 class WXDLLIMPEXP_RICHTEXT wxRichTextDropTarget
: public wxDropTarget
2338 wxRichTextDropTarget(wxRichTextCtrl
* tc
)
2339 : wxDropTarget(new wxRichTextBufferDataObject(new wxRichTextBuffer
)), m_rtc(tc
) {}
2341 virtual wxDragResult
OnData(wxCoord x
, wxCoord y
, wxDragResult def
)
2345 m_rtc
->OnDrop(x
, y
, def
, m_dataObject
);
2350 wxRichTextCtrl
* m_rtc
;
2352 #endif // wxUSE_DRAG_AND_DROP
2355 @class wxRichTextEvent
2357 This is the event class for wxRichTextCtrl notifications.
2359 @beginEventTable{wxRichTextEvent}
2360 @event{EVT_RICHTEXT_LEFT_CLICK(id, func)}
2361 Process a @c wxEVT_RICHTEXT_LEFT_CLICK event, generated when the user
2362 releases the left mouse button over an object.
2363 @event{EVT_RICHTEXT_RIGHT_CLICK(id, func)}
2364 Process a @c wxEVT_RICHTEXT_RIGHT_CLICK event, generated when the user
2365 releases the right mouse button over an object.
2366 @event{EVT_RICHTEXT_MIDDLE_CLICK(id, func)}
2367 Process a @c wxEVT_RICHTEXT_MIDDLE_CLICK event, generated when the user
2368 releases the middle mouse button over an object.
2369 @event{EVT_RICHTEXT_LEFT_DCLICK(id, func)}
2370 Process a @c wxEVT_RICHTEXT_LEFT_DCLICK event, generated when the user
2371 double-clicks an object.
2372 @event{EVT_RICHTEXT_RETURN(id, func)}
2373 Process a @c wxEVT_RICHTEXT_RETURN event, generated when the user
2374 presses the return key. Valid event functions: GetFlags, GetPosition.
2375 @event{EVT_RICHTEXT_CHARACTER(id, func)}
2376 Process a @c wxEVT_RICHTEXT_CHARACTER event, generated when the user
2377 presses a character key. Valid event functions: GetFlags, GetPosition, GetCharacter.
2378 @event{EVT_RICHTEXT_DELETE(id, func)}
2379 Process a @c wxEVT_RICHTEXT_DELETE event, generated when the user
2380 presses the backspace or delete key. Valid event functions: GetFlags, GetPosition.
2381 @event{EVT_RICHTEXT_STYLE_CHANGED(id, func)}
2382 Process a @c wxEVT_RICHTEXT_STYLE_CHANGED event, generated when
2383 styling has been applied to the control. Valid event functions: GetPosition, GetRange.
2384 @event{EVT_RICHTEXT_STYLESHEET_CHANGED(id, func)}
2385 Process a @c wxEVT_RICHTEXT_STYLESHEET_CHANGING event, generated
2386 when the control's stylesheet has changed, for example the user added,
2387 edited or deleted a style. Valid event functions: GetRange, GetPosition.
2388 @event{EVT_RICHTEXT_STYLESHEET_REPLACING(id, func)}
2389 Process a @c wxEVT_RICHTEXT_STYLESHEET_REPLACING event, generated
2390 when the control's stylesheet is about to be replaced, for example when
2391 a file is loaded into the control.
2392 Valid event functions: Veto, GetOldStyleSheet, GetNewStyleSheet.
2393 @event{EVT_RICHTEXT_STYLESHEET_REPLACED(id, func)}
2394 Process a @c wxEVT_RICHTEXT_STYLESHEET_REPLACED event, generated
2395 when the control's stylesheet has been replaced, for example when a file
2396 is loaded into the control.
2397 Valid event functions: GetOldStyleSheet, GetNewStyleSheet.
2398 @event{EVT_RICHTEXT_PROPERTIES_CHANGED(id, func)}
2399 Process a @c wxEVT_RICHTEXT_PROPERTIES_CHANGED event, generated when
2400 properties have been applied to the control. Valid event functions: GetPosition, GetRange.
2401 @event{EVT_RICHTEXT_CONTENT_INSERTED(id, func)}
2402 Process a @c wxEVT_RICHTEXT_CONTENT_INSERTED event, generated when
2403 content has been inserted into the control.
2404 Valid event functions: GetPosition, GetRange.
2405 @event{EVT_RICHTEXT_CONTENT_DELETED(id, func)}
2406 Process a @c wxEVT_RICHTEXT_CONTENT_DELETED event, generated when
2407 content has been deleted from the control.
2408 Valid event functions: GetPosition, GetRange.
2409 @event{EVT_RICHTEXT_BUFFER_RESET(id, func)}
2410 Process a @c wxEVT_RICHTEXT_BUFFER_RESET event, generated when the
2411 buffer has been reset by deleting all content.
2412 You can use this to set a default style for the first new paragraph.
2413 @event{EVT_RICHTEXT_SELECTION_CHANGED(id, func)}
2414 Process a @c wxEVT_RICHTEXT_SELECTION_CHANGED event, generated when the
2415 selection range has changed.
2416 @event{EVT_RICHTEXT_FOCUS_OBJECT_CHANGED(id, func)}
2417 Process a @c wxEVT_RICHTEXT_FOCUS_OBJECT_CHANGED event, generated when the
2418 current focus object has changed.
2421 @library{wxrichtext}
2422 @category{events,richtext}
2425 class WXDLLIMPEXP_RICHTEXT wxRichTextEvent
: public wxNotifyEvent
2432 The type of the event.
2434 Window identifier. The value @c wxID_ANY indicates a default value.
2436 wxRichTextEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0)
2437 : wxNotifyEvent(commandType
, winid
),
2438 m_flags(0), m_position(-1), m_oldStyleSheet(NULL
), m_newStyleSheet(NULL
),
2439 m_char((wxChar
) 0), m_container(NULL
), m_oldContainer(NULL
)
2445 wxRichTextEvent(const wxRichTextEvent
& event
)
2446 : wxNotifyEvent(event
),
2447 m_flags(event
.m_flags
), m_position(-1),
2448 m_oldStyleSheet(event
.m_oldStyleSheet
), m_newStyleSheet(event
.m_newStyleSheet
),
2449 m_char((wxChar
) 0), m_container(event
.m_container
), m_oldContainer(event
.m_oldContainer
)
2453 Returns the buffer position at which the event occured.
2455 long GetPosition() const { return m_position
; }
2458 Sets the buffer position variable.
2460 void SetPosition(long pos
) { m_position
= pos
; }
2463 Returns flags indicating modifier keys pressed.
2465 Possible values are @c wxRICHTEXT_CTRL_DOWN, @c wxRICHTEXT_SHIFT_DOWN, and @c wxRICHTEXT_ALT_DOWN.
2467 int GetFlags() const { return m_flags
; }
2470 Sets flags indicating modifier keys pressed.
2472 Possible values are @c wxRICHTEXT_CTRL_DOWN, @c wxRICHTEXT_SHIFT_DOWN, and @c wxRICHTEXT_ALT_DOWN.
2474 void SetFlags(int flags
) { m_flags
= flags
; }
2477 Returns the old style sheet.
2479 Can be used in a @c wxEVT_RICHTEXT_STYLESHEET_CHANGING or
2480 @c wxEVT_RICHTEXT_STYLESHEET_CHANGED event handler.
2482 wxRichTextStyleSheet
* GetOldStyleSheet() const { return m_oldStyleSheet
; }
2485 Sets the old style sheet variable.
2487 void SetOldStyleSheet(wxRichTextStyleSheet
* sheet
) { m_oldStyleSheet
= sheet
; }
2490 Returns the new style sheet.
2492 Can be used in a @c wxEVT_RICHTEXT_STYLESHEET_CHANGING or
2493 @c wxEVT_RICHTEXT_STYLESHEET_CHANGED event handler.
2495 wxRichTextStyleSheet
* GetNewStyleSheet() const { return m_newStyleSheet
; }
2498 Sets the new style sheet variable.
2500 void SetNewStyleSheet(wxRichTextStyleSheet
* sheet
) { m_newStyleSheet
= sheet
; }
2503 Gets the range for the current operation.
2505 const wxRichTextRange
& GetRange() const { return m_range
; }
2508 Sets the range variable.
2510 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
2513 Returns the character pressed, within a @c wxEVT_RICHTEXT_CHARACTER event.
2515 wxChar
GetCharacter() const { return m_char
; }
2518 Sets the character variable.
2520 void SetCharacter(wxChar ch
) { m_char
= ch
; }
2523 Returns the container for which the event is relevant.
2525 wxRichTextParagraphLayoutBox
* GetContainer() const { return m_container
; }
2528 Sets the container for which the event is relevant.
2530 void SetContainer(wxRichTextParagraphLayoutBox
* container
) { m_container
= container
; }
2533 Returns the old container, for a focus change event.
2535 wxRichTextParagraphLayoutBox
* GetOldContainer() const { return m_oldContainer
; }
2538 Sets the old container, for a focus change event.
2540 void SetOldContainer(wxRichTextParagraphLayoutBox
* container
) { m_oldContainer
= container
; }
2542 virtual wxEvent
*Clone() const { return new wxRichTextEvent(*this); }
2547 wxRichTextStyleSheet
* m_oldStyleSheet
;
2548 wxRichTextStyleSheet
* m_newStyleSheet
;
2549 wxRichTextRange m_range
;
2551 wxRichTextParagraphLayoutBox
* m_container
;
2552 wxRichTextParagraphLayoutBox
* m_oldContainer
;
2555 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxRichTextEvent
)
2559 * wxRichTextCtrl events
2561 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_LEFT_CLICK
, wxRichTextEvent
);
2562 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_RIGHT_CLICK
, wxRichTextEvent
);
2563 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_MIDDLE_CLICK
, wxRichTextEvent
);
2564 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_LEFT_DCLICK
, wxRichTextEvent
);
2565 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_RETURN
, wxRichTextEvent
);
2566 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_CHARACTER
, wxRichTextEvent
);
2567 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_DELETE
, wxRichTextEvent
);
2569 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_STYLESHEET_CHANGING
, wxRichTextEvent
);
2570 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_STYLESHEET_CHANGED
, wxRichTextEvent
);
2571 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_STYLESHEET_REPLACING
, wxRichTextEvent
);
2572 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_STYLESHEET_REPLACED
, wxRichTextEvent
);
2574 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_CONTENT_INSERTED
, wxRichTextEvent
);
2575 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_CONTENT_DELETED
, wxRichTextEvent
);
2576 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_STYLE_CHANGED
, wxRichTextEvent
);
2577 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_PROPERTIES_CHANGED
, wxRichTextEvent
);
2578 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_SELECTION_CHANGED
, wxRichTextEvent
);
2579 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_BUFFER_RESET
, wxRichTextEvent
);
2580 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_RICHTEXT
, wxEVT_RICHTEXT_FOCUS_OBJECT_CHANGED
, wxRichTextEvent
);
2582 typedef void (wxEvtHandler::*wxRichTextEventFunction
)(wxRichTextEvent
&);
2584 #define wxRichTextEventHandler(func) \
2585 wxEVENT_HANDLER_CAST(wxRichTextEventFunction, func)
2587 #define EVT_RICHTEXT_LEFT_CLICK(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_LEFT_CLICK, id, -1, wxRichTextEventHandler( fn ), NULL ),
2588 #define EVT_RICHTEXT_RIGHT_CLICK(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_RIGHT_CLICK, id, -1, wxRichTextEventHandler( fn ), NULL ),
2589 #define EVT_RICHTEXT_MIDDLE_CLICK(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_MIDDLE_CLICK, id, -1, wxRichTextEventHandler( fn ), NULL ),
2590 #define EVT_RICHTEXT_LEFT_DCLICK(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_LEFT_DCLICK, id, -1, wxRichTextEventHandler( fn ), NULL ),
2591 #define EVT_RICHTEXT_RETURN(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_RETURN, id, -1, wxRichTextEventHandler( fn ), NULL ),
2592 #define EVT_RICHTEXT_CHARACTER(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_CHARACTER, id, -1, wxRichTextEventHandler( fn ), NULL ),
2593 #define EVT_RICHTEXT_DELETE(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_DELETE, id, -1, wxRichTextEventHandler( fn ), NULL ),
2595 #define EVT_RICHTEXT_STYLESHEET_CHANGING(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_STYLESHEET_CHANGING, id, -1, wxRichTextEventHandler( fn ), NULL ),
2596 #define EVT_RICHTEXT_STYLESHEET_CHANGED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_STYLESHEET_CHANGED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2597 #define EVT_RICHTEXT_STYLESHEET_REPLACING(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_STYLESHEET_REPLACING, id, -1, wxRichTextEventHandler( fn ), NULL ),
2598 #define EVT_RICHTEXT_STYLESHEET_REPLACED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_STYLESHEET_REPLACED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2600 #define EVT_RICHTEXT_CONTENT_INSERTED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_CONTENT_INSERTED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2601 #define EVT_RICHTEXT_CONTENT_DELETED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_CONTENT_DELETED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2602 #define EVT_RICHTEXT_STYLE_CHANGED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_STYLE_CHANGED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2603 #define EVT_RICHTEXT_PROPERTIES_CHANGED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_PROPERTIES_CHANGED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2604 #define EVT_RICHTEXT_SELECTION_CHANGED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_SELECTION_CHANGED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2605 #define EVT_RICHTEXT_BUFFER_RESET(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_BUFFER_RESET, id, -1, wxRichTextEventHandler( fn ), NULL ),
2606 #define EVT_RICHTEXT_FOCUS_OBJECT_CHANGED(id, fn) wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_RICHTEXT_FOCUS_OBJECT_CHANGED, id, -1, wxRichTextEventHandler( fn ), NULL ),
2608 // old wxEVT_COMMAND_* constants
2609 #define wxEVT_COMMAND_RICHTEXT_LEFT_CLICK wxEVT_RICHTEXT_LEFT_CLICK
2610 #define wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK wxEVT_RICHTEXT_RIGHT_CLICK
2611 #define wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK wxEVT_RICHTEXT_MIDDLE_CLICK
2612 #define wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK wxEVT_RICHTEXT_LEFT_DCLICK
2613 #define wxEVT_COMMAND_RICHTEXT_RETURN wxEVT_RICHTEXT_RETURN
2614 #define wxEVT_COMMAND_RICHTEXT_CHARACTER wxEVT_RICHTEXT_CHARACTER
2615 #define wxEVT_COMMAND_RICHTEXT_DELETE wxEVT_RICHTEXT_DELETE
2616 #define wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING wxEVT_RICHTEXT_STYLESHEET_CHANGING
2617 #define wxEVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED wxEVT_RICHTEXT_STYLESHEET_CHANGED
2618 #define wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING wxEVT_RICHTEXT_STYLESHEET_REPLACING
2619 #define wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED wxEVT_RICHTEXT_STYLESHEET_REPLACED
2620 #define wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED wxEVT_RICHTEXT_CONTENT_INSERTED
2621 #define wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED wxEVT_RICHTEXT_CONTENT_DELETED
2622 #define wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED wxEVT_RICHTEXT_STYLE_CHANGED
2623 #define wxEVT_COMMAND_RICHTEXT_PROPERTIES_CHANGED wxEVT_RICHTEXT_PROPERTIES_CHANGED
2624 #define wxEVT_COMMAND_RICHTEXT_SELECTION_CHANGED wxEVT_RICHTEXT_SELECTION_CHANGED
2625 #define wxEVT_COMMAND_RICHTEXT_BUFFER_RESET wxEVT_RICHTEXT_BUFFER_RESET
2626 #define wxEVT_COMMAND_RICHTEXT_FOCUS_OBJECT_CHANGED wxEVT_RICHTEXT_FOCUS_OBJECT_CHANGED
2632 // _WX_RICHTEXTCTRL_H_