1 /////////////////////////////////////////////////////////////////////////////
2 // Name: richtext/richtextbuffer.h
3 // Purpose: interface of wxRichTextBuffer
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
12 * File types in wxRichText context.
14 enum wxRichTextFileType
16 wxRICHTEXT_TYPE_ANY
= 0,
25 * Flags determining the available space, passed to Layout
28 #define wxRICHTEXT_FIXED_WIDTH 0x01
29 #define wxRICHTEXT_FIXED_HEIGHT 0x02
30 #define wxRICHTEXT_VARIABLE_WIDTH 0x04
31 #define wxRICHTEXT_VARIABLE_HEIGHT 0x08
33 // Only lay out the part of the buffer that lies within
34 // the rect passed to Layout.
35 #define wxRICHTEXT_LAYOUT_SPECIFIED_RECT 0x10
38 * Flags to pass to Draw
41 // Ignore paragraph cache optimization, e.g. for printing purposes
42 // where one line may be drawn higher (on the next page) compared
43 // with the previous line
44 #define wxRICHTEXT_DRAW_IGNORE_CACHE 0x01
47 * Flags returned from hit-testing
49 enum wxRichTextHitTestFlags
51 /// The point was not on this object
52 wxRICHTEXT_HITTEST_NONE
= 0x01,
54 /// The point was before the position returned from HitTest
55 wxRICHTEXT_HITTEST_BEFORE
= 0x02,
57 /// The point was after the position returned from HitTest
58 wxRICHTEXT_HITTEST_AFTER
= 0x04,
60 /// The point was on the position returned from HitTest
61 wxRICHTEXT_HITTEST_ON
= 0x08,
63 /// The point was on space outside content
64 wxRICHTEXT_HITTEST_OUTSIDE
= 0x10
68 * Flags for GetRangeSize
71 #define wxRICHTEXT_FORMATTED 0x01
72 #define wxRICHTEXT_UNFORMATTED 0x02
73 #define wxRICHTEXT_CACHE_SIZE 0x04
74 #define wxRICHTEXT_HEIGHT_ONLY 0x08
77 * Flags for SetStyle/SetListStyle
80 #define wxRICHTEXT_SETSTYLE_NONE 0x00
82 // Specifies that this operation should be undoable
83 #define wxRICHTEXT_SETSTYLE_WITH_UNDO 0x01
85 // Specifies that the style should not be applied if the
86 // combined style at this point is already the style in question.
87 #define wxRICHTEXT_SETSTYLE_OPTIMIZE 0x02
89 // Specifies that the style should only be applied to paragraphs,
90 // and not the content. This allows content styling to be
91 // preserved independently from that of e.g. a named paragraph style.
92 #define wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY 0x04
94 // Specifies that the style should only be applied to characters,
95 // and not the paragraph. This allows content styling to be
96 // preserved independently from that of e.g. a named paragraph style.
97 #define wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY 0x08
99 // For SetListStyle only: specifies starting from the given number, otherwise
100 // deduces number from existing attributes
101 #define wxRICHTEXT_SETSTYLE_RENUMBER 0x10
103 // For SetListStyle only: specifies the list level for all paragraphs, otherwise
104 // the current indentation will be used
105 #define wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL 0x20
107 // Resets the existing style before applying the new style
108 #define wxRICHTEXT_SETSTYLE_RESET 0x40
110 // Removes the given style instead of applying it
111 #define wxRICHTEXT_SETSTYLE_REMOVE 0x80
114 * Flags for text insertion
117 #define wxRICHTEXT_INSERT_NONE 0x00
118 #define wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE 0x01
119 #define wxRICHTEXT_INSERT_INTERACTIVE 0x02
121 // A special flag telling the buffer to keep the first paragraph style
122 // as-is, when deleting a paragraph marker. In future we might pass a
123 // flag to InsertFragment and DeleteRange to indicate the appropriate mode.
124 #define wxTEXT_ATTR_KEEP_FIRST_PARA_STYLE 0x10000000
127 * Default superscript/subscript font multiplication factor
130 #define wxSCRIPT_MUL_FACTOR 1.5
134 @class wxRichTextBuffer
136 This class represents the whole buffer associated with a wxRichTextCtrl.
141 @see wxTextAttr, wxRichTextCtrl
143 class wxRichTextBuffer
: public wxRichTextParagraphLayoutBox
154 wxRichTextBuffer(const wxRichTextBuffer
& obj
);
159 virtual ~wxRichTextBuffer();
162 Adds an event handler to the buffer's list of handlers.
164 A buffer associated with a control has the control as the only event handler,
165 but the application is free to add more if further notification is required.
166 All handlers are notified of an event originating from the buffer, such as
167 the replacement of a style sheet during loading.
169 The buffer never deletes any of the event handlers, unless RemoveEventHandler()
170 is called with @true as the second argument.
172 bool AddEventHandler(wxEvtHandler
* handler
);
177 static void AddHandler(wxRichTextFileHandler
* handler
);
180 Adds a paragraph of text.
182 wxRichTextRange
AddParagraph(const wxString
& text
);
185 Returns @true if the buffer is currently collapsing commands into a single
188 virtual bool BatchingUndo() const;
191 Begins using alignment.
193 bool BeginAlignment(wxTextAttrAlignment alignment
);
196 Begins collapsing undo/redo commands. Note that this may not work properly
197 if combining commands that delete or insert content, changing ranges for
200 @a cmdName should be the name of the combined command that will appear
201 next to Undo and Redo in the edit menu.
203 virtual bool BeginBatchUndo(const wxString
& cmdName
);
211 Begins applying the named character style.
213 bool BeginCharacterStyle(const wxString
& characterStyle
);
216 Begins using this font.
218 bool BeginFont(const wxFont
& font
);
221 Begins using the given point size.
223 bool BeginFontSize(int pointSize
);
231 Begin using @a leftIndent for the left indent, and optionally @a leftSubIndent for
232 the sub-indent. Both are expressed in tenths of a millimetre.
234 The sub-indent is an offset from the left of the paragraph, and is used for all
235 but the first line in a paragraph. A positive value will cause the first line to appear
236 to the left of the subsequent lines, and a negative value will cause the first line to be
237 indented relative to the subsequent lines.
239 bool BeginLeftIndent(int leftIndent
, int leftSubIndent
= 0);
242 Begins line spacing using the specified value. @e spacing is a multiple, where
243 10 means single-spacing, 15 means 1.5 spacing, and 20 means double spacing.
245 The ::wxTextAttrLineSpacing enumeration values are defined for convenience.
247 bool BeginLineSpacing(int lineSpacing
);
250 Begins using a specified list style.
251 Optionally, you can also pass a level and a number.
253 bool BeginListStyle(const wxString
& listStyle
, int level
= 1,
257 Begins a numbered bullet.
259 This call will be needed for each item in the list, and the
260 application should take care of incrementing the numbering.
262 @a bulletNumber is a number, usually starting with 1.
263 @a leftIndent and @a leftSubIndent are values in tenths of a millimetre.
264 @a bulletStyle is a bitlist of the following values:
266 wxRichTextBuffer uses indentation to render a bulleted item.
267 The left indent is the distance between the margin and the bullet.
268 The content of the paragraph, including the first line, starts
269 at leftMargin + leftSubIndent.
270 So the distance between the left edge of the bullet and the
271 left of the actual paragraph is leftSubIndent.
273 bool BeginNumberedBullet(int bulletNumber
, int leftIndent
,
275 int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
);
278 Begins paragraph spacing; pass the before-paragraph and after-paragraph spacing
279 in tenths of a millimetre.
281 bool BeginParagraphSpacing(int before
, int after
);
284 Begins applying the named paragraph style.
286 bool BeginParagraphStyle(const wxString
& paragraphStyle
);
289 Begins a right indent, specified in tenths of a millimetre.
291 bool BeginRightIndent(int rightIndent
);
294 Begins applying a standard bullet, using one of the standard bullet names
295 (currently @c standard/circle or @c standard/square.
297 See BeginNumberedBullet() for an explanation of how indentation is used to
298 render the bulleted paragraph.
300 bool BeginStandardBullet(const wxString
& bulletName
,
303 int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_STANDARD
);
306 Begins using a specified style.
308 virtual bool BeginStyle(const wxTextAttr
& style
);
311 Begins suppressing undo/redo commands. The way undo is suppressed may be
312 implemented differently by each command.
313 If not dealt with by a command implementation, then it will be implemented
314 automatically by not storing the command in the undo history when the
315 action is submitted to the command processor.
317 virtual bool BeginSuppressUndo();
320 Begins applying a symbol bullet, using a character from the current font.
322 See BeginNumberedBullet() for an explanation of how indentation is used
323 to render the bulleted paragraph.
325 bool BeginSymbolBullet(wxChar symbol
, int leftIndent
,
327 int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_SYMBOL
);
330 Begins using the specified text foreground colour.
332 bool BeginTextColour(const wxColour
& colour
);
335 Begins applying wxTEXT_ATTR_URL to the content.
337 Pass a URL and optionally, a character style to apply, since it is common
338 to mark a URL with a familiar style such as blue text with underlining.
340 bool BeginURL(const wxString
& url
,
341 const wxString
& characterStyle
= wxEmptyString
);
344 Begins using underline.
346 bool BeginUnderline();
349 Returns @true if content can be pasted from the clipboard.
351 virtual bool CanPasteFromClipboard() const;
354 Cleans up the file handlers.
356 static void CleanUpHandlers();
361 virtual void Clear();
365 Clears the list style from the given range, clearing list-related attributes
366 and applying any named paragraph style associated with each paragraph.
368 @a flags is a bit list of the following:
369 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
371 @see SetListStyle(), PromoteList(), NumberList()
373 bool ClearListStyle(const wxRichTextRange
& range
,
374 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
375 bool ClearListStyle(const wxRichTextRange
& range
,
376 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
380 Clears the style stack.
382 virtual void ClearStyleStack();
387 virtual wxRichTextObject
* Clone() const;
390 Copies the given buffer.
392 void Copy(const wxRichTextBuffer
& obj
);
395 Copy the given range to the clipboard.
397 virtual bool CopyToClipboard(const wxRichTextRange
& range
);
400 Submits a command to delete the given range.
402 bool DeleteRangeWithUndo(const wxRichTextRange
& range
,
403 wxRichTextCtrl
* ctrl
);
407 Dumps the contents of the buffer for debugging purposes.
410 void Dump(wxTextOutputStream
& stream
);
419 Ends all styles that have been started with a Begin... command.
421 virtual bool EndAllStyles();
424 Ends collapsing undo/redo commands, and submits the combined command.
426 virtual bool EndBatchUndo();
434 Ends using the named character style.
436 bool EndCharacterStyle();
444 Ends using a point size.
454 Ends using a left indent.
456 bool EndLeftIndent();
459 Ends using a line spacing.
461 bool EndLineSpacing();
464 Ends using a specified list style.
469 Ends a numbered bullet.
471 bool EndNumberedBullet();
474 Ends paragraph spacing.
476 bool EndParagraphSpacing();
479 Ends applying a named character style.
481 bool EndParagraphStyle();
484 Ends using a right indent.
486 bool EndRightIndent();
489 Ends using a standard bullet.
491 bool EndStandardBullet();
494 Ends the current style.
496 virtual bool EndStyle();
499 Ends suppressing undo/redo commands.
501 virtual bool EndSuppressUndo();
504 Ends using a symbol bullet.
506 bool EndSymbolBullet();
509 Ends using a text foreground colour.
511 bool EndTextColour();
519 Ends using underline.
524 Finds a handler by type.
526 wxRichTextFileHandler
* FindHandler(int imageType
);
529 Finds a handler by extension and type.
531 wxRichTextFileHandler
* FindHandler(const wxString
& extension
,
535 Finds a handler by name.
537 static wxRichTextFileHandler
* FindHandler(const wxString
& name
);
540 Finds a handler by filename or, if supplied, type.
542 wxRichTextFileHandler
* FindHandlerFilenameOrType(const wxString
& filename
,
546 Gets the basic (overall) style.
548 This is the style of the whole buffer before further styles are applied,
549 unlike the default style, which only affects the style currently being
550 applied (for example, setting the default style to bold will cause
551 subsequently inserted text to be bold).
553 const wxTextAttr
GetBasicStyle() const;
556 Gets the collapsed command.
558 virtual wxRichTextCommand
* GetBatchedCommand() const;
561 Gets the command processor.
562 A text buffer always creates its own command processor when it is initialized.
564 wxCommandProcessor
* GetCommandProcessor() const;
567 Returns the current default style, affecting the style currently being applied
568 (for example, setting the default style to bold will cause subsequently
569 inserted text to be bold).
571 const wxTextAttr
GetDefaultStyle() const;
574 Gets a wildcard incorporating all visible handlers.
575 If @a types is present, it will be filled with the file type corresponding
576 to each filter. This can be used to determine the type to pass to LoadFile()
577 given a selected filter.
579 static wxString
GetExtWildcard(bool combine
= false, bool save
= false,
580 wxArrayInt
* types
= NULL
);
583 Returns the list of file handlers.
585 wxList
GetHandlers();
588 Returns the object to be used to render certain aspects of the content, such as
591 static wxRichTextRenderer
* GetRenderer();
594 Gets the attributes at the given position.
596 This function gets the combined style - that is, the style you see on the
597 screen as a result of combining base style, paragraph style and character
598 style attributes. To get the character or paragraph style alone,
599 use GetUncombinedStyle().
601 virtual bool GetStyle(long position
, wxTextAttr
& style
);
604 This function gets a style representing the common, combined attributes in the
606 Attributes which have different values within the specified range will not be
607 included the style flags.
609 The function is used to get the attributes to display in the formatting dialog:
610 the user can edit the attributes common to the selection, and optionally specify the
611 values of further attributes to be applied uniformly.
613 To apply the edited attributes, you can use SetStyle() specifying
614 the wxRICHTEXT_SETSTYLE_OPTIMIZE flag, which will only apply attributes that
615 are different from the @e combined attributes within the range.
616 So, the user edits the effective, displayed attributes for the range,
617 but his choice won't be applied unnecessarily to content. As an example,
618 say the style for a paragraph specifies bold, but the paragraph text doesn't
620 The combined style is bold, and this is what the user will see on-screen and
621 in the formatting dialog. The user now specifies red text, in addition to bold.
622 When applying with SetStyle(), the content font weight attributes won't be
623 changed to bold because this is already specified by the paragraph.
624 However the text colour attributes @e will be changed to show red.
626 virtual bool GetStyleForRange(const wxRichTextRange
& range
,
630 Returns the current style sheet associated with the buffer, if any.
632 virtual wxRichTextStyleSheet
* GetStyleSheet() const;
635 Get the size of the style stack, for example to check correct nesting.
637 virtual size_t GetStyleStackSize() const;
640 Gets the attributes at the given position.
642 This function gets the @e uncombined style - that is, the attributes associated
643 with the paragraph or character content, and not necessarily the combined
644 attributes you see on the screen. To get the combined attributes, use GetStyle().
645 If you specify (any) paragraph attribute in @e style's flags, this function
646 will fetch the paragraph attributes.
647 Otherwise, it will return the character attributes.
649 virtual bool GetUncombinedStyle(long position
, wxTextAttr
& style
);
652 Finds the text position for the given position, putting the position in
653 @a textPosition if one is found.
654 @a pt is in logical units (a zero y position is at the beginning of the buffer).
656 @return One of the ::wxRichTextHitTestFlags values.
658 virtual int HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
);
666 Initialises the standard handlers.
667 Currently, only the plain text loading/saving handler is initialised by default.
669 static void InitStandardHandlers();
672 Inserts a handler at the front of the list.
674 static void InsertHandler(wxRichTextFileHandler
* handler
);
677 Submits a command to insert the given image.
679 bool InsertImageWithUndo(long pos
,
680 const wxRichTextImageBlock
& imageBlock
,
681 wxRichTextCtrl
* ctrl
);
684 Submits a command to insert a newline.
686 bool InsertNewlineWithUndo(long pos
, wxRichTextCtrl
* ctrl
);
689 Submits a command to insert the given text.
691 bool InsertTextWithUndo(long pos
, const wxString
& text
,
692 wxRichTextCtrl
* ctrl
);
695 Returns @true if the buffer has been modified.
697 bool IsModified() const;
700 Loads content from a stream.
702 bool LoadFile(wxInputStream
& stream
,
703 int type
= wxRICHTEXT_TYPE_ANY
);
706 Loads content from a file.
708 bool LoadFile(const wxString
& filename
,
709 int type
= wxRICHTEXT_TYPE_ANY
);
712 Marks the buffer as modified or unmodified.
714 void Modify(bool modify
= true);
718 Numbers the paragraphs in the given range.
720 Pass flags to determine how the attributes are set.
721 Either the style definition or the name of the style definition (in the current
722 sheet) can be passed.
724 @a flags is a bit list of the following:
725 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
726 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
727 @a startFrom, otherwise existing attributes are used.
728 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
729 as the level for all paragraphs, otherwise the current indentation will be used.
731 @see SetListStyle(), PromoteList(), ClearListStyle()
733 bool NumberList(const wxRichTextRange
& range
,
734 const wxRichTextListStyleDefinition
* style
,
735 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
,
738 bool Number(const wxRichTextRange
& range
,
739 const wxString
& styleName
,
740 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
,
746 Pastes the clipboard content to the buffer at the given position.
748 virtual bool PasteFromClipboard(long position
);
752 Promotes or demotes the paragraphs in the given range.
754 A positive @a promoteBy produces a smaller indent, and a negative number
755 produces a larger indent. Pass flags to determine how the attributes are set.
756 Either the style definition or the name of the style definition (in the current
757 sheet) can be passed.
759 @a flags is a bit list of the following:
760 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
761 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
762 @a startFrom, otherwise existing attributes are used.
763 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
764 as the level for all paragraphs, otherwise the current indentation will be used.
766 @see SetListStyle(), SetListStyle(), ClearListStyle()
768 bool PromoteList(int promoteBy
, const wxRichTextRange
& range
,
769 const wxRichTextListStyleDefinition
* style
,
770 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
,
772 bool PromoteList(int promoteBy
, const wxRichTextRange
& range
,
773 const wxString
& styleName
,
774 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
,
779 Removes an event handler from the buffer's list of handlers, deleting the
780 object if @a deleteHandler is @true.
782 bool RemoveEventHandler(wxEvtHandler
* handler
,
783 bool deleteHandler
= false);
788 static bool RemoveHandler(const wxString
& name
);
791 Clears the buffer, adds a new blank paragraph, and clears the command history.
793 virtual void ResetAndClearCommands();
796 Saves content to a stream.
798 bool SaveFile(wxOutputStream
& stream
,
799 int type
= wxRICHTEXT_TYPE_ANY
);
802 Saves content to a file.
804 bool SaveFile(const wxString
& filename
,
805 int type
= wxRICHTEXT_TYPE_ANY
);
808 Sets the basic (overall) style. This is the style of the whole
809 buffer before further styles are applied, unlike the default style, which
810 only affects the style currently being applied (for example, setting the default
811 style to bold will cause subsequently inserted text to be bold).
813 virtual void SetBasicStyle(const wxTextAttr
& style
);
816 Sets the default style, affecting the style currently being applied
817 (for example, setting the default style to bold will cause subsequently
818 inserted text to be bold).
820 This is not cumulative - setting the default style will replace the previous
823 void SetDefaultStyle(const wxTextAttr
& style
);
827 Sets the list attributes for the given range, passing flags to determine how
828 the attributes are set.
829 Either the style definition or the name of the style definition (in the current
830 sheet) can be passed.
832 @a flags is a bit list of the following:
833 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
834 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
835 @a startFrom, otherwise existing attributes are used.
836 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
837 as the level for all paragraphs, otherwise the current indentation will be used.
839 @see NumberList(), PromoteList(), ClearListStyle().
841 bool SetListStyle(const wxRichTextRange
& range
,
842 const wxRichTextListStyleDefinition
* style
,
843 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
,
846 bool SetListStyle(const wxRichTextRange
& range
,
847 const wxString
& styleName
,
848 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
,
854 Sets @a renderer as the object to be used to render certain aspects of the
855 content, such as bullets.
857 You can override default rendering by deriving a new class from
858 wxRichTextRenderer or wxRichTextStdRenderer, overriding one or more
859 virtual functions, and setting an instance of the class using this function.
861 static void SetRenderer(wxRichTextRenderer
* renderer
);
864 Sets the attributes for the given range. Pass flags to determine how the
867 The end point of range is specified as the last character position of the span
868 of text. So, for example, to set the style for a character at position 5,
870 This differs from the wxRichTextCtrl API, where you would specify (5,6).
872 @a flags may contain a bit list of the following values:
873 - wxRICHTEXT_SETSTYLE_NONE: no style flag.
874 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this operation should be
876 - wxRICHTEXT_SETSTYLE_OPTIMIZE: specifies that the style should not be applied
877 if the combined style at this point is already the style in question.
878 - wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY: specifies that the style should only be
879 applied to paragraphs, and not the content.
880 This allows content styling to be preserved independently from that
881 of e.g. a named paragraph style.
882 - wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY: specifies that the style should only be
883 applied to characters, and not the paragraph.
884 This allows content styling to be preserved independently from that
885 of e.g. a named paragraph style.
886 - wxRICHTEXT_SETSTYLE_RESET: resets (clears) the existing style before applying
888 - wxRICHTEXT_SETSTYLE_REMOVE: removes the specified style.
889 Only the style flags are used in this operation.
891 virtual bool SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
,
892 int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
895 Sets the current style sheet, if any.
897 This will allow the application to use named character and paragraph
898 styles found in the style sheet.
900 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
);
903 Submit an action immediately, or delay it according to whether collapsing is on.
905 virtual bool SubmitAction(wxRichTextAction
* action
);
908 Returns @true if undo suppression is currently on.
910 virtual bool SuppressingUndo() const;
916 @class wxRichTextFileHandler
918 This is the base class for file handlers, for loading and/or saving content
919 associated with a wxRichTextBuffer.
924 class wxRichTextFileHandler
: public wxObject
930 wxRichTextFileHandler(const wxString
& name
= wxEmptyString
,
931 const wxString
& ext
= wxEmptyString
,
935 Override this function and return @true if this handler can we handle
938 By default, this function checks the extension.
940 virtual bool CanHandle(const wxString
& filename
) const;
943 Override and return @true if this handler can load content.
945 virtual bool CanLoad() const;
948 Override and return @true if this handler can save content.
950 virtual bool CanSave() const;
953 Returns the encoding associated with the handler (if any).
955 const wxString
GetEncoding() const;
958 Returns the extension associated with the handler.
960 wxString
GetExtension() const;
963 Returns flags that change the behaviour of loading or saving.
965 See the documentation for each handler class to see what flags are
966 relevant for each handler.
968 int GetFlags() const;
971 Returns the name of the handler.
973 wxString
GetName() const;
976 Returns the type of the handler.
981 Returns @true if this handler should be visible to the user.
983 virtual bool IsVisible() const;
987 Loads content from a stream or file.
988 Not all handlers will implement file loading.
990 bool LoadFile(wxRichTextBuffer
* buffer
, wxInputStream
& stream
);
991 bool LoadFile(wxRichTextBuffer
* buffer
, const wxString
& filename
);
996 Saves content to a stream or file.
997 Not all handlers will implement file saving.
999 bool SaveFile(wxRichTextBuffer
* buffer
, wxOutputStream
& stream
);
1000 bool SaveFile(wxRichTextBuffer
* buffer
, const wxString
& filename
);
1004 Sets the encoding to use when saving a file.
1005 If empty, a suitable encoding is chosen.
1007 void SetEncoding(const wxString
& encoding
);
1010 Sets the default extension to recognise.
1012 void SetExtension(const wxString
& ext
);
1015 Sets flags that change the behaviour of loading or saving.
1016 See the documentation for each handler class to see what flags are relevant
1019 You call this function directly if you are using a file handler explicitly
1020 (without going through the text control or buffer LoadFile/SaveFile API).
1021 Or, you can call the control or buffer's SetHandlerFlags function to set
1022 the flags that will be used for subsequent load and save operations.
1024 void SetFlags(int flags
);
1027 Sets the name of the handler.
1029 void SetName(const wxString
& name
);
1032 Sets the handler type.
1034 void SetType(int type
);
1037 Sets whether the handler should be visible to the user (via the application's
1038 load and save dialogs).
1040 virtual void SetVisible(bool visible
);
1044 Override to load content from @a stream into @a buffer.
1046 virtual bool DoLoadFile(wxRichTextBuffer
* buffer
,
1047 wxInputStream
& stream
) = 0;
1050 Override to save content to @a stream from @a buffer.
1052 virtual bool DoSaveFile(wxRichTextBuffer
* buffer
,
1053 wxOutputStream
& stream
) = 0;
1059 @class wxRichTextRange
1061 This class stores beginning and end positions for a range of data.
1063 @library{wxrichtext}
1066 class wxRichTextRange
1073 wxRichTextRange(long start
, long end
);
1074 wxRichTextRange(const wxRichTextRange
& range
);
1084 Returns @true if the given position is within this range.
1085 Does not match if the range is empty.
1087 bool Contains(long pos
) const;
1090 Converts the internal range, which uses the first and last character positions
1091 of the range, to the API-standard range, whose end is one past the last
1092 character in the range.
1093 In other words, one is added to the end position.
1095 wxRichTextRange
FromInternal() const;
1098 Returns the end position.
1100 long GetEnd() const;
1103 Returns the length of the range.
1105 long GetLength() const;
1108 Returns the start of the range.
1110 long GetStart() const;
1113 Returns @true if this range is completely outside @e range.
1115 bool IsOutside(const wxRichTextRange
& range
) const;
1118 Returns @true if this range is completely within @e range.
1120 bool IsWithin(const wxRichTextRange
& range
) const;
1123 Limits this range to be within @e range.
1125 bool LimitTo(const wxRichTextRange
& range
);
1128 Sets the end of the range.
1130 void SetEnd(long end
);
1135 void SetRange(long start
, long end
);
1138 Sets the start of the range.
1140 void SetStart(long start
);
1143 Swaps the start and end.
1148 Converts the API-standard range, whose end is one past the last character in
1149 the range, to the internal form, which uses the first and last character
1150 positions of the range.
1151 In other words, one is subtracted from the end position.
1153 wxRichTextRange
ToInternal() const;
1156 Adds @a range to this range.
1158 wxRichTextRange
operator+(const wxRichTextRange
& range
) const;
1161 Subtracts @a range from this range.
1163 wxRichTextRange
operator-(const wxRichTextRange
& range
) const;
1166 Assigns @a range to this range.
1168 void operator=(const wxRichTextRange
& range
);
1171 Returns @true if @a range is the same as this range.
1173 bool operator==(const wxRichTextRange
& range
) const;