1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/richtext/richtextbuffer.h
3 // Purpose: Buffer for wxRichTextCtrl
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RICHTEXTBUFFER_H_
13 #define _WX_RICHTEXTBUFFER_H_
20 Data is represented by a hierarchy of objects, all derived from
23 The top of the hierarchy is the buffer, a kind of wxRichTextParagraphLayoutBox.
24 These boxes will allow flexible placement of text boxes on a page, but
25 for now there is a single box representing the document, and this box is
26 a wxRichTextParagraphLayoutBox which contains further wxRichTextParagraph
27 objects, each of which can include text and images.
29 Each object maintains a range (start and end position) measured
30 from the start of the main parent box.
31 A paragraph object knows its range, and a text fragment knows its range
32 too. So, a character or image in a page has a position relative to the
33 start of the document, and a character in an embedded text box has
34 a position relative to that text box. For now, we will not be dealing with
35 embedded objects but it's something to bear in mind for later.
37 Note that internally, a range (5,5) represents a range of one character.
38 In the public wx[Rich]TextCtrl API, this would be passed to e.g. SetSelection
39 as (5,6). A paragraph with one character might have an internal range of (0, 1)
40 since the end of the paragraph takes up one position.
45 When Layout is called on an object, it is given a size which the object
46 must limit itself to, or one or more flexible directions (vertical
47 or horizontal). So for example a centered paragraph is given the page
48 width to play with (minus any margins), but can extend indefinitely
49 in the vertical direction. The implementation of Layout can then
50 cache the calculated size and position within the parent.
63 #include "wx/textctrl.h"
64 #include "wx/bitmap.h"
66 #include "wx/cmdproc.h"
67 #include "wx/txtstrm.h"
70 #include "wx/dataobj.h"
74 #define wxRichTextAttr wxTextAttr
75 #define wxTextAttrEx wxTextAttr
77 // Setting wxRICHTEXT_USE_OWN_CARET to 1 implements a non-flashing
78 // cursor reliably without using wxClientDC in case there
79 // are platform-specific problems with the generic caret.
80 #define wxRICHTEXT_USE_OWN_CARET 0
82 // Switch off for binary compatibility, on for faster drawing
83 #define wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING 1
89 extern WXDLLIMPEXP_RICHTEXT
const wxChar wxRichTextLineBreakChar
;
95 #define wxRICHTEXT_TYPE_ANY 0
96 #define wxRICHTEXT_TYPE_TEXT 1
97 #define wxRICHTEXT_TYPE_XML 2
98 #define wxRICHTEXT_TYPE_HTML 3
99 #define wxRICHTEXT_TYPE_RTF 4
100 #define wxRICHTEXT_TYPE_PDF 5
103 * Forward declarations
106 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextCtrl
;
107 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextObject
;
108 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextCacheObject
;
109 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextObjectList
;
110 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextLine
;
111 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextParagraph
;
112 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextFileHandler
;
113 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextStyleSheet
;
114 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextListStyleDefinition
;
115 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextEvent
;
116 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextRenderer
;
117 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextBuffer
;
120 * Flags determining the available space, passed to Layout
123 #define wxRICHTEXT_FIXED_WIDTH 0x01
124 #define wxRICHTEXT_FIXED_HEIGHT 0x02
125 #define wxRICHTEXT_VARIABLE_WIDTH 0x04
126 #define wxRICHTEXT_VARIABLE_HEIGHT 0x08
128 // Only lay out the part of the buffer that lies within
129 // the rect passed to Layout.
130 #define wxRICHTEXT_LAYOUT_SPECIFIED_RECT 0x10
133 * Flags to pass to Draw
136 // Ignore paragraph cache optimization, e.g. for printing purposes
137 // where one line may be drawn higher (on the next page) compared
138 // with the previous line
139 #define wxRICHTEXT_DRAW_IGNORE_CACHE 0x01
142 * Flags returned from hit-testing
145 // The point was not on this object
146 #define wxRICHTEXT_HITTEST_NONE 0x01
147 // The point was before the position returned from HitTest
148 #define wxRICHTEXT_HITTEST_BEFORE 0x02
149 // The point was after the position returned from HitTest
150 #define wxRICHTEXT_HITTEST_AFTER 0x04
151 // The point was on the position returned from HitTest
152 #define wxRICHTEXT_HITTEST_ON 0x08
153 // The point was on space outside content
154 #define wxRICHTEXT_HITTEST_OUTSIDE 0x10
157 * Flags for GetRangeSize
160 #define wxRICHTEXT_FORMATTED 0x01
161 #define wxRICHTEXT_UNFORMATTED 0x02
162 #define wxRICHTEXT_CACHE_SIZE 0x04
163 #define wxRICHTEXT_HEIGHT_ONLY 0x08
166 * Flags for SetStyle/SetListStyle
169 #define wxRICHTEXT_SETSTYLE_NONE 0x00
171 // Specifies that this operation should be undoable
172 #define wxRICHTEXT_SETSTYLE_WITH_UNDO 0x01
174 // Specifies that the style should not be applied if the
175 // combined style at this point is already the style in question.
176 #define wxRICHTEXT_SETSTYLE_OPTIMIZE 0x02
178 // Specifies that the style should only be applied to paragraphs,
179 // and not the content. This allows content styling to be
180 // preserved independently from that of e.g. a named paragraph style.
181 #define wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY 0x04
183 // Specifies that the style should only be applied to characters,
184 // and not the paragraph. This allows content styling to be
185 // preserved independently from that of e.g. a named paragraph style.
186 #define wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY 0x08
188 // For SetListStyle only: specifies starting from the given number, otherwise
189 // deduces number from existing attributes
190 #define wxRICHTEXT_SETSTYLE_RENUMBER 0x10
192 // For SetListStyle only: specifies the list level for all paragraphs, otherwise
193 // the current indentation will be used
194 #define wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL 0x20
196 // Resets the existing style before applying the new style
197 #define wxRICHTEXT_SETSTYLE_RESET 0x40
199 // Removes the given style instead of applying it
200 #define wxRICHTEXT_SETSTYLE_REMOVE 0x80
203 * Flags for text insertion
206 #define wxRICHTEXT_INSERT_NONE 0x00
207 #define wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE 0x01
208 #define wxRICHTEXT_INSERT_INTERACTIVE 0x02
210 // A special flag telling the buffer to keep the first paragraph style
211 // as-is, when deleting a paragraph marker. In future we might pass a
212 // flag to InsertFragment and DeleteRange to indicate the appropriate mode.
213 #define wxTEXT_ATTR_KEEP_FIRST_PARA_STYLE 0x10000000
216 * Default superscript/subscript font multiplication factor
219 #define wxSCRIPT_MUL_FACTOR 1.5
222 * wxRichTextFontTable
223 * Manages quick access to a pool of fonts for rendering rich text
226 class WXDLLIMPEXP_RICHTEXT wxRichTextFontTable
: public wxObject
229 wxRichTextFontTable();
231 wxRichTextFontTable(const wxRichTextFontTable
& table
);
232 virtual ~wxRichTextFontTable();
234 bool IsOk() const { return m_refData
!= NULL
; }
236 wxFont
FindFont(const wxTextAttr
& fontSpec
);
239 void operator= (const wxRichTextFontTable
& table
);
240 bool operator == (const wxRichTextFontTable
& table
) const;
241 bool operator != (const wxRichTextFontTable
& table
) const { return !(*this == table
); }
245 DECLARE_DYNAMIC_CLASS(wxRichTextFontTable
)
249 * wxRichTextRange class declaration
250 * This stores beginning and end positions for a range of data.
251 * TODO: consider renaming wxTextRange and using for all text controls.
254 class WXDLLIMPEXP_RICHTEXT wxRichTextRange
259 wxRichTextRange() { m_start
= 0; m_end
= 0; }
260 wxRichTextRange(long start
, long end
) { m_start
= start
; m_end
= end
; }
261 wxRichTextRange(const wxRichTextRange
& range
) { m_start
= range
.m_start
; m_end
= range
.m_end
; }
262 ~wxRichTextRange() {}
264 void operator =(const wxRichTextRange
& range
) { m_start
= range
.m_start
; m_end
= range
.m_end
; }
265 bool operator ==(const wxRichTextRange
& range
) const { return (m_start
== range
.m_start
&& m_end
== range
.m_end
); }
266 bool operator !=(const wxRichTextRange
& range
) const { return (m_start
!= range
.m_start
&& m_end
!= range
.m_end
); }
267 wxRichTextRange
operator -(const wxRichTextRange
& range
) const { return wxRichTextRange(m_start
- range
.m_start
, m_end
- range
.m_end
); }
268 wxRichTextRange
operator +(const wxRichTextRange
& range
) const { return wxRichTextRange(m_start
+ range
.m_start
, m_end
+ range
.m_end
); }
270 void SetRange(long start
, long end
) { m_start
= start
; m_end
= end
; }
272 void SetStart(long start
) { m_start
= start
; }
273 long GetStart() const { return m_start
; }
275 void SetEnd(long end
) { m_end
= end
; }
276 long GetEnd() const { return m_end
; }
278 /// Returns true if this range is completely outside 'range'
279 bool IsOutside(const wxRichTextRange
& range
) const { return range
.m_start
> m_end
|| range
.m_end
< m_start
; }
281 /// Returns true if this range is completely within 'range'
282 bool IsWithin(const wxRichTextRange
& range
) const { return m_start
>= range
.m_start
&& m_end
<= range
.m_end
; }
284 /// Returns true if the given position is within this range. Allow
285 /// for the possibility of an empty range - assume the position
286 /// is within this empty range. NO, I think we should not match with an empty range.
287 // bool Contains(long pos) const { return pos >= m_start && (pos <= m_end || GetLength() == 0); }
288 bool Contains(long pos
) const { return pos
>= m_start
&& pos
<= m_end
; }
290 /// Limit this range to be within 'range'
291 bool LimitTo(const wxRichTextRange
& range
) ;
293 /// Gets the length of the range
294 long GetLength() const { return m_end
- m_start
+ 1; }
296 /// Swaps the start and end
297 void Swap() { long tmp
= m_start
; m_start
= m_end
; m_end
= tmp
; }
299 /// Convert to internal form: (n, n) is the range of a single character.
300 wxRichTextRange
ToInternal() const { return wxRichTextRange(m_start
, m_end
-1); }
302 /// Convert from internal to public API form: (n, n+1) is the range of a single character.
303 wxRichTextRange
FromInternal() const { return wxRichTextRange(m_start
, m_end
+1); }
310 #define wxRICHTEXT_ALL wxRichTextRange(-2, -2)
311 #define wxRICHTEXT_NONE wxRichTextRange(-1, -1)
314 * wxRichTextObject class declaration
315 * This is the base for drawable objects.
318 class WXDLLIMPEXP_RICHTEXT wxRichTextObject
: public wxObject
320 DECLARE_CLASS(wxRichTextObject
)
324 wxRichTextObject(wxRichTextObject
* parent
= NULL
);
325 virtual ~wxRichTextObject();
329 /// Draw the item, within the given range. Some objects may ignore the range (for
330 /// example paragraphs) while others must obey it (lines, to implement wrapping)
331 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
) = 0;
333 /// Lay the item out at the specified position with the given size constraint.
334 /// Layout must set the cached size.
335 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
) = 0;
337 /// Hit-testing: returns a flag indicating hit test details, plus
338 /// information about position
339 virtual int HitTest(wxDC
& WXUNUSED(dc
), const wxPoint
& WXUNUSED(pt
), long& WXUNUSED(textPosition
)) { return false; }
341 /// Finds the absolute position and row height for the given character position
342 virtual bool FindPosition(wxDC
& WXUNUSED(dc
), long WXUNUSED(index
), wxPoint
& WXUNUSED(pt
), int* WXUNUSED(height
), bool WXUNUSED(forceLineStart
)) { return false; }
344 /// Get the best size, i.e. the ideal starting size for this object irrespective
345 /// of available space. For a short text string, it will be the size that exactly encloses
346 /// the text. For a longer string, it might use the parent width for example.
347 virtual wxSize
GetBestSize() const { return m_size
; }
349 /// Get the object size for the given range. Returns false if the range
350 /// is invalid for this object.
351 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0), wxArrayInt
* partialExtents
= NULL
) const = 0;
353 /// Do a split, returning an object containing the second part, and setting
354 /// the first part in 'this'.
355 virtual wxRichTextObject
* DoSplit(long WXUNUSED(pos
)) { return NULL
; }
357 /// Calculate range. By default, guess that the object is 1 unit long.
358 virtual void CalculateRange(long start
, long& end
) { end
= start
; m_range
.SetRange(start
, end
); }
361 virtual bool DeleteRange(const wxRichTextRange
& WXUNUSED(range
)) { return false; }
363 /// Returns true if the object is empty
364 virtual bool IsEmpty() const { return false; }
366 /// Get any text in this object for the given range
367 virtual wxString
GetTextForRange(const wxRichTextRange
& WXUNUSED(range
)) const { return wxEmptyString
; }
369 /// Returns true if this object can merge itself with the given one.
370 virtual bool CanMerge(wxRichTextObject
* WXUNUSED(object
)) const { return false; }
372 /// Returns true if this object merged itself with the given one.
373 /// The calling code will then delete the given object.
374 virtual bool Merge(wxRichTextObject
* WXUNUSED(object
)) { return false; }
376 /// Dump to output stream for debugging
377 virtual void Dump(wxTextOutputStream
& stream
);
381 /// Get/set the cached object size as calculated by Layout.
382 virtual wxSize
GetCachedSize() const { return m_size
; }
383 virtual void SetCachedSize(const wxSize
& sz
) { m_size
= sz
; }
385 /// Get/set the object position
386 virtual wxPoint
GetPosition() const { return m_pos
; }
387 virtual void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
389 /// Get the rectangle enclosing the object
390 virtual wxRect
GetRect() const { return wxRect(GetPosition(), GetCachedSize()); }
393 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
396 const wxRichTextRange
& GetRange() const { return m_range
; }
397 wxRichTextRange
& GetRange() { return m_range
; }
399 /// Get/set dirty flag (whether the object needs Layout to be called)
400 virtual bool GetDirty() const { return m_dirty
; }
401 virtual void SetDirty(bool dirty
) { m_dirty
= dirty
; }
403 /// Is this composite?
404 virtual bool IsComposite() const { return false; }
406 /// Get/set the parent.
407 virtual wxRichTextObject
* GetParent() const { return m_parent
; }
408 virtual void SetParent(wxRichTextObject
* parent
) { m_parent
= parent
; }
410 /// Set the margin around the object
411 virtual void SetMargins(int margin
);
412 virtual void SetMargins(int leftMargin
, int rightMargin
, int topMargin
, int bottomMargin
);
413 virtual int GetLeftMargin() const { return m_leftMargin
; }
414 virtual int GetRightMargin() const { return m_rightMargin
; }
415 virtual int GetTopMargin() const { return m_topMargin
; }
416 virtual int GetBottomMargin() const { return m_bottomMargin
; }
418 /// Set attributes object
419 void SetAttributes(const wxTextAttr
& attr
) { m_attributes
= attr
; }
420 const wxTextAttr
& GetAttributes() const { return m_attributes
; }
421 wxTextAttr
& GetAttributes() { return m_attributes
; }
423 /// Set/get stored descent
424 void SetDescent(int descent
) { m_descent
= descent
; }
425 int GetDescent() const { return m_descent
; }
427 /// Gets the containing buffer
428 wxRichTextBuffer
* GetBuffer() const;
433 virtual wxRichTextObject
* Clone() const { return NULL
; }
436 void Copy(const wxRichTextObject
& obj
);
438 /// Reference-counting allows us to use the same object in multiple
439 /// lists (not yet used)
440 void Reference() { m_refCount
++; }
443 /// Convert units in tenths of a millimetre to device units
444 int ConvertTenthsMMToPixels(wxDC
& dc
, int units
);
445 static int ConvertTenthsMMToPixels(int ppi
, int units
);
450 int m_descent
; // Descent for this object (if any)
453 wxRichTextObject
* m_parent
;
455 /// The range of this object (start position to end position)
456 wxRichTextRange m_range
;
465 wxTextAttr m_attributes
;
468 WX_DECLARE_LIST_WITH_DECL( wxRichTextObject
, wxRichTextObjectList
, class WXDLLIMPEXP_RICHTEXT
);
471 * wxRichTextCompositeObject class declaration
472 * Objects of this class can contain other objects.
475 class WXDLLIMPEXP_RICHTEXT wxRichTextCompositeObject
: public wxRichTextObject
477 DECLARE_CLASS(wxRichTextCompositeObject
)
481 wxRichTextCompositeObject(wxRichTextObject
* parent
= NULL
);
482 virtual ~wxRichTextCompositeObject();
486 /// Hit-testing: returns a flag indicating hit test details, plus
487 /// information about position
488 virtual int HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
);
490 /// Finds the absolute position and row height for the given character position
491 virtual bool FindPosition(wxDC
& dc
, long index
, wxPoint
& pt
, int* height
, bool forceLineStart
);
494 virtual void CalculateRange(long start
, long& end
);
497 virtual bool DeleteRange(const wxRichTextRange
& range
);
499 /// Get any text in this object for the given range
500 virtual wxString
GetTextForRange(const wxRichTextRange
& range
) const;
502 /// Dump to output stream for debugging
503 virtual void Dump(wxTextOutputStream
& stream
);
508 wxRichTextObjectList
& GetChildren() { return m_children
; }
509 const wxRichTextObjectList
& GetChildren() const { return m_children
; }
511 /// Get the child count
512 size_t GetChildCount() const ;
514 /// Get the nth child
515 wxRichTextObject
* GetChild(size_t n
) const ;
517 /// Get/set dirty flag
518 virtual bool GetDirty() const { return m_dirty
; }
519 virtual void SetDirty(bool dirty
) { m_dirty
= dirty
; }
521 /// Is this composite?
522 virtual bool IsComposite() const { return true; }
524 /// Returns true if the buffer is empty
525 virtual bool IsEmpty() const { return GetChildCount() == 0; }
530 void Copy(const wxRichTextCompositeObject
& obj
);
533 void operator= (const wxRichTextCompositeObject
& obj
) { Copy(obj
); }
535 /// Append a child, returning the position
536 size_t AppendChild(wxRichTextObject
* child
) ;
538 /// Insert the child in front of the given object, or at the beginning
539 bool InsertChild(wxRichTextObject
* child
, wxRichTextObject
* inFrontOf
) ;
542 bool RemoveChild(wxRichTextObject
* child
, bool deleteChild
= false) ;
544 /// Delete all children
545 bool DeleteChildren() ;
547 /// Recursively merge all pieces that can be merged.
548 bool Defragment(const wxRichTextRange
& range
= wxRICHTEXT_ALL
);
551 wxRichTextObjectList m_children
;
555 * wxRichTextBox class declaration
556 * This defines a 2D space to lay out objects
559 class WXDLLIMPEXP_RICHTEXT wxRichTextBox
: public wxRichTextCompositeObject
561 DECLARE_DYNAMIC_CLASS(wxRichTextBox
)
565 wxRichTextBox(wxRichTextObject
* parent
= NULL
);
566 wxRichTextBox(const wxRichTextBox
& obj
): wxRichTextCompositeObject() { Copy(obj
); }
571 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
574 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
576 /// Get/set the object size for the given range. Returns false if the range
577 /// is invalid for this object.
578 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0), wxArrayInt
* partialExtents
= NULL
) const;
585 virtual wxRichTextObject
* Clone() const { return new wxRichTextBox(*this); }
588 void Copy(const wxRichTextBox
& obj
);
594 * wxRichTextParagraphBox class declaration
595 * This box knows how to lay out paragraphs.
598 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraphLayoutBox
: public wxRichTextBox
600 DECLARE_DYNAMIC_CLASS(wxRichTextParagraphLayoutBox
)
604 wxRichTextParagraphLayoutBox(wxRichTextObject
* parent
= NULL
);
605 wxRichTextParagraphLayoutBox(const wxRichTextParagraphLayoutBox
& obj
): wxRichTextBox() { Init(); Copy(obj
); }
610 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
613 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
615 /// Get/set the object size for the given range. Returns false if the range
616 /// is invalid for this object.
617 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0), wxArrayInt
* partialExtents
= NULL
) const;
620 virtual bool DeleteRange(const wxRichTextRange
& range
);
622 /// Get any text in this object for the given range
623 virtual wxString
GetTextForRange(const wxRichTextRange
& range
) const;
627 /// Associate a control with the buffer, for operations that for example require refreshing the window.
628 void SetRichTextCtrl(wxRichTextCtrl
* ctrl
) { m_ctrl
= ctrl
; }
630 /// Get the associated control.
631 wxRichTextCtrl
* GetRichTextCtrl() const { return m_ctrl
; }
633 /// Get/set whether the last paragraph is partial or complete
634 void SetPartialParagraph(bool partialPara
) { m_partialParagraph
= partialPara
; }
635 bool GetPartialParagraph() const { return m_partialParagraph
; }
637 /// If this is a buffer, returns the current style sheet. The base layout box
638 /// class doesn't have an associated style sheet.
639 virtual wxRichTextStyleSheet
* GetStyleSheet() const { return NULL
; }
643 /// Initialize the object.
646 /// Clear all children
647 virtual void Clear();
649 /// Clear and initialize with one blank paragraph
650 virtual void Reset();
652 /// Convenience function to add a paragraph of text
653 virtual wxRichTextRange
AddParagraph(const wxString
& text
, wxTextAttr
* paraStyle
= NULL
);
655 /// Convenience function to add an image
656 virtual wxRichTextRange
AddImage(const wxImage
& image
, wxTextAttr
* paraStyle
= NULL
);
658 /// Adds multiple paragraphs, based on newlines.
659 virtual wxRichTextRange
AddParagraphs(const wxString
& text
, wxTextAttr
* paraStyle
= NULL
);
661 /// Get the line at the given position. If caretPosition is true, the position is
662 /// a caret position, which is normally a smaller number.
663 virtual wxRichTextLine
* GetLineAtPosition(long pos
, bool caretPosition
= false) const;
665 /// Get the line at the given y pixel position, or the last line.
666 virtual wxRichTextLine
* GetLineAtYPosition(int y
) const;
668 /// Get the paragraph at the given character or caret position
669 virtual wxRichTextParagraph
* GetParagraphAtPosition(long pos
, bool caretPosition
= false) const;
671 /// Get the line size at the given position
672 virtual wxSize
GetLineSizeAtPosition(long pos
, bool caretPosition
= false) const;
674 /// Given a position, get the number of the visible line (potentially many to a paragraph),
675 /// starting from zero at the start of the buffer. We also have to pass a bool (startOfLine)
676 /// that indicates whether the caret is being shown at the end of the previous line or at the start
677 /// of the next, since the caret can be shown at 2 visible positions for the same underlying
679 virtual long GetVisibleLineNumber(long pos
, bool caretPosition
= false, bool startOfLine
= false) const;
681 /// Given a line number, get the corresponding wxRichTextLine object.
682 virtual wxRichTextLine
* GetLineForVisibleLineNumber(long lineNumber
) const;
684 /// Get the leaf object in a paragraph at this position.
685 /// Given a line number, get the corresponding wxRichTextLine object.
686 virtual wxRichTextObject
* GetLeafObjectAtPosition(long position
) const;
688 /// Get the paragraph by number
689 virtual wxRichTextParagraph
* GetParagraphAtLine(long paragraphNumber
) const;
691 /// Get the paragraph for a given line
692 virtual wxRichTextParagraph
* GetParagraphForLine(wxRichTextLine
* line
) const;
694 /// Get the length of the paragraph
695 virtual int GetParagraphLength(long paragraphNumber
) const;
697 /// Get the number of paragraphs
698 virtual int GetParagraphCount() const { return GetChildCount(); }
700 /// Get the number of visible lines
701 virtual int GetLineCount() const;
703 /// Get the text of the paragraph
704 virtual wxString
GetParagraphText(long paragraphNumber
) const;
706 /// Convert zero-based line column and paragraph number to a position.
707 virtual long XYToPosition(long x
, long y
) const;
709 /// Convert zero-based position to line column and paragraph number
710 virtual bool PositionToXY(long pos
, long* x
, long* y
) const;
712 /// Set text attributes: character and/or paragraph styles.
713 virtual bool SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
715 /// Get the conbined text attributes for this position.
716 virtual bool GetStyle(long position
, wxTextAttr
& style
);
718 /// Get the content (uncombined) attributes for this position.
719 virtual bool GetUncombinedStyle(long position
, wxTextAttr
& style
);
721 /// Implementation helper for GetStyle. If combineStyles is true, combine base, paragraph and
722 /// context attributes.
723 virtual bool DoGetStyle(long position
, wxTextAttr
& style
, bool combineStyles
= true);
725 /// Get the combined style for a range - if any attribute is different within the range,
726 /// that attribute is not present within the flags
727 virtual bool GetStyleForRange(const wxRichTextRange
& range
, wxTextAttr
& style
);
729 /// Combines 'style' with 'currentStyle' for the purpose of summarising the attributes of a range of
731 bool CollectStyle(wxTextAttr
& currentStyle
, const wxTextAttr
& style
, long& multipleStyleAttributes
, int& multipleTextEffectAttributes
);
734 virtual bool SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
735 virtual bool SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
737 /// Clear list for given range
738 virtual bool ClearListStyle(const wxRichTextRange
& range
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
740 /// Number/renumber any list elements in the given range.
741 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
742 virtual bool NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
743 virtual bool NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
745 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
746 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
747 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
748 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
750 /// Helper for NumberList and PromoteList, that does renumbering and promotion simultaneously
751 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
752 virtual bool DoNumberList(const wxRichTextRange
& range
, const wxRichTextRange
& promotionRange
, int promoteBy
, wxRichTextListStyleDefinition
* def
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
754 /// Fills in the attributes for numbering a paragraph after previousParagraph.
755 virtual bool FindNextParagraphNumber(wxRichTextParagraph
* previousParagraph
, wxTextAttr
& attr
) const;
757 /// Test if this whole range has character attributes of the specified kind. If any
758 /// of the attributes are different within the range, the test fails. You
759 /// can use this to implement, for example, bold button updating. style must have
760 /// flags indicating which attributes are of interest.
761 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxTextAttr
& style
) const;
763 /// Test if this whole range has paragraph attributes of the specified kind. If any
764 /// of the attributes are different within the range, the test fails. You
765 /// can use this to implement, for example, centering button updating. style must have
766 /// flags indicating which attributes are of interest.
767 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxTextAttr
& style
) const;
770 virtual wxRichTextObject
* Clone() const { return new wxRichTextParagraphLayoutBox(*this); }
772 /// Insert fragment into this box at the given position. If partialParagraph is true,
773 /// it is assumed that the last (or only) paragraph is just a piece of data with no paragraph
775 virtual bool InsertFragment(long position
, wxRichTextParagraphLayoutBox
& fragment
);
777 /// Make a copy of the fragment corresponding to the given range, putting it in 'fragment'.
778 virtual bool CopyFragment(const wxRichTextRange
& range
, wxRichTextParagraphLayoutBox
& fragment
);
780 /// Apply the style sheet to the buffer, for example if the styles have changed.
781 virtual bool ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
);
784 void Copy(const wxRichTextParagraphLayoutBox
& obj
);
787 void operator= (const wxRichTextParagraphLayoutBox
& obj
) { Copy(obj
); }
790 virtual void UpdateRanges() { long end
; CalculateRange(0, end
); }
793 virtual wxString
GetText() const;
795 /// Set default style for new content. Setting it to a default attribute
796 /// makes new content take on the 'basic' style.
797 virtual bool SetDefaultStyle(const wxTextAttr
& style
);
799 /// Get default style
800 virtual const wxTextAttr
& GetDefaultStyle() const { return m_defaultAttributes
; }
802 /// Set basic (overall) style
803 virtual void SetBasicStyle(const wxTextAttr
& style
) { m_attributes
= style
; }
805 /// Get basic (overall) style
806 virtual const wxTextAttr
& GetBasicStyle() const { return m_attributes
; }
808 /// Invalidate the buffer. With no argument, invalidates whole buffer.
809 void Invalidate(const wxRichTextRange
& invalidRange
= wxRICHTEXT_ALL
);
811 /// Get invalid range, rounding to entire paragraphs if argument is true.
812 wxRichTextRange
GetInvalidRange(bool wholeParagraphs
= false) const;
815 wxRichTextCtrl
* m_ctrl
;
816 wxTextAttr m_defaultAttributes
;
818 /// The invalidated range that will need full layout
819 wxRichTextRange m_invalidRange
;
821 // Is the last paragraph partial or complete?
822 bool m_partialParagraph
;
826 * wxRichTextLine class declaration
827 * This object represents a line in a paragraph, and stores
828 * offsets from the start of the paragraph representing the
829 * start and end positions of the line.
832 class WXDLLIMPEXP_RICHTEXT wxRichTextLine
837 wxRichTextLine(wxRichTextParagraph
* parent
);
838 wxRichTextLine(const wxRichTextLine
& obj
) { Init( NULL
); Copy(obj
); }
839 virtual ~wxRichTextLine() {}
846 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
847 void SetRange(long from
, long to
) { m_range
= wxRichTextRange(from
, to
); }
849 /// Get the parent paragraph
850 wxRichTextParagraph
* GetParent() { return m_parent
; }
853 const wxRichTextRange
& GetRange() const { return m_range
; }
854 wxRichTextRange
& GetRange() { return m_range
; }
856 /// Get the absolute range
857 wxRichTextRange
GetAbsoluteRange() const;
859 /// Get/set the line size as calculated by Layout.
860 virtual wxSize
GetSize() const { return m_size
; }
861 virtual void SetSize(const wxSize
& sz
) { m_size
= sz
; }
863 /// Get/set the object position relative to the parent
864 virtual wxPoint
GetPosition() const { return m_pos
; }
865 virtual void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
867 /// Get the absolute object position
868 virtual wxPoint
GetAbsolutePosition() const;
870 /// Get the rectangle enclosing the line
871 virtual wxRect
GetRect() const { return wxRect(GetAbsolutePosition(), GetSize()); }
873 /// Set/get stored descent
874 void SetDescent(int descent
) { m_descent
= descent
; }
875 int GetDescent() const { return m_descent
; }
877 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
878 wxArrayInt
& GetObjectSizes() { return m_objectSizes
; }
879 const wxArrayInt
& GetObjectSizes() const { return m_objectSizes
; }
885 void Init(wxRichTextParagraph
* parent
);
888 void Copy(const wxRichTextLine
& obj
);
891 virtual wxRichTextLine
* Clone() const { return new wxRichTextLine(*this); }
895 /// The range of the line (start position to end position)
896 /// This is relative to the parent paragraph.
897 wxRichTextRange m_range
;
899 /// Size and position measured relative to top of paragraph
903 /// Maximum descent for this line (location of text baseline)
907 wxRichTextParagraph
* m_parent
;
909 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
910 wxArrayInt m_objectSizes
;
914 WX_DECLARE_LIST_WITH_DECL( wxRichTextLine
, wxRichTextLineList
, class WXDLLIMPEXP_RICHTEXT
);
917 * wxRichTextParagraph class declaration
918 * This object represents a single paragraph (or in a straight text editor, a line).
921 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraph
: public wxRichTextBox
923 DECLARE_DYNAMIC_CLASS(wxRichTextParagraph
)
927 wxRichTextParagraph(wxRichTextObject
* parent
= NULL
, wxTextAttr
* style
= NULL
);
928 wxRichTextParagraph(const wxString
& text
, wxRichTextObject
* parent
= NULL
, wxTextAttr
* paraStyle
= NULL
, wxTextAttr
* charStyle
= NULL
);
929 virtual ~wxRichTextParagraph();
930 wxRichTextParagraph(const wxRichTextParagraph
& obj
): wxRichTextBox() { Copy(obj
); }
935 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
938 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
940 /// Get/set the object size for the given range. Returns false if the range
941 /// is invalid for this object.
942 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0), wxArrayInt
* partialExtents
= NULL
) const;
944 /// Finds the absolute position and row height for the given character position
945 virtual bool FindPosition(wxDC
& dc
, long index
, wxPoint
& pt
, int* height
, bool forceLineStart
);
947 /// Hit-testing: returns a flag indicating hit test details, plus
948 /// information about position
949 virtual int HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
);
952 virtual void CalculateRange(long start
, long& end
);
956 /// Get the cached lines
957 wxRichTextLineList
& GetLines() { return m_cachedLines
; }
962 void Copy(const wxRichTextParagraph
& obj
);
965 virtual wxRichTextObject
* Clone() const { return new wxRichTextParagraph(*this); }
967 /// Clear the cached lines
972 /// Apply paragraph styles such as centering to the wrapped lines
973 virtual void ApplyParagraphStyle(const wxTextAttr
& attr
, const wxRect
& rect
);
975 /// Insert text at the given position
976 virtual bool InsertText(long pos
, const wxString
& text
);
978 /// Split an object at this position if necessary, and return
979 /// the previous object, or NULL if inserting at beginning.
980 virtual wxRichTextObject
* SplitAt(long pos
, wxRichTextObject
** previousObject
= NULL
);
982 /// Move content to a list from this point
983 virtual void MoveToList(wxRichTextObject
* obj
, wxList
& list
);
985 /// Add content back from list
986 virtual void MoveFromList(wxList
& list
);
988 /// Get the plain text searching from the start or end of the range.
989 /// The resulting string may be shorter than the range given.
990 bool GetContiguousPlainText(wxString
& text
, const wxRichTextRange
& range
, bool fromStart
= true);
992 /// Find a suitable wrap position. wrapPosition is the last position in the line to the left
994 bool FindWrapPosition(const wxRichTextRange
& range
, wxDC
& dc
, int availableSpace
, long& wrapPosition
, wxArrayInt
* partialExtents
);
996 /// Find the object at the given position
997 wxRichTextObject
* FindObjectAtPosition(long position
);
999 /// Get the bullet text for this paragraph.
1000 wxString
GetBulletText();
1002 /// Allocate or reuse a line object
1003 wxRichTextLine
* AllocateLine(int pos
);
1005 /// Clear remaining unused line objects, if any
1006 bool ClearUnusedLines(int lineCount
);
1008 /// Get combined attributes of the base style, paragraph style and character style. We use this to dynamically
1009 /// retrieve the actual style.
1010 wxTextAttr
GetCombinedAttributes(const wxTextAttr
& contentStyle
) const;
1012 /// Get combined attributes of the base style and paragraph style.
1013 wxTextAttr
GetCombinedAttributes() const;
1015 /// Get the first position from pos that has a line break character.
1016 long GetFirstLineBreakPosition(long pos
);
1018 /// Create default tabstop array
1019 static void InitDefaultTabs();
1021 /// Clear default tabstop array
1022 static void ClearDefaultTabs();
1024 /// Get default tabstop array
1025 static const wxArrayInt
& GetDefaultTabs() { return sm_defaultTabs
; }
1028 /// The lines that make up the wrapped paragraph
1029 wxRichTextLineList m_cachedLines
;
1031 /// Default tabstops
1032 static wxArrayInt sm_defaultTabs
;
1036 * wxRichTextPlainText class declaration
1037 * This object represents a single piece of text.
1040 class WXDLLIMPEXP_RICHTEXT wxRichTextPlainText
: public wxRichTextObject
1042 DECLARE_DYNAMIC_CLASS(wxRichTextPlainText
)
1046 wxRichTextPlainText(const wxString
& text
= wxEmptyString
, wxRichTextObject
* parent
= NULL
, wxTextAttr
* style
= NULL
);
1047 wxRichTextPlainText(const wxRichTextPlainText
& obj
): wxRichTextObject() { Copy(obj
); }
1052 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
1054 /// Lay the item out
1055 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
1057 /// Get/set the object size for the given range. Returns false if the range
1058 /// is invalid for this object.
1059 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0), wxArrayInt
* partialExtents
= NULL
) const;
1061 /// Get any text in this object for the given range
1062 virtual wxString
GetTextForRange(const wxRichTextRange
& range
) const;
1064 /// Do a split, returning an object containing the second part, and setting
1065 /// the first part in 'this'.
1066 virtual wxRichTextObject
* DoSplit(long pos
);
1069 virtual void CalculateRange(long start
, long& end
);
1072 virtual bool DeleteRange(const wxRichTextRange
& range
);
1074 /// Returns true if the object is empty
1075 virtual bool IsEmpty() const { return m_text
.empty(); }
1077 /// Returns true if this object can merge itself with the given one.
1078 virtual bool CanMerge(wxRichTextObject
* object
) const;
1080 /// Returns true if this object merged itself with the given one.
1081 /// The calling code will then delete the given object.
1082 virtual bool Merge(wxRichTextObject
* object
);
1084 /// Dump to output stream for debugging
1085 virtual void Dump(wxTextOutputStream
& stream
);
1087 /// Get the first position from pos that has a line break character.
1088 long GetFirstLineBreakPosition(long pos
);
1093 const wxString
& GetText() const { return m_text
; }
1096 void SetText(const wxString
& text
) { m_text
= text
; }
1101 void Copy(const wxRichTextPlainText
& obj
);
1104 virtual wxRichTextObject
* Clone() const { return new wxRichTextPlainText(*this); }
1106 bool DrawTabbedString(wxDC
& dc
, const wxTextAttr
& attr
, const wxRect
& rect
, wxString
& str
, wxCoord
& x
, wxCoord
& y
, bool selected
);
1113 * wxRichTextImageBlock stores information about an image, in binary in-memory form
1116 class WXDLLIMPEXP_FWD_BASE wxDataInputStream
;
1117 class WXDLLIMPEXP_FWD_BASE wxDataOutputStream
;
1119 class WXDLLIMPEXP_RICHTEXT wxRichTextImageBlock
: public wxObject
1122 wxRichTextImageBlock();
1123 wxRichTextImageBlock(const wxRichTextImageBlock
& block
);
1124 virtual ~wxRichTextImageBlock();
1129 // Load the original image into a memory block.
1130 // If the image is not a JPEG, we must convert it into a JPEG
1131 // to conserve space.
1132 // If it's not a JPEG we can make use of 'image', already scaled, so we don't have to
1133 // load the image a 2nd time.
1134 virtual bool MakeImageBlock(const wxString
& filename
, int imageType
, wxImage
& image
, bool convertToJPEG
= true);
1136 // Make an image block from the wxImage in the given
1138 virtual bool MakeImageBlock(wxImage
& image
, int imageType
, int quality
= 80);
1141 bool Write(const wxString
& filename
);
1143 // Write data in hex to a stream
1144 bool WriteHex(wxOutputStream
& stream
);
1146 // Read data in hex from a stream
1147 bool ReadHex(wxInputStream
& stream
, int length
, int imageType
);
1149 // Copy from 'block'
1150 void Copy(const wxRichTextImageBlock
& block
);
1152 // Load a wxImage from the block
1153 bool Load(wxImage
& image
);
1156 void operator=(const wxRichTextImageBlock
& block
);
1160 unsigned char* GetData() const { return m_data
; }
1161 size_t GetDataSize() const { return m_dataSize
; }
1162 int GetImageType() const { return m_imageType
; }
1164 void SetData(unsigned char* image
) { m_data
= image
; }
1165 void SetDataSize(size_t size
) { m_dataSize
= size
; }
1166 void SetImageType(int imageType
) { m_imageType
= imageType
; }
1168 bool Ok() const { return IsOk(); }
1169 bool IsOk() const { return GetData() != NULL
; }
1171 // Gets the extension for the block's type
1172 wxString
GetExtension() const;
1176 // Allocate and read from stream as a block of memory
1177 static unsigned char* ReadBlock(wxInputStream
& stream
, size_t size
);
1178 static unsigned char* ReadBlock(const wxString
& filename
, size_t size
);
1180 // Write memory block to stream
1181 static bool WriteBlock(wxOutputStream
& stream
, unsigned char* block
, size_t size
);
1183 // Write memory block to file
1184 static bool WriteBlock(const wxString
& filename
, unsigned char* block
, size_t size
);
1187 // Size in bytes of the image stored.
1188 // This is in the raw, original form such as a JPEG file.
1189 unsigned char* m_data
;
1191 int m_imageType
; // wxWin type id
1196 * wxRichTextImage class declaration
1197 * This object represents an image.
1200 class WXDLLIMPEXP_RICHTEXT wxRichTextImage
: public wxRichTextObject
1202 DECLARE_DYNAMIC_CLASS(wxRichTextImage
)
1206 wxRichTextImage(wxRichTextObject
* parent
= NULL
): wxRichTextObject(parent
) { }
1207 wxRichTextImage(const wxImage
& image
, wxRichTextObject
* parent
= NULL
, wxTextAttr
* charStyle
= NULL
);
1208 wxRichTextImage(const wxRichTextImageBlock
& imageBlock
, wxRichTextObject
* parent
= NULL
, wxTextAttr
* charStyle
= NULL
);
1209 wxRichTextImage(const wxRichTextImage
& obj
): wxRichTextObject() { Copy(obj
); }
1214 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
1216 /// Lay the item out
1217 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
1219 /// Get the object size for the given range. Returns false if the range
1220 /// is invalid for this object.
1221 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0), wxArrayInt
* partialExtents
= NULL
) const;
1223 /// Returns true if the object is empty
1224 virtual bool IsEmpty() const { return !m_image
.Ok(); }
1229 const wxImage
& GetImage() const { return m_image
; }
1232 void SetImage(const wxImage
& image
) { m_image
= image
; }
1234 /// Get the image block containing the raw data
1235 wxRichTextImageBlock
& GetImageBlock() { return m_imageBlock
; }
1240 void Copy(const wxRichTextImage
& obj
);
1243 virtual wxRichTextObject
* Clone() const { return new wxRichTextImage(*this); }
1245 /// Load wxImage from the block
1246 virtual bool LoadFromBlock();
1248 /// Make block from the wxImage
1249 virtual bool MakeBlock();
1252 // TODO: reduce the multiple representations of data
1255 wxRichTextImageBlock m_imageBlock
;
1260 * wxRichTextBuffer class declaration
1261 * This is a kind of box, used to represent the whole buffer
1264 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextCommand
;
1265 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextAction
;
1267 class WXDLLIMPEXP_RICHTEXT wxRichTextBuffer
: public wxRichTextParagraphLayoutBox
1269 DECLARE_DYNAMIC_CLASS(wxRichTextBuffer
)
1273 wxRichTextBuffer() { Init(); }
1274 wxRichTextBuffer(const wxRichTextBuffer
& obj
): wxRichTextParagraphLayoutBox() { Init(); Copy(obj
); }
1275 virtual ~wxRichTextBuffer() ;
1279 /// Gets the command processor
1280 wxCommandProcessor
* GetCommandProcessor() const { return m_commandProcessor
; }
1282 /// Set style sheet, if any.
1283 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
) { m_styleSheet
= styleSheet
; }
1284 virtual wxRichTextStyleSheet
* GetStyleSheet() const { return m_styleSheet
; }
1286 /// Set style sheet and notify of the change
1287 bool SetStyleSheetAndNotify(wxRichTextStyleSheet
* sheet
);
1289 /// Push style sheet to top of stack
1290 bool PushStyleSheet(wxRichTextStyleSheet
* styleSheet
);
1292 /// Pop style sheet from top of stack
1293 wxRichTextStyleSheet
* PopStyleSheet();
1295 /// Set/get table storing fonts
1296 wxRichTextFontTable
& GetFontTable() { return m_fontTable
; }
1297 const wxRichTextFontTable
& GetFontTable() const { return m_fontTable
; }
1298 void SetFontTable(const wxRichTextFontTable
& table
) { m_fontTable
= table
; }
1305 /// Clears the buffer, adds an empty paragraph, and clears the command processor.
1306 virtual void ResetAndClearCommands();
1309 virtual bool LoadFile(const wxString
& filename
, int type
= wxRICHTEXT_TYPE_ANY
);
1312 virtual bool SaveFile(const wxString
& filename
, int type
= wxRICHTEXT_TYPE_ANY
);
1314 /// Load from a stream
1315 virtual bool LoadFile(wxInputStream
& stream
, int type
= wxRICHTEXT_TYPE_ANY
);
1317 /// Save to a stream
1318 virtual bool SaveFile(wxOutputStream
& stream
, int type
= wxRICHTEXT_TYPE_ANY
);
1320 /// Set the handler flags, controlling loading and saving
1321 void SetHandlerFlags(int flags
) { m_handlerFlags
= flags
; }
1323 /// Get the handler flags, controlling loading and saving
1324 int GetHandlerFlags() const { return m_handlerFlags
; }
1326 /// Convenience function to add a paragraph of text
1327 virtual wxRichTextRange
AddParagraph(const wxString
& text
, wxTextAttr
* paraStyle
= NULL
) { Modify(); return wxRichTextParagraphLayoutBox::AddParagraph(text
, paraStyle
); }
1329 /// Begin collapsing undo/redo commands. Note that this may not work properly
1330 /// if combining commands that delete or insert content, changing ranges for
1331 /// subsequent actions.
1332 virtual bool BeginBatchUndo(const wxString
& cmdName
);
1334 /// End collapsing undo/redo commands
1335 virtual bool EndBatchUndo();
1337 /// Collapsing commands?
1338 virtual bool BatchingUndo() const { return m_batchedCommandDepth
> 0; }
1340 /// Submit immediately, or delay according to whether collapsing is on
1341 virtual bool SubmitAction(wxRichTextAction
* action
);
1343 /// Get collapsed command
1344 virtual wxRichTextCommand
* GetBatchedCommand() const { return m_batchedCommand
; }
1346 /// Begin suppressing undo/redo commands. The way undo is suppressed may be implemented
1347 /// differently by each command. If not dealt with by a command implementation, then
1348 /// it will be implemented automatically by not storing the command in the undo history
1349 /// when the action is submitted to the command processor.
1350 virtual bool BeginSuppressUndo();
1352 /// End suppressing undo/redo commands.
1353 virtual bool EndSuppressUndo();
1355 /// Collapsing commands?
1356 virtual bool SuppressingUndo() const { return m_suppressUndo
> 0; }
1358 /// Copy the range to the clipboard
1359 virtual bool CopyToClipboard(const wxRichTextRange
& range
);
1361 /// Paste the clipboard content to the buffer
1362 virtual bool PasteFromClipboard(long position
);
1364 /// Can we paste from the clipboard?
1365 virtual bool CanPasteFromClipboard() const;
1367 /// Begin using a style
1368 virtual bool BeginStyle(const wxTextAttr
& style
);
1371 virtual bool EndStyle();
1374 virtual bool EndAllStyles();
1376 /// Clear the style stack
1377 virtual void ClearStyleStack();
1379 /// Get the size of the style stack, for example to check correct nesting
1380 virtual size_t GetStyleStackSize() const { return m_attributeStack
.GetCount(); }
1382 /// Begin using bold
1386 bool EndBold() { return EndStyle(); }
1388 /// Begin using italic
1391 /// End using italic
1392 bool EndItalic() { return EndStyle(); }
1394 /// Begin using underline
1395 bool BeginUnderline();
1397 /// End using underline
1398 bool EndUnderline() { return EndStyle(); }
1400 /// Begin using point size
1401 bool BeginFontSize(int pointSize
);
1403 /// End using point size
1404 bool EndFontSize() { return EndStyle(); }
1406 /// Begin using this font
1407 bool BeginFont(const wxFont
& font
);
1409 /// End using a font
1410 bool EndFont() { return EndStyle(); }
1412 /// Begin using this colour
1413 bool BeginTextColour(const wxColour
& colour
);
1415 /// End using a colour
1416 bool EndTextColour() { return EndStyle(); }
1418 /// Begin using alignment
1419 bool BeginAlignment(wxTextAttrAlignment alignment
);
1422 bool EndAlignment() { return EndStyle(); }
1424 /// Begin left indent
1425 bool BeginLeftIndent(int leftIndent
, int leftSubIndent
= 0);
1428 bool EndLeftIndent() { return EndStyle(); }
1430 /// Begin right indent
1431 bool BeginRightIndent(int rightIndent
);
1433 /// End right indent
1434 bool EndRightIndent() { return EndStyle(); }
1436 /// Begin paragraph spacing
1437 bool BeginParagraphSpacing(int before
, int after
);
1439 /// End paragraph spacing
1440 bool EndParagraphSpacing() { return EndStyle(); }
1442 /// Begin line spacing
1443 bool BeginLineSpacing(int lineSpacing
);
1445 /// End line spacing
1446 bool EndLineSpacing() { return EndStyle(); }
1448 /// Begin numbered bullet
1449 bool BeginNumberedBullet(int bulletNumber
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
);
1451 /// End numbered bullet
1452 bool EndNumberedBullet() { return EndStyle(); }
1454 /// Begin symbol bullet
1455 bool BeginSymbolBullet(const wxString
& symbol
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_SYMBOL
);
1457 /// End symbol bullet
1458 bool EndSymbolBullet() { return EndStyle(); }
1460 /// Begin standard bullet
1461 bool BeginStandardBullet(const wxString
& bulletName
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_STANDARD
);
1463 /// End standard bullet
1464 bool EndStandardBullet() { return EndStyle(); }
1466 /// Begin named character style
1467 bool BeginCharacterStyle(const wxString
& characterStyle
);
1469 /// End named character style
1470 bool EndCharacterStyle() { return EndStyle(); }
1472 /// Begin named paragraph style
1473 bool BeginParagraphStyle(const wxString
& paragraphStyle
);
1475 /// End named character style
1476 bool EndParagraphStyle() { return EndStyle(); }
1478 /// Begin named list style
1479 bool BeginListStyle(const wxString
& listStyle
, int level
= 1, int number
= 1);
1481 /// End named character style
1482 bool EndListStyle() { return EndStyle(); }
1485 bool BeginURL(const wxString
& url
, const wxString
& characterStyle
= wxEmptyString
);
1488 bool EndURL() { return EndStyle(); }
1492 /// Add an event handler
1493 bool AddEventHandler(wxEvtHandler
* handler
);
1495 /// Remove an event handler
1496 bool RemoveEventHandler(wxEvtHandler
* handler
, bool deleteHandler
= false);
1498 /// Clear event handlers
1499 void ClearEventHandlers();
1501 /// Send event to event handlers. If sendToAll is true, will send to all event handlers,
1502 /// otherwise will stop at the first successful one.
1503 bool SendEvent(wxEvent
& event
, bool sendToAll
= true);
1508 void Copy(const wxRichTextBuffer
& obj
);
1511 virtual wxRichTextObject
* Clone() const { return new wxRichTextBuffer(*this); }
1513 /// Submit command to insert paragraphs
1514 bool InsertParagraphsWithUndo(long pos
, const wxRichTextParagraphLayoutBox
& paragraphs
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1516 /// Submit command to insert the given text
1517 bool InsertTextWithUndo(long pos
, const wxString
& text
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1519 /// Submit command to insert a newline
1520 bool InsertNewlineWithUndo(long pos
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1522 /// Submit command to insert the given image
1523 bool InsertImageWithUndo(long pos
, const wxRichTextImageBlock
& imageBlock
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1525 /// Submit command to delete this range
1526 bool DeleteRangeWithUndo(const wxRichTextRange
& range
, wxRichTextCtrl
* ctrl
);
1529 void Modify(bool modify
= true) { m_modified
= modify
; }
1530 bool IsModified() const { return m_modified
; }
1532 /// Get the style that is appropriate for a new paragraph at this position.
1533 /// If the previous paragraph has a paragraph style name, look up the next-paragraph
1535 wxTextAttr
GetStyleForNewParagraph(long pos
, bool caretPosition
= false, bool lookUpNewParaStyle
=false) const;
1537 /// Dumps contents of buffer for debugging purposes
1538 virtual void Dump();
1539 virtual void Dump(wxTextOutputStream
& stream
) { wxRichTextParagraphLayoutBox::Dump(stream
); }
1541 /// Returns the file handlers
1542 static wxList
& GetHandlers() { return sm_handlers
; }
1544 /// Adds a handler to the end
1545 static void AddHandler(wxRichTextFileHandler
*handler
);
1547 /// Inserts a handler at the front
1548 static void InsertHandler(wxRichTextFileHandler
*handler
);
1550 /// Removes a handler
1551 static bool RemoveHandler(const wxString
& name
);
1553 /// Finds a handler by name
1554 static wxRichTextFileHandler
*FindHandler(const wxString
& name
);
1556 /// Finds a handler by extension and type
1557 static wxRichTextFileHandler
*FindHandler(const wxString
& extension
, int imageType
);
1559 /// Finds a handler by filename or, if supplied, type
1560 static wxRichTextFileHandler
*FindHandlerFilenameOrType(const wxString
& filename
, int imageType
);
1562 /// Finds a handler by type
1563 static wxRichTextFileHandler
*FindHandler(int imageType
);
1565 /// Gets a wildcard incorporating all visible handlers. If 'types' is present,
1566 /// will be filled with the file type corresponding to each filter. This can be
1567 /// used to determine the type to pass to LoadFile given a selected filter.
1568 static wxString
GetExtWildcard(bool combine
= false, bool save
= false, wxArrayInt
* types
= NULL
);
1570 /// Clean up handlers
1571 static void CleanUpHandlers();
1573 /// Initialise the standard handlers
1574 static void InitStandardHandlers();
1577 static wxRichTextRenderer
* GetRenderer() { return sm_renderer
; }
1579 /// Set renderer, deleting old one
1580 static void SetRenderer(wxRichTextRenderer
* renderer
);
1582 /// Minimum margin between bullet and paragraph in 10ths of a mm
1583 static int GetBulletRightMargin() { return sm_bulletRightMargin
; }
1584 static void SetBulletRightMargin(int margin
) { sm_bulletRightMargin
= margin
; }
1586 /// Factor to multiply by character height to get a reasonable bullet size
1587 static float GetBulletProportion() { return sm_bulletProportion
; }
1588 static void SetBulletProportion(float prop
) { sm_bulletProportion
= prop
; }
1590 /// Scale factor for calculating dimensions
1591 double GetScale() const { return m_scale
; }
1592 void SetScale(double scale
) { m_scale
= scale
; }
1596 /// Command processor
1597 wxCommandProcessor
* m_commandProcessor
;
1599 /// Table storing fonts
1600 wxRichTextFontTable m_fontTable
;
1602 /// Has been modified?
1605 /// Collapsed command stack
1606 int m_batchedCommandDepth
;
1608 /// Name for collapsed command
1609 wxString m_batchedCommandsName
;
1611 /// Current collapsed command accumulating actions
1612 wxRichTextCommand
* m_batchedCommand
;
1614 /// Whether to suppress undo
1617 /// Style sheet, if any
1618 wxRichTextStyleSheet
* m_styleSheet
;
1620 /// List of event handlers that will be notified of events
1621 wxList m_eventHandlers
;
1623 /// Stack of attributes for convenience functions
1624 wxList m_attributeStack
;
1626 /// Flags to be passed to handlers
1630 static wxList sm_handlers
;
1633 static wxRichTextRenderer
* sm_renderer
;
1635 /// Minimum margin between bullet and paragraph in 10ths of a mm
1636 static int sm_bulletRightMargin
;
1638 /// Factor to multiply by character height to get a reasonable bullet size
1639 static float sm_bulletProportion
;
1641 /// Scaling factor in use: needed to calculate correct dimensions when printing
1646 * The command identifiers
1650 enum wxRichTextCommandId
1654 wxRICHTEXT_CHANGE_STYLE
1658 * Command classes for undo/redo
1662 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextAction
;
1663 class WXDLLIMPEXP_RICHTEXT wxRichTextCommand
: public wxCommand
1666 // Ctor for one action
1667 wxRichTextCommand(const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
1668 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
= false);
1670 // Ctor for multiple actions
1671 wxRichTextCommand(const wxString
& name
);
1673 virtual ~wxRichTextCommand();
1678 void AddAction(wxRichTextAction
* action
);
1679 void ClearActions();
1681 wxList
& GetActions() { return m_actions
; }
1689 * wxRichTextAction class declaration
1690 * There can be more than one action in a command.
1693 class WXDLLIMPEXP_RICHTEXT wxRichTextAction
: public wxObject
1696 wxRichTextAction(wxRichTextCommand
* cmd
, const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
1697 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
= false);
1699 virtual ~wxRichTextAction();
1704 /// Update the control appearance
1705 void UpdateAppearance(long caretPosition
, bool sendUpdateEvent
= false,
1706 wxArrayInt
* optimizationLineCharPositions
= NULL
, wxArrayInt
* optimizationLineYPositions
= NULL
, bool isDoCmd
= true);
1708 /// Replace the buffer paragraphs with the given fragment.
1709 void ApplyParagraphs(const wxRichTextParagraphLayoutBox
& fragment
);
1711 /// Get the fragments
1712 wxRichTextParagraphLayoutBox
& GetNewParagraphs() { return m_newParagraphs
; }
1713 wxRichTextParagraphLayoutBox
& GetOldParagraphs() { return m_oldParagraphs
; }
1715 /// Calculate arrays for refresh optimization
1716 void CalculateRefreshOptimizations(wxArrayInt
& optimizationLineCharPositions
, wxArrayInt
& optimizationLineYPositions
);
1718 /// Set/get the position used for e.g. insertion
1719 void SetPosition(long pos
) { m_position
= pos
; }
1720 long GetPosition() const { return m_position
; }
1722 /// Set/get the range for e.g. deletion
1723 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
1724 const wxRichTextRange
& GetRange() const { return m_range
; }
1727 const wxString
& GetName() const { return m_name
; }
1734 wxRichTextBuffer
* m_buffer
;
1737 wxRichTextCtrl
* m_ctrl
;
1739 // Stores the new paragraphs
1740 wxRichTextParagraphLayoutBox m_newParagraphs
;
1742 // Stores the old paragraphs
1743 wxRichTextParagraphLayoutBox m_oldParagraphs
;
1745 // The affected range
1746 wxRichTextRange m_range
;
1748 // The insertion point for this command
1751 // Ignore 1st 'Do' operation because we already did it
1754 // The command identifier
1755 wxRichTextCommandId m_cmdId
;
1762 // Include style sheet when loading and saving
1763 #define wxRICHTEXT_HANDLER_INCLUDE_STYLESHEET 0x0001
1765 // Save images to memory file system in HTML handler
1766 #define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_MEMORY 0x0010
1768 // Save images to files in HTML handler
1769 #define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_FILES 0x0020
1771 // Save images as inline base64 data in HTML handler
1772 #define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_BASE64 0x0040
1774 // Don't write header and footer (or BODY), so we can include the fragment
1775 // in a larger document
1776 #define wxRICHTEXT_HANDLER_NO_HEADER_FOOTER 0x0080
1779 * wxRichTextFileHandler
1780 * Base class for file handlers
1783 class WXDLLIMPEXP_RICHTEXT wxRichTextFileHandler
: public wxObject
1785 DECLARE_CLASS(wxRichTextFileHandler
)
1787 wxRichTextFileHandler(const wxString
& name
= wxEmptyString
, const wxString
& ext
= wxEmptyString
, int type
= 0)
1788 : m_name(name
), m_extension(ext
), m_type(type
), m_flags(0), m_visible(true)
1792 bool LoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
)
1793 { return DoLoadFile(buffer
, stream
); }
1794 bool SaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
)
1795 { return DoSaveFile(buffer
, stream
); }
1798 #if wxUSE_FFILE && wxUSE_STREAMS
1799 virtual bool LoadFile(wxRichTextBuffer
*buffer
, const wxString
& filename
);
1800 virtual bool SaveFile(wxRichTextBuffer
*buffer
, const wxString
& filename
);
1801 #endif // wxUSE_STREAMS && wxUSE_STREAMS
1803 /// Can we handle this filename (if using files)? By default, checks the extension.
1804 virtual bool CanHandle(const wxString
& filename
) const;
1806 /// Can we save using this handler?
1807 virtual bool CanSave() const { return false; }
1809 /// Can we load using this handler?
1810 virtual bool CanLoad() const { return false; }
1812 /// Should this handler be visible to the user?
1813 virtual bool IsVisible() const { return m_visible
; }
1814 virtual void SetVisible(bool visible
) { m_visible
= visible
; }
1816 /// The name of the nandler
1817 void SetName(const wxString
& name
) { m_name
= name
; }
1818 wxString
GetName() const { return m_name
; }
1820 /// The default extension to recognise
1821 void SetExtension(const wxString
& ext
) { m_extension
= ext
; }
1822 wxString
GetExtension() const { return m_extension
; }
1824 /// The handler type
1825 void SetType(int type
) { m_type
= type
; }
1826 int GetType() const { return m_type
; }
1828 /// Flags controlling how loading and saving is done
1829 void SetFlags(int flags
) { m_flags
= flags
; }
1830 int GetFlags() const { return m_flags
; }
1832 /// Encoding to use when saving a file. If empty, a suitable encoding is chosen
1833 void SetEncoding(const wxString
& encoding
) { m_encoding
= encoding
; }
1834 const wxString
& GetEncoding() const { return m_encoding
; }
1839 virtual bool DoLoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
) = 0;
1840 virtual bool DoSaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
) = 0;
1844 wxString m_encoding
;
1845 wxString m_extension
;
1852 * wxRichTextPlainTextHandler
1853 * Plain text handler
1856 class WXDLLIMPEXP_RICHTEXT wxRichTextPlainTextHandler
: public wxRichTextFileHandler
1858 DECLARE_CLASS(wxRichTextPlainTextHandler
)
1860 wxRichTextPlainTextHandler(const wxString
& name
= wxT("Text"), const wxString
& ext
= wxT("txt"), int type
= wxRICHTEXT_TYPE_TEXT
)
1861 : wxRichTextFileHandler(name
, ext
, type
)
1864 /// Can we save using this handler?
1865 virtual bool CanSave() const { return true; }
1867 /// Can we load using this handler?
1868 virtual bool CanLoad() const { return true; }
1873 virtual bool DoLoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
);
1874 virtual bool DoSaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
);
1882 * The data object for a wxRichTextBuffer
1885 class WXDLLIMPEXP_RICHTEXT wxRichTextBufferDataObject
: public wxDataObjectSimple
1888 // ctor doesn't copy the pointer, so it shouldn't go away while this object
1890 wxRichTextBufferDataObject(wxRichTextBuffer
* richTextBuffer
= (wxRichTextBuffer
*) NULL
);
1891 virtual ~wxRichTextBufferDataObject();
1893 // after a call to this function, the buffer is owned by the caller and it
1894 // is responsible for deleting it
1895 wxRichTextBuffer
* GetRichTextBuffer();
1897 // Returns the id for the new data format
1898 static const wxChar
* GetRichTextBufferFormatId() { return ms_richTextBufferFormatId
; }
1900 // base class pure virtuals
1902 virtual wxDataFormat
GetPreferredFormat(Direction dir
) const;
1903 virtual size_t GetDataSize() const;
1904 virtual bool GetDataHere(void *pBuf
) const;
1905 virtual bool SetData(size_t len
, const void *buf
);
1909 virtual size_t GetDataSize(const wxDataFormat
&) const { return GetDataSize(); }
1910 virtual bool GetDataHere(const wxDataFormat
&, void *buf
) const { return GetDataHere(buf
); }
1911 virtual bool SetData(const wxDataFormat
&, size_t len
, const void *buf
) { return SetData(len
, buf
); }
1914 wxDataFormat m_formatRichTextBuffer
; // our custom format
1915 wxRichTextBuffer
* m_richTextBuffer
; // our data
1916 static const wxChar
* ms_richTextBufferFormatId
; // our format id
1922 * wxRichTextRenderer isolates common drawing functionality
1925 class WXDLLIMPEXP_RICHTEXT wxRichTextRenderer
: public wxObject
1928 wxRichTextRenderer() {}
1929 virtual ~wxRichTextRenderer() {}
1931 /// Draw a standard bullet, as specified by the value of GetBulletName
1932 virtual bool DrawStandardBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttr
& attr
, const wxRect
& rect
) = 0;
1934 /// Draw a bullet that can be described by text, such as numbered or symbol bullets
1935 virtual bool DrawTextBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttr
& attr
, const wxRect
& rect
, const wxString
& text
) = 0;
1937 /// Draw a bitmap bullet, where the bullet bitmap is specified by the value of GetBulletName
1938 virtual bool DrawBitmapBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttr
& attr
, const wxRect
& rect
) = 0;
1940 /// Enumerate the standard bullet names currently supported
1941 virtual bool EnumerateStandardBulletNames(wxArrayString
& bulletNames
) = 0;
1945 * wxRichTextStdRenderer: standard renderer
1948 class WXDLLIMPEXP_RICHTEXT wxRichTextStdRenderer
: public wxRichTextRenderer
1951 wxRichTextStdRenderer() {}
1953 /// Draw a standard bullet, as specified by the value of GetBulletName
1954 virtual bool DrawStandardBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttr
& attr
, const wxRect
& rect
);
1956 /// Draw a bullet that can be described by text, such as numbered or symbol bullets
1957 virtual bool DrawTextBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttr
& attr
, const wxRect
& rect
, const wxString
& text
);
1959 /// Draw a bitmap bullet, where the bullet bitmap is specified by the value of GetBulletName
1960 virtual bool DrawBitmapBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttr
& attr
, const wxRect
& rect
);
1962 /// Enumerate the standard bullet names currently supported
1963 virtual bool EnumerateStandardBulletNames(wxArrayString
& bulletNames
);
1971 inline bool wxRichTextHasStyle(int flags
, int style
)
1973 return ((flags
& style
) == style
);
1976 /// Compare two attribute objects
1977 WXDLLIMPEXP_RICHTEXT
bool wxTextAttrEq(const wxTextAttr
& attr1
, const wxTextAttr
& attr2
);
1978 WXDLLIMPEXP_RICHTEXT
bool wxTextAttrEq(const wxTextAttr
& attr1
, const wxTextAttr
& attr2
);
1980 /// Compare two attribute objects, but take into account the flags
1981 /// specifying attributes of interest.
1982 WXDLLIMPEXP_RICHTEXT
bool wxTextAttrEqPartial(const wxTextAttr
& attr1
, const wxTextAttr
& attr2
, int flags
);
1984 /// Apply one style to another
1985 WXDLLIMPEXP_RICHTEXT
bool wxRichTextApplyStyle(wxTextAttr
& destStyle
, const wxTextAttr
& style
, wxTextAttr
* compareWith
= NULL
);
1987 // Remove attributes
1988 WXDLLIMPEXP_RICHTEXT
bool wxRichTextRemoveStyle(wxTextAttr
& destStyle
, const wxTextAttr
& style
);
1990 /// Combine two bitlists
1991 WXDLLIMPEXP_RICHTEXT
bool wxRichTextCombineBitlists(int& valueA
, int valueB
, int& flagsA
, int flagsB
);
1993 /// Compare two bitlists
1994 WXDLLIMPEXP_RICHTEXT
bool wxRichTextBitlistsEqPartial(int valueA
, int valueB
, int flags
);
1996 /// Split into paragraph and character styles
1997 WXDLLIMPEXP_RICHTEXT
bool wxRichTextSplitParaCharStyles(const wxTextAttr
& style
, wxTextAttr
& parStyle
, wxTextAttr
& charStyle
);
2000 WXDLLIMPEXP_RICHTEXT
bool wxRichTextTabsEq(const wxArrayInt
& tabs1
, const wxArrayInt
& tabs2
);
2002 /// Convert a decimal to Roman numerals
2003 WXDLLIMPEXP_RICHTEXT wxString
wxRichTextDecimalToRoman(long n
);
2005 WXDLLIMPEXP_RICHTEXT
void wxRichTextModuleInit();
2011 // _WX_RICHTEXTBUFFER_H_