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"
77 extern WXDLLIMPEXP_RICHTEXT
const wxChar wxRichTextLineBreakChar
;
83 #define wxRICHTEXT_TYPE_ANY 0
84 #define wxRICHTEXT_TYPE_TEXT 1
85 #define wxRICHTEXT_TYPE_XML 2
86 #define wxRICHTEXT_TYPE_HTML 3
87 #define wxRICHTEXT_TYPE_RTF 4
88 #define wxRICHTEXT_TYPE_PDF 5
91 * Forward declarations
94 class WXDLLIMPEXP_RICHTEXT wxRichTextCtrl
;
95 class WXDLLIMPEXP_RICHTEXT wxRichTextObject
;
96 class WXDLLIMPEXP_RICHTEXT wxRichTextCacheObject
;
97 class WXDLLIMPEXP_RICHTEXT wxRichTextObjectList
;
98 class WXDLLIMPEXP_RICHTEXT wxRichTextLine
;
99 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraph
;
100 class WXDLLIMPEXP_RICHTEXT wxRichTextFileHandler
;
101 class WXDLLIMPEXP_RICHTEXT wxRichTextStyleSheet
;
102 class WXDLLIMPEXP_RICHTEXT wxTextAttrEx
;
103 class WXDLLIMPEXP_RICHTEXT wxRichTextListStyleDefinition
;
104 class WXDLLIMPEXP_RICHTEXT wxRichTextEvent
;
105 class WXDLLIMPEXP_RICHTEXT wxRichTextRenderer
;
106 class WXDLLIMPEXP_RICHTEXT wxRichTextBuffer
;
109 * Flags determining the available space, passed to Layout
112 #define wxRICHTEXT_FIXED_WIDTH 0x01
113 #define wxRICHTEXT_FIXED_HEIGHT 0x02
114 #define wxRICHTEXT_VARIABLE_WIDTH 0x04
115 #define wxRICHTEXT_VARIABLE_HEIGHT 0x08
117 // Only lay out the part of the buffer that lies within
118 // the rect passed to Layout.
119 #define wxRICHTEXT_LAYOUT_SPECIFIED_RECT 0x10
122 * Flags to pass to Draw
125 // Ignore paragraph cache optimization, e.g. for printing purposes
126 // where one line may be drawn higher (on the next page) compared
127 // with the previous line
128 #define wxRICHTEXT_DRAW_IGNORE_CACHE 0x01
131 * Flags returned from hit-testing
134 // The point was not on this object
135 #define wxRICHTEXT_HITTEST_NONE 0x01
136 // The point was before the position returned from HitTest
137 #define wxRICHTEXT_HITTEST_BEFORE 0x02
138 // The point was after the position returned from HitTest
139 #define wxRICHTEXT_HITTEST_AFTER 0x04
140 // The point was on the position returned from HitTest
141 #define wxRICHTEXT_HITTEST_ON 0x08
144 * Flags for GetRangeSize
147 #define wxRICHTEXT_FORMATTED 0x01
148 #define wxRICHTEXT_UNFORMATTED 0x02
151 * Flags for SetStyle/SetListStyle
154 #define wxRICHTEXT_SETSTYLE_NONE 0x00
156 // Specifies that this operation should be undoable
157 #define wxRICHTEXT_SETSTYLE_WITH_UNDO 0x01
159 // Specifies that the style should not be applied if the
160 // combined style at this point is already the style in question.
161 #define wxRICHTEXT_SETSTYLE_OPTIMIZE 0x02
163 // Specifies that the style should only be applied to paragraphs,
164 // and not the content. This allows content styling to be
165 // preserved independently from that of e.g. a named paragraph style.
166 #define wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY 0x04
168 // Specifies that the style should only be applied to characters,
169 // and not the paragraph. This allows content styling to be
170 // preserved independently from that of e.g. a named paragraph style.
171 #define wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY 0x08
173 // For SetListStyle only: specifies starting from the given number, otherwise
174 // deduces number from existing attributes
175 #define wxRICHTEXT_SETSTYLE_RENUMBER 0x10
177 // For SetListStyle only: specifies the list level for all paragraphs, otherwise
178 // the current indentation will be used
179 #define wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL 0x20
181 // Resets the existing style before applying the new style
182 #define wxRICHTEXT_SETSTYLE_RESET 0x40
185 * Flags for text insertion
188 #define wxRICHTEXT_INSERT_NONE 0x00
189 #define wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE 0x01
192 * Extra formatting flags not in wxTextAttr
195 #define wxTEXT_ATTR_PARA_SPACING_AFTER 0x00000800
196 #define wxTEXT_ATTR_PARA_SPACING_BEFORE 0x00001000
197 #define wxTEXT_ATTR_LINE_SPACING 0x00002000
198 #define wxTEXT_ATTR_CHARACTER_STYLE_NAME 0x00004000
199 #define wxTEXT_ATTR_PARAGRAPH_STYLE_NAME 0x00008000
200 #define wxTEXT_ATTR_LIST_STYLE_NAME 0x00010000
201 #define wxTEXT_ATTR_BULLET_STYLE 0x00020000
202 #define wxTEXT_ATTR_BULLET_NUMBER 0x00040000
203 #define wxTEXT_ATTR_BULLET_TEXT 0x00080000
204 #define wxTEXT_ATTR_BULLET_NAME 0x00100000
205 #define wxTEXT_ATTR_URL 0x00200000
206 #define wxTEXT_ATTR_PAGE_BREAK 0x00400000
207 #define wxTEXT_ATTR_EFFECTS 0x00800000
208 #define wxTEXT_ATTR_OUTLINE_LEVEL 0x01000000
211 * Styles for wxTextAttrEx::SetBulletStyle
214 #define wxTEXT_ATTR_BULLET_STYLE_NONE 0x00000000
215 #define wxTEXT_ATTR_BULLET_STYLE_ARABIC 0x00000001
216 #define wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER 0x00000002
217 #define wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER 0x00000004
218 #define wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER 0x00000008
219 #define wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER 0x00000010
220 #define wxTEXT_ATTR_BULLET_STYLE_SYMBOL 0x00000020
221 #define wxTEXT_ATTR_BULLET_STYLE_BITMAP 0x00000040
222 #define wxTEXT_ATTR_BULLET_STYLE_PARENTHESES 0x00000080
223 #define wxTEXT_ATTR_BULLET_STYLE_PERIOD 0x00000100
224 #define wxTEXT_ATTR_BULLET_STYLE_STANDARD 0x00000200
225 #define wxTEXT_ATTR_BULLET_STYLE_RIGHT_PARENTHESIS 0x00000400
226 #define wxTEXT_ATTR_BULLET_STYLE_OUTLINE 0x00000800
228 #define wxTEXT_ATTR_BULLET_STYLE_ALIGN_LEFT 0x00000000
229 #define wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT 0x00001000
230 #define wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE 0x00002000
233 * Styles for wxTextAttrEx::SetTextEffects
236 #define wxTEXT_ATTR_EFFECT_NONE 0x00000000
237 #define wxTEXT_ATTR_EFFECT_CAPITALS 0x00000001
238 #define wxTEXT_ATTR_EFFECT_SMALL_CAPITALS 0x00000002
239 #define wxTEXT_ATTR_EFFECT_STRIKETHROUGH 0x00000004
240 #define wxTEXT_ATTR_EFFECT_DOUBLE_STRIKETHROUGH 0x00000008
241 #define wxTEXT_ATTR_EFFECT_SHADOW 0x00000010
242 #define wxTEXT_ATTR_EFFECT_EMBOSS 0x00000020
243 #define wxTEXT_ATTR_EFFECT_OUTLINE 0x00000040
244 #define wxTEXT_ATTR_EFFECT_ENGRAVE 0x00000080
245 #define wxTEXT_ATTR_EFFECT_SUPERSCRIPT 0x00000100
246 #define wxTEXT_ATTR_EFFECT_SUBSCRIPT 0x00000200
249 * Line spacing values
252 #define wxTEXT_ATTR_LINE_SPACING_NORMAL 10
253 #define wxTEXT_ATTR_LINE_SPACING_HALF 15
254 #define wxTEXT_ATTR_LINE_SPACING_TWICE 20
257 * Character and paragraph combined styles
260 #define wxTEXT_ATTR_CHARACTER (wxTEXT_ATTR_FONT|wxTEXT_ATTR_EFFECTS|wxTEXT_ATTR_BACKGROUND_COLOUR|wxTEXT_ATTR_TEXT_COLOUR|wxTEXT_ATTR_CHARACTER_STYLE_NAME|wxTEXT_ATTR_URL)
262 #define wxTEXT_ATTR_PARAGRAPH (wxTEXT_ATTR_ALIGNMENT|wxTEXT_ATTR_LEFT_INDENT|wxTEXT_ATTR_RIGHT_INDENT|wxTEXT_ATTR_TABS|\
263 wxTEXT_ATTR_PARA_SPACING_BEFORE|wxTEXT_ATTR_PARA_SPACING_AFTER|wxTEXT_ATTR_LINE_SPACING|\
264 wxTEXT_ATTR_BULLET_STYLE|wxTEXT_ATTR_BULLET_NUMBER|wxTEXT_ATTR_BULLET_TEXT|wxTEXT_ATTR_BULLET_NAME|\
265 wxTEXT_ATTR_PARAGRAPH_STYLE_NAME|wxTEXT_ATTR_LIST_STYLE_NAME|wxTEXT_ATTR_OUTLINE_LEVEL)
267 #define wxTEXT_ATTR_ALL (wxTEXT_ATTR_CHARACTER|wxTEXT_ATTR_PARAGRAPH)
270 * wxRichTextRange class declaration
271 * This stores beginning and end positions for a range of data.
274 class WXDLLIMPEXP_RICHTEXT wxRichTextRange
279 wxRichTextRange() { m_start
= 0; m_end
= 0; }
280 wxRichTextRange(long start
, long end
) { m_start
= start
; m_end
= end
; }
281 wxRichTextRange(const wxRichTextRange
& range
) { m_start
= range
.m_start
; m_end
= range
.m_end
; }
282 ~wxRichTextRange() {}
284 void operator =(const wxRichTextRange
& range
) { m_start
= range
.m_start
; m_end
= range
.m_end
; }
285 bool operator ==(const wxRichTextRange
& range
) const { return (m_start
== range
.m_start
&& m_end
== range
.m_end
); }
286 bool operator !=(const wxRichTextRange
& range
) const { return (m_start
!= range
.m_start
&& m_end
!= range
.m_end
); }
287 wxRichTextRange
operator -(const wxRichTextRange
& range
) const { return wxRichTextRange(m_start
- range
.m_start
, m_end
- range
.m_end
); }
288 wxRichTextRange
operator +(const wxRichTextRange
& range
) const { return wxRichTextRange(m_start
+ range
.m_start
, m_end
+ range
.m_end
); }
290 void SetRange(long start
, long end
) { m_start
= start
; m_end
= end
; }
292 void SetStart(long start
) { m_start
= start
; }
293 long GetStart() const { return m_start
; }
295 void SetEnd(long end
) { m_end
= end
; }
296 long GetEnd() const { return m_end
; }
298 /// Returns true if this range is completely outside 'range'
299 bool IsOutside(const wxRichTextRange
& range
) const { return range
.m_start
> m_end
|| range
.m_end
< m_start
; }
301 /// Returns true if this range is completely within 'range'
302 bool IsWithin(const wxRichTextRange
& range
) const { return m_start
>= range
.m_start
&& m_end
<= range
.m_end
; }
304 /// Returns true if the given position is within this range. Allow
305 /// for the possibility of an empty range - assume the position
306 /// is within this empty range. NO, I think we should not match with an empty range.
307 // bool Contains(long pos) const { return pos >= m_start && (pos <= m_end || GetLength() == 0); }
308 bool Contains(long pos
) const { return pos
>= m_start
&& pos
<= m_end
; }
310 /// Limit this range to be within 'range'
311 bool LimitTo(const wxRichTextRange
& range
) ;
313 /// Gets the length of the range
314 long GetLength() const { return m_end
- m_start
+ 1; }
316 /// Swaps the start and end
317 void Swap() { long tmp
= m_start
; m_start
= m_end
; m_end
= tmp
; }
319 /// Convert to internal form: (n, n) is the range of a single character.
320 wxRichTextRange
ToInternal() const { return wxRichTextRange(m_start
, m_end
-1); }
322 /// Convert from internal to public API form: (n, n+1) is the range of a single character.
323 wxRichTextRange
FromInternal() const { return wxRichTextRange(m_start
, m_end
+1); }
330 #define wxRICHTEXT_ALL wxRichTextRange(-2, -2)
331 #define wxRICHTEXT_NONE wxRichTextRange(-1, -1)
334 * wxTextAttrEx is an extended version of wxTextAttr with more paragraph attributes.
337 class WXDLLIMPEXP_RICHTEXT wxTextAttrEx
: public wxTextAttr
341 wxTextAttrEx(const wxTextAttrEx
& attr
);
342 wxTextAttrEx(const wxTextAttr
& attr
) { Init(); (*this) = attr
; }
343 wxTextAttrEx() { Init(); }
345 // Initialise this object
349 void Copy(const wxTextAttrEx
& attr
);
351 // Assignment from a wxTextAttrEx object
352 void operator= (const wxTextAttrEx
& attr
);
354 // Assignment from a wxTextAttr object
355 void operator= (const wxTextAttr
& attr
);
358 bool operator== (const wxTextAttrEx
& attr
) const;
361 void SetCharacterStyleName(const wxString
& name
) { m_characterStyleName
= name
; SetFlags(GetFlags() | wxTEXT_ATTR_CHARACTER_STYLE_NAME
); }
362 void SetParagraphStyleName(const wxString
& name
) { m_paragraphStyleName
= name
; SetFlags(GetFlags() | wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
); }
363 void SetListStyleName(const wxString
& name
) { m_listStyleName
= name
; SetFlags(GetFlags() | wxTEXT_ATTR_LIST_STYLE_NAME
); }
364 void SetParagraphSpacingAfter(int spacing
) { m_paragraphSpacingAfter
= spacing
; SetFlags(GetFlags() | wxTEXT_ATTR_PARA_SPACING_AFTER
); }
365 void SetParagraphSpacingBefore(int spacing
) { m_paragraphSpacingBefore
= spacing
; SetFlags(GetFlags() | wxTEXT_ATTR_PARA_SPACING_BEFORE
); }
366 void SetLineSpacing(int spacing
) { m_lineSpacing
= spacing
; SetFlags(GetFlags() | wxTEXT_ATTR_LINE_SPACING
); }
367 void SetBulletStyle(int style
) { m_bulletStyle
= style
; SetFlags(GetFlags() | wxTEXT_ATTR_BULLET_STYLE
); }
368 void SetBulletNumber(int n
) { m_bulletNumber
= n
; SetFlags(GetFlags() | wxTEXT_ATTR_BULLET_NUMBER
); }
369 void SetBulletText(const wxString
& text
) { m_bulletText
= text
; SetFlags(GetFlags() | wxTEXT_ATTR_BULLET_TEXT
); }
370 void SetBulletName(const wxString
& name
) { m_bulletName
= name
; SetFlags(GetFlags() | wxTEXT_ATTR_BULLET_NAME
); }
371 void SetBulletFont(const wxString
& bulletFont
) { m_bulletFont
= bulletFont
; }
372 void SetURL(const wxString
& url
) { m_urlTarget
= url
; SetFlags(GetFlags() | wxTEXT_ATTR_URL
); }
373 void SetPageBreak(bool pageBreak
= true) { SetFlags(pageBreak
? (GetFlags() | wxTEXT_ATTR_PAGE_BREAK
) : (GetFlags() & ~wxTEXT_ATTR_PAGE_BREAK
)); }
374 void SetTextEffects(int effects
) { m_textEffects
= effects
; SetFlags(GetFlags() | wxTEXT_ATTR_EFFECTS
); }
375 void SetTextEffectFlags(int effects
) { m_textEffectFlags
= effects
; }
376 void SetOutlineLevel(int level
) { m_outlineLevel
= level
; SetFlags(GetFlags() | wxTEXT_ATTR_OUTLINE_LEVEL
); }
378 const wxString
& GetCharacterStyleName() const { return m_characterStyleName
; }
379 const wxString
& GetParagraphStyleName() const { return m_paragraphStyleName
; }
380 const wxString
& GetListStyleName() const { return m_listStyleName
; }
381 int GetParagraphSpacingAfter() const { return m_paragraphSpacingAfter
; }
382 int GetParagraphSpacingBefore() const { return m_paragraphSpacingBefore
; }
383 int GetLineSpacing() const { return m_lineSpacing
; }
384 int GetBulletStyle() const { return m_bulletStyle
; }
385 int GetBulletNumber() const { return m_bulletNumber
; }
386 const wxString
& GetBulletText() const { return m_bulletText
; }
387 const wxString
& GetBulletName() const { return m_bulletName
; }
388 const wxString
& GetBulletFont() const { return m_bulletFont
; }
389 const wxString
& GetURL() const { return m_urlTarget
; }
390 int GetTextEffects() const { return m_textEffects
; }
391 int GetTextEffectFlags() const { return m_textEffectFlags
; }
392 int GetOutlineLevel() const { return m_outlineLevel
; }
394 bool HasFontWeight() const { return (GetFlags() & wxTEXT_ATTR_FONT_WEIGHT
) != 0; }
395 bool HasFontSize() const { return (GetFlags() & wxTEXT_ATTR_FONT_SIZE
) != 0; }
396 bool HasFontItalic() const { return (GetFlags() & wxTEXT_ATTR_FONT_ITALIC
) != 0; }
397 bool HasFontUnderlined() const { return (GetFlags() & wxTEXT_ATTR_FONT_UNDERLINE
) != 0; }
398 bool HasFontFaceName() const { return (GetFlags() & wxTEXT_ATTR_FONT_FACE
) != 0; }
400 bool HasParagraphSpacingAfter() const { return HasFlag(wxTEXT_ATTR_PARA_SPACING_AFTER
); }
401 bool HasParagraphSpacingBefore() const { return HasFlag(wxTEXT_ATTR_PARA_SPACING_BEFORE
); }
402 bool HasLineSpacing() const { return HasFlag(wxTEXT_ATTR_LINE_SPACING
); }
403 bool HasCharacterStyleName() const { return HasFlag(wxTEXT_ATTR_CHARACTER_STYLE_NAME
) && !m_characterStyleName
.IsEmpty(); }
404 bool HasParagraphStyleName() const { return HasFlag(wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
) && !m_paragraphStyleName
.IsEmpty(); }
405 bool HasListStyleName() const { return HasFlag(wxTEXT_ATTR_LIST_STYLE_NAME
) || !m_listStyleName
.IsEmpty(); }
406 bool HasBulletStyle() const { return HasFlag(wxTEXT_ATTR_BULLET_STYLE
); }
407 bool HasBulletNumber() const { return HasFlag(wxTEXT_ATTR_BULLET_NUMBER
); }
408 bool HasBulletText() const { return HasFlag(wxTEXT_ATTR_BULLET_TEXT
); }
409 bool HasBulletName() const { return HasFlag(wxTEXT_ATTR_BULLET_NAME
); }
410 bool HasURL() const { return HasFlag(wxTEXT_ATTR_URL
); }
411 bool HasPageBreak() const { return HasFlag(wxTEXT_ATTR_PAGE_BREAK
); }
412 bool HasTextEffects() const { return HasFlag(wxTEXT_ATTR_EFFECTS
); }
413 bool HasTextEffect(int effect
) const { return HasFlag(wxTEXT_ATTR_EFFECTS
) && ((GetTextEffectFlags() & effect
) != 0); }
414 bool HasOutlineLevel() const { return HasFlag(wxTEXT_ATTR_OUTLINE_LEVEL
); }
416 // Is this a character style?
417 bool IsCharacterStyle() const { return (0 != (GetFlags() & wxTEXT_ATTR_CHARACTER
)); }
418 bool IsParagraphStyle() const { return (0 != (GetFlags() & wxTEXT_ATTR_PARAGRAPH
)); }
420 // returns false if we have any attributes set, true otherwise
421 bool IsDefault() const
423 return (GetFlags() == 0);
426 // return the attribute having the valid font and colours: it uses the
427 // attributes set in attr and falls back first to attrDefault and then to
428 // the text control font/colours for those attributes which are not set
429 static wxTextAttrEx
CombineEx(const wxTextAttrEx
& attr
,
430 const wxTextAttrEx
& attrDef
,
431 const wxTextCtrlBase
*text
);
435 int m_paragraphSpacingAfter
;
436 int m_paragraphSpacingBefore
;
441 int m_textEffectFlags
;
443 wxString m_bulletText
;
444 wxString m_bulletFont
;
445 wxString m_bulletName
;
446 wxString m_urlTarget
;
449 wxString m_characterStyleName
;
452 wxString m_paragraphStyleName
;
455 wxString m_listStyleName
;
459 * wxRichTextAttr stores attributes without a wxFont object, so is a much more
460 * efficient way to query styles.
463 class WXDLLIMPEXP_RICHTEXT wxRichTextAttr
467 wxRichTextAttr(const wxTextAttrEx
& attr
);
468 wxRichTextAttr(const wxRichTextAttr
& attr
);
469 wxRichTextAttr() { Init(); }
470 wxRichTextAttr(const wxColour
& colText
,
471 const wxColour
& colBack
= wxNullColour
,
472 wxTextAttrAlignment alignment
= wxTEXT_ALIGNMENT_DEFAULT
);
474 // Initialise this object.
478 void Copy(const wxRichTextAttr
& attr
);
480 // Assignment from a wxRichTextAttr object.
481 void operator= (const wxRichTextAttr
& attr
);
483 // Assignment from a wxTextAttrEx object.
484 void operator= (const wxTextAttrEx
& attr
);
487 bool operator== (const wxRichTextAttr
& attr
) const;
489 // Making a wxTextAttrEx object.
490 operator wxTextAttrEx () const ;
492 // Create font from font attributes.
493 wxFont
CreateFont() const;
495 // Get attributes from font.
496 bool GetFontAttributes(const wxFont
& font
);
499 void SetTextColour(const wxColour
& colText
) { m_colText
= colText
; m_flags
|= wxTEXT_ATTR_TEXT_COLOUR
; }
500 void SetBackgroundColour(const wxColour
& colBack
) { m_colBack
= colBack
; m_flags
|= wxTEXT_ATTR_BACKGROUND_COLOUR
; }
501 void SetAlignment(wxTextAttrAlignment alignment
) { m_textAlignment
= alignment
; m_flags
|= wxTEXT_ATTR_ALIGNMENT
; }
502 void SetTabs(const wxArrayInt
& tabs
) { m_tabs
= tabs
; m_flags
|= wxTEXT_ATTR_TABS
; }
503 void SetLeftIndent(int indent
, int subIndent
= 0) { m_leftIndent
= indent
; m_leftSubIndent
= subIndent
; m_flags
|= wxTEXT_ATTR_LEFT_INDENT
; }
504 void SetRightIndent(int indent
) { m_rightIndent
= indent
; m_flags
|= wxTEXT_ATTR_RIGHT_INDENT
; }
506 void SetFontSize(int pointSize
) { m_fontSize
= pointSize
; m_flags
|= wxTEXT_ATTR_FONT_SIZE
; }
507 void SetFontStyle(int fontStyle
) { m_fontStyle
= fontStyle
; m_flags
|= wxTEXT_ATTR_FONT_ITALIC
; }
508 void SetFontWeight(int fontWeight
) { m_fontWeight
= fontWeight
; m_flags
|= wxTEXT_ATTR_FONT_WEIGHT
; }
509 void SetFontFaceName(const wxString
& faceName
) { m_fontFaceName
= faceName
; m_flags
|= wxTEXT_ATTR_FONT_FACE
; }
510 void SetFontUnderlined(bool underlined
) { m_fontUnderlined
= underlined
; m_flags
|= wxTEXT_ATTR_FONT_UNDERLINE
; }
512 void SetFlags(long flags
) { m_flags
= flags
; }
514 void SetCharacterStyleName(const wxString
& name
) { m_characterStyleName
= name
; m_flags
|= wxTEXT_ATTR_CHARACTER_STYLE_NAME
; }
515 void SetParagraphStyleName(const wxString
& name
) { m_paragraphStyleName
= name
; m_flags
|= wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
; }
516 void SetListStyleName(const wxString
& name
) { m_listStyleName
= name
; SetFlags(GetFlags() | wxTEXT_ATTR_LIST_STYLE_NAME
); }
517 void SetParagraphSpacingAfter(int spacing
) { m_paragraphSpacingAfter
= spacing
; m_flags
|= wxTEXT_ATTR_PARA_SPACING_AFTER
; }
518 void SetParagraphSpacingBefore(int spacing
) { m_paragraphSpacingBefore
= spacing
; m_flags
|= wxTEXT_ATTR_PARA_SPACING_BEFORE
; }
519 void SetLineSpacing(int spacing
) { m_lineSpacing
= spacing
; m_flags
|= wxTEXT_ATTR_LINE_SPACING
; }
520 void SetBulletStyle(int style
) { m_bulletStyle
= style
; m_flags
|= wxTEXT_ATTR_BULLET_STYLE
; }
521 void SetBulletNumber(int n
) { m_bulletNumber
= n
; m_flags
|= wxTEXT_ATTR_BULLET_NUMBER
; }
522 void SetBulletText(const wxString
& text
) { m_bulletText
= text
; m_flags
|= wxTEXT_ATTR_BULLET_TEXT
; }
523 void SetBulletFont(const wxString
& bulletFont
) { m_bulletFont
= bulletFont
; }
524 void SetBulletName(const wxString
& name
) { m_bulletName
= name
; m_flags
|= wxTEXT_ATTR_BULLET_NAME
; }
525 void SetURL(const wxString
& url
) { m_urlTarget
= url
; m_flags
|= wxTEXT_ATTR_URL
; }
526 void SetPageBreak(bool pageBreak
= true) { SetFlags(pageBreak
? (GetFlags() | wxTEXT_ATTR_PAGE_BREAK
) : (GetFlags() & ~wxTEXT_ATTR_PAGE_BREAK
)); }
527 void SetTextEffects(int effects
) { m_textEffects
= effects
; SetFlags(GetFlags() | wxTEXT_ATTR_EFFECTS
); }
528 void SetTextEffectFlags(int effects
) { m_textEffectFlags
= effects
; }
529 void SetOutlineLevel(int level
) { m_outlineLevel
= level
; SetFlags(GetFlags() | wxTEXT_ATTR_OUTLINE_LEVEL
); }
531 const wxColour
& GetTextColour() const { return m_colText
; }
532 const wxColour
& GetBackgroundColour() const { return m_colBack
; }
533 wxTextAttrAlignment
GetAlignment() const { return m_textAlignment
; }
534 const wxArrayInt
& GetTabs() const { return m_tabs
; }
535 long GetLeftIndent() const { return m_leftIndent
; }
536 long GetLeftSubIndent() const { return m_leftSubIndent
; }
537 long GetRightIndent() const { return m_rightIndent
; }
538 long GetFlags() const { return m_flags
; }
540 int GetFontSize() const { return m_fontSize
; }
541 int GetFontStyle() const { return m_fontStyle
; }
542 int GetFontWeight() const { return m_fontWeight
; }
543 bool GetFontUnderlined() const { return m_fontUnderlined
; }
544 const wxString
& GetFontFaceName() const { return m_fontFaceName
; }
546 const wxString
& GetCharacterStyleName() const { return m_characterStyleName
; }
547 const wxString
& GetParagraphStyleName() const { return m_paragraphStyleName
; }
548 const wxString
& GetListStyleName() const { return m_listStyleName
; }
549 int GetParagraphSpacingAfter() const { return m_paragraphSpacingAfter
; }
550 int GetParagraphSpacingBefore() const { return m_paragraphSpacingBefore
; }
551 int GetLineSpacing() const { return m_lineSpacing
; }
552 int GetBulletStyle() const { return m_bulletStyle
; }
553 int GetBulletNumber() const { return m_bulletNumber
; }
554 const wxString
& GetBulletText() const { return m_bulletText
; }
555 const wxString
& GetBulletFont() const { return m_bulletFont
; }
556 const wxString
& GetBulletName() const { return m_bulletName
; }
557 const wxString
& GetURL() const { return m_urlTarget
; }
558 int GetTextEffects() const { return m_textEffects
; }
559 int GetTextEffectFlags() const { return m_textEffectFlags
; }
560 int GetOutlineLevel() const { return m_outlineLevel
; }
563 bool HasTextColour() const { return m_colText
.Ok() && HasFlag(wxTEXT_ATTR_TEXT_COLOUR
) ; }
564 bool HasBackgroundColour() const { return m_colBack
.Ok() && HasFlag(wxTEXT_ATTR_BACKGROUND_COLOUR
) ; }
565 bool HasAlignment() const { return (m_textAlignment
!= wxTEXT_ALIGNMENT_DEFAULT
) || ((m_flags
& wxTEXT_ATTR_ALIGNMENT
) != 0) ; }
566 bool HasTabs() const { return (m_flags
& wxTEXT_ATTR_TABS
) != 0 ; }
567 bool HasLeftIndent() const { return (m_flags
& wxTEXT_ATTR_LEFT_INDENT
) != 0 ; }
568 bool HasRightIndent() const { return (m_flags
& wxTEXT_ATTR_RIGHT_INDENT
) != 0 ; }
569 bool HasFontWeight() const { return (m_flags
& wxTEXT_ATTR_FONT_WEIGHT
) != 0; }
570 bool HasFontSize() const { return (m_flags
& wxTEXT_ATTR_FONT_SIZE
) != 0; }
571 bool HasFontItalic() const { return (m_flags
& wxTEXT_ATTR_FONT_ITALIC
) != 0; }
572 bool HasFontUnderlined() const { return (m_flags
& wxTEXT_ATTR_FONT_UNDERLINE
) != 0; }
573 bool HasFontFaceName() const { return (m_flags
& wxTEXT_ATTR_FONT_FACE
) != 0; }
574 bool HasFont() const { return (m_flags
& (wxTEXT_ATTR_FONT
)) != 0; }
576 bool HasParagraphSpacingAfter() const { return (m_flags
& wxTEXT_ATTR_PARA_SPACING_AFTER
) != 0; }
577 bool HasParagraphSpacingBefore() const { return (m_flags
& wxTEXT_ATTR_PARA_SPACING_BEFORE
) != 0; }
578 bool HasLineSpacing() const { return (m_flags
& wxTEXT_ATTR_LINE_SPACING
) != 0; }
579 bool HasCharacterStyleName() const { return (m_flags
& wxTEXT_ATTR_CHARACTER_STYLE_NAME
) != 0 && !m_characterStyleName
.IsEmpty(); }
580 bool HasParagraphStyleName() const { return (m_flags
& wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
) != 0 && !m_paragraphStyleName
.IsEmpty(); }
581 bool HasListStyleName() const { return HasFlag(wxTEXT_ATTR_LIST_STYLE_NAME
) || !m_listStyleName
.IsEmpty(); }
582 bool HasBulletStyle() const { return (m_flags
& wxTEXT_ATTR_BULLET_STYLE
) != 0; }
583 bool HasBulletNumber() const { return (m_flags
& wxTEXT_ATTR_BULLET_NUMBER
) != 0; }
584 bool HasBulletText() const { return (m_flags
& wxTEXT_ATTR_BULLET_TEXT
) != 0; }
585 bool HasBulletName() const { return (m_flags
& wxTEXT_ATTR_BULLET_NAME
) != 0; }
586 bool HasURL() const { return HasFlag(wxTEXT_ATTR_URL
); }
587 bool HasPageBreak() const { return HasFlag(wxTEXT_ATTR_PAGE_BREAK
); }
588 bool HasTextEffects() const { return HasFlag(wxTEXT_ATTR_EFFECTS
); }
589 bool HasTextEffect(int effect
) const { return HasFlag(wxTEXT_ATTR_EFFECTS
) && ((GetTextEffectFlags() & effect
) != 0); }
590 bool HasOutlineLevel() const { return HasFlag(wxTEXT_ATTR_OUTLINE_LEVEL
); }
592 bool HasFlag(long flag
) const { return (m_flags
& flag
) != 0; }
594 // Is this a character style?
595 bool IsCharacterStyle() const { return (0 != (GetFlags() & wxTEXT_ATTR_CHARACTER
)); }
596 bool IsParagraphStyle() const { return (0 != (GetFlags() & wxTEXT_ATTR_PARAGRAPH
)); }
598 // returns false if we have any attributes set, true otherwise
599 bool IsDefault() const
601 return GetFlags() == 0;
604 // Merges the given attributes. Does not affect 'this'. If compareWith
605 // is non-NULL, then it will be used to mask out those attributes that are the same in style
606 // and compareWith, for situations where we don't want to explicitly set inherited attributes.
607 bool Apply(const wxRichTextAttr
& style
, const wxRichTextAttr
* compareWith
= NULL
);
609 // Merges the given attributes and returns the result. Does not affect 'this'. If compareWith
610 // is non-NULL, then it will be used to mask out those attributes that are the same in style
611 // and compareWith, for situations where we don't want to explicitly set inherited attributes.
612 wxRichTextAttr
Combine(const wxRichTextAttr
& style
, const wxRichTextAttr
* compareWith
= NULL
) const;
618 wxArrayInt m_tabs
; // array of int: tab stops in 1/10 mm
619 int m_leftIndent
; // left indent in 1/10 mm
620 int m_leftSubIndent
; // left indent for all but the first
621 // line in a paragraph relative to the
622 // first line, in 1/10 mm
623 int m_rightIndent
; // right indent in 1/10 mm
624 wxTextAttrAlignment m_textAlignment
;
626 int m_paragraphSpacingAfter
;
627 int m_paragraphSpacingBefore
;
632 int m_textEffectFlags
;
634 wxString m_bulletText
;
635 wxString m_bulletFont
;
636 wxString m_bulletName
;
637 wxString m_urlTarget
;
645 bool m_fontUnderlined
;
646 wxString m_fontFaceName
;
649 wxString m_characterStyleName
;
652 wxString m_paragraphStyleName
;
655 wxString m_listStyleName
;
659 * wxRichTextObject class declaration
660 * This is the base for drawable objects.
663 class WXDLLIMPEXP_RICHTEXT wxRichTextObject
: public wxObject
665 DECLARE_CLASS(wxRichTextObject
)
669 wxRichTextObject(wxRichTextObject
* parent
= NULL
);
670 virtual ~wxRichTextObject();
674 /// Draw the item, within the given range. Some objects may ignore the range (for
675 /// example paragraphs) while others must obey it (lines, to implement wrapping)
676 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
) = 0;
678 /// Lay the item out at the specified position with the given size constraint.
679 /// Layout must set the cached size.
680 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
) = 0;
682 /// Hit-testing: returns a flag indicating hit test details, plus
683 /// information about position
684 virtual int HitTest(wxDC
& WXUNUSED(dc
), const wxPoint
& WXUNUSED(pt
), long& WXUNUSED(textPosition
)) { return false; }
686 /// Finds the absolute position and row height for the given character position
687 virtual bool FindPosition(wxDC
& WXUNUSED(dc
), long WXUNUSED(index
), wxPoint
& WXUNUSED(pt
), int* WXUNUSED(height
), bool WXUNUSED(forceLineStart
)) { return false; }
689 /// Get the best size, i.e. the ideal starting size for this object irrespective
690 /// of available space. For a short text string, it will be the size that exactly encloses
691 /// the text. For a longer string, it might use the parent width for example.
692 virtual wxSize
GetBestSize() const { return m_size
; }
694 /// Get the object size for the given range. Returns false if the range
695 /// is invalid for this object.
696 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0)) const = 0;
698 /// Do a split, returning an object containing the second part, and setting
699 /// the first part in 'this'.
700 virtual wxRichTextObject
* DoSplit(long WXUNUSED(pos
)) { return NULL
; }
702 /// Calculate range. By default, guess that the object is 1 unit long.
703 virtual void CalculateRange(long start
, long& end
) { end
= start
; m_range
.SetRange(start
, end
); }
706 virtual bool DeleteRange(const wxRichTextRange
& WXUNUSED(range
)) { return false; }
708 /// Returns true if the object is empty
709 virtual bool IsEmpty() const { return false; }
711 /// Get any text in this object for the given range
712 virtual wxString
GetTextForRange(const wxRichTextRange
& WXUNUSED(range
)) const { return wxEmptyString
; }
714 /// Returns true if this object can merge itself with the given one.
715 virtual bool CanMerge(wxRichTextObject
* WXUNUSED(object
)) const { return false; }
717 /// Returns true if this object merged itself with the given one.
718 /// The calling code will then delete the given object.
719 virtual bool Merge(wxRichTextObject
* WXUNUSED(object
)) { return false; }
721 /// Dump to output stream for debugging
722 virtual void Dump(wxTextOutputStream
& stream
);
726 /// Get/set the cached object size as calculated by Layout.
727 virtual wxSize
GetCachedSize() const { return m_size
; }
728 virtual void SetCachedSize(const wxSize
& sz
) { m_size
= sz
; }
730 /// Get/set the object position
731 virtual wxPoint
GetPosition() const { return m_pos
; }
732 virtual void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
734 /// Get the rectangle enclosing the object
735 virtual wxRect
GetRect() const { return wxRect(GetPosition(), GetCachedSize()); }
738 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
741 const wxRichTextRange
& GetRange() const { return m_range
; }
742 wxRichTextRange
& GetRange() { return m_range
; }
744 /// Get/set dirty flag (whether the object needs Layout to be called)
745 virtual bool GetDirty() const { return m_dirty
; }
746 virtual void SetDirty(bool dirty
) { m_dirty
= dirty
; }
748 /// Is this composite?
749 virtual bool IsComposite() const { return false; }
751 /// Get/set the parent.
752 virtual wxRichTextObject
* GetParent() const { return m_parent
; }
753 virtual void SetParent(wxRichTextObject
* parent
) { m_parent
= parent
; }
755 /// Set the margin around the object
756 virtual void SetMargins(int margin
);
757 virtual void SetMargins(int leftMargin
, int rightMargin
, int topMargin
, int bottomMargin
);
758 virtual int GetLeftMargin() const { return m_leftMargin
; }
759 virtual int GetRightMargin() const { return m_rightMargin
; }
760 virtual int GetTopMargin() const { return m_topMargin
; }
761 virtual int GetBottomMargin() const { return m_bottomMargin
; }
763 /// Set attributes object
764 void SetAttributes(const wxTextAttrEx
& attr
) { m_attributes
= attr
; }
765 const wxTextAttrEx
& GetAttributes() const { return m_attributes
; }
766 wxTextAttrEx
& GetAttributes() { return m_attributes
; }
768 /// Set/get stored descent
769 void SetDescent(int descent
) { m_descent
= descent
; }
770 int GetDescent() const { return m_descent
; }
772 /// Gets the containing buffer
773 wxRichTextBuffer
* GetBuffer() const;
778 virtual wxRichTextObject
* Clone() const { return NULL
; }
781 void Copy(const wxRichTextObject
& obj
);
783 /// Reference-counting allows us to use the same object in multiple
784 /// lists (not yet used)
785 void Reference() { m_refCount
++; }
788 /// Convert units in tenths of a millimetre to device units
789 int ConvertTenthsMMToPixels(wxDC
& dc
, int units
);
790 static int ConvertTenthsMMToPixels(int ppi
, int units
);
795 int m_descent
; // Descent for this object (if any)
798 wxRichTextObject
* m_parent
;
800 /// The range of this object (start position to end position)
801 wxRichTextRange m_range
;
810 wxTextAttrEx m_attributes
;
813 WX_DECLARE_LIST_WITH_DECL( wxRichTextObject
, wxRichTextObjectList
, class WXDLLIMPEXP_RICHTEXT
);
816 * wxRichTextCompositeObject class declaration
817 * Objects of this class can contain other objects.
820 class WXDLLIMPEXP_RICHTEXT wxRichTextCompositeObject
: public wxRichTextObject
822 DECLARE_CLASS(wxRichTextCompositeObject
)
826 wxRichTextCompositeObject(wxRichTextObject
* parent
= NULL
);
827 virtual ~wxRichTextCompositeObject();
831 /// Hit-testing: returns a flag indicating hit test details, plus
832 /// information about position
833 virtual int HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
);
835 /// Finds the absolute position and row height for the given character position
836 virtual bool FindPosition(wxDC
& dc
, long index
, wxPoint
& pt
, int* height
, bool forceLineStart
);
839 virtual void CalculateRange(long start
, long& end
);
842 virtual bool DeleteRange(const wxRichTextRange
& range
);
844 /// Get any text in this object for the given range
845 virtual wxString
GetTextForRange(const wxRichTextRange
& range
) const;
847 /// Dump to output stream for debugging
848 virtual void Dump(wxTextOutputStream
& stream
);
853 wxRichTextObjectList
& GetChildren() { return m_children
; }
854 const wxRichTextObjectList
& GetChildren() const { return m_children
; }
856 /// Get the child count
857 size_t GetChildCount() const ;
859 /// Get the nth child
860 wxRichTextObject
* GetChild(size_t n
) const ;
862 /// Get/set dirty flag
863 virtual bool GetDirty() const { return m_dirty
; }
864 virtual void SetDirty(bool dirty
) { m_dirty
= dirty
; }
866 /// Is this composite?
867 virtual bool IsComposite() const { return true; }
869 /// Returns true if the buffer is empty
870 virtual bool IsEmpty() const { return GetChildCount() == 0; }
875 void Copy(const wxRichTextCompositeObject
& obj
);
878 void operator= (const wxRichTextCompositeObject
& obj
) { Copy(obj
); }
880 /// Append a child, returning the position
881 size_t AppendChild(wxRichTextObject
* child
) ;
883 /// Insert the child in front of the given object, or at the beginning
884 bool InsertChild(wxRichTextObject
* child
, wxRichTextObject
* inFrontOf
) ;
887 bool RemoveChild(wxRichTextObject
* child
, bool deleteChild
= false) ;
889 /// Delete all children
890 bool DeleteChildren() ;
892 /// Recursively merge all pieces that can be merged.
896 wxRichTextObjectList m_children
;
900 * wxRichTextBox class declaration
901 * This defines a 2D space to lay out objects
904 class WXDLLIMPEXP_RICHTEXT wxRichTextBox
: public wxRichTextCompositeObject
906 DECLARE_DYNAMIC_CLASS(wxRichTextBox
)
910 wxRichTextBox(wxRichTextObject
* parent
= NULL
);
911 wxRichTextBox(const wxRichTextBox
& obj
): wxRichTextCompositeObject() { Copy(obj
); }
916 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
919 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
921 /// Get/set the object size for the given range. Returns false if the range
922 /// is invalid for this object.
923 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0)) const;
930 virtual wxRichTextObject
* Clone() const { return new wxRichTextBox(*this); }
933 void Copy(const wxRichTextBox
& obj
);
939 * wxRichTextParagraphBox class declaration
940 * This box knows how to lay out paragraphs.
943 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraphLayoutBox
: public wxRichTextBox
945 DECLARE_DYNAMIC_CLASS(wxRichTextParagraphLayoutBox
)
949 wxRichTextParagraphLayoutBox(wxRichTextObject
* parent
= NULL
);
950 wxRichTextParagraphLayoutBox(const wxRichTextParagraphLayoutBox
& obj
): wxRichTextBox() { Init(); Copy(obj
); }
955 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
958 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
960 /// Get/set the object size for the given range. Returns false if the range
961 /// is invalid for this object.
962 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0)) const;
965 virtual bool DeleteRange(const wxRichTextRange
& range
);
967 /// Get any text in this object for the given range
968 virtual wxString
GetTextForRange(const wxRichTextRange
& range
) const;
972 /// Associate a control with the buffer, for operations that for example require refreshing the window.
973 void SetRichTextCtrl(wxRichTextCtrl
* ctrl
) { m_ctrl
= ctrl
; }
975 /// Get the associated control.
976 wxRichTextCtrl
* GetRichTextCtrl() const { return m_ctrl
; }
978 /// Get/set whether the last paragraph is partial or complete
979 void SetPartialParagraph(bool partialPara
) { m_partialParagraph
= partialPara
; }
980 bool GetPartialParagraph() const { return m_partialParagraph
; }
982 /// If this is a buffer, returns the current style sheet. The base layout box
983 /// class doesn't have an associated style sheet.
984 virtual wxRichTextStyleSheet
* GetStyleSheet() const { return NULL
; }
988 /// Initialize the object.
991 /// Clear all children
992 virtual void Clear();
994 /// Clear and initialize with one blank paragraph
995 virtual void Reset();
997 /// Convenience function to add a paragraph of text
998 virtual wxRichTextRange
AddParagraph(const wxString
& text
, wxTextAttrEx
* paraStyle
= NULL
);
1000 /// Convenience function to add an image
1001 virtual wxRichTextRange
AddImage(const wxImage
& image
, wxTextAttrEx
* paraStyle
= NULL
);
1003 /// Adds multiple paragraphs, based on newlines.
1004 virtual wxRichTextRange
AddParagraphs(const wxString
& text
, wxTextAttrEx
* paraStyle
= NULL
);
1006 /// Get the line at the given position. If caretPosition is true, the position is
1007 /// a caret position, which is normally a smaller number.
1008 virtual wxRichTextLine
* GetLineAtPosition(long pos
, bool caretPosition
= false) const;
1010 /// Get the line at the given y pixel position, or the last line.
1011 virtual wxRichTextLine
* GetLineAtYPosition(int y
) const;
1013 /// Get the paragraph at the given character or caret position
1014 virtual wxRichTextParagraph
* GetParagraphAtPosition(long pos
, bool caretPosition
= false) const;
1016 /// Get the line size at the given position
1017 virtual wxSize
GetLineSizeAtPosition(long pos
, bool caretPosition
= false) const;
1019 /// Given a position, get the number of the visible line (potentially many to a paragraph),
1020 /// starting from zero at the start of the buffer. We also have to pass a bool (startOfLine)
1021 /// that indicates whether the caret is being shown at the end of the previous line or at the start
1022 /// of the next, since the caret can be shown at 2 visible positions for the same underlying
1024 virtual long GetVisibleLineNumber(long pos
, bool caretPosition
= false, bool startOfLine
= false) const;
1026 /// Given a line number, get the corresponding wxRichTextLine object.
1027 virtual wxRichTextLine
* GetLineForVisibleLineNumber(long lineNumber
) const;
1029 /// Get the leaf object in a paragraph at this position.
1030 /// Given a line number, get the corresponding wxRichTextLine object.
1031 virtual wxRichTextObject
* GetLeafObjectAtPosition(long position
) const;
1033 /// Get the paragraph by number
1034 virtual wxRichTextParagraph
* GetParagraphAtLine(long paragraphNumber
) const;
1036 /// Get the paragraph for a given line
1037 virtual wxRichTextParagraph
* GetParagraphForLine(wxRichTextLine
* line
) const;
1039 /// Get the length of the paragraph
1040 virtual int GetParagraphLength(long paragraphNumber
) const;
1042 /// Get the number of paragraphs
1043 virtual int GetParagraphCount() const { return GetChildCount(); }
1045 /// Get the number of visible lines
1046 virtual int GetLineCount() const;
1048 /// Get the text of the paragraph
1049 virtual wxString
GetParagraphText(long paragraphNumber
) const;
1051 /// Convert zero-based line column and paragraph number to a position.
1052 virtual long XYToPosition(long x
, long y
) const;
1054 /// Convert zero-based position to line column and paragraph number
1055 virtual bool PositionToXY(long pos
, long* x
, long* y
) const;
1057 /// Set text attributes: character and/or paragraph styles.
1058 virtual bool SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
1059 virtual bool SetStyle(const wxRichTextRange
& range
, const wxTextAttrEx
& style
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
1061 /// Get the conbined text attributes for this position.
1062 virtual bool GetStyle(long position
, wxTextAttrEx
& style
);
1063 virtual bool GetStyle(long position
, wxRichTextAttr
& style
);
1065 /// Get the content (uncombined) attributes for this position.
1066 virtual bool GetUncombinedStyle(long position
, wxTextAttrEx
& style
);
1067 virtual bool GetUncombinedStyle(long position
, wxRichTextAttr
& style
);
1069 /// Implementation helper for GetStyle. If combineStyles is true, combine base, paragraph and
1070 /// context attributes.
1071 virtual bool DoGetStyle(long position
, wxTextAttrEx
& style
, bool combineStyles
= true);
1073 /// Get the combined style for a range - if any attribute is different within the range,
1074 /// that attribute is not present within the flags
1075 virtual bool GetStyleForRange(const wxRichTextRange
& range
, wxTextAttrEx
& style
);
1077 /// Combines 'style' with 'currentStyle' for the purpose of summarising the attributes of a range of
1079 bool CollectStyle(wxTextAttrEx
& currentStyle
, const wxTextAttrEx
& style
, long& multipleStyleAttributes
, int& multipleTextEffectAttributes
);
1082 virtual bool SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
1083 virtual bool SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
1085 /// Clear list for given range
1086 virtual bool ClearListStyle(const wxRichTextRange
& range
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
1088 /// Number/renumber any list elements in the given range.
1089 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
1090 virtual bool NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
1091 virtual bool NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int startFrom
= 1, int specifiedLevel
= -1);
1093 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
1094 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
1095 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
= NULL
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
1096 virtual bool PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
, int specifiedLevel
= -1);
1098 /// Helper for NumberList and PromoteList, that does renumbering and promotion simultaneously
1099 /// def/defName can be NULL/empty to indicate that the existing list style should be used.
1100 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);
1102 /// Fills in the attributes for numbering a paragraph after previousParagraph.
1103 virtual bool FindNextParagraphNumber(wxRichTextParagraph
* previousParagraph
, wxRichTextAttr
& attr
) const;
1105 /// Test if this whole range has character attributes of the specified kind. If any
1106 /// of the attributes are different within the range, the test fails. You
1107 /// can use this to implement, for example, bold button updating. style must have
1108 /// flags indicating which attributes are of interest.
1109 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const;
1110 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const;
1112 /// Test if this whole range has paragraph attributes of the specified kind. If any
1113 /// of the attributes are different within the range, the test fails. You
1114 /// can use this to implement, for example, centering button updating. style must have
1115 /// flags indicating which attributes are of interest.
1116 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const;
1117 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const;
1120 virtual wxRichTextObject
* Clone() const { return new wxRichTextParagraphLayoutBox(*this); }
1122 /// Insert fragment into this box at the given position. If partialParagraph is true,
1123 /// it is assumed that the last (or only) paragraph is just a piece of data with no paragraph
1125 virtual bool InsertFragment(long position
, wxRichTextParagraphLayoutBox
& fragment
);
1127 /// Make a copy of the fragment corresponding to the given range, putting it in 'fragment'.
1128 virtual bool CopyFragment(const wxRichTextRange
& range
, wxRichTextParagraphLayoutBox
& fragment
);
1130 /// Apply the style sheet to the buffer, for example if the styles have changed.
1131 virtual bool ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
);
1134 void Copy(const wxRichTextParagraphLayoutBox
& obj
);
1137 void operator= (const wxRichTextParagraphLayoutBox
& obj
) { Copy(obj
); }
1139 /// Calculate ranges
1140 virtual void UpdateRanges() { long end
; CalculateRange(0, end
); }
1142 /// Get all the text
1143 virtual wxString
GetText() const;
1145 /// Set default style for new content. Setting it to a default attribute
1146 /// makes new content take on the 'basic' style.
1147 virtual bool SetDefaultStyle(const wxTextAttrEx
& style
);
1149 /// Get default style
1150 virtual const wxTextAttrEx
& GetDefaultStyle() const { return m_defaultAttributes
; }
1152 /// Set basic (overall) style
1153 virtual void SetBasicStyle(const wxTextAttrEx
& style
) { m_attributes
= style
; }
1154 virtual void SetBasicStyle(const wxRichTextAttr
& style
) { m_attributes
= style
; }
1156 /// Get basic (overall) style
1157 virtual const wxTextAttrEx
& GetBasicStyle() const { return m_attributes
; }
1159 /// Invalidate the buffer. With no argument, invalidates whole buffer.
1160 void Invalidate(const wxRichTextRange
& invalidRange
= wxRICHTEXT_ALL
);
1162 /// Get invalid range, rounding to entire paragraphs if argument is true.
1163 wxRichTextRange
GetInvalidRange(bool wholeParagraphs
= false) const;
1166 wxRichTextCtrl
* m_ctrl
;
1167 wxTextAttrEx m_defaultAttributes
;
1169 /// The invalidated range that will need full layout
1170 wxRichTextRange m_invalidRange
;
1172 // Is the last paragraph partial or complete?
1173 bool m_partialParagraph
;
1177 * wxRichTextLine class declaration
1178 * This object represents a line in a paragraph, and stores
1179 * offsets from the start of the paragraph representing the
1180 * start and end positions of the line.
1183 class WXDLLIMPEXP_RICHTEXT wxRichTextLine
1188 wxRichTextLine(wxRichTextParagraph
* parent
);
1189 wxRichTextLine(const wxRichTextLine
& obj
) { Init( NULL
); Copy(obj
); }
1190 virtual ~wxRichTextLine() {}
1197 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
1198 void SetRange(long from
, long to
) { m_range
= wxRichTextRange(from
, to
); }
1200 /// Get the parent paragraph
1201 wxRichTextParagraph
* GetParent() { return m_parent
; }
1204 const wxRichTextRange
& GetRange() const { return m_range
; }
1205 wxRichTextRange
& GetRange() { return m_range
; }
1207 /// Get the absolute range
1208 wxRichTextRange
GetAbsoluteRange() const;
1210 /// Get/set the line size as calculated by Layout.
1211 virtual wxSize
GetSize() const { return m_size
; }
1212 virtual void SetSize(const wxSize
& sz
) { m_size
= sz
; }
1214 /// Get/set the object position relative to the parent
1215 virtual wxPoint
GetPosition() const { return m_pos
; }
1216 virtual void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
1218 /// Get the absolute object position
1219 virtual wxPoint
GetAbsolutePosition() const;
1221 /// Get the rectangle enclosing the line
1222 virtual wxRect
GetRect() const { return wxRect(GetAbsolutePosition(), GetSize()); }
1224 /// Set/get stored descent
1225 void SetDescent(int descent
) { m_descent
= descent
; }
1226 int GetDescent() const { return m_descent
; }
1231 void Init(wxRichTextParagraph
* parent
);
1234 void Copy(const wxRichTextLine
& obj
);
1237 virtual wxRichTextLine
* Clone() const { return new wxRichTextLine(*this); }
1241 /// The range of the line (start position to end position)
1242 /// This is relative to the parent paragraph.
1243 wxRichTextRange m_range
;
1245 /// Size and position measured relative to top of paragraph
1249 /// Maximum descent for this line (location of text baseline)
1252 // The parent object
1253 wxRichTextParagraph
* m_parent
;
1256 WX_DECLARE_LIST_WITH_DECL( wxRichTextLine
, wxRichTextLineList
, class WXDLLIMPEXP_RICHTEXT
);
1259 * wxRichTextParagraph class declaration
1260 * This object represents a single paragraph (or in a straight text editor, a line).
1263 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraph
: public wxRichTextBox
1265 DECLARE_DYNAMIC_CLASS(wxRichTextParagraph
)
1269 wxRichTextParagraph(wxRichTextObject
* parent
= NULL
, wxTextAttrEx
* style
= NULL
);
1270 wxRichTextParagraph(const wxString
& text
, wxRichTextObject
* parent
= NULL
, wxTextAttrEx
* paraStyle
= NULL
, wxTextAttrEx
* charStyle
= NULL
);
1271 virtual ~wxRichTextParagraph();
1272 wxRichTextParagraph(const wxRichTextParagraph
& obj
): wxRichTextBox() { Copy(obj
); }
1277 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
1279 /// Lay the item out
1280 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
1282 /// Get/set the object size for the given range. Returns false if the range
1283 /// is invalid for this object.
1284 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0)) const;
1286 /// Finds the absolute position and row height for the given character position
1287 virtual bool FindPosition(wxDC
& dc
, long index
, wxPoint
& pt
, int* height
, bool forceLineStart
);
1289 /// Hit-testing: returns a flag indicating hit test details, plus
1290 /// information about position
1291 virtual int HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
);
1294 virtual void CalculateRange(long start
, long& end
);
1298 /// Get the cached lines
1299 wxRichTextLineList
& GetLines() { return m_cachedLines
; }
1304 void Copy(const wxRichTextParagraph
& obj
);
1307 virtual wxRichTextObject
* Clone() const { return new wxRichTextParagraph(*this); }
1309 /// Clear the cached lines
1314 /// Apply paragraph styles such as centering to the wrapped lines
1315 virtual void ApplyParagraphStyle(const wxTextAttrEx
& attr
, const wxRect
& rect
);
1317 /// Insert text at the given position
1318 virtual bool InsertText(long pos
, const wxString
& text
);
1320 /// Split an object at this position if necessary, and return
1321 /// the previous object, or NULL if inserting at beginning.
1322 virtual wxRichTextObject
* SplitAt(long pos
, wxRichTextObject
** previousObject
= NULL
);
1324 /// Move content to a list from this point
1325 virtual void MoveToList(wxRichTextObject
* obj
, wxList
& list
);
1327 /// Add content back from list
1328 virtual void MoveFromList(wxList
& list
);
1330 /// Get the plain text searching from the start or end of the range.
1331 /// The resulting string may be shorter than the range given.
1332 bool GetContiguousPlainText(wxString
& text
, const wxRichTextRange
& range
, bool fromStart
= true);
1334 /// Find a suitable wrap position. wrapPosition is the last position in the line to the left
1336 bool FindWrapPosition(const wxRichTextRange
& range
, wxDC
& dc
, int availableSpace
, long& wrapPosition
);
1338 /// Find the object at the given position
1339 wxRichTextObject
* FindObjectAtPosition(long position
);
1341 /// Get the bullet text for this paragraph.
1342 wxString
GetBulletText();
1344 /// Allocate or reuse a line object
1345 wxRichTextLine
* AllocateLine(int pos
);
1347 /// Clear remaining unused line objects, if any
1348 bool ClearUnusedLines(int lineCount
);
1350 /// Get combined attributes of the base style, paragraph style and character style. We use this to dynamically
1351 /// retrieve the actual style.
1352 wxTextAttrEx
GetCombinedAttributes(const wxTextAttrEx
& contentStyle
) const;
1354 /// Get combined attributes of the base style and paragraph style.
1355 wxTextAttrEx
GetCombinedAttributes() const;
1357 /// Get the first position from pos that has a line break character.
1358 long GetFirstLineBreakPosition(long pos
);
1360 /// Create default tabstop array
1361 static void InitDefaultTabs();
1363 /// Clear default tabstop array
1364 static void ClearDefaultTabs();
1366 /// Get default tabstop array
1367 static const wxArrayInt
& GetDefaultTabs() { return sm_defaultTabs
; }
1370 /// The lines that make up the wrapped paragraph
1371 wxRichTextLineList m_cachedLines
;
1373 /// Default tabstops
1374 static wxArrayInt sm_defaultTabs
;
1378 * wxRichTextPlainText class declaration
1379 * This object represents a single piece of text.
1382 class WXDLLIMPEXP_RICHTEXT wxRichTextPlainText
: public wxRichTextObject
1384 DECLARE_DYNAMIC_CLASS(wxRichTextPlainText
)
1388 wxRichTextPlainText(const wxString
& text
= wxEmptyString
, wxRichTextObject
* parent
= NULL
, wxTextAttrEx
* style
= NULL
);
1389 wxRichTextPlainText(const wxRichTextPlainText
& obj
): wxRichTextObject() { Copy(obj
); }
1394 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
1396 /// Lay the item out
1397 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
1399 /// Get/set the object size for the given range. Returns false if the range
1400 /// is invalid for this object.
1401 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
/* = wxPoint(0,0)*/) const;
1403 /// Get any text in this object for the given range
1404 virtual wxString
GetTextForRange(const wxRichTextRange
& range
) const;
1406 /// Do a split, returning an object containing the second part, and setting
1407 /// the first part in 'this'.
1408 virtual wxRichTextObject
* DoSplit(long pos
);
1411 virtual void CalculateRange(long start
, long& end
);
1414 virtual bool DeleteRange(const wxRichTextRange
& range
);
1416 /// Returns true if the object is empty
1417 virtual bool IsEmpty() const { return m_text
.empty(); }
1419 /// Returns true if this object can merge itself with the given one.
1420 virtual bool CanMerge(wxRichTextObject
* object
) const;
1422 /// Returns true if this object merged itself with the given one.
1423 /// The calling code will then delete the given object.
1424 virtual bool Merge(wxRichTextObject
* object
);
1426 /// Dump to output stream for debugging
1427 virtual void Dump(wxTextOutputStream
& stream
);
1429 /// Get the first position from pos that has a line break character.
1430 long GetFirstLineBreakPosition(long pos
);
1435 const wxString
& GetText() const { return m_text
; }
1438 void SetText(const wxString
& text
) { m_text
= text
; }
1443 void Copy(const wxRichTextPlainText
& obj
);
1446 virtual wxRichTextObject
* Clone() const { return new wxRichTextPlainText(*this); }
1448 bool DrawTabbedString(wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
, wxString
& str
, wxCoord
& x
, wxCoord
& y
, bool selected
);
1455 * wxRichTextImageBlock stores information about an image, in binary in-memory form
1458 class WXDLLIMPEXP_BASE wxDataInputStream
;
1459 class WXDLLIMPEXP_BASE wxDataOutputStream
;
1461 class WXDLLIMPEXP_RICHTEXT wxRichTextImageBlock
: public wxObject
1464 wxRichTextImageBlock();
1465 wxRichTextImageBlock(const wxRichTextImageBlock
& block
);
1466 virtual ~wxRichTextImageBlock();
1471 // Load the original image into a memory block.
1472 // If the image is not a JPEG, we must convert it into a JPEG
1473 // to conserve space.
1474 // If it's not a JPEG we can make use of 'image', already scaled, so we don't have to
1475 // load the image a 2nd time.
1476 virtual bool MakeImageBlock(const wxString
& filename
, int imageType
, wxImage
& image
, bool convertToJPEG
= true);
1478 // Make an image block from the wxImage in the given
1480 virtual bool MakeImageBlock(wxImage
& image
, int imageType
, int quality
= 80);
1483 bool Write(const wxString
& filename
);
1485 // Write data in hex to a stream
1486 bool WriteHex(wxOutputStream
& stream
);
1488 // Read data in hex from a stream
1489 bool ReadHex(wxInputStream
& stream
, int length
, int imageType
);
1491 // Copy from 'block'
1492 void Copy(const wxRichTextImageBlock
& block
);
1494 // Load a wxImage from the block
1495 bool Load(wxImage
& image
);
1498 void operator=(const wxRichTextImageBlock
& block
);
1502 unsigned char* GetData() const { return m_data
; }
1503 size_t GetDataSize() const { return m_dataSize
; }
1504 int GetImageType() const { return m_imageType
; }
1506 void SetData(unsigned char* image
) { m_data
= image
; }
1507 void SetDataSize(size_t size
) { m_dataSize
= size
; }
1508 void SetImageType(int imageType
) { m_imageType
= imageType
; }
1510 bool Ok() const { return IsOk(); }
1511 bool IsOk() const { return GetData() != NULL
; }
1513 // Gets the extension for the block's type
1514 wxString
GetExtension() const;
1518 // Allocate and read from stream as a block of memory
1519 static unsigned char* ReadBlock(wxInputStream
& stream
, size_t size
);
1520 static unsigned char* ReadBlock(const wxString
& filename
, size_t size
);
1522 // Write memory block to stream
1523 static bool WriteBlock(wxOutputStream
& stream
, unsigned char* block
, size_t size
);
1525 // Write memory block to file
1526 static bool WriteBlock(const wxString
& filename
, unsigned char* block
, size_t size
);
1529 // Size in bytes of the image stored.
1530 // This is in the raw, original form such as a JPEG file.
1531 unsigned char* m_data
;
1533 int m_imageType
; // wxWin type id
1538 * wxRichTextImage class declaration
1539 * This object represents an image.
1542 class WXDLLIMPEXP_RICHTEXT wxRichTextImage
: public wxRichTextObject
1544 DECLARE_DYNAMIC_CLASS(wxRichTextImage
)
1548 wxRichTextImage(wxRichTextObject
* parent
= NULL
): wxRichTextObject(parent
) { }
1549 wxRichTextImage(const wxImage
& image
, wxRichTextObject
* parent
= NULL
, wxTextAttrEx
* charStyle
= NULL
);
1550 wxRichTextImage(const wxRichTextImageBlock
& imageBlock
, wxRichTextObject
* parent
= NULL
, wxTextAttrEx
* charStyle
= NULL
);
1551 wxRichTextImage(const wxRichTextImage
& obj
): wxRichTextObject() { Copy(obj
); }
1556 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
1558 /// Lay the item out
1559 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
1561 /// Get the object size for the given range. Returns false if the range
1562 /// is invalid for this object.
1563 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0)) const;
1565 /// Returns true if the object is empty
1566 virtual bool IsEmpty() const { return !m_image
.Ok(); }
1571 const wxImage
& GetImage() const { return m_image
; }
1574 void SetImage(const wxImage
& image
) { m_image
= image
; }
1576 /// Get the image block containing the raw data
1577 wxRichTextImageBlock
& GetImageBlock() { return m_imageBlock
; }
1582 void Copy(const wxRichTextImage
& obj
);
1585 virtual wxRichTextObject
* Clone() const { return new wxRichTextImage(*this); }
1587 /// Load wxImage from the block
1588 virtual bool LoadFromBlock();
1590 /// Make block from the wxImage
1591 virtual bool MakeBlock();
1594 // TODO: reduce the multiple representations of data
1597 wxRichTextImageBlock m_imageBlock
;
1602 * wxRichTextBuffer class declaration
1603 * This is a kind of box, used to represent the whole buffer
1606 class WXDLLIMPEXP_RICHTEXT wxRichTextCommand
;
1607 class WXDLLIMPEXP_RICHTEXT wxRichTextAction
;
1609 class WXDLLIMPEXP_RICHTEXT wxRichTextBuffer
: public wxRichTextParagraphLayoutBox
1611 DECLARE_DYNAMIC_CLASS(wxRichTextBuffer
)
1615 wxRichTextBuffer() { Init(); }
1616 wxRichTextBuffer(const wxRichTextBuffer
& obj
): wxRichTextParagraphLayoutBox() { Init(); Copy(obj
); }
1617 virtual ~wxRichTextBuffer() ;
1621 /// Gets the command processor
1622 wxCommandProcessor
* GetCommandProcessor() const { return m_commandProcessor
; }
1624 /// Set style sheet, if any.
1625 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
) { m_styleSheet
= styleSheet
; }
1626 virtual wxRichTextStyleSheet
* GetStyleSheet() const { return m_styleSheet
; }
1628 /// Set style sheet and notify of the change
1629 bool SetStyleSheetAndNotify(wxRichTextStyleSheet
* sheet
);
1631 /// Push style sheet to top of stack
1632 bool PushStyleSheet(wxRichTextStyleSheet
* styleSheet
);
1634 /// Pop style sheet from top of stack
1635 wxRichTextStyleSheet
* PopStyleSheet();
1642 /// Clears the buffer, adds an empty paragraph, and clears the command processor.
1643 virtual void ResetAndClearCommands();
1646 virtual bool LoadFile(const wxString
& filename
, int type
= wxRICHTEXT_TYPE_ANY
);
1649 virtual bool SaveFile(const wxString
& filename
, int type
= wxRICHTEXT_TYPE_ANY
);
1651 /// Load from a stream
1652 virtual bool LoadFile(wxInputStream
& stream
, int type
= wxRICHTEXT_TYPE_ANY
);
1654 /// Save to a stream
1655 virtual bool SaveFile(wxOutputStream
& stream
, int type
= wxRICHTEXT_TYPE_ANY
);
1657 /// Set the handler flags, controlling loading and saving
1658 void SetHandlerFlags(int flags
) { m_handlerFlags
= flags
; }
1660 /// Get the handler flags, controlling loading and saving
1661 int GetHandlerFlags() const { return m_handlerFlags
; }
1663 /// Convenience function to add a paragraph of text
1664 virtual wxRichTextRange
AddParagraph(const wxString
& text
, wxTextAttrEx
* paraStyle
= NULL
) { Modify(); return wxRichTextParagraphLayoutBox::AddParagraph(text
, paraStyle
); }
1666 /// Begin collapsing undo/redo commands. Note that this may not work properly
1667 /// if combining commands that delete or insert content, changing ranges for
1668 /// subsequent actions.
1669 virtual bool BeginBatchUndo(const wxString
& cmdName
);
1671 /// End collapsing undo/redo commands
1672 virtual bool EndBatchUndo();
1674 /// Collapsing commands?
1675 virtual bool BatchingUndo() const { return m_batchedCommandDepth
> 0; }
1677 /// Submit immediately, or delay according to whether collapsing is on
1678 virtual bool SubmitAction(wxRichTextAction
* action
);
1680 /// Get collapsed command
1681 virtual wxRichTextCommand
* GetBatchedCommand() const { return m_batchedCommand
; }
1683 /// Begin suppressing undo/redo commands. The way undo is suppressed may be implemented
1684 /// differently by each command. If not dealt with by a command implementation, then
1685 /// it will be implemented automatically by not storing the command in the undo history
1686 /// when the action is submitted to the command processor.
1687 virtual bool BeginSuppressUndo();
1689 /// End suppressing undo/redo commands.
1690 virtual bool EndSuppressUndo();
1692 /// Collapsing commands?
1693 virtual bool SuppressingUndo() const { return m_suppressUndo
> 0; }
1695 /// Copy the range to the clipboard
1696 virtual bool CopyToClipboard(const wxRichTextRange
& range
);
1698 /// Paste the clipboard content to the buffer
1699 virtual bool PasteFromClipboard(long position
);
1701 /// Can we paste from the clipboard?
1702 virtual bool CanPasteFromClipboard() const;
1704 /// Begin using a style
1705 virtual bool BeginStyle(const wxTextAttrEx
& style
);
1708 virtual bool EndStyle();
1711 virtual bool EndAllStyles();
1713 /// Clear the style stack
1714 virtual void ClearStyleStack();
1716 /// Get the size of the style stack, for example to check correct nesting
1717 virtual size_t GetStyleStackSize() const { return m_attributeStack
.GetCount(); }
1719 /// Begin using bold
1723 bool EndBold() { return EndStyle(); }
1725 /// Begin using italic
1728 /// End using italic
1729 bool EndItalic() { return EndStyle(); }
1731 /// Begin using underline
1732 bool BeginUnderline();
1734 /// End using underline
1735 bool EndUnderline() { return EndStyle(); }
1737 /// Begin using point size
1738 bool BeginFontSize(int pointSize
);
1740 /// End using point size
1741 bool EndFontSize() { return EndStyle(); }
1743 /// Begin using this font
1744 bool BeginFont(const wxFont
& font
);
1746 /// End using a font
1747 bool EndFont() { return EndStyle(); }
1749 /// Begin using this colour
1750 bool BeginTextColour(const wxColour
& colour
);
1752 /// End using a colour
1753 bool EndTextColour() { return EndStyle(); }
1755 /// Begin using alignment
1756 bool BeginAlignment(wxTextAttrAlignment alignment
);
1759 bool EndAlignment() { return EndStyle(); }
1761 /// Begin left indent
1762 bool BeginLeftIndent(int leftIndent
, int leftSubIndent
= 0);
1765 bool EndLeftIndent() { return EndStyle(); }
1767 /// Begin right indent
1768 bool BeginRightIndent(int rightIndent
);
1770 /// End right indent
1771 bool EndRightIndent() { return EndStyle(); }
1773 /// Begin paragraph spacing
1774 bool BeginParagraphSpacing(int before
, int after
);
1776 /// End paragraph spacing
1777 bool EndParagraphSpacing() { return EndStyle(); }
1779 /// Begin line spacing
1780 bool BeginLineSpacing(int lineSpacing
);
1782 /// End line spacing
1783 bool EndLineSpacing() { return EndStyle(); }
1785 /// Begin numbered bullet
1786 bool BeginNumberedBullet(int bulletNumber
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
);
1788 /// End numbered bullet
1789 bool EndNumberedBullet() { return EndStyle(); }
1791 /// Begin symbol bullet
1792 bool BeginSymbolBullet(const wxString
& symbol
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_SYMBOL
);
1794 /// End symbol bullet
1795 bool EndSymbolBullet() { return EndStyle(); }
1797 /// Begin standard bullet
1798 bool BeginStandardBullet(const wxString
& bulletName
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_STANDARD
);
1800 /// End standard bullet
1801 bool EndStandardBullet() { return EndStyle(); }
1803 /// Begin named character style
1804 bool BeginCharacterStyle(const wxString
& characterStyle
);
1806 /// End named character style
1807 bool EndCharacterStyle() { return EndStyle(); }
1809 /// Begin named paragraph style
1810 bool BeginParagraphStyle(const wxString
& paragraphStyle
);
1812 /// End named character style
1813 bool EndParagraphStyle() { return EndStyle(); }
1815 /// Begin named list style
1816 bool BeginListStyle(const wxString
& listStyle
, int level
= 1, int number
= 1);
1818 /// End named character style
1819 bool EndListStyle() { return EndStyle(); }
1822 bool BeginURL(const wxString
& url
, const wxString
& characterStyle
= wxEmptyString
);
1825 bool EndURL() { return EndStyle(); }
1829 /// Add an event handler
1830 bool AddEventHandler(wxEvtHandler
* handler
);
1832 /// Remove an event handler
1833 bool RemoveEventHandler(wxEvtHandler
* handler
, bool deleteHandler
= false);
1835 /// Clear event handlers
1836 void ClearEventHandlers();
1838 /// Send event to event handlers. If sendToAll is true, will send to all event handlers,
1839 /// otherwise will stop at the first successful one.
1840 bool SendEvent(wxEvent
& event
, bool sendToAll
= true);
1845 void Copy(const wxRichTextBuffer
& obj
);
1848 virtual wxRichTextObject
* Clone() const { return new wxRichTextBuffer(*this); }
1850 /// Submit command to insert paragraphs
1851 bool InsertParagraphsWithUndo(long pos
, const wxRichTextParagraphLayoutBox
& paragraphs
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1853 /// Submit command to insert the given text
1854 bool InsertTextWithUndo(long pos
, const wxString
& text
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1856 /// Submit command to insert a newline
1857 bool InsertNewlineWithUndo(long pos
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1859 /// Submit command to insert the given image
1860 bool InsertImageWithUndo(long pos
, const wxRichTextImageBlock
& imageBlock
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1862 /// Submit command to delete this range
1863 bool DeleteRangeWithUndo(const wxRichTextRange
& range
, wxRichTextCtrl
* ctrl
);
1866 void Modify(bool modify
= true) { m_modified
= modify
; }
1867 bool IsModified() const { return m_modified
; }
1869 /// Get the style that is appropriate for a new paragraph at this position.
1870 /// If the previous paragraph has a paragraph style name, look up the next-paragraph
1872 wxRichTextAttr
GetStyleForNewParagraph(long pos
, bool caretPosition
= false, bool lookUpNewParaStyle
=false) const;
1874 /// Dumps contents of buffer for debugging purposes
1875 virtual void Dump();
1876 virtual void Dump(wxTextOutputStream
& stream
) { wxRichTextParagraphLayoutBox::Dump(stream
); }
1878 /// Returns the file handlers
1879 static wxList
& GetHandlers() { return sm_handlers
; }
1881 /// Adds a handler to the end
1882 static void AddHandler(wxRichTextFileHandler
*handler
);
1884 /// Inserts a handler at the front
1885 static void InsertHandler(wxRichTextFileHandler
*handler
);
1887 /// Removes a handler
1888 static bool RemoveHandler(const wxString
& name
);
1890 /// Finds a handler by name
1891 static wxRichTextFileHandler
*FindHandler(const wxString
& name
);
1893 /// Finds a handler by extension and type
1894 static wxRichTextFileHandler
*FindHandler(const wxString
& extension
, int imageType
);
1896 /// Finds a handler by filename or, if supplied, type
1897 static wxRichTextFileHandler
*FindHandlerFilenameOrType(const wxString
& filename
, int imageType
);
1899 /// Finds a handler by type
1900 static wxRichTextFileHandler
*FindHandler(int imageType
);
1902 /// Gets a wildcard incorporating all visible handlers. If 'types' is present,
1903 /// will be filled with the file type corresponding to each filter. This can be
1904 /// used to determine the type to pass to LoadFile given a selected filter.
1905 static wxString
GetExtWildcard(bool combine
= false, bool save
= false, wxArrayInt
* types
= NULL
);
1907 /// Clean up handlers
1908 static void CleanUpHandlers();
1910 /// Initialise the standard handlers
1911 static void InitStandardHandlers();
1914 static wxRichTextRenderer
* GetRenderer() { return sm_renderer
; }
1916 /// Set renderer, deleting old one
1917 static void SetRenderer(wxRichTextRenderer
* renderer
);
1919 /// Minimum margin between bullet and paragraph in 10ths of a mm
1920 static int GetBulletRightMargin() { return sm_bulletRightMargin
; }
1921 static void SetBulletRightMargin(int margin
) { sm_bulletRightMargin
= margin
; }
1923 /// Factor to multiply by character height to get a reasonable bullet size
1924 static float GetBulletProportion() { return sm_bulletProportion
; }
1925 static void SetBulletProportion(float prop
) { sm_bulletProportion
= prop
; }
1927 /// Scale factor for calculating dimensions
1928 double GetScale() const { return m_scale
; }
1929 void SetScale(double scale
) { m_scale
= scale
; }
1933 /// Command processor
1934 wxCommandProcessor
* m_commandProcessor
;
1936 /// Has been modified?
1939 /// Collapsed command stack
1940 int m_batchedCommandDepth
;
1942 /// Name for collapsed command
1943 wxString m_batchedCommandsName
;
1945 /// Current collapsed command accumulating actions
1946 wxRichTextCommand
* m_batchedCommand
;
1948 /// Whether to suppress undo
1951 /// Style sheet, if any
1952 wxRichTextStyleSheet
* m_styleSheet
;
1954 /// List of event handlers that will be notified of events
1955 wxList m_eventHandlers
;
1957 /// Stack of attributes for convenience functions
1958 wxList m_attributeStack
;
1960 /// Flags to be passed to handlers
1964 static wxList sm_handlers
;
1967 static wxRichTextRenderer
* sm_renderer
;
1969 /// Minimum margin between bullet and paragraph in 10ths of a mm
1970 static int sm_bulletRightMargin
;
1972 /// Factor to multiply by character height to get a reasonable bullet size
1973 static float sm_bulletProportion
;
1975 /// Scaling factor in use: needed to calculate correct dimensions when printing
1980 * The command identifiers
1984 enum wxRichTextCommandId
1988 wxRICHTEXT_CHANGE_STYLE
1992 * Command classes for undo/redo
1996 class WXDLLIMPEXP_RICHTEXT wxRichTextAction
;
1997 class WXDLLIMPEXP_RICHTEXT wxRichTextCommand
: public wxCommand
2000 // Ctor for one action
2001 wxRichTextCommand(const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
2002 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
= false);
2004 // Ctor for multiple actions
2005 wxRichTextCommand(const wxString
& name
);
2007 virtual ~wxRichTextCommand();
2012 void AddAction(wxRichTextAction
* action
);
2013 void ClearActions();
2015 wxList
& GetActions() { return m_actions
; }
2023 * wxRichTextAction class declaration
2024 * There can be more than one action in a command.
2027 class WXDLLIMPEXP_RICHTEXT wxRichTextAction
: public wxObject
2030 wxRichTextAction(wxRichTextCommand
* cmd
, const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
2031 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
= false);
2033 virtual ~wxRichTextAction();
2038 /// Update the control appearance
2039 void UpdateAppearance(long caretPosition
, bool sendUpdateEvent
= false,
2040 wxArrayInt
* optimizationLineCharPositions
= NULL
, wxArrayInt
* optimizationLineYPositions
= NULL
);
2042 /// Replace the buffer paragraphs with the given fragment.
2043 void ApplyParagraphs(const wxRichTextParagraphLayoutBox
& fragment
);
2045 /// Get the fragments
2046 wxRichTextParagraphLayoutBox
& GetNewParagraphs() { return m_newParagraphs
; }
2047 wxRichTextParagraphLayoutBox
& GetOldParagraphs() { return m_oldParagraphs
; }
2049 /// Set/get the position used for e.g. insertion
2050 void SetPosition(long pos
) { m_position
= pos
; }
2051 long GetPosition() const { return m_position
; }
2053 /// Set/get the range for e.g. deletion
2054 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
2055 const wxRichTextRange
& GetRange() const { return m_range
; }
2058 const wxString
& GetName() const { return m_name
; }
2065 wxRichTextBuffer
* m_buffer
;
2068 wxRichTextCtrl
* m_ctrl
;
2070 // Stores the new paragraphs
2071 wxRichTextParagraphLayoutBox m_newParagraphs
;
2073 // Stores the old paragraphs
2074 wxRichTextParagraphLayoutBox m_oldParagraphs
;
2076 // The affected range
2077 wxRichTextRange m_range
;
2079 // The insertion point for this command
2082 // Ignore 1st 'Do' operation because we already did it
2085 // The command identifier
2086 wxRichTextCommandId m_cmdId
;
2093 // Include style sheet when loading and saving
2094 #define wxRICHTEXT_HANDLER_INCLUDE_STYLESHEET 0x0001
2096 // Save images to memory file system in HTML handler
2097 #define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_MEMORY 0x0010
2099 // Save images to files in HTML handler
2100 #define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_FILES 0x0020
2102 // Save images as inline base64 data in HTML handler
2103 #define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_BASE64 0x0040
2105 // Don't write header and footer (or BODY), so we can include the fragment
2106 // in a larger document
2107 #define wxRICHTEXT_HANDLER_NO_HEADER_FOOTER 0x0080
2110 * wxRichTextFileHandler
2111 * Base class for file handlers
2114 class WXDLLIMPEXP_RICHTEXT wxRichTextFileHandler
: public wxObject
2116 DECLARE_CLASS(wxRichTextFileHandler
)
2118 wxRichTextFileHandler(const wxString
& name
= wxEmptyString
, const wxString
& ext
= wxEmptyString
, int type
= 0)
2119 : m_name(name
), m_extension(ext
), m_type(type
), m_flags(0), m_visible(true)
2123 bool LoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
)
2124 { return DoLoadFile(buffer
, stream
); }
2125 bool SaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
)
2126 { return DoSaveFile(buffer
, stream
); }
2129 bool LoadFile(wxRichTextBuffer
*buffer
, const wxString
& filename
);
2130 bool SaveFile(wxRichTextBuffer
*buffer
, const wxString
& filename
);
2132 /// Can we handle this filename (if using files)? By default, checks the extension.
2133 virtual bool CanHandle(const wxString
& filename
) const;
2135 /// Can we save using this handler?
2136 virtual bool CanSave() const { return false; }
2138 /// Can we load using this handler?
2139 virtual bool CanLoad() const { return false; }
2141 /// Should this handler be visible to the user?
2142 virtual bool IsVisible() const { return m_visible
; }
2143 virtual void SetVisible(bool visible
) { m_visible
= visible
; }
2145 /// The name of the nandler
2146 void SetName(const wxString
& name
) { m_name
= name
; }
2147 wxString
GetName() const { return m_name
; }
2149 /// The default extension to recognise
2150 void SetExtension(const wxString
& ext
) { m_extension
= ext
; }
2151 wxString
GetExtension() const { return m_extension
; }
2153 /// The handler type
2154 void SetType(int type
) { m_type
= type
; }
2155 int GetType() const { return m_type
; }
2157 /// Flags controlling how loading and saving is done
2158 void SetFlags(int flags
) { m_flags
= flags
; }
2159 int GetFlags() const { return m_flags
; }
2161 /// Encoding to use when saving a file. If empty, a suitable encoding is chosen
2162 void SetEncoding(const wxString
& encoding
) { m_encoding
= encoding
; }
2163 const wxString
& GetEncoding() const { return m_encoding
; }
2168 virtual bool DoLoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
) = 0;
2169 virtual bool DoSaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
) = 0;
2173 wxString m_encoding
;
2174 wxString m_extension
;
2181 * wxRichTextPlainTextHandler
2182 * Plain text handler
2185 class WXDLLIMPEXP_RICHTEXT wxRichTextPlainTextHandler
: public wxRichTextFileHandler
2187 DECLARE_CLASS(wxRichTextPlainTextHandler
)
2189 wxRichTextPlainTextHandler(const wxString
& name
= wxT("Text"), const wxString
& ext
= wxT("txt"), int type
= wxRICHTEXT_TYPE_TEXT
)
2190 : wxRichTextFileHandler(name
, ext
, type
)
2193 /// Can we save using this handler?
2194 virtual bool CanSave() const { return true; }
2196 /// Can we load using this handler?
2197 virtual bool CanLoad() const { return true; }
2202 virtual bool DoLoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
);
2203 virtual bool DoSaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
);
2211 * The data object for a wxRichTextBuffer
2214 class WXDLLIMPEXP_RICHTEXT wxRichTextBufferDataObject
: public wxDataObjectSimple
2217 // ctor doesn't copy the pointer, so it shouldn't go away while this object
2219 wxRichTextBufferDataObject(wxRichTextBuffer
* richTextBuffer
= (wxRichTextBuffer
*) NULL
);
2220 virtual ~wxRichTextBufferDataObject();
2222 // after a call to this function, the buffer is owned by the caller and it
2223 // is responsible for deleting it
2224 wxRichTextBuffer
* GetRichTextBuffer();
2226 // Returns the id for the new data format
2227 static const wxChar
* GetRichTextBufferFormatId() { return ms_richTextBufferFormatId
; }
2229 // base class pure virtuals
2231 virtual wxDataFormat
GetPreferredFormat(Direction dir
) const;
2232 virtual size_t GetDataSize() const;
2233 virtual bool GetDataHere(void *pBuf
) const;
2234 virtual bool SetData(size_t len
, const void *buf
);
2238 virtual size_t GetDataSize(const wxDataFormat
&) const { return GetDataSize(); }
2239 virtual bool GetDataHere(const wxDataFormat
&, void *buf
) const { return GetDataHere(buf
); }
2240 virtual bool SetData(const wxDataFormat
&, size_t len
, const void *buf
) { return SetData(len
, buf
); }
2243 wxDataFormat m_formatRichTextBuffer
; // our custom format
2244 wxRichTextBuffer
* m_richTextBuffer
; // our data
2245 static const wxChar
* ms_richTextBufferFormatId
; // our format id
2251 * wxRichTextRenderer isolates common drawing functionality
2254 class WXDLLIMPEXP_RICHTEXT wxRichTextRenderer
: public wxObject
2257 wxRichTextRenderer() {}
2258 virtual ~wxRichTextRenderer() {}
2260 /// Draw a standard bullet, as specified by the value of GetBulletName
2261 virtual bool DrawStandardBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
) = 0;
2263 /// Draw a bullet that can be described by text, such as numbered or symbol bullets
2264 virtual bool DrawTextBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
, const wxString
& text
) = 0;
2266 /// Draw a bitmap bullet, where the bullet bitmap is specified by the value of GetBulletName
2267 virtual bool DrawBitmapBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
) = 0;
2269 /// Enumerate the standard bullet names currently supported
2270 virtual bool EnumerateStandardBulletNames(wxArrayString
& bulletNames
) = 0;
2274 * wxRichTextStdRenderer: standard renderer
2277 class WXDLLIMPEXP_RICHTEXT wxRichTextStdRenderer
: public wxRichTextRenderer
2280 wxRichTextStdRenderer() {}
2282 /// Draw a standard bullet, as specified by the value of GetBulletName
2283 virtual bool DrawStandardBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
);
2285 /// Draw a bullet that can be described by text, such as numbered or symbol bullets
2286 virtual bool DrawTextBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
, const wxString
& text
);
2288 /// Draw a bitmap bullet, where the bullet bitmap is specified by the value of GetBulletName
2289 virtual bool DrawBitmapBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
);
2291 /// Enumerate the standard bullet names currently supported
2292 virtual bool EnumerateStandardBulletNames(wxArrayString
& bulletNames
);
2300 inline bool wxRichTextHasStyle(int flags
, int style
)
2302 return ((flags
& style
) == style
);
2305 /// Compare two attribute objects
2306 WXDLLIMPEXP_RICHTEXT
bool wxTextAttrEq(const wxTextAttrEx
& attr1
, const wxTextAttrEx
& attr2
);
2307 WXDLLIMPEXP_RICHTEXT
bool wxTextAttrEq(const wxTextAttr
& attr1
, const wxRichTextAttr
& attr2
);
2309 /// Compare two attribute objects, but take into account the flags
2310 /// specifying attributes of interest.
2311 WXDLLIMPEXP_RICHTEXT
bool wxTextAttrEqPartial(const wxTextAttrEx
& attr1
, const wxTextAttrEx
& attr2
, int flags
);
2312 WXDLLIMPEXP_RICHTEXT
bool wxTextAttrEqPartial(const wxTextAttrEx
& attr1
, const wxRichTextAttr
& attr2
, int flags
);
2314 /// Apply one style to another
2315 WXDLLIMPEXP_RICHTEXT
bool wxRichTextApplyStyle(wxTextAttrEx
& destStyle
, const wxTextAttrEx
& style
);
2316 WXDLLIMPEXP_RICHTEXT
bool wxRichTextApplyStyle(wxRichTextAttr
& destStyle
, const wxTextAttrEx
& style
);
2317 WXDLLIMPEXP_RICHTEXT
bool wxRichTextApplyStyle(wxTextAttrEx
& destStyle
, const wxRichTextAttr
& style
, wxRichTextAttr
* compareWith
= NULL
);
2318 WXDLLIMPEXP_RICHTEXT
bool wxRichTextApplyStyle(wxRichTextAttr
& destStyle
, const wxRichTextAttr
& style
, wxRichTextAttr
* compareWith
= NULL
);
2320 /// Combine two bitlists
2321 WXDLLIMPEXP_RICHTEXT
bool wxRichTextCombineBitlists(int& valueA
, int valueB
, int& flagsA
, int flagsB
);
2323 /// Compare two bitlists
2324 WXDLLIMPEXP_RICHTEXT
bool wxRichTextBitlistsEqPartial(int valueA
, int valueB
, int flags
);
2326 /// Split into paragraph and character styles
2327 WXDLLIMPEXP_RICHTEXT
bool wxRichTextSplitParaCharStyles(const wxTextAttrEx
& style
, wxTextAttrEx
& parStyle
, wxTextAttrEx
& charStyle
);
2330 WXDLLIMPEXP_RICHTEXT
bool wxRichTextTabsEq(const wxArrayInt
& tabs1
, const wxArrayInt
& tabs2
);
2332 /// Set the font without changing the font attributes
2333 WXDLLIMPEXP_RICHTEXT
void wxSetFontPreservingStyles(wxTextAttr
& attr
, const wxFont
& font
);
2335 /// Convert a decimal to Roman numerals
2336 WXDLLIMPEXP_RICHTEXT wxString
wxRichTextDecimalToRoman(long n
);
2338 WXDLLIMPEXP_RICHTEXT
void wxRichTextModuleInit();
2344 // _WX_RICHTEXTBUFFER_H_