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"
73 // Experimental dynamic styles to avoid user-specific character styles from being
74 // overwritten by paragraph styles.
75 #define wxRICHTEXT_USE_DYNAMIC_STYLES 1
81 #define wxRICHTEXT_TYPE_ANY 0
82 #define wxRICHTEXT_TYPE_TEXT 1
83 #define wxRICHTEXT_TYPE_XML 2
84 #define wxRICHTEXT_TYPE_HTML 3
85 #define wxRICHTEXT_TYPE_RTF 4
86 #define wxRICHTEXT_TYPE_PDF 5
89 * Forward declarations
92 class WXDLLIMPEXP_RICHTEXT wxRichTextCtrl
;
93 class WXDLLIMPEXP_RICHTEXT wxRichTextObject
;
94 class WXDLLIMPEXP_RICHTEXT wxRichTextCacheObject
;
95 class WXDLLIMPEXP_RICHTEXT wxRichTextObjectList
;
96 class WXDLLIMPEXP_RICHTEXT wxRichTextLine
;
97 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraph
;
98 class WXDLLIMPEXP_RICHTEXT wxRichTextFileHandler
;
99 class WXDLLIMPEXP_RICHTEXT wxRichTextStyleSheet
;
100 class WXDLLIMPEXP_RICHTEXT wxTextAttrEx
;
103 * Flags determining the available space, passed to Layout
106 #define wxRICHTEXT_FIXED_WIDTH 0x01
107 #define wxRICHTEXT_FIXED_HEIGHT 0x02
108 #define wxRICHTEXT_VARIABLE_WIDTH 0x04
109 #define wxRICHTEXT_VARIABLE_HEIGHT 0x08
111 // Only lay out the part of the buffer that lies within
112 // the rect passed to Layout.
113 #define wxRICHTEXT_LAYOUT_SPECIFIED_RECT 0x10
116 * Flags returned from hit-testing
119 // The point was not on this object
120 #define wxRICHTEXT_HITTEST_NONE 0x01
121 // The point was before the position returned from HitTest
122 #define wxRICHTEXT_HITTEST_BEFORE 0x02
123 // The point was after the position returned from HitTest
124 #define wxRICHTEXT_HITTEST_AFTER 0x04
125 // The point was on the position returned from HitTest
126 #define wxRICHTEXT_HITTEST_ON 0x08
129 * Flags for GetRangeSize
132 #define wxRICHTEXT_FORMATTED 0x01
133 #define wxRICHTEXT_UNFORMATTED 0x02
139 #define wxRICHTEXT_SETSTYLE_NONE 0x00
141 // Specifies that this operation should be undoable
142 #define wxRICHTEXT_SETSTYLE_WITH_UNDO 0x01
144 // Specifies that the style should not be applied if the
145 // combined style at this point is already the style in question.
146 #define wxRICHTEXT_SETSTYLE_OPTIMIZE 0x02
148 // Specifies that the style should only be applied to paragraphs,
149 // and not the content. This allows content styling to be
150 // preserved independently from that of e.g. a named paragraph style.
151 #define wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY 0x04
153 // Specifies that the style should only be applied to characters,
154 // and not the paragraph. This allows content styling to be
155 // preserved independently from that of e.g. a named paragraph style.
156 #define wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY 0x08
159 * Flags for text insertion
162 #define wxRICHTEXT_INSERT_NONE 0x00
163 #define wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE 0x01
166 * Extra formatting flags not in wxTextAttr
169 #define wxTEXT_ATTR_PARA_SPACING_AFTER 0x00000800
170 #define wxTEXT_ATTR_PARA_SPACING_BEFORE 0x00001000
171 #define wxTEXT_ATTR_LINE_SPACING 0x00002000
172 #define wxTEXT_ATTR_CHARACTER_STYLE_NAME 0x00004000
173 #define wxTEXT_ATTR_PARAGRAPH_STYLE_NAME 0x00008000
174 #define wxTEXT_ATTR_BULLET_STYLE 0x00010000
175 #define wxTEXT_ATTR_BULLET_NUMBER 0x00020000
176 #define wxTEXT_ATTR_BULLET_SYMBOL 0x00040000
179 * Styles for wxTextAttrEx::SetBulletStyle
182 #define wxTEXT_ATTR_BULLET_STYLE_NONE 0x0000
183 #define wxTEXT_ATTR_BULLET_STYLE_ARABIC 0x0001
184 #define wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER 0x0002
185 #define wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER 0x0004
186 #define wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER 0x0008
187 #define wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER 0x0010
188 #define wxTEXT_ATTR_BULLET_STYLE_SYMBOL 0x0020
189 #define wxTEXT_ATTR_BULLET_STYLE_BITMAP 0x0040
190 #define wxTEXT_ATTR_BULLET_STYLE_PARENTHESES 0x0080
191 #define wxTEXT_ATTR_BULLET_STYLE_PERIOD 0x0100
194 * Line spacing values
197 #define wxTEXT_ATTR_LINE_SPACING_NORMAL 10
198 #define wxTEXT_ATTR_LINE_SPACING_HALF 15
199 #define wxTEXT_ATTR_LINE_SPACING_TWICE 20
202 * wxRichTextRange class declaration
203 * This stores beginning and end positions for a range of data.
206 class WXDLLIMPEXP_RICHTEXT wxRichTextRange
211 wxRichTextRange() { m_start
= 0; m_end
= 0; }
212 wxRichTextRange(long start
, long end
) { m_start
= start
; m_end
= end
; }
213 wxRichTextRange(const wxRichTextRange
& range
) { m_start
= range
.m_start
; m_end
= range
.m_end
; }
214 ~wxRichTextRange() {}
216 void operator =(const wxRichTextRange
& range
) { m_start
= range
.m_start
; m_end
= range
.m_end
; }
217 bool operator ==(const wxRichTextRange
& range
) const { return (m_start
== range
.m_start
&& m_end
== range
.m_end
); }
218 bool operator !=(const wxRichTextRange
& range
) const { return (m_start
!= range
.m_start
&& m_end
!= range
.m_end
); }
219 wxRichTextRange
operator -(const wxRichTextRange
& range
) const { return wxRichTextRange(m_start
- range
.m_start
, m_end
- range
.m_end
); }
220 wxRichTextRange
operator +(const wxRichTextRange
& range
) const { return wxRichTextRange(m_start
+ range
.m_start
, m_end
+ range
.m_end
); }
222 void SetRange(long start
, long end
) { m_start
= start
; m_end
= end
; }
224 void SetStart(long start
) { m_start
= start
; }
225 long GetStart() const { return m_start
; }
227 void SetEnd(long end
) { m_end
= end
; }
228 long GetEnd() const { return m_end
; }
230 /// Returns true if this range is completely outside 'range'
231 bool IsOutside(const wxRichTextRange
& range
) const { return range
.m_start
> m_end
|| range
.m_end
< m_start
; }
233 /// Returns true if this range is completely within 'range'
234 bool IsWithin(const wxRichTextRange
& range
) const { return m_start
>= range
.m_start
&& m_end
<= range
.m_end
; }
236 /// Returns true if the given position is within this range. Allow
237 /// for the possibility of an empty range - assume the position
238 /// is within this empty range. NO, I think we should not match with an empty range.
239 // bool Contains(long pos) const { return pos >= m_start && (pos <= m_end || GetLength() == 0); }
240 bool Contains(long pos
) const { return pos
>= m_start
&& pos
<= m_end
; }
242 /// Limit this range to be within 'range'
243 bool LimitTo(const wxRichTextRange
& range
) ;
245 /// Gets the length of the range
246 long GetLength() const { return m_end
- m_start
+ 1; }
248 /// Swaps the start and end
249 void Swap() { long tmp
= m_start
; m_start
= m_end
; m_end
= tmp
; }
251 /// Convert to internal form: (n, n) is the range of a single character.
252 wxRichTextRange
ToInternal() const { return wxRichTextRange(m_start
, m_end
-1); }
254 /// Convert from internal to public API form: (n, n+1) is the range of a single character.
255 wxRichTextRange
FromInternal() const { return wxRichTextRange(m_start
, m_end
+1); }
262 #define wxRICHTEXT_ALL wxRichTextRange(-2, -2)
263 #define wxRICHTEXT_NONE wxRichTextRange(-1, -1)
266 * wxTextAttrEx is an extended version of wxTextAttr with more paragraph attributes.
269 class WXDLLIMPEXP_RICHTEXT wxTextAttrEx
: public wxTextAttr
273 wxTextAttrEx(const wxTextAttrEx
& attr
);
274 wxTextAttrEx(const wxTextAttr
& attr
) { Init(); (*this) = attr
; }
275 wxTextAttrEx() { Init(); }
277 // Initialise this object.
280 // Assignment from a wxTextAttrEx object
281 void operator= (const wxTextAttrEx
& attr
);
283 // Assignment from a wxTextAttr object.
284 void operator= (const wxTextAttr
& attr
);
287 void SetCharacterStyleName(const wxString
& name
) { m_characterStyleName
= name
; SetFlags(GetFlags() | wxTEXT_ATTR_CHARACTER_STYLE_NAME
); }
288 void SetParagraphStyleName(const wxString
& name
) { m_paragraphStyleName
= name
; SetFlags(GetFlags() | wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
); }
289 void SetParagraphSpacingAfter(int spacing
) { m_paragraphSpacingAfter
= spacing
; SetFlags(GetFlags() | wxTEXT_ATTR_PARA_SPACING_AFTER
); }
290 void SetParagraphSpacingBefore(int spacing
) { m_paragraphSpacingBefore
= spacing
; SetFlags(GetFlags() | wxTEXT_ATTR_PARA_SPACING_BEFORE
); }
291 void SetLineSpacing(int spacing
) { m_lineSpacing
= spacing
; SetFlags(GetFlags() | wxTEXT_ATTR_LINE_SPACING
); }
292 void SetBulletStyle(int style
) { m_bulletStyle
= style
; SetFlags(GetFlags() | wxTEXT_ATTR_BULLET_STYLE
); }
293 void SetBulletNumber(int n
) { m_bulletNumber
= n
; SetFlags(GetFlags() | wxTEXT_ATTR_BULLET_NUMBER
); }
294 void SetBulletSymbol(wxChar symbol
) { m_bulletSymbol
= symbol
; SetFlags(GetFlags() | wxTEXT_ATTR_BULLET_SYMBOL
); }
295 void SetBulletFont(const wxString
& bulletFont
) { m_bulletFont
= bulletFont
; }
297 const wxString
& GetCharacterStyleName() const { return m_characterStyleName
; }
298 const wxString
& GetParagraphStyleName() const { return m_paragraphStyleName
; }
299 int GetParagraphSpacingAfter() const { return m_paragraphSpacingAfter
; }
300 int GetParagraphSpacingBefore() const { return m_paragraphSpacingBefore
; }
301 int GetLineSpacing() const { return m_lineSpacing
; }
302 int GetBulletStyle() const { return m_bulletStyle
; }
303 int GetBulletNumber() const { return m_bulletNumber
; }
304 wxChar
GetBulletSymbol() const { return m_bulletSymbol
; }
305 const wxString
& GetBulletFont() const { return m_bulletFont
; }
307 bool HasWeight() const { return (GetFlags() & wxTEXT_ATTR_FONT_WEIGHT
) != 0; }
308 bool HasSize() const { return (GetFlags() & wxTEXT_ATTR_FONT_SIZE
) != 0; }
309 bool HasItalic() const { return (GetFlags() & wxTEXT_ATTR_FONT_ITALIC
) != 0; }
310 bool HasUnderlined() const { return (GetFlags() & wxTEXT_ATTR_FONT_UNDERLINE
) != 0; }
311 bool HasFaceName() const { return (GetFlags() & wxTEXT_ATTR_FONT_FACE
) != 0; }
313 bool HasParagraphSpacingAfter() const { return HasFlag(wxTEXT_ATTR_PARA_SPACING_AFTER
); }
314 bool HasParagraphSpacingBefore() const { return HasFlag(wxTEXT_ATTR_PARA_SPACING_BEFORE
); }
315 bool HasLineSpacing() const { return HasFlag(wxTEXT_ATTR_LINE_SPACING
); }
316 bool HasCharacterStyleName() const { return HasFlag(wxTEXT_ATTR_CHARACTER_STYLE_NAME
) || !m_characterStyleName
.IsEmpty(); }
317 bool HasParagraphStyleName() const { return HasFlag(wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
) || !m_paragraphStyleName
.IsEmpty(); }
318 bool HasBulletStyle() const { return HasFlag(wxTEXT_ATTR_BULLET_STYLE
); }
319 bool HasBulletNumber() const { return HasFlag(wxTEXT_ATTR_BULLET_NUMBER
); }
320 bool HasBulletSymbol() const { return HasFlag(wxTEXT_ATTR_BULLET_SYMBOL
); }
322 // Is this a character style?
323 bool IsCharacterStyle() const { return (0 != (GetFlags() & (wxTEXT_ATTR_FONT
| wxTEXT_ATTR_BACKGROUND_COLOUR
| wxTEXT_ATTR_TEXT_COLOUR
))); }
324 bool IsParagraphStyle() const { return (0 != (GetFlags() & (wxTEXT_ATTR_ALIGNMENT
|wxTEXT_ATTR_LEFT_INDENT
|wxTEXT_ATTR_RIGHT_INDENT
|wxTEXT_ATTR_TABS
|
325 wxTEXT_ATTR_PARA_SPACING_BEFORE
|wxTEXT_ATTR_PARA_SPACING_AFTER
|wxTEXT_ATTR_LINE_SPACING
|
326 wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_BULLET_NUMBER
))); }
328 // returns false if we have any attributes set, true otherwise
329 bool IsDefault() const
331 return !HasTextColour() && !HasBackgroundColour() && !HasFont() && !HasAlignment() &&
332 !HasTabs() && !HasLeftIndent() && !HasRightIndent() &&
333 !HasParagraphSpacingAfter() && !HasParagraphSpacingBefore() && !HasLineSpacing() &&
334 !HasCharacterStyleName() && !HasParagraphStyleName() && !HasBulletNumber() && !HasBulletStyle() && !HasBulletSymbol();
337 // return the attribute having the valid font and colours: it uses the
338 // attributes set in attr and falls back first to attrDefault and then to
339 // the text control font/colours for those attributes which are not set
340 static wxTextAttrEx
CombineEx(const wxTextAttrEx
& attr
,
341 const wxTextAttrEx
& attrDef
,
342 const wxTextCtrlBase
*text
);
346 int m_paragraphSpacingAfter
;
347 int m_paragraphSpacingBefore
;
351 wxChar m_bulletSymbol
;
352 wxString m_bulletFont
;
355 wxString m_characterStyleName
;
358 wxString m_paragraphStyleName
;
362 * wxRichTextAttr stores attributes without a wxFont object, so is a much more
363 * efficient way to query styles.
366 class WXDLLIMPEXP_RICHTEXT wxRichTextAttr
370 wxRichTextAttr(const wxTextAttrEx
& attr
);
371 wxRichTextAttr() { Init(); }
372 wxRichTextAttr(const wxColour
& colText
,
373 const wxColour
& colBack
= wxNullColour
,
374 wxTextAttrAlignment alignment
= wxTEXT_ALIGNMENT_DEFAULT
);
376 // Initialise this object.
379 // Assignment from a wxRichTextAttr object.
380 void operator= (const wxRichTextAttr
& attr
);
382 // Assignment from a wxTextAttrEx object.
383 void operator= (const wxTextAttrEx
& attr
);
386 bool operator== (const wxRichTextAttr
& attr
) const;
388 // Making a wxTextAttrEx object.
389 operator wxTextAttrEx () const ;
391 // Copy to a wxTextAttr
392 void CopyTo(wxTextAttrEx
& attr
) const;
394 // Create font from font attributes.
395 wxFont
CreateFont() const;
397 // Get attributes from font.
398 bool GetFontAttributes(const wxFont
& font
);
401 void SetTextColour(const wxColour
& colText
) { m_colText
= colText
; m_flags
|= wxTEXT_ATTR_TEXT_COLOUR
; }
402 void SetBackgroundColour(const wxColour
& colBack
) { m_colBack
= colBack
; m_flags
|= wxTEXT_ATTR_BACKGROUND_COLOUR
; }
403 void SetAlignment(wxTextAttrAlignment alignment
) { m_textAlignment
= alignment
; m_flags
|= wxTEXT_ATTR_ALIGNMENT
; }
404 void SetTabs(const wxArrayInt
& tabs
) { m_tabs
= tabs
; m_flags
|= wxTEXT_ATTR_TABS
; }
405 void SetLeftIndent(int indent
, int subIndent
= 0) { m_leftIndent
= indent
; m_leftSubIndent
= subIndent
; m_flags
|= wxTEXT_ATTR_LEFT_INDENT
; }
406 void SetRightIndent(int indent
) { m_rightIndent
= indent
; m_flags
|= wxTEXT_ATTR_RIGHT_INDENT
; }
408 void SetFontSize(int pointSize
) { m_fontSize
= pointSize
; m_flags
|= wxTEXT_ATTR_FONT_SIZE
; }
409 void SetFontStyle(int fontStyle
) { m_fontStyle
= fontStyle
; m_flags
|= wxTEXT_ATTR_FONT_ITALIC
; }
410 void SetFontWeight(int fontWeight
) { m_fontWeight
= fontWeight
; m_flags
|= wxTEXT_ATTR_FONT_WEIGHT
; }
411 void SetFontFaceName(const wxString
& faceName
) { m_fontFaceName
= faceName
; m_flags
|= wxTEXT_ATTR_FONT_FACE
; }
412 void SetFontUnderlined(bool underlined
) { m_fontUnderlined
= underlined
; m_flags
|= wxTEXT_ATTR_FONT_UNDERLINE
; }
414 void SetFlags(long flags
) { m_flags
= flags
; }
416 void SetCharacterStyleName(const wxString
& name
) { m_characterStyleName
= name
; m_flags
|= wxTEXT_ATTR_CHARACTER_STYLE_NAME
; }
417 void SetParagraphStyleName(const wxString
& name
) { m_paragraphStyleName
= name
; m_flags
|= wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
; }
418 void SetParagraphSpacingAfter(int spacing
) { m_paragraphSpacingAfter
= spacing
; m_flags
|= wxTEXT_ATTR_PARA_SPACING_AFTER
; }
419 void SetParagraphSpacingBefore(int spacing
) { m_paragraphSpacingBefore
= spacing
; m_flags
|= wxTEXT_ATTR_PARA_SPACING_BEFORE
; }
420 void SetLineSpacing(int spacing
) { m_lineSpacing
= spacing
; m_flags
|= wxTEXT_ATTR_LINE_SPACING
; }
421 void SetBulletStyle(int style
) { m_bulletStyle
= style
; m_flags
|= wxTEXT_ATTR_BULLET_STYLE
; }
422 void SetBulletNumber(int n
) { m_bulletNumber
= n
; m_flags
|= wxTEXT_ATTR_BULLET_NUMBER
; }
423 void SetBulletSymbol(wxChar symbol
) { m_bulletSymbol
= symbol
; m_flags
|= wxTEXT_ATTR_BULLET_NUMBER
; }
424 void SetBulletFont(const wxString
& bulletFont
) { m_bulletFont
= bulletFont
; }
426 const wxColour
& GetTextColour() const { return m_colText
; }
427 const wxColour
& GetBackgroundColour() const { return m_colBack
; }
428 wxTextAttrAlignment
GetAlignment() const { return m_textAlignment
; }
429 const wxArrayInt
& GetTabs() const { return m_tabs
; }
430 long GetLeftIndent() const { return m_leftIndent
; }
431 long GetLeftSubIndent() const { return m_leftSubIndent
; }
432 long GetRightIndent() const { return m_rightIndent
; }
433 long GetFlags() const { return m_flags
; }
435 int GetFontSize() const { return m_fontSize
; }
436 int GetFontStyle() const { return m_fontStyle
; }
437 int GetFontWeight() const { return m_fontWeight
; }
438 bool GetFontUnderlined() const { return m_fontUnderlined
; }
439 const wxString
& GetFontFaceName() const { return m_fontFaceName
; }
441 const wxString
& GetCharacterStyleName() const { return m_characterStyleName
; }
442 const wxString
& GetParagraphStyleName() const { return m_paragraphStyleName
; }
443 int GetParagraphSpacingAfter() const { return m_paragraphSpacingAfter
; }
444 int GetParagraphSpacingBefore() const { return m_paragraphSpacingBefore
; }
445 int GetLineSpacing() const { return m_lineSpacing
; }
446 int GetBulletStyle() const { return m_bulletStyle
; }
447 int GetBulletNumber() const { return m_bulletNumber
; }
448 wxChar
GetBulletSymbol() const { return m_bulletSymbol
; }
449 const wxString
& GetBulletFont() const { return m_bulletFont
; }
452 bool HasTextColour() const { return m_colText
.Ok() && HasFlag(wxTEXT_ATTR_TEXT_COLOUR
) ; }
453 bool HasBackgroundColour() const { return m_colBack
.Ok() && HasFlag(wxTEXT_ATTR_BACKGROUND_COLOUR
) ; }
454 bool HasAlignment() const { return (m_textAlignment
!= wxTEXT_ALIGNMENT_DEFAULT
) || ((m_flags
& wxTEXT_ATTR_ALIGNMENT
) != 0) ; }
455 bool HasTabs() const { return (m_flags
& wxTEXT_ATTR_TABS
) != 0 ; }
456 bool HasLeftIndent() const { return (m_flags
& wxTEXT_ATTR_LEFT_INDENT
) != 0 ; }
457 bool HasRightIndent() const { return (m_flags
& wxTEXT_ATTR_RIGHT_INDENT
) != 0 ; }
458 bool HasWeight() const { return (m_flags
& wxTEXT_ATTR_FONT_WEIGHT
) != 0; }
459 bool HasSize() const { return (m_flags
& wxTEXT_ATTR_FONT_SIZE
) != 0; }
460 bool HasItalic() const { return (m_flags
& wxTEXT_ATTR_FONT_ITALIC
) != 0; }
461 bool HasUnderlined() const { return (m_flags
& wxTEXT_ATTR_FONT_UNDERLINE
) != 0; }
462 bool HasFaceName() const { return (m_flags
& wxTEXT_ATTR_FONT_FACE
) != 0; }
463 bool HasFont() const { return (m_flags
& (wxTEXT_ATTR_FONT
)) != 0; }
465 bool HasParagraphSpacingAfter() const { return (m_flags
& wxTEXT_ATTR_PARA_SPACING_AFTER
) != 0; }
466 bool HasParagraphSpacingBefore() const { return (m_flags
& wxTEXT_ATTR_PARA_SPACING_BEFORE
) != 0; }
467 bool HasLineSpacing() const { return (m_flags
& wxTEXT_ATTR_LINE_SPACING
) != 0; }
468 bool HasCharacterStyleName() const { return (m_flags
& wxTEXT_ATTR_CHARACTER_STYLE_NAME
) != 0 || !m_characterStyleName
.IsEmpty(); }
469 bool HasParagraphStyleName() const { return (m_flags
& wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
) != 0 || !m_paragraphStyleName
.IsEmpty(); }
470 bool HasBulletStyle() const { return (m_flags
& wxTEXT_ATTR_BULLET_STYLE
) != 0; }
471 bool HasBulletNumber() const { return (m_flags
& wxTEXT_ATTR_BULLET_NUMBER
) != 0; }
472 bool HasBulletSymbol() const { return (m_flags
& wxTEXT_ATTR_BULLET_SYMBOL
) != 0; }
474 bool HasFlag(long flag
) const { return (m_flags
& flag
) != 0; }
476 // Is this a character style?
477 bool IsCharacterStyle() const { return (0 != (GetFlags() & (wxTEXT_ATTR_FONT
| wxTEXT_ATTR_BACKGROUND_COLOUR
| wxTEXT_ATTR_TEXT_COLOUR
))); }
478 bool IsParagraphStyle() const { return (0 != (GetFlags() & (wxTEXT_ATTR_ALIGNMENT
|wxTEXT_ATTR_LEFT_INDENT
|wxTEXT_ATTR_RIGHT_INDENT
|wxTEXT_ATTR_TABS
|
479 wxTEXT_ATTR_PARA_SPACING_BEFORE
|wxTEXT_ATTR_PARA_SPACING_AFTER
|wxTEXT_ATTR_LINE_SPACING
|
480 wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_BULLET_NUMBER
))); }
482 // returns false if we have any attributes set, true otherwise
483 bool IsDefault() const
485 return !HasTextColour() && !HasBackgroundColour() && !HasFont() && !HasAlignment() &&
486 !HasTabs() && !HasLeftIndent() && !HasRightIndent() &&
487 !HasParagraphSpacingAfter() && !HasParagraphSpacingBefore() && !HasLineSpacing() &&
488 !HasCharacterStyleName() && !HasParagraphStyleName() && !HasBulletNumber() && !HasBulletStyle() && !HasBulletSymbol();
491 // return the attribute having the valid font and colours: it uses the
492 // attributes set in attr and falls back first to attrDefault and then to
493 // the text control font/colours for those attributes which are not set
494 static wxRichTextAttr
Combine(const wxRichTextAttr
& attr
,
495 const wxRichTextAttr
& attrDef
,
496 const wxTextCtrlBase
*text
);
501 wxArrayInt m_tabs
; // array of int: tab stops in 1/10 mm
502 int m_leftIndent
; // left indent in 1/10 mm
503 int m_leftSubIndent
; // left indent for all but the first
504 // line in a paragraph relative to the
505 // first line, in 1/10 mm
506 int m_rightIndent
; // right indent in 1/10 mm
507 wxTextAttrAlignment m_textAlignment
;
509 int m_paragraphSpacingAfter
;
510 int m_paragraphSpacingBefore
;
514 wxChar m_bulletSymbol
;
515 wxString m_bulletFont
;
523 bool m_fontUnderlined
;
524 wxString m_fontFaceName
;
527 wxString m_characterStyleName
;
530 wxString m_paragraphStyleName
;
533 #define wxTEXT_ATTR_CHARACTER (wxTEXT_ATTR_FONT | wxTEXT_ATTR_BACKGROUND_COLOUR | wxTEXT_ATTR_TEXT_COLOUR | wxTEXT_ATTR_CHARACTER_STYLE_NAME)
535 #define wxTEXT_ATTR_PARAGRAPH (wxTEXT_ATTR_ALIGNMENT|wxTEXT_ATTR_LEFT_INDENT|wxTEXT_ATTR_RIGHT_INDENT|wxTEXT_ATTR_TABS|\
536 wxTEXT_ATTR_PARA_SPACING_BEFORE|wxTEXT_ATTR_PARA_SPACING_AFTER|wxTEXT_ATTR_LINE_SPACING|\
537 wxTEXT_ATTR_BULLET_STYLE|wxTEXT_ATTR_BULLET_NUMBER|wxTEXT_ATTR_BULLET_SYMBOL|wxTEXT_ATTR_PARAGRAPH_STYLE_NAME)
539 #define wxTEXT_ATTR_ALL (wxTEXT_ATTR_CHARACTER|wxTEXT_ATTR_PARAGRAPH)
542 * wxRichTextObject class declaration
543 * This is the base for drawable objects.
546 class WXDLLIMPEXP_RICHTEXT wxRichTextObject
: public wxObject
548 DECLARE_CLASS(wxRichTextObject
)
552 wxRichTextObject(wxRichTextObject
* parent
= NULL
);
553 virtual ~wxRichTextObject();
557 /// Draw the item, within the given range. Some objects may ignore the range (for
558 /// example paragraphs) while others must obey it (lines, to implement wrapping)
559 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
) = 0;
561 /// Lay the item out at the specified position with the given size constraint.
562 /// Layout must set the cached size.
563 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
) = 0;
565 /// Hit-testing: returns a flag indicating hit test details, plus
566 /// information about position
567 virtual int HitTest(wxDC
& WXUNUSED(dc
), const wxPoint
& WXUNUSED(pt
), long& WXUNUSED(textPosition
)) { return false; }
569 /// Finds the absolute position and row height for the given character position
570 virtual bool FindPosition(wxDC
& WXUNUSED(dc
), long WXUNUSED(index
), wxPoint
& WXUNUSED(pt
), int* WXUNUSED(height
), bool WXUNUSED(forceLineStart
)) { return false; }
572 /// Get the best size, i.e. the ideal starting size for this object irrespective
573 /// of available space. For a short text string, it will be the size that exactly encloses
574 /// the text. For a longer string, it might use the parent width for example.
575 virtual wxSize
GetBestSize() const { return m_size
; }
577 /// Get the object size for the given range. Returns false if the range
578 /// is invalid for this object.
579 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0)) const = 0;
581 /// Do a split, returning an object containing the second part, and setting
582 /// the first part in 'this'.
583 virtual wxRichTextObject
* DoSplit(long WXUNUSED(pos
)) { return NULL
; }
585 /// Calculate range. By default, guess that the object is 1 unit long.
586 virtual void CalculateRange(long start
, long& end
) { end
= start
; m_range
.SetRange(start
, end
); }
589 virtual bool DeleteRange(const wxRichTextRange
& WXUNUSED(range
)) { return false; }
591 /// Returns true if the object is empty
592 virtual bool IsEmpty() const { return false; }
594 /// Get any text in this object for the given range
595 virtual wxString
GetTextForRange(const wxRichTextRange
& WXUNUSED(range
)) const { return wxEmptyString
; }
597 /// Returns true if this object can merge itself with the given one.
598 virtual bool CanMerge(wxRichTextObject
* WXUNUSED(object
)) const { return false; }
600 /// Returns true if this object merged itself with the given one.
601 /// The calling code will then delete the given object.
602 virtual bool Merge(wxRichTextObject
* WXUNUSED(object
)) { return false; }
604 /// Dump to output stream for debugging
605 virtual void Dump(wxTextOutputStream
& stream
);
609 /// Get/set the cached object size as calculated by Layout.
610 virtual wxSize
GetCachedSize() const { return m_size
; }
611 virtual void SetCachedSize(const wxSize
& sz
) { m_size
= sz
; }
613 /// Get/set the object position
614 virtual wxPoint
GetPosition() const { return m_pos
; }
615 virtual void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
617 /// Get the rectangle enclosing the object
618 virtual wxRect
GetRect() const { return wxRect(GetPosition(), GetCachedSize()); }
621 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
624 const wxRichTextRange
& GetRange() const { return m_range
; }
625 wxRichTextRange
& GetRange() { return m_range
; }
627 /// Get/set dirty flag (whether the object needs Layout to be called)
628 virtual bool GetDirty() const { return m_dirty
; }
629 virtual void SetDirty(bool dirty
) { m_dirty
= dirty
; }
631 /// Is this composite?
632 virtual bool IsComposite() const { return false; }
634 /// Get/set the parent.
635 virtual wxRichTextObject
* GetParent() const { return m_parent
; }
636 virtual void SetParent(wxRichTextObject
* parent
) { m_parent
= parent
; }
638 /// Set the margin around the object
639 virtual void SetMargins(int margin
);
640 virtual void SetMargins(int leftMargin
, int rightMargin
, int topMargin
, int bottomMargin
);
641 virtual int GetLeftMargin() const { return m_leftMargin
; }
642 virtual int GetRightMargin() const { return m_rightMargin
; }
643 virtual int GetTopMargin() const { return m_topMargin
; }
644 virtual int GetBottomMargin() const { return m_bottomMargin
; }
646 /// Set attributes object
647 void SetAttributes(const wxTextAttrEx
& attr
) { m_attributes
= attr
; }
648 const wxTextAttrEx
& GetAttributes() const { return m_attributes
; }
649 wxTextAttrEx
& GetAttributes() { return m_attributes
; }
651 /// Set/get stored descent
652 void SetDescent(int descent
) { m_descent
= descent
; }
653 int GetDescent() const { return m_descent
; }
658 virtual wxRichTextObject
* Clone() const { return NULL
; }
661 void Copy(const wxRichTextObject
& obj
);
663 /// Reference-counting allows us to use the same object in multiple
664 /// lists (not yet used)
665 void Reference() { m_refCount
++; }
668 /// Convert units in tends of a millimetre to device units
669 int ConvertTenthsMMToPixels(wxDC
& dc
, int units
);
674 int m_descent
; // Descent for this object (if any)
677 wxRichTextObject
* m_parent
;
679 /// The range of this object (start position to end position)
680 wxRichTextRange m_range
;
689 wxTextAttrEx m_attributes
;
692 WX_DECLARE_LIST_WITH_DECL( wxRichTextObject
, wxRichTextObjectList
, class WXDLLIMPEXP_RICHTEXT
);
695 * wxRichTextCompositeObject class declaration
696 * Objects of this class can contain other objects.
699 class WXDLLIMPEXP_RICHTEXT wxRichTextCompositeObject
: public wxRichTextObject
701 DECLARE_CLASS(wxRichTextCompositeObject
)
705 wxRichTextCompositeObject(wxRichTextObject
* parent
= NULL
);
706 virtual ~wxRichTextCompositeObject();
710 /// Hit-testing: returns a flag indicating hit test details, plus
711 /// information about position
712 virtual int HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
);
714 /// Finds the absolute position and row height for the given character position
715 virtual bool FindPosition(wxDC
& dc
, long index
, wxPoint
& pt
, int* height
, bool forceLineStart
);
718 virtual void CalculateRange(long start
, long& end
);
721 virtual bool DeleteRange(const wxRichTextRange
& range
);
723 /// Get any text in this object for the given range
724 virtual wxString
GetTextForRange(const wxRichTextRange
& range
) const;
726 /// Dump to output stream for debugging
727 virtual void Dump(wxTextOutputStream
& stream
);
732 wxRichTextObjectList
& GetChildren() { return m_children
; }
733 const wxRichTextObjectList
& GetChildren() const { return m_children
; }
735 /// Get the child count
736 size_t GetChildCount() const ;
738 /// Get the nth child
739 wxRichTextObject
* GetChild(size_t n
) const ;
741 /// Get/set dirty flag
742 virtual bool GetDirty() const { return m_dirty
; }
743 virtual void SetDirty(bool dirty
) { m_dirty
= dirty
; }
745 /// Is this composite?
746 virtual bool IsComposite() const { return true; }
748 /// Returns true if the buffer is empty
749 virtual bool IsEmpty() const { return GetChildCount() == 0; }
754 void Copy(const wxRichTextCompositeObject
& obj
);
757 void operator= (const wxRichTextCompositeObject
& obj
) { Copy(obj
); }
759 /// Append a child, returning the position
760 size_t AppendChild(wxRichTextObject
* child
) ;
762 /// Insert the child in front of the given object, or at the beginning
763 bool InsertChild(wxRichTextObject
* child
, wxRichTextObject
* inFrontOf
) ;
766 bool RemoveChild(wxRichTextObject
* child
, bool deleteChild
= false) ;
768 /// Delete all children
769 bool DeleteChildren() ;
771 /// Recursively merge all pieces that can be merged.
775 wxRichTextObjectList m_children
;
779 * wxRichTextBox class declaration
780 * This defines a 2D space to lay out objects
783 class WXDLLIMPEXP_RICHTEXT wxRichTextBox
: public wxRichTextCompositeObject
785 DECLARE_DYNAMIC_CLASS(wxRichTextBox
)
789 wxRichTextBox(wxRichTextObject
* parent
= NULL
);
790 wxRichTextBox(const wxRichTextBox
& obj
): wxRichTextCompositeObject() { Copy(obj
); }
795 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
798 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
800 /// Get/set the object size for the given range. Returns false if the range
801 /// is invalid for this object.
802 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0)) const;
809 virtual wxRichTextObject
* Clone() const { return new wxRichTextBox(*this); }
812 void Copy(const wxRichTextBox
& obj
);
818 * wxRichTextParagraphBox class declaration
819 * This box knows how to lay out paragraphs.
822 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraphLayoutBox
: public wxRichTextBox
824 DECLARE_DYNAMIC_CLASS(wxRichTextParagraphLayoutBox
)
828 wxRichTextParagraphLayoutBox(wxRichTextObject
* parent
= NULL
);
829 wxRichTextParagraphLayoutBox(const wxRichTextParagraphLayoutBox
& obj
): wxRichTextBox() { Init(); Copy(obj
); }
834 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
837 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
839 /// Get/set the object size for the given range. Returns false if the range
840 /// is invalid for this object.
841 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0)) const;
844 virtual bool DeleteRange(const wxRichTextRange
& range
);
846 /// Get any text in this object for the given range
847 virtual wxString
GetTextForRange(const wxRichTextRange
& range
) const;
851 /// Associate a control with the buffer, for operations that for example require refreshing the window.
852 void SetRichTextCtrl(wxRichTextCtrl
* ctrl
) { m_ctrl
= ctrl
; }
854 /// Get the associated control.
855 wxRichTextCtrl
* GetRichTextCtrl() const { return m_ctrl
; }
857 /// Get/set whether the last paragraph is partial or complete
858 void SetPartialParagraph(bool partialPara
) { m_partialParagraph
= partialPara
; }
859 bool GetPartialParagraph() const { return m_partialParagraph
; }
863 /// Initialize the object.
866 /// Clear all children
867 virtual void Clear();
869 /// Clear and initialize with one blank paragraph
870 virtual void Reset();
872 /// Convenience function to add a paragraph of text
873 virtual wxRichTextRange
AddParagraph(const wxString
& text
, wxTextAttrEx
* paraStyle
= NULL
);
875 /// Convenience function to add an image
876 virtual wxRichTextRange
AddImage(const wxImage
& image
, wxTextAttrEx
* paraStyle
= NULL
);
878 /// Adds multiple paragraphs, based on newlines.
879 virtual wxRichTextRange
AddParagraphs(const wxString
& text
, wxTextAttrEx
* paraStyle
= NULL
);
881 /// Get the line at the given position. If caretPosition is true, the position is
882 /// a caret position, which is normally a smaller number.
883 virtual wxRichTextLine
* GetLineAtPosition(long pos
, bool caretPosition
= false) const;
885 /// Get the line at the given y pixel position, or the last line.
886 virtual wxRichTextLine
* GetLineAtYPosition(int y
) const;
888 /// Get the paragraph at the given character or caret position
889 virtual wxRichTextParagraph
* GetParagraphAtPosition(long pos
, bool caretPosition
= false) const;
891 /// Get the line size at the given position
892 virtual wxSize
GetLineSizeAtPosition(long pos
, bool caretPosition
= false) const;
894 /// Given a position, get the number of the visible line (potentially many to a paragraph),
895 /// starting from zero at the start of the buffer. We also have to pass a bool (startOfLine)
896 /// that indicates whether the caret is being shown at the end of the previous line or at the start
897 /// of the next, since the caret can be shown at 2 visible positions for the same underlying
899 virtual long GetVisibleLineNumber(long pos
, bool caretPosition
= false, bool startOfLine
= false) const;
901 /// Given a line number, get the corresponding wxRichTextLine object.
902 virtual wxRichTextLine
* GetLineForVisibleLineNumber(long lineNumber
) const;
904 /// Get the leaf object in a paragraph at this position.
905 /// Given a line number, get the corresponding wxRichTextLine object.
906 virtual wxRichTextObject
* GetLeafObjectAtPosition(long position
) const;
908 /// Get the paragraph by number
909 virtual wxRichTextParagraph
* GetParagraphAtLine(long paragraphNumber
) const;
911 /// Get the paragraph for a given line
912 virtual wxRichTextParagraph
* GetParagraphForLine(wxRichTextLine
* line
) const;
914 /// Get the length of the paragraph
915 virtual int GetParagraphLength(long paragraphNumber
) const;
917 /// Get the number of paragraphs
918 virtual int GetParagraphCount() const { return GetChildCount(); }
920 /// Get the number of visible lines
921 virtual int GetLineCount() const;
923 /// Get the text of the paragraph
924 virtual wxString
GetParagraphText(long paragraphNumber
) const;
926 /// Convert zero-based line column and paragraph number to a position.
927 virtual long XYToPosition(long x
, long y
) const;
929 /// Convert zero-based position to line column and paragraph number
930 virtual bool PositionToXY(long pos
, long* x
, long* y
) const;
932 /// Set text attributes: character and/or paragraph styles.
933 virtual bool SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
934 virtual bool SetStyle(const wxRichTextRange
& range
, const wxTextAttrEx
& style
, int flags
= wxRICHTEXT_SETSTYLE_WITH_UNDO
);
936 /// Get the conbined text attributes for this position.
937 virtual bool GetStyle(long position
, wxTextAttrEx
& style
);
938 virtual bool GetStyle(long position
, wxRichTextAttr
& style
);
940 /// Get the content (uncombined) attributes for this position.
941 virtual bool GetUncombinedStyle(long position
, wxTextAttrEx
& style
);
942 virtual bool GetUncombinedStyle(long position
, wxRichTextAttr
& style
);
944 /// Implementation helper for GetStyle. If combineStyles is true, combine base, paragraph and
945 /// context attributes.
946 virtual bool DoGetStyle(long position
, wxTextAttrEx
& style
, bool combineStyles
= true);
948 /// Get the combined style for a range - if any attribute is different within the range,
949 /// that attribute is not present within the flags
950 virtual bool GetStyleForRange(const wxRichTextRange
& range
, wxTextAttrEx
& style
);
952 /// Combines 'style' with 'currentStyle' for the purpose of summarising the attributes of a range of
954 bool CollectStyle(wxTextAttrEx
& currentStyle
, const wxTextAttrEx
& style
, long& multipleStyleAttributes
);
956 /// Test if this whole range has character attributes of the specified kind. If any
957 /// of the attributes are different within the range, the test fails. You
958 /// can use this to implement, for example, bold button updating. style must have
959 /// flags indicating which attributes are of interest.
960 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const;
961 virtual bool HasCharacterAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const;
963 /// Test if this whole range has paragraph attributes of the specified kind. If any
964 /// of the attributes are different within the range, the test fails. You
965 /// can use this to implement, for example, centering button updating. style must have
966 /// flags indicating which attributes are of interest.
967 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const;
968 virtual bool HasParagraphAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const;
971 virtual wxRichTextObject
* Clone() const { return new wxRichTextParagraphLayoutBox(*this); }
973 /// Insert fragment into this box at the given position. If partialParagraph is true,
974 /// it is assumed that the last (or only) paragraph is just a piece of data with no paragraph
976 virtual bool InsertFragment(long position
, wxRichTextParagraphLayoutBox
& fragment
);
978 /// Make a copy of the fragment corresponding to the given range, putting it in 'fragment'.
979 virtual bool CopyFragment(const wxRichTextRange
& range
, wxRichTextParagraphLayoutBox
& fragment
);
981 /// Apply the style sheet to the buffer, for example if the styles have changed.
982 virtual bool ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
);
985 void Copy(const wxRichTextParagraphLayoutBox
& obj
);
988 void operator= (const wxRichTextParagraphLayoutBox
& obj
) { Copy(obj
); }
991 virtual void UpdateRanges() { long end
; CalculateRange(0, end
); }
994 virtual wxString
GetText() const;
996 /// Set default style for new content. Setting it to a default attribute
997 /// makes new content take on the 'basic' style.
998 virtual bool SetDefaultStyle(const wxTextAttrEx
& style
);
1000 /// Get default style
1001 virtual const wxTextAttrEx
& GetDefaultStyle() const { return m_defaultAttributes
; }
1003 /// Set basic (overall) style
1004 virtual void SetBasicStyle(const wxTextAttrEx
& style
) { m_attributes
= style
; }
1005 virtual void SetBasicStyle(const wxRichTextAttr
& style
) { style
.CopyTo(m_attributes
); }
1007 /// Get basic (overall) style
1008 virtual const wxTextAttrEx
& GetBasicStyle() const { return m_attributes
; }
1010 /// Invalidate the buffer. With no argument, invalidates whole buffer.
1011 void Invalidate(const wxRichTextRange
& invalidRange
= wxRICHTEXT_ALL
);
1013 /// Get invalid range, rounding to entire paragraphs if argument is true.
1014 wxRichTextRange
GetInvalidRange(bool wholeParagraphs
= false) const;
1017 wxRichTextCtrl
* m_ctrl
;
1018 wxTextAttrEx m_defaultAttributes
;
1020 /// The invalidated range that will need full layout
1021 wxRichTextRange m_invalidRange
;
1023 // Is the last paragraph partial or complete?
1024 bool m_partialParagraph
;
1028 * wxRichTextLine class declaration
1029 * This object represents a line in a paragraph, and stores
1030 * offsets from the start of the paragraph representing the
1031 * start and end positions of the line.
1034 class WXDLLIMPEXP_RICHTEXT wxRichTextLine
1039 wxRichTextLine(wxRichTextParagraph
* parent
);
1040 wxRichTextLine(const wxRichTextLine
& obj
) { Init( NULL
); Copy(obj
); }
1041 virtual ~wxRichTextLine() {}
1048 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
1049 void SetRange(long from
, long to
) { m_range
= wxRichTextRange(from
, to
); }
1051 /// Get the parent paragraph
1052 wxRichTextParagraph
* GetParent() { return m_parent
; }
1055 const wxRichTextRange
& GetRange() const { return m_range
; }
1056 wxRichTextRange
& GetRange() { return m_range
; }
1058 /// Get the absolute range
1059 wxRichTextRange
GetAbsoluteRange() const;
1061 /// Get/set the line size as calculated by Layout.
1062 virtual wxSize
GetSize() const { return m_size
; }
1063 virtual void SetSize(const wxSize
& sz
) { m_size
= sz
; }
1065 /// Get/set the object position relative to the parent
1066 virtual wxPoint
GetPosition() const { return m_pos
; }
1067 virtual void SetPosition(const wxPoint
& pos
) { m_pos
= pos
; }
1069 /// Get the absolute object position
1070 virtual wxPoint
GetAbsolutePosition() const;
1072 /// Get the rectangle enclosing the line
1073 virtual wxRect
GetRect() const { return wxRect(GetAbsolutePosition(), GetSize()); }
1075 /// Set/get stored descent
1076 void SetDescent(int descent
) { m_descent
= descent
; }
1077 int GetDescent() const { return m_descent
; }
1082 void Init(wxRichTextParagraph
* parent
);
1085 void Copy(const wxRichTextLine
& obj
);
1088 virtual wxRichTextLine
* Clone() const { return new wxRichTextLine(*this); }
1092 /// The range of the line (start position to end position)
1093 /// This is relative to the parent paragraph.
1094 wxRichTextRange m_range
;
1096 /// Size and position measured relative to top of paragraph
1100 /// Maximum descent for this line (location of text baseline)
1103 // The parent object
1104 wxRichTextParagraph
* m_parent
;
1107 WX_DECLARE_LIST_WITH_DECL( wxRichTextLine
, wxRichTextLineList
, class WXDLLIMPEXP_RICHTEXT
);
1110 * wxRichTextParagraph class declaration
1111 * This object represents a single paragraph (or in a straight text editor, a line).
1114 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraph
: public wxRichTextBox
1116 DECLARE_DYNAMIC_CLASS(wxRichTextParagraph
)
1120 wxRichTextParagraph(wxRichTextObject
* parent
= NULL
, wxTextAttrEx
* style
= NULL
);
1121 wxRichTextParagraph(const wxString
& text
, wxRichTextObject
* parent
= NULL
, wxTextAttrEx
* style
= NULL
);
1122 virtual ~wxRichTextParagraph();
1123 wxRichTextParagraph(const wxRichTextParagraph
& obj
): wxRichTextBox() { Copy(obj
); }
1128 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
1130 /// Lay the item out
1131 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
1133 /// Get/set the object size for the given range. Returns false if the range
1134 /// is invalid for this object.
1135 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0)) const;
1137 /// Finds the absolute position and row height for the given character position
1138 virtual bool FindPosition(wxDC
& dc
, long index
, wxPoint
& pt
, int* height
, bool forceLineStart
);
1140 /// Hit-testing: returns a flag indicating hit test details, plus
1141 /// information about position
1142 virtual int HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
);
1145 virtual void CalculateRange(long start
, long& end
);
1149 /// Get the cached lines
1150 wxRichTextLineList
& GetLines() { return m_cachedLines
; }
1155 void Copy(const wxRichTextParagraph
& obj
);
1158 virtual wxRichTextObject
* Clone() const { return new wxRichTextParagraph(*this); }
1160 /// Clear the cached lines
1165 /// Apply paragraph styles such as centering to the wrapped lines
1166 virtual void ApplyParagraphStyle(const wxTextAttrEx
& attr
, const wxRect
& rect
);
1168 /// Insert text at the given position
1169 virtual bool InsertText(long pos
, const wxString
& text
);
1171 /// Split an object at this position if necessary, and return
1172 /// the previous object, or NULL if inserting at beginning.
1173 virtual wxRichTextObject
* SplitAt(long pos
, wxRichTextObject
** previousObject
= NULL
);
1175 /// Move content to a list from this point
1176 virtual void MoveToList(wxRichTextObject
* obj
, wxList
& list
);
1178 /// Add content back from list
1179 virtual void MoveFromList(wxList
& list
);
1181 /// Get the plain text searching from the start or end of the range.
1182 /// The resulting string may be shorter than the range given.
1183 bool GetContiguousPlainText(wxString
& text
, const wxRichTextRange
& range
, bool fromStart
= true);
1185 /// Find a suitable wrap position. wrapPosition is the last position in the line to the left
1187 bool FindWrapPosition(const wxRichTextRange
& range
, wxDC
& dc
, int availableSpace
, long& wrapPosition
);
1189 /// Find the object at the given position
1190 wxRichTextObject
* FindObjectAtPosition(long position
);
1192 /// Get the bullet text for this paragraph.
1193 wxString
GetBulletText();
1195 /// Allocate or reuse a line object
1196 wxRichTextLine
* AllocateLine(int pos
);
1198 /// Clear remaining unused line objects, if any
1199 bool ClearUnusedLines(int lineCount
);
1201 /// Get combined attributes of the base style, paragraph style and character style. We use this to dynamically
1202 /// retrieve the actual style.
1203 wxTextAttrEx
GetCombinedAttributes(const wxTextAttrEx
& contentStyle
) const;
1205 /// Get combined attributes of the base style and paragraph style.
1206 wxTextAttrEx
GetCombinedAttributes() const;
1208 /// Create default tabstop array
1209 static void InitDefaultTabs();
1211 /// Clear default tabstop array
1212 static void ClearDefaultTabs();
1214 /// Get default tabstop array
1215 static const wxArrayInt
& GetDefaultTabs() { return sm_defaultTabs
; }
1218 /// The lines that make up the wrapped paragraph
1219 wxRichTextLineList m_cachedLines
;
1221 /// Default tabstops
1222 static wxArrayInt sm_defaultTabs
;
1226 * wxRichTextPlainText class declaration
1227 * This object represents a single piece of text.
1230 class WXDLLIMPEXP_RICHTEXT wxRichTextPlainText
: public wxRichTextObject
1232 DECLARE_DYNAMIC_CLASS(wxRichTextPlainText
)
1236 wxRichTextPlainText(const wxString
& text
= wxEmptyString
, wxRichTextObject
* parent
= NULL
, wxTextAttrEx
* style
= NULL
);
1237 wxRichTextPlainText(const wxRichTextPlainText
& obj
): wxRichTextObject() { Copy(obj
); }
1242 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
1244 /// Lay the item out
1245 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
1247 /// Get/set the object size for the given range. Returns false if the range
1248 /// is invalid for this object.
1249 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
/* = wxPoint(0,0)*/) const;
1251 /// Get any text in this object for the given range
1252 virtual wxString
GetTextForRange(const wxRichTextRange
& range
) const;
1254 /// Do a split, returning an object containing the second part, and setting
1255 /// the first part in 'this'.
1256 virtual wxRichTextObject
* DoSplit(long pos
);
1259 virtual void CalculateRange(long start
, long& end
);
1262 virtual bool DeleteRange(const wxRichTextRange
& range
);
1264 /// Returns true if the object is empty
1265 virtual bool IsEmpty() const { return m_text
.empty(); }
1267 /// Returns true if this object can merge itself with the given one.
1268 virtual bool CanMerge(wxRichTextObject
* object
) const;
1270 /// Returns true if this object merged itself with the given one.
1271 /// The calling code will then delete the given object.
1272 virtual bool Merge(wxRichTextObject
* object
);
1274 /// Dump to output stream for debugging
1275 virtual void Dump(wxTextOutputStream
& stream
);
1280 const wxString
& GetText() const { return m_text
; }
1283 void SetText(const wxString
& text
) { m_text
= text
; }
1288 void Copy(const wxRichTextPlainText
& obj
);
1291 virtual wxRichTextObject
* Clone() const { return new wxRichTextPlainText(*this); }
1293 bool DrawTabbedString(wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
, wxString
& str
, wxCoord
& x
, wxCoord
& y
, bool selected
);
1300 * wxRichTextImageBlock stores information about an image, in binary in-memory form
1303 class WXDLLIMPEXP_BASE wxDataInputStream
;
1304 class WXDLLIMPEXP_BASE wxDataOutputStream
;
1306 class WXDLLIMPEXP_RICHTEXT wxRichTextImageBlock
: public wxObject
1309 wxRichTextImageBlock();
1310 wxRichTextImageBlock(const wxRichTextImageBlock
& block
);
1311 virtual ~wxRichTextImageBlock();
1316 // Load the original image into a memory block.
1317 // If the image is not a JPEG, we must convert it into a JPEG
1318 // to conserve space.
1319 // If it's not a JPEG we can make use of 'image', already scaled, so we don't have to
1320 // load the image a 2nd time.
1321 virtual bool MakeImageBlock(const wxString
& filename
, int imageType
, wxImage
& image
, bool convertToJPEG
= true);
1323 // Make an image block from the wxImage in the given
1325 virtual bool MakeImageBlock(wxImage
& image
, int imageType
, int quality
= 80);
1328 bool Write(const wxString
& filename
);
1330 // Write data in hex to a stream
1331 bool WriteHex(wxOutputStream
& stream
);
1333 // Read data in hex from a stream
1334 bool ReadHex(wxInputStream
& stream
, int length
, int imageType
);
1336 // Copy from 'block'
1337 void Copy(const wxRichTextImageBlock
& block
);
1339 // Load a wxImage from the block
1340 bool Load(wxImage
& image
);
1343 void operator=(const wxRichTextImageBlock
& block
);
1347 unsigned char* GetData() const { return m_data
; }
1348 size_t GetDataSize() const { return m_dataSize
; }
1349 int GetImageType() const { return m_imageType
; }
1351 void SetData(unsigned char* image
) { m_data
= image
; }
1352 void SetDataSize(size_t size
) { m_dataSize
= size
; }
1353 void SetImageType(int imageType
) { m_imageType
= imageType
; }
1355 bool Ok() const { return IsOk(); }
1356 bool IsOk() const { return GetData() != NULL
; }
1360 /// Allocate and read from stream as a block of memory
1361 static unsigned char* ReadBlock(wxInputStream
& stream
, size_t size
);
1362 static unsigned char* ReadBlock(const wxString
& filename
, size_t size
);
1364 // Write memory block to stream
1365 static bool WriteBlock(wxOutputStream
& stream
, unsigned char* block
, size_t size
);
1367 // Write memory block to file
1368 static bool WriteBlock(const wxString
& filename
, unsigned char* block
, size_t size
);
1371 // Size in bytes of the image stored.
1372 // This is in the raw, original form such as a JPEG file.
1373 unsigned char* m_data
;
1375 int m_imageType
; // wxWin type id
1380 * wxRichTextImage class declaration
1381 * This object represents an image.
1384 class WXDLLIMPEXP_RICHTEXT wxRichTextImage
: public wxRichTextObject
1386 DECLARE_DYNAMIC_CLASS(wxRichTextImage
)
1390 wxRichTextImage(wxRichTextObject
* parent
= NULL
): wxRichTextObject(parent
) { }
1391 wxRichTextImage(const wxImage
& image
, wxRichTextObject
* parent
= NULL
);
1392 wxRichTextImage(const wxRichTextImageBlock
& imageBlock
, wxRichTextObject
* parent
= NULL
);
1393 wxRichTextImage(const wxRichTextImage
& obj
): wxRichTextObject() { Copy(obj
); }
1398 virtual bool Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
);
1400 /// Lay the item out
1401 virtual bool Layout(wxDC
& dc
, const wxRect
& rect
, int style
);
1403 /// Get the object size for the given range. Returns false if the range
1404 /// is invalid for this object.
1405 virtual bool GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
= wxPoint(0,0)) const;
1407 /// Returns true if the object is empty
1408 virtual bool IsEmpty() const { return !m_image
.Ok(); }
1413 const wxImage
& GetImage() const { return m_image
; }
1416 void SetImage(const wxImage
& image
) { m_image
= image
; }
1418 /// Get the image block containing the raw data
1419 wxRichTextImageBlock
& GetImageBlock() { return m_imageBlock
; }
1424 void Copy(const wxRichTextImage
& obj
);
1427 virtual wxRichTextObject
* Clone() const { return new wxRichTextImage(*this); }
1429 /// Load wxImage from the block
1430 virtual bool LoadFromBlock();
1432 /// Make block from the wxImage
1433 virtual bool MakeBlock();
1436 // TODO: reduce the multiple representations of data
1439 wxRichTextImageBlock m_imageBlock
;
1444 * wxRichTextBuffer class declaration
1445 * This is a kind of box, used to represent the whole buffer
1448 class WXDLLIMPEXP_RICHTEXT wxRichTextCommand
;
1449 class WXDLLIMPEXP_RICHTEXT wxRichTextAction
;
1451 class WXDLLIMPEXP_RICHTEXT wxRichTextBuffer
: public wxRichTextParagraphLayoutBox
1453 DECLARE_DYNAMIC_CLASS(wxRichTextBuffer
)
1457 wxRichTextBuffer() { Init(); }
1458 wxRichTextBuffer(const wxRichTextBuffer
& obj
): wxRichTextParagraphLayoutBox() { Init(); Copy(obj
); }
1459 virtual ~wxRichTextBuffer() ;
1463 /// Gets the command processor
1464 wxCommandProcessor
* GetCommandProcessor() const { return m_commandProcessor
; }
1466 /// Set style sheet, if any.
1467 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
) { m_styleSheet
= styleSheet
; }
1468 wxRichTextStyleSheet
* GetStyleSheet() const { return m_styleSheet
; }
1475 /// Clears the buffer and resets the command processor
1476 virtual void Clear();
1478 /// The same as Clear, and adds an empty paragraph.
1479 virtual void Reset();
1482 virtual bool LoadFile(const wxString
& filename
, int type
= wxRICHTEXT_TYPE_ANY
);
1485 virtual bool SaveFile(const wxString
& filename
, int type
= wxRICHTEXT_TYPE_ANY
);
1487 /// Load from a stream
1488 virtual bool LoadFile(wxInputStream
& stream
, int type
= wxRICHTEXT_TYPE_ANY
);
1490 /// Save to a stream
1491 virtual bool SaveFile(wxOutputStream
& stream
, int type
= wxRICHTEXT_TYPE_ANY
);
1493 /// Convenience function to add a paragraph of text
1494 virtual wxRichTextRange
AddParagraph(const wxString
& text
, wxTextAttrEx
* paraStyle
= NULL
) { Modify(); return wxRichTextParagraphLayoutBox::AddParagraph(text
, paraStyle
); }
1496 /// Begin collapsing undo/redo commands. Note that this may not work properly
1497 /// if combining commands that delete or insert content, changing ranges for
1498 /// subsequent actions.
1499 virtual bool BeginBatchUndo(const wxString
& cmdName
);
1501 /// End collapsing undo/redo commands
1502 virtual bool EndBatchUndo();
1504 /// Collapsing commands?
1505 virtual bool BatchingUndo() const { return m_batchedCommandDepth
> 0; }
1507 /// Submit immediately, or delay according to whether collapsing is on
1508 virtual bool SubmitAction(wxRichTextAction
* action
);
1510 /// Get collapsed command
1511 virtual wxRichTextCommand
* GetBatchedCommand() const { return m_batchedCommand
; }
1513 /// Begin suppressing undo/redo commands. The way undo is suppressed may be implemented
1514 /// differently by each command. If not dealt with by a command implementation, then
1515 /// it will be implemented automatically by not storing the command in the undo history
1516 /// when the action is submitted to the command processor.
1517 virtual bool BeginSuppressUndo();
1519 /// End suppressing undo/redo commands.
1520 virtual bool EndSuppressUndo();
1522 /// Collapsing commands?
1523 virtual bool SuppressingUndo() const { return m_suppressUndo
> 0; }
1525 /// Copy the range to the clipboard
1526 virtual bool CopyToClipboard(const wxRichTextRange
& range
);
1528 /// Paste the clipboard content to the buffer
1529 virtual bool PasteFromClipboard(long position
);
1531 /// Can we paste from the clipboard?
1532 virtual bool CanPasteFromClipboard() const;
1534 /// Begin using a style
1535 virtual bool BeginStyle(const wxTextAttrEx
& style
);
1538 virtual bool EndStyle();
1541 virtual bool EndAllStyles();
1543 /// Clear the style stack
1544 virtual void ClearStyleStack();
1546 /// Get the size of the style stack, for example to check correct nesting
1547 virtual size_t GetStyleStackSize() const { return m_attributeStack
.GetCount(); }
1549 /// Begin using bold
1553 bool EndBold() { return EndStyle(); }
1555 /// Begin using italic
1558 /// End using italic
1559 bool EndItalic() { return EndStyle(); }
1561 /// Begin using underline
1562 bool BeginUnderline();
1564 /// End using underline
1565 bool EndUnderline() { return EndStyle(); }
1567 /// Begin using point size
1568 bool BeginFontSize(int pointSize
);
1570 /// End using point size
1571 bool EndFontSize() { return EndStyle(); }
1573 /// Begin using this font
1574 bool BeginFont(const wxFont
& font
);
1576 /// End using a font
1577 bool EndFont() { return EndStyle(); }
1579 /// Begin using this colour
1580 bool BeginTextColour(const wxColour
& colour
);
1582 /// End using a colour
1583 bool EndTextColour() { return EndStyle(); }
1585 /// Begin using alignment
1586 bool BeginAlignment(wxTextAttrAlignment alignment
);
1589 bool EndAlignment() { return EndStyle(); }
1591 /// Begin left indent
1592 bool BeginLeftIndent(int leftIndent
, int leftSubIndent
= 0);
1595 bool EndLeftIndent() { return EndStyle(); }
1597 /// Begin right indent
1598 bool BeginRightIndent(int rightIndent
);
1600 /// End right indent
1601 bool EndRightIndent() { return EndStyle(); }
1603 /// Begin paragraph spacing
1604 bool BeginParagraphSpacing(int before
, int after
);
1606 /// End paragraph spacing
1607 bool EndParagraphSpacing() { return EndStyle(); }
1609 /// Begin line spacing
1610 bool BeginLineSpacing(int lineSpacing
);
1612 /// End line spacing
1613 bool EndLineSpacing() { return EndStyle(); }
1615 /// Begin numbered bullet
1616 bool BeginNumberedBullet(int bulletNumber
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
);
1618 /// End numbered bullet
1619 bool EndNumberedBullet() { return EndStyle(); }
1621 /// Begin symbol bullet
1622 bool BeginSymbolBullet(wxChar symbol
, int leftIndent
, int leftSubIndent
, int bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_SYMBOL
);
1624 /// End symbol bullet
1625 bool EndSymbolBullet() { return EndStyle(); }
1627 /// Begin named character style
1628 bool BeginCharacterStyle(const wxString
& characterStyle
);
1630 /// End named character style
1631 bool EndCharacterStyle() { return EndStyle(); }
1633 /// Begin named paragraph style
1634 bool BeginParagraphStyle(const wxString
& paragraphStyle
);
1636 /// End named character style
1637 bool EndParagraphStyle() { return EndStyle(); }
1642 void Copy(const wxRichTextBuffer
& obj
);
1645 virtual wxRichTextObject
* Clone() const { return new wxRichTextBuffer(*this); }
1647 /// Submit command to insert paragraphs
1648 bool InsertParagraphsWithUndo(long pos
, const wxRichTextParagraphLayoutBox
& paragraphs
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1650 /// Submit command to insert the given text
1651 bool InsertTextWithUndo(long pos
, const wxString
& text
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1653 /// Submit command to insert a newline
1654 bool InsertNewlineWithUndo(long pos
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1656 /// Submit command to insert the given image
1657 bool InsertImageWithUndo(long pos
, const wxRichTextImageBlock
& imageBlock
, wxRichTextCtrl
* ctrl
, int flags
= 0);
1659 /// Submit command to delete this range
1660 bool DeleteRangeWithUndo(const wxRichTextRange
& range
, long initialCaretPosition
, long newCaretPositon
, wxRichTextCtrl
* ctrl
);
1663 void Modify(bool modify
= true) { m_modified
= modify
; }
1664 bool IsModified() const { return m_modified
; }
1666 /// Get the style that is appropriate for a new paragraph at this position.
1667 /// If the previous paragraph has a paragraph style name, look up the next-paragraph
1669 wxRichTextAttr
GetStyleForNewParagraph(long pos
, bool caretPosition
= false) const;
1671 /// Dumps contents of buffer for debugging purposes
1672 virtual void Dump();
1673 virtual void Dump(wxTextOutputStream
& stream
) { wxRichTextParagraphLayoutBox::Dump(stream
); }
1675 /// Returns the file handlers
1676 static wxList
& GetHandlers() { return sm_handlers
; }
1678 /// Adds a handler to the end
1679 static void AddHandler(wxRichTextFileHandler
*handler
);
1681 /// Inserts a handler at the front
1682 static void InsertHandler(wxRichTextFileHandler
*handler
);
1684 /// Removes a handler
1685 static bool RemoveHandler(const wxString
& name
);
1687 /// Finds a handler by name
1688 static wxRichTextFileHandler
*FindHandler(const wxString
& name
);
1690 /// Finds a handler by extension and type
1691 static wxRichTextFileHandler
*FindHandler(const wxString
& extension
, int imageType
);
1693 /// Finds a handler by filename or, if supplied, type
1694 static wxRichTextFileHandler
*FindHandlerFilenameOrType(const wxString
& filename
, int imageType
);
1696 /// Finds a handler by type
1697 static wxRichTextFileHandler
*FindHandler(int imageType
);
1699 /// Gets a wildcard incorporating all visible handlers. If 'types' is present,
1700 /// will be filled with the file type corresponding to each filter. This can be
1701 /// used to determine the type to pass to LoadFile given a selected filter.
1702 static wxString
GetExtWildcard(bool combine
= false, bool save
= false, wxArrayInt
* types
= NULL
);
1704 /// Clean up handlers
1705 static void CleanUpHandlers();
1707 /// Initialise the standard handlers
1708 static void InitStandardHandlers();
1712 /// Command processor
1713 wxCommandProcessor
* m_commandProcessor
;
1715 /// Has been modified?
1718 /// Collapsed command stack
1719 int m_batchedCommandDepth
;
1721 /// Name for collapsed command
1722 wxString m_batchedCommandsName
;
1724 /// Current collapsed command accumulating actions
1725 wxRichTextCommand
* m_batchedCommand
;
1727 /// Whether to suppress undo
1730 /// Style sheet, if any
1731 wxRichTextStyleSheet
* m_styleSheet
;
1733 /// Stack of attributes for convenience functions
1734 wxList m_attributeStack
;
1737 static wxList sm_handlers
;
1741 * The command identifiers
1745 enum wxRichTextCommandId
1749 wxRICHTEXT_CHANGE_STYLE
1753 * Command classes for undo/redo
1757 class WXDLLIMPEXP_RICHTEXT wxRichTextAction
;
1758 class WXDLLIMPEXP_RICHTEXT wxRichTextCommand
: public wxCommand
1761 // Ctor for one action
1762 wxRichTextCommand(const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
1763 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
= false);
1765 // Ctor for multiple actions
1766 wxRichTextCommand(const wxString
& name
);
1768 virtual ~wxRichTextCommand();
1773 void AddAction(wxRichTextAction
* action
);
1774 void ClearActions();
1776 wxList
& GetActions() { return m_actions
; }
1784 * wxRichTextAction class declaration
1785 * There can be more than one action in a command.
1788 class WXDLLIMPEXP_RICHTEXT wxRichTextAction
: public wxObject
1791 wxRichTextAction(wxRichTextCommand
* cmd
, const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
1792 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
= false);
1794 virtual ~wxRichTextAction();
1799 /// Update the control appearance
1800 void UpdateAppearance(long caretPosition
, bool sendUpdateEvent
= false);
1802 /// Replace the buffer paragraphs with the given fragment.
1803 void ApplyParagraphs(const wxRichTextParagraphLayoutBox
& fragment
);
1805 /// Get the fragments
1806 wxRichTextParagraphLayoutBox
& GetNewParagraphs() { return m_newParagraphs
; }
1807 wxRichTextParagraphLayoutBox
& GetOldParagraphs() { return m_oldParagraphs
; }
1809 /// Set/get the position used for e.g. insertion
1810 void SetPosition(long pos
) { m_position
= pos
; }
1811 long GetPosition() const { return m_position
; }
1813 /// Set/get the range for e.g. deletion
1814 void SetRange(const wxRichTextRange
& range
) { m_range
= range
; }
1815 const wxRichTextRange
& GetRange() const { return m_range
; }
1818 const wxString
& GetName() const { return m_name
; }
1825 wxRichTextBuffer
* m_buffer
;
1828 wxRichTextCtrl
* m_ctrl
;
1830 // Stores the new paragraphs
1831 wxRichTextParagraphLayoutBox m_newParagraphs
;
1833 // Stores the old paragraphs
1834 wxRichTextParagraphLayoutBox m_oldParagraphs
;
1836 // The affected range
1837 wxRichTextRange m_range
;
1839 // The insertion point for this command
1842 // Ignore 1st 'Do' operation because we already did it
1845 // The command identifier
1846 wxRichTextCommandId m_cmdId
;
1850 * wxRichTextFileHandler
1851 * Base class for file handlers
1854 class WXDLLIMPEXP_RICHTEXT wxRichTextFileHandler
: public wxObject
1856 DECLARE_CLASS(wxRichTextFileHandler
)
1858 wxRichTextFileHandler(const wxString
& name
= wxEmptyString
, const wxString
& ext
= wxEmptyString
, int type
= 0)
1859 : m_name(name
), m_extension(ext
), m_type(type
), m_visible(true)
1863 bool LoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
)
1864 { return DoLoadFile(buffer
, stream
); }
1865 bool SaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
)
1866 { return DoSaveFile(buffer
, stream
); }
1869 bool LoadFile(wxRichTextBuffer
*buffer
, const wxString
& filename
);
1870 bool SaveFile(wxRichTextBuffer
*buffer
, const wxString
& filename
);
1872 /// Can we handle this filename (if using files)? By default, checks the extension.
1873 virtual bool CanHandle(const wxString
& filename
) const;
1875 /// Can we save using this handler?
1876 virtual bool CanSave() const { return false; }
1878 /// Can we load using this handler?
1879 virtual bool CanLoad() const { return false; }
1881 /// Should this handler be visible to the user?
1882 virtual bool IsVisible() const { return m_visible
; }
1883 virtual void SetVisible(bool visible
) { m_visible
= visible
; }
1885 /// The name of the nandler
1886 void SetName(const wxString
& name
) { m_name
= name
; }
1887 wxString
GetName() const { return m_name
; }
1889 /// The default extension to recognise
1890 void SetExtension(const wxString
& ext
) { m_extension
= ext
; }
1891 wxString
GetExtension() const { return m_extension
; }
1893 /// The handler type
1894 void SetType(int type
) { m_type
= type
; }
1895 int GetType() const { return m_type
; }
1897 /// Encoding to use when saving a file. If empty, a suitable encoding is chosen
1898 void SetEncoding(const wxString
& encoding
) { m_encoding
= encoding
; }
1899 const wxString
& GetEncoding() const { return m_encoding
; }
1904 virtual bool DoLoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
) = 0;
1905 virtual bool DoSaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
) = 0;
1909 wxString m_encoding
;
1910 wxString m_extension
;
1916 * wxRichTextPlainTextHandler
1917 * Plain text handler
1920 class WXDLLIMPEXP_RICHTEXT wxRichTextPlainTextHandler
: public wxRichTextFileHandler
1922 DECLARE_CLASS(wxRichTextPlainTextHandler
)
1924 wxRichTextPlainTextHandler(const wxString
& name
= wxT("Text"), const wxString
& ext
= wxT("txt"), int type
= wxRICHTEXT_TYPE_TEXT
)
1925 : wxRichTextFileHandler(name
, ext
, type
)
1928 /// Can we save using this handler?
1929 virtual bool CanSave() const { return true; }
1931 /// Can we load using this handler?
1932 virtual bool CanLoad() const { return true; }
1937 virtual bool DoLoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
);
1938 virtual bool DoSaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
);
1946 * The data object for a wxRichTextBuffer
1949 class wxRichTextBufferDataObject
: public wxDataObjectSimple
1952 // ctor doesn't copy the pointer, so it shouldn't go away while this object
1954 wxRichTextBufferDataObject(wxRichTextBuffer
* richTextBuffer
= (wxRichTextBuffer
*) NULL
);
1955 virtual ~wxRichTextBufferDataObject();
1957 // after a call to this function, the buffer is owned by the caller and it
1958 // is responsible for deleting it
1959 wxRichTextBuffer
* GetRichTextBuffer();
1961 // Returns the id for the new data format
1962 static const wxChar
* GetRichTextBufferFormatId() { return ms_richTextBufferFormatId
; }
1964 // base class pure virtuals
1966 virtual wxDataFormat
GetPreferredFormat(Direction dir
) const;
1967 virtual size_t GetDataSize() const;
1968 virtual bool GetDataHere(void *pBuf
) const;
1969 virtual bool SetData(size_t len
, const void *buf
);
1973 virtual size_t GetDataSize(const wxDataFormat
&) const { return GetDataSize(); }
1974 virtual bool GetDataHere(const wxDataFormat
&, void *buf
) const { return GetDataHere(buf
); }
1975 virtual bool SetData(const wxDataFormat
&, size_t len
, const void *buf
) { return SetData(len
, buf
); }
1978 wxDataFormat m_formatRichTextBuffer
; // our custom format
1979 wxRichTextBuffer
* m_richTextBuffer
; // our data
1980 static const wxChar
* ms_richTextBufferFormatId
; // our format id
1990 inline bool wxRichTextHasStyle(int flags
, int style
)
1992 return ((flags
& style
) == style
);
1995 /// Compare two attribute objects
1996 bool wxTextAttrEq(const wxTextAttrEx
& attr1
, const wxTextAttrEx
& attr2
);
1997 bool wxTextAttrEq(const wxTextAttr
& attr1
, const wxRichTextAttr
& attr2
);
1999 /// Compare two attribute objects, but take into account the flags
2000 /// specifying attributes of interest.
2001 bool wxTextAttrEqPartial(const wxTextAttrEx
& attr1
, const wxTextAttrEx
& attr2
, int flags
);
2002 bool wxTextAttrEqPartial(const wxTextAttrEx
& attr1
, const wxRichTextAttr
& attr2
, int flags
);
2004 /// Apply one style to another
2005 bool wxRichTextApplyStyle(wxTextAttrEx
& destStyle
, const wxTextAttrEx
& style
);
2006 bool wxRichTextApplyStyle(wxRichTextAttr
& destStyle
, const wxTextAttrEx
& style
);
2007 bool wxRichTextApplyStyle(wxTextAttrEx
& destStyle
, const wxRichTextAttr
& style
, wxRichTextAttr
* compareWith
= NULL
);
2010 bool wxRichTextTabsEq(const wxArrayInt
& tabs1
, const wxArrayInt
& tabs2
);
2012 /// Set the font without changing the font attributes
2013 void wxSetFontPreservingStyles(wxTextAttr
& attr
, const wxFont
& font
);
2015 /// Convert a decimal to Roman numerals
2016 wxString
wxRichTextDecimalToRoman(long n
);
2022 // _WX_RICHTEXTBUFFER_H_