Add wxRichTextModuleInit
[wxWidgets.git] / include / wx / richtext / richtextbuffer.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/richtext/richtextbuffer.h
3 // Purpose: Buffer for wxRichTextCtrl
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 2005-09-30
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_RICHTEXTBUFFER_H_
13 #define _WX_RICHTEXTBUFFER_H_
14
15 /*
16
17 Data structures
18 ===============
19
20 Data is represented by a hierarchy of objects, all derived from
21 wxRichTextObject.
22
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.
28
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.
36
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.
41
42 Layout
43 ======
44
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.
51
52 */
53
54 /*!
55 * Includes
56 */
57
58 #include "wx/defs.h"
59
60 #if wxUSE_RICHTEXT
61
62 #include "wx/list.h"
63 #include "wx/textctrl.h"
64 #include "wx/bitmap.h"
65 #include "wx/image.h"
66 #include "wx/cmdproc.h"
67 #include "wx/txtstrm.h"
68
69 #if wxUSE_DATAOBJ
70 #include "wx/dataobj.h"
71 #endif
72
73 // Experimental dynamic styles to avoid user-specific character styles from being
74 // overwritten by paragraph styles.
75 #define wxRICHTEXT_USE_DYNAMIC_STYLES 1
76
77 /*!
78 * File types
79 */
80
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
87
88 /*!
89 * Forward declarations
90 */
91
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;
101
102 /*!
103 * Flags determining the available space, passed to Layout
104 */
105
106 #define wxRICHTEXT_FIXED_WIDTH 0x01
107 #define wxRICHTEXT_FIXED_HEIGHT 0x02
108 #define wxRICHTEXT_VARIABLE_WIDTH 0x04
109 #define wxRICHTEXT_VARIABLE_HEIGHT 0x08
110
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
114
115 /*!
116 * Flags returned from hit-testing
117 */
118
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
127
128 /*!
129 * Flags for GetRangeSize
130 */
131
132 #define wxRICHTEXT_FORMATTED 0x01
133 #define wxRICHTEXT_UNFORMATTED 0x02
134
135 /*!
136 * Flags for SetStyle
137 */
138
139 #define wxRICHTEXT_SETSTYLE_NONE 0x00
140
141 // Specifies that this operation should be undoable
142 #define wxRICHTEXT_SETSTYLE_WITH_UNDO 0x01
143
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
147
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
152
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
157
158 /*!
159 * Flags for text insertion
160 */
161
162 #define wxRICHTEXT_INSERT_NONE 0x00
163 #define wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE 0x01
164
165 /*!
166 * Extra formatting flags not in wxTextAttr
167 */
168
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
177
178 /*!
179 * Styles for wxTextAttrEx::SetBulletStyle
180 */
181
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
192
193 /*!
194 * Line spacing values
195 */
196
197 #define wxTEXT_ATTR_LINE_SPACING_NORMAL 10
198 #define wxTEXT_ATTR_LINE_SPACING_HALF 15
199 #define wxTEXT_ATTR_LINE_SPACING_TWICE 20
200
201 /*!
202 * wxRichTextRange class declaration
203 * This stores beginning and end positions for a range of data.
204 */
205
206 class WXDLLIMPEXP_RICHTEXT wxRichTextRange
207 {
208 public:
209 // Constructors
210
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() {}
215
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); }
221
222 void SetRange(long start, long end) { m_start = start; m_end = end; }
223
224 void SetStart(long start) { m_start = start; }
225 long GetStart() const { return m_start; }
226
227 void SetEnd(long end) { m_end = end; }
228 long GetEnd() const { return m_end; }
229
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; }
232
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; }
235
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 ; }
241
242 /// Limit this range to be within 'range'
243 bool LimitTo(const wxRichTextRange& range) ;
244
245 /// Gets the length of the range
246 long GetLength() const { return m_end - m_start + 1; }
247
248 /// Swaps the start and end
249 void Swap() { long tmp = m_start; m_start = m_end; m_end = tmp; }
250
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); }
253
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); }
256
257 protected:
258 long m_start;
259 long m_end;
260 };
261
262 #define wxRICHTEXT_ALL wxRichTextRange(-2, -2)
263 #define wxRICHTEXT_NONE wxRichTextRange(-1, -1)
264
265 /*!
266 * wxTextAttrEx is an extended version of wxTextAttr with more paragraph attributes.
267 */
268
269 class WXDLLIMPEXP_RICHTEXT wxTextAttrEx: public wxTextAttr
270 {
271 public:
272 // ctors
273 wxTextAttrEx(const wxTextAttrEx& attr);
274 wxTextAttrEx(const wxTextAttr& attr) { Init(); (*this) = attr; }
275 wxTextAttrEx() { Init(); }
276
277 // Initialise this object.
278 void Init();
279
280 // Assignment from a wxTextAttrEx object
281 void operator= (const wxTextAttrEx& attr);
282
283 // Assignment from a wxTextAttr object.
284 void operator= (const wxTextAttr& attr);
285
286 // setters
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; }
296
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; }
306
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; }
312
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); }
321
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))); }
327
328 // returns false if we have any attributes set, true otherwise
329 bool IsDefault() const
330 {
331 return !HasTextColour() && !HasBackgroundColour() && !HasFont() && !HasAlignment() &&
332 !HasTabs() && !HasLeftIndent() && !HasRightIndent() &&
333 !HasParagraphSpacingAfter() && !HasParagraphSpacingBefore() && !HasLineSpacing() &&
334 !HasCharacterStyleName() && !HasParagraphStyleName() && !HasBulletNumber() && !HasBulletStyle() && !HasBulletSymbol();
335 }
336
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);
343
344 private:
345 // Paragraph styles
346 int m_paragraphSpacingAfter;
347 int m_paragraphSpacingBefore;
348 int m_lineSpacing;
349 int m_bulletStyle;
350 int m_bulletNumber;
351 wxChar m_bulletSymbol;
352 wxString m_bulletFont;
353
354 // Character style
355 wxString m_characterStyleName;
356
357 // Paragraph style
358 wxString m_paragraphStyleName;
359 };
360
361 /*!
362 * wxRichTextAttr stores attributes without a wxFont object, so is a much more
363 * efficient way to query styles.
364 */
365
366 class WXDLLIMPEXP_RICHTEXT wxRichTextAttr
367 {
368 public:
369 // ctors
370 wxRichTextAttr(const wxTextAttrEx& attr);
371 wxRichTextAttr() { Init(); }
372 wxRichTextAttr(const wxColour& colText,
373 const wxColour& colBack = wxNullColour,
374 wxTextAttrAlignment alignment = wxTEXT_ALIGNMENT_DEFAULT);
375
376 // Initialise this object.
377 void Init();
378
379 // Assignment from a wxRichTextAttr object.
380 void operator= (const wxRichTextAttr& attr);
381
382 // Assignment from a wxTextAttrEx object.
383 void operator= (const wxTextAttrEx& attr);
384
385 // Equality test
386 bool operator== (const wxRichTextAttr& attr) const;
387
388 // Making a wxTextAttrEx object.
389 operator wxTextAttrEx () const ;
390
391 // Copy to a wxTextAttr
392 void CopyTo(wxTextAttrEx& attr) const;
393
394 // Create font from font attributes.
395 wxFont CreateFont() const;
396
397 // Get attributes from font.
398 bool GetFontAttributes(const wxFont& font);
399
400 // setters
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; }
407
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; }
413
414 void SetFlags(long flags) { m_flags = flags; }
415
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; }
425
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; }
434
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; }
440
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; }
450
451 // accessors
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; }
464
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; }
473
474 bool HasFlag(long flag) const { return (m_flags & flag) != 0; }
475
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))); }
481
482 // returns false if we have any attributes set, true otherwise
483 bool IsDefault() const
484 {
485 return !HasTextColour() && !HasBackgroundColour() && !HasFont() && !HasAlignment() &&
486 !HasTabs() && !HasLeftIndent() && !HasRightIndent() &&
487 !HasParagraphSpacingAfter() && !HasParagraphSpacingBefore() && !HasLineSpacing() &&
488 !HasCharacterStyleName() && !HasParagraphStyleName() && !HasBulletNumber() && !HasBulletStyle() && !HasBulletSymbol();
489 }
490
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);
497 private:
498 long m_flags;
499
500 // Paragraph styles
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;
508
509 int m_paragraphSpacingAfter;
510 int m_paragraphSpacingBefore;
511 int m_lineSpacing;
512 int m_bulletStyle;
513 int m_bulletNumber;
514 wxChar m_bulletSymbol;
515 wxString m_bulletFont;
516
517 // Character styles
518 wxColour m_colText,
519 m_colBack;
520 int m_fontSize;
521 int m_fontStyle;
522 int m_fontWeight;
523 bool m_fontUnderlined;
524 wxString m_fontFaceName;
525
526 // Character style
527 wxString m_characterStyleName;
528
529 // Paragraph style
530 wxString m_paragraphStyleName;
531 };
532
533 #define wxTEXT_ATTR_CHARACTER (wxTEXT_ATTR_FONT | wxTEXT_ATTR_BACKGROUND_COLOUR | wxTEXT_ATTR_TEXT_COLOUR | wxTEXT_ATTR_CHARACTER_STYLE_NAME)
534
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)
538
539 #define wxTEXT_ATTR_ALL (wxTEXT_ATTR_CHARACTER|wxTEXT_ATTR_PARAGRAPH)
540
541 /*!
542 * wxRichTextObject class declaration
543 * This is the base for drawable objects.
544 */
545
546 class WXDLLIMPEXP_RICHTEXT wxRichTextObject: public wxObject
547 {
548 DECLARE_CLASS(wxRichTextObject)
549 public:
550 // Constructors
551
552 wxRichTextObject(wxRichTextObject* parent = NULL);
553 virtual ~wxRichTextObject();
554
555 // Overrideables
556
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;
560
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;
564
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; }
568
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; }
571
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; }
576
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;
580
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; }
584
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); }
587
588 /// Delete range
589 virtual bool DeleteRange(const wxRichTextRange& WXUNUSED(range)) { return false; }
590
591 /// Returns true if the object is empty
592 virtual bool IsEmpty() const { return false; }
593
594 /// Get any text in this object for the given range
595 virtual wxString GetTextForRange(const wxRichTextRange& WXUNUSED(range)) const { return wxEmptyString; }
596
597 /// Returns true if this object can merge itself with the given one.
598 virtual bool CanMerge(wxRichTextObject* WXUNUSED(object)) const { return false; }
599
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; }
603
604 /// Dump to output stream for debugging
605 virtual void Dump(wxTextOutputStream& stream);
606
607 // Accessors
608
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; }
612
613 /// Get/set the object position
614 virtual wxPoint GetPosition() const { return m_pos; }
615 virtual void SetPosition(const wxPoint& pos) { m_pos = pos; }
616
617 /// Get the rectangle enclosing the object
618 virtual wxRect GetRect() const { return wxRect(GetPosition(), GetCachedSize()); }
619
620 /// Set the range
621 void SetRange(const wxRichTextRange& range) { m_range = range; }
622
623 /// Get the range
624 const wxRichTextRange& GetRange() const { return m_range; }
625 wxRichTextRange& GetRange() { return m_range; }
626
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; }
630
631 /// Is this composite?
632 virtual bool IsComposite() const { return false; }
633
634 /// Get/set the parent.
635 virtual wxRichTextObject* GetParent() const { return m_parent; }
636 virtual void SetParent(wxRichTextObject* parent) { m_parent = parent; }
637
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; }
645
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; }
650
651 /// Set/get stored descent
652 void SetDescent(int descent) { m_descent = descent; }
653 int GetDescent() const { return m_descent; }
654
655 // Operations
656
657 /// Clone the object
658 virtual wxRichTextObject* Clone() const { return NULL; }
659
660 /// Copy
661 void Copy(const wxRichTextObject& obj);
662
663 /// Reference-counting allows us to use the same object in multiple
664 /// lists (not yet used)
665 void Reference() { m_refCount ++; }
666 void Dereference();
667
668 /// Convert units in tends of a millimetre to device units
669 int ConvertTenthsMMToPixels(wxDC& dc, int units);
670
671 protected:
672 wxSize m_size;
673 wxPoint m_pos;
674 int m_descent; // Descent for this object (if any)
675 bool m_dirty;
676 int m_refCount;
677 wxRichTextObject* m_parent;
678
679 /// The range of this object (start position to end position)
680 wxRichTextRange m_range;
681
682 /// Margins
683 int m_leftMargin;
684 int m_rightMargin;
685 int m_topMargin;
686 int m_bottomMargin;
687
688 /// Attributes
689 wxTextAttrEx m_attributes;
690 };
691
692 WX_DECLARE_LIST_WITH_DECL( wxRichTextObject, wxRichTextObjectList, class WXDLLIMPEXP_RICHTEXT );
693
694 /*!
695 * wxRichTextCompositeObject class declaration
696 * Objects of this class can contain other objects.
697 */
698
699 class WXDLLIMPEXP_RICHTEXT wxRichTextCompositeObject: public wxRichTextObject
700 {
701 DECLARE_CLASS(wxRichTextCompositeObject)
702 public:
703 // Constructors
704
705 wxRichTextCompositeObject(wxRichTextObject* parent = NULL);
706 virtual ~wxRichTextCompositeObject();
707
708 // Overrideables
709
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);
713
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);
716
717 /// Calculate range
718 virtual void CalculateRange(long start, long& end);
719
720 /// Delete range
721 virtual bool DeleteRange(const wxRichTextRange& range);
722
723 /// Get any text in this object for the given range
724 virtual wxString GetTextForRange(const wxRichTextRange& range) const;
725
726 /// Dump to output stream for debugging
727 virtual void Dump(wxTextOutputStream& stream);
728
729 // Accessors
730
731 /// Get the children
732 wxRichTextObjectList& GetChildren() { return m_children; }
733 const wxRichTextObjectList& GetChildren() const { return m_children; }
734
735 /// Get the child count
736 size_t GetChildCount() const ;
737
738 /// Get the nth child
739 wxRichTextObject* GetChild(size_t n) const ;
740
741 /// Get/set dirty flag
742 virtual bool GetDirty() const { return m_dirty; }
743 virtual void SetDirty(bool dirty) { m_dirty = dirty; }
744
745 /// Is this composite?
746 virtual bool IsComposite() const { return true; }
747
748 /// Returns true if the buffer is empty
749 virtual bool IsEmpty() const { return GetChildCount() == 0; }
750
751 // Operations
752
753 /// Copy
754 void Copy(const wxRichTextCompositeObject& obj);
755
756 /// Assignment
757 void operator= (const wxRichTextCompositeObject& obj) { Copy(obj); }
758
759 /// Append a child, returning the position
760 size_t AppendChild(wxRichTextObject* child) ;
761
762 /// Insert the child in front of the given object, or at the beginning
763 bool InsertChild(wxRichTextObject* child, wxRichTextObject* inFrontOf) ;
764
765 /// Delete the child
766 bool RemoveChild(wxRichTextObject* child, bool deleteChild = false) ;
767
768 /// Delete all children
769 bool DeleteChildren() ;
770
771 /// Recursively merge all pieces that can be merged.
772 bool Defragment();
773
774 protected:
775 wxRichTextObjectList m_children;
776 };
777
778 /*!
779 * wxRichTextBox class declaration
780 * This defines a 2D space to lay out objects
781 */
782
783 class WXDLLIMPEXP_RICHTEXT wxRichTextBox: public wxRichTextCompositeObject
784 {
785 DECLARE_DYNAMIC_CLASS(wxRichTextBox)
786 public:
787 // Constructors
788
789 wxRichTextBox(wxRichTextObject* parent = NULL);
790 wxRichTextBox(const wxRichTextBox& obj): wxRichTextCompositeObject() { Copy(obj); }
791
792 // Overrideables
793
794 /// Draw the item
795 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style);
796
797 /// Lay the item out
798 virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
799
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;
803
804 // Accessors
805
806 // Operations
807
808 /// Clone
809 virtual wxRichTextObject* Clone() const { return new wxRichTextBox(*this); }
810
811 /// Copy
812 void Copy(const wxRichTextBox& obj);
813
814 protected:
815 };
816
817 /*!
818 * wxRichTextParagraphBox class declaration
819 * This box knows how to lay out paragraphs.
820 */
821
822 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraphLayoutBox: public wxRichTextBox
823 {
824 DECLARE_DYNAMIC_CLASS(wxRichTextParagraphLayoutBox)
825 public:
826 // Constructors
827
828 wxRichTextParagraphLayoutBox(wxRichTextObject* parent = NULL);
829 wxRichTextParagraphLayoutBox(const wxRichTextParagraphLayoutBox& obj): wxRichTextBox() { Init(); Copy(obj); }
830
831 // Overrideables
832
833 /// Draw the item
834 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style);
835
836 /// Lay the item out
837 virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
838
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;
842
843 /// Delete range
844 virtual bool DeleteRange(const wxRichTextRange& range);
845
846 /// Get any text in this object for the given range
847 virtual wxString GetTextForRange(const wxRichTextRange& range) const;
848
849 // Accessors
850
851 /// Associate a control with the buffer, for operations that for example require refreshing the window.
852 void SetRichTextCtrl(wxRichTextCtrl* ctrl) { m_ctrl = ctrl; }
853
854 /// Get the associated control.
855 wxRichTextCtrl* GetRichTextCtrl() const { return m_ctrl; }
856
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; }
860
861 // Operations
862
863 /// Initialize the object.
864 void Init();
865
866 /// Clear all children
867 virtual void Clear();
868
869 /// Clear and initialize with one blank paragraph
870 virtual void Reset();
871
872 /// Convenience function to add a paragraph of text
873 virtual wxRichTextRange AddParagraph(const wxString& text, wxTextAttrEx* paraStyle = NULL);
874
875 /// Convenience function to add an image
876 virtual wxRichTextRange AddImage(const wxImage& image, wxTextAttrEx* paraStyle = NULL);
877
878 /// Adds multiple paragraphs, based on newlines.
879 virtual wxRichTextRange AddParagraphs(const wxString& text, wxTextAttrEx* paraStyle = NULL);
880
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;
884
885 /// Get the line at the given y pixel position, or the last line.
886 virtual wxRichTextLine* GetLineAtYPosition(int y) const;
887
888 /// Get the paragraph at the given character or caret position
889 virtual wxRichTextParagraph* GetParagraphAtPosition(long pos, bool caretPosition = false) const;
890
891 /// Get the line size at the given position
892 virtual wxSize GetLineSizeAtPosition(long pos, bool caretPosition = false) const;
893
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
898 /// position.
899 virtual long GetVisibleLineNumber(long pos, bool caretPosition = false, bool startOfLine = false) const;
900
901 /// Given a line number, get the corresponding wxRichTextLine object.
902 virtual wxRichTextLine* GetLineForVisibleLineNumber(long lineNumber) const;
903
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;
907
908 /// Get the paragraph by number
909 virtual wxRichTextParagraph* GetParagraphAtLine(long paragraphNumber) const;
910
911 /// Get the paragraph for a given line
912 virtual wxRichTextParagraph* GetParagraphForLine(wxRichTextLine* line) const;
913
914 /// Get the length of the paragraph
915 virtual int GetParagraphLength(long paragraphNumber) const;
916
917 /// Get the number of paragraphs
918 virtual int GetParagraphCount() const { return GetChildCount(); }
919
920 /// Get the number of visible lines
921 virtual int GetLineCount() const;
922
923 /// Get the text of the paragraph
924 virtual wxString GetParagraphText(long paragraphNumber) const;
925
926 /// Convert zero-based line column and paragraph number to a position.
927 virtual long XYToPosition(long x, long y) const;
928
929 /// Convert zero-based position to line column and paragraph number
930 virtual bool PositionToXY(long pos, long* x, long* y) const;
931
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);
935
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);
939
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);
943
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);
947
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);
951
952 /// Combines 'style' with 'currentStyle' for the purpose of summarising the attributes of a range of
953 /// content.
954 bool CollectStyle(wxTextAttrEx& currentStyle, const wxTextAttrEx& style, long& multipleStyleAttributes);
955
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;
962
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;
969
970 /// Clone
971 virtual wxRichTextObject* Clone() const { return new wxRichTextParagraphLayoutBox(*this); }
972
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
975 /// marker.
976 virtual bool InsertFragment(long position, wxRichTextParagraphLayoutBox& fragment);
977
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);
980
981 /// Apply the style sheet to the buffer, for example if the styles have changed.
982 virtual bool ApplyStyleSheet(wxRichTextStyleSheet* styleSheet);
983
984 /// Copy
985 void Copy(const wxRichTextParagraphLayoutBox& obj);
986
987 /// Assignment
988 void operator= (const wxRichTextParagraphLayoutBox& obj) { Copy(obj); }
989
990 /// Calculate ranges
991 virtual void UpdateRanges() { long end; CalculateRange(0, end); }
992
993 /// Get all the text
994 virtual wxString GetText() const;
995
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);
999
1000 /// Get default style
1001 virtual const wxTextAttrEx& GetDefaultStyle() const { return m_defaultAttributes; }
1002
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); }
1006
1007 /// Get basic (overall) style
1008 virtual const wxTextAttrEx& GetBasicStyle() const { return m_attributes; }
1009
1010 /// Invalidate the buffer. With no argument, invalidates whole buffer.
1011 void Invalidate(const wxRichTextRange& invalidRange = wxRICHTEXT_ALL);
1012
1013 /// Get invalid range, rounding to entire paragraphs if argument is true.
1014 wxRichTextRange GetInvalidRange(bool wholeParagraphs = false) const;
1015
1016 protected:
1017 wxRichTextCtrl* m_ctrl;
1018 wxTextAttrEx m_defaultAttributes;
1019
1020 /// The invalidated range that will need full layout
1021 wxRichTextRange m_invalidRange;
1022
1023 // Is the last paragraph partial or complete?
1024 bool m_partialParagraph;
1025 };
1026
1027 /*!
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.
1032 */
1033
1034 class WXDLLIMPEXP_RICHTEXT wxRichTextLine
1035 {
1036 public:
1037 // Constructors
1038
1039 wxRichTextLine(wxRichTextParagraph* parent);
1040 wxRichTextLine(const wxRichTextLine& obj) { Init( NULL); Copy(obj); }
1041 virtual ~wxRichTextLine() {}
1042
1043 // Overrideables
1044
1045 // Accessors
1046
1047 /// Set the range
1048 void SetRange(const wxRichTextRange& range) { m_range = range; }
1049 void SetRange(long from, long to) { m_range = wxRichTextRange(from, to); }
1050
1051 /// Get the parent paragraph
1052 wxRichTextParagraph* GetParent() { return m_parent; }
1053
1054 /// Get the range
1055 const wxRichTextRange& GetRange() const { return m_range; }
1056 wxRichTextRange& GetRange() { return m_range; }
1057
1058 /// Get the absolute range
1059 wxRichTextRange GetAbsoluteRange() const;
1060
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; }
1064
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; }
1068
1069 /// Get the absolute object position
1070 virtual wxPoint GetAbsolutePosition() const;
1071
1072 /// Get the rectangle enclosing the line
1073 virtual wxRect GetRect() const { return wxRect(GetAbsolutePosition(), GetSize()); }
1074
1075 /// Set/get stored descent
1076 void SetDescent(int descent) { m_descent = descent; }
1077 int GetDescent() const { return m_descent; }
1078
1079 // Operations
1080
1081 /// Initialisation
1082 void Init(wxRichTextParagraph* parent);
1083
1084 /// Copy
1085 void Copy(const wxRichTextLine& obj);
1086
1087 /// Clone
1088 virtual wxRichTextLine* Clone() const { return new wxRichTextLine(*this); }
1089
1090 protected:
1091
1092 /// The range of the line (start position to end position)
1093 /// This is relative to the parent paragraph.
1094 wxRichTextRange m_range;
1095
1096 /// Size and position measured relative to top of paragraph
1097 wxPoint m_pos;
1098 wxSize m_size;
1099
1100 /// Maximum descent for this line (location of text baseline)
1101 int m_descent;
1102
1103 // The parent object
1104 wxRichTextParagraph* m_parent;
1105 };
1106
1107 WX_DECLARE_LIST_WITH_DECL( wxRichTextLine, wxRichTextLineList , class WXDLLIMPEXP_RICHTEXT );
1108
1109 /*!
1110 * wxRichTextParagraph class declaration
1111 * This object represents a single paragraph (or in a straight text editor, a line).
1112 */
1113
1114 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraph: public wxRichTextBox
1115 {
1116 DECLARE_DYNAMIC_CLASS(wxRichTextParagraph)
1117 public:
1118 // Constructors
1119
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); }
1124
1125 // Overrideables
1126
1127 /// Draw the item
1128 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style);
1129
1130 /// Lay the item out
1131 virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
1132
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;
1136
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);
1139
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);
1143
1144 /// Calculate range
1145 virtual void CalculateRange(long start, long& end);
1146
1147 // Accessors
1148
1149 /// Get the cached lines
1150 wxRichTextLineList& GetLines() { return m_cachedLines; }
1151
1152 // Operations
1153
1154 /// Copy
1155 void Copy(const wxRichTextParagraph& obj);
1156
1157 /// Clone
1158 virtual wxRichTextObject* Clone() const { return new wxRichTextParagraph(*this); }
1159
1160 /// Clear the cached lines
1161 void ClearLines();
1162
1163 // Implementation
1164
1165 /// Apply paragraph styles such as centering to the wrapped lines
1166 virtual void ApplyParagraphStyle(const wxTextAttrEx& attr, const wxRect& rect);
1167
1168 /// Insert text at the given position
1169 virtual bool InsertText(long pos, const wxString& text);
1170
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);
1174
1175 /// Move content to a list from this point
1176 virtual void MoveToList(wxRichTextObject* obj, wxList& list);
1177
1178 /// Add content back from list
1179 virtual void MoveFromList(wxList& list);
1180
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);
1184
1185 /// Find a suitable wrap position. wrapPosition is the last position in the line to the left
1186 /// of the split.
1187 bool FindWrapPosition(const wxRichTextRange& range, wxDC& dc, int availableSpace, long& wrapPosition);
1188
1189 /// Find the object at the given position
1190 wxRichTextObject* FindObjectAtPosition(long position);
1191
1192 /// Get the bullet text for this paragraph.
1193 wxString GetBulletText();
1194
1195 /// Allocate or reuse a line object
1196 wxRichTextLine* AllocateLine(int pos);
1197
1198 /// Clear remaining unused line objects, if any
1199 bool ClearUnusedLines(int lineCount);
1200
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;
1204
1205 /// Get combined attributes of the base style and paragraph style.
1206 wxTextAttrEx GetCombinedAttributes() const;
1207
1208 /// Create default tabstop array
1209 static void InitDefaultTabs();
1210
1211 /// Clear default tabstop array
1212 static void ClearDefaultTabs();
1213
1214 /// Get default tabstop array
1215 static const wxArrayInt& GetDefaultTabs() { return sm_defaultTabs; }
1216
1217 protected:
1218 /// The lines that make up the wrapped paragraph
1219 wxRichTextLineList m_cachedLines;
1220
1221 /// Default tabstops
1222 static wxArrayInt sm_defaultTabs;
1223 };
1224
1225 /*!
1226 * wxRichTextPlainText class declaration
1227 * This object represents a single piece of text.
1228 */
1229
1230 class WXDLLIMPEXP_RICHTEXT wxRichTextPlainText: public wxRichTextObject
1231 {
1232 DECLARE_DYNAMIC_CLASS(wxRichTextPlainText)
1233 public:
1234 // Constructors
1235
1236 wxRichTextPlainText(const wxString& text = wxEmptyString, wxRichTextObject* parent = NULL, wxTextAttrEx* style = NULL);
1237 wxRichTextPlainText(const wxRichTextPlainText& obj): wxRichTextObject() { Copy(obj); }
1238
1239 // Overrideables
1240
1241 /// Draw the item
1242 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style);
1243
1244 /// Lay the item out
1245 virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
1246
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;
1250
1251 /// Get any text in this object for the given range
1252 virtual wxString GetTextForRange(const wxRichTextRange& range) const;
1253
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);
1257
1258 /// Calculate range
1259 virtual void CalculateRange(long start, long& end);
1260
1261 /// Delete range
1262 virtual bool DeleteRange(const wxRichTextRange& range);
1263
1264 /// Returns true if the object is empty
1265 virtual bool IsEmpty() const { return m_text.empty(); }
1266
1267 /// Returns true if this object can merge itself with the given one.
1268 virtual bool CanMerge(wxRichTextObject* object) const;
1269
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);
1273
1274 /// Dump to output stream for debugging
1275 virtual void Dump(wxTextOutputStream& stream);
1276
1277 // Accessors
1278
1279 /// Get the text
1280 const wxString& GetText() const { return m_text; }
1281
1282 /// Set the text
1283 void SetText(const wxString& text) { m_text = text; }
1284
1285 // Operations
1286
1287 /// Copy
1288 void Copy(const wxRichTextPlainText& obj);
1289
1290 /// Clone
1291 virtual wxRichTextObject* Clone() const { return new wxRichTextPlainText(*this); }
1292 private:
1293 bool DrawTabbedString(wxDC& dc, const wxTextAttrEx& attr, const wxRect& rect, wxString& str, wxCoord& x, wxCoord& y, bool selected);
1294
1295 protected:
1296 wxString m_text;
1297 };
1298
1299 /*!
1300 * wxRichTextImageBlock stores information about an image, in binary in-memory form
1301 */
1302
1303 class WXDLLIMPEXP_BASE wxDataInputStream;
1304 class WXDLLIMPEXP_BASE wxDataOutputStream;
1305
1306 class WXDLLIMPEXP_RICHTEXT wxRichTextImageBlock: public wxObject
1307 {
1308 public:
1309 wxRichTextImageBlock();
1310 wxRichTextImageBlock(const wxRichTextImageBlock& block);
1311 virtual ~wxRichTextImageBlock();
1312
1313 void Init();
1314 void Clear();
1315
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);
1322
1323 // Make an image block from the wxImage in the given
1324 // format.
1325 virtual bool MakeImageBlock(wxImage& image, int imageType, int quality = 80);
1326
1327 // Write to a file
1328 bool Write(const wxString& filename);
1329
1330 // Write data in hex to a stream
1331 bool WriteHex(wxOutputStream& stream);
1332
1333 // Read data in hex from a stream
1334 bool ReadHex(wxInputStream& stream, int length, int imageType);
1335
1336 // Copy from 'block'
1337 void Copy(const wxRichTextImageBlock& block);
1338
1339 // Load a wxImage from the block
1340 bool Load(wxImage& image);
1341
1342 //// Operators
1343 void operator=(const wxRichTextImageBlock& block);
1344
1345 //// Accessors
1346
1347 unsigned char* GetData() const { return m_data; }
1348 size_t GetDataSize() const { return m_dataSize; }
1349 int GetImageType() const { return m_imageType; }
1350
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; }
1354
1355 bool Ok() const { return IsOk(); }
1356 bool IsOk() const { return GetData() != NULL; }
1357
1358 /// Implementation
1359
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);
1363
1364 // Write memory block to stream
1365 static bool WriteBlock(wxOutputStream& stream, unsigned char* block, size_t size);
1366
1367 // Write memory block to file
1368 static bool WriteBlock(const wxString& filename, unsigned char* block, size_t size);
1369
1370 protected:
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;
1374 size_t m_dataSize;
1375 int m_imageType; // wxWin type id
1376 };
1377
1378
1379 /*!
1380 * wxRichTextImage class declaration
1381 * This object represents an image.
1382 */
1383
1384 class WXDLLIMPEXP_RICHTEXT wxRichTextImage: public wxRichTextObject
1385 {
1386 DECLARE_DYNAMIC_CLASS(wxRichTextImage)
1387 public:
1388 // Constructors
1389
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); }
1394
1395 // Overrideables
1396
1397 /// Draw the item
1398 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style);
1399
1400 /// Lay the item out
1401 virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
1402
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;
1406
1407 /// Returns true if the object is empty
1408 virtual bool IsEmpty() const { return !m_image.Ok(); }
1409
1410 // Accessors
1411
1412 /// Get the image
1413 const wxImage& GetImage() const { return m_image; }
1414
1415 /// Set the image
1416 void SetImage(const wxImage& image) { m_image = image; }
1417
1418 /// Get the image block containing the raw data
1419 wxRichTextImageBlock& GetImageBlock() { return m_imageBlock; }
1420
1421 // Operations
1422
1423 /// Copy
1424 void Copy(const wxRichTextImage& obj);
1425
1426 /// Clone
1427 virtual wxRichTextObject* Clone() const { return new wxRichTextImage(*this); }
1428
1429 /// Load wxImage from the block
1430 virtual bool LoadFromBlock();
1431
1432 /// Make block from the wxImage
1433 virtual bool MakeBlock();
1434
1435 protected:
1436 // TODO: reduce the multiple representations of data
1437 wxImage m_image;
1438 wxBitmap m_bitmap;
1439 wxRichTextImageBlock m_imageBlock;
1440 };
1441
1442
1443 /*!
1444 * wxRichTextBuffer class declaration
1445 * This is a kind of box, used to represent the whole buffer
1446 */
1447
1448 class WXDLLIMPEXP_RICHTEXT wxRichTextCommand;
1449 class WXDLLIMPEXP_RICHTEXT wxRichTextAction;
1450
1451 class WXDLLIMPEXP_RICHTEXT wxRichTextBuffer: public wxRichTextParagraphLayoutBox
1452 {
1453 DECLARE_DYNAMIC_CLASS(wxRichTextBuffer)
1454 public:
1455 // Constructors
1456
1457 wxRichTextBuffer() { Init(); }
1458 wxRichTextBuffer(const wxRichTextBuffer& obj): wxRichTextParagraphLayoutBox() { Init(); Copy(obj); }
1459 virtual ~wxRichTextBuffer() ;
1460
1461 // Accessors
1462
1463 /// Gets the command processor
1464 wxCommandProcessor* GetCommandProcessor() const { return m_commandProcessor; }
1465
1466 /// Set style sheet, if any.
1467 void SetStyleSheet(wxRichTextStyleSheet* styleSheet) { m_styleSheet = styleSheet; }
1468 wxRichTextStyleSheet* GetStyleSheet() const { return m_styleSheet; }
1469
1470 // Operations
1471
1472 /// Initialisation
1473 void Init();
1474
1475 /// Clears the buffer and resets the command processor
1476 virtual void Clear();
1477
1478 /// The same as Clear, and adds an empty paragraph.
1479 virtual void Reset();
1480
1481 /// Load a file
1482 virtual bool LoadFile(const wxString& filename, int type = wxRICHTEXT_TYPE_ANY);
1483
1484 /// Save a file
1485 virtual bool SaveFile(const wxString& filename, int type = wxRICHTEXT_TYPE_ANY);
1486
1487 /// Load from a stream
1488 virtual bool LoadFile(wxInputStream& stream, int type = wxRICHTEXT_TYPE_ANY);
1489
1490 /// Save to a stream
1491 virtual bool SaveFile(wxOutputStream& stream, int type = wxRICHTEXT_TYPE_ANY);
1492
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); }
1495
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);
1500
1501 /// End collapsing undo/redo commands
1502 virtual bool EndBatchUndo();
1503
1504 /// Collapsing commands?
1505 virtual bool BatchingUndo() const { return m_batchedCommandDepth > 0; }
1506
1507 /// Submit immediately, or delay according to whether collapsing is on
1508 virtual bool SubmitAction(wxRichTextAction* action);
1509
1510 /// Get collapsed command
1511 virtual wxRichTextCommand* GetBatchedCommand() const { return m_batchedCommand; }
1512
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();
1518
1519 /// End suppressing undo/redo commands.
1520 virtual bool EndSuppressUndo();
1521
1522 /// Collapsing commands?
1523 virtual bool SuppressingUndo() const { return m_suppressUndo > 0; }
1524
1525 /// Copy the range to the clipboard
1526 virtual bool CopyToClipboard(const wxRichTextRange& range);
1527
1528 /// Paste the clipboard content to the buffer
1529 virtual bool PasteFromClipboard(long position);
1530
1531 /// Can we paste from the clipboard?
1532 virtual bool CanPasteFromClipboard() const;
1533
1534 /// Begin using a style
1535 virtual bool BeginStyle(const wxTextAttrEx& style);
1536
1537 /// End the style
1538 virtual bool EndStyle();
1539
1540 /// End all styles
1541 virtual bool EndAllStyles();
1542
1543 /// Clear the style stack
1544 virtual void ClearStyleStack();
1545
1546 /// Get the size of the style stack, for example to check correct nesting
1547 virtual size_t GetStyleStackSize() const { return m_attributeStack.GetCount(); }
1548
1549 /// Begin using bold
1550 bool BeginBold();
1551
1552 /// End using bold
1553 bool EndBold() { return EndStyle(); }
1554
1555 /// Begin using italic
1556 bool BeginItalic();
1557
1558 /// End using italic
1559 bool EndItalic() { return EndStyle(); }
1560
1561 /// Begin using underline
1562 bool BeginUnderline();
1563
1564 /// End using underline
1565 bool EndUnderline() { return EndStyle(); }
1566
1567 /// Begin using point size
1568 bool BeginFontSize(int pointSize);
1569
1570 /// End using point size
1571 bool EndFontSize() { return EndStyle(); }
1572
1573 /// Begin using this font
1574 bool BeginFont(const wxFont& font);
1575
1576 /// End using a font
1577 bool EndFont() { return EndStyle(); }
1578
1579 /// Begin using this colour
1580 bool BeginTextColour(const wxColour& colour);
1581
1582 /// End using a colour
1583 bool EndTextColour() { return EndStyle(); }
1584
1585 /// Begin using alignment
1586 bool BeginAlignment(wxTextAttrAlignment alignment);
1587
1588 /// End alignment
1589 bool EndAlignment() { return EndStyle(); }
1590
1591 /// Begin left indent
1592 bool BeginLeftIndent(int leftIndent, int leftSubIndent = 0);
1593
1594 /// End left indent
1595 bool EndLeftIndent() { return EndStyle(); }
1596
1597 /// Begin right indent
1598 bool BeginRightIndent(int rightIndent);
1599
1600 /// End right indent
1601 bool EndRightIndent() { return EndStyle(); }
1602
1603 /// Begin paragraph spacing
1604 bool BeginParagraphSpacing(int before, int after);
1605
1606 /// End paragraph spacing
1607 bool EndParagraphSpacing() { return EndStyle(); }
1608
1609 /// Begin line spacing
1610 bool BeginLineSpacing(int lineSpacing);
1611
1612 /// End line spacing
1613 bool EndLineSpacing() { return EndStyle(); }
1614
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);
1617
1618 /// End numbered bullet
1619 bool EndNumberedBullet() { return EndStyle(); }
1620
1621 /// Begin symbol bullet
1622 bool BeginSymbolBullet(wxChar symbol, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL);
1623
1624 /// End symbol bullet
1625 bool EndSymbolBullet() { return EndStyle(); }
1626
1627 /// Begin named character style
1628 bool BeginCharacterStyle(const wxString& characterStyle);
1629
1630 /// End named character style
1631 bool EndCharacterStyle() { return EndStyle(); }
1632
1633 /// Begin named paragraph style
1634 bool BeginParagraphStyle(const wxString& paragraphStyle);
1635
1636 /// End named character style
1637 bool EndParagraphStyle() { return EndStyle(); }
1638
1639 // Implementation
1640
1641 /// Copy
1642 void Copy(const wxRichTextBuffer& obj);
1643
1644 /// Clone
1645 virtual wxRichTextObject* Clone() const { return new wxRichTextBuffer(*this); }
1646
1647 /// Submit command to insert paragraphs
1648 bool InsertParagraphsWithUndo(long pos, const wxRichTextParagraphLayoutBox& paragraphs, wxRichTextCtrl* ctrl, int flags = 0);
1649
1650 /// Submit command to insert the given text
1651 bool InsertTextWithUndo(long pos, const wxString& text, wxRichTextCtrl* ctrl, int flags = 0);
1652
1653 /// Submit command to insert a newline
1654 bool InsertNewlineWithUndo(long pos, wxRichTextCtrl* ctrl, int flags = 0);
1655
1656 /// Submit command to insert the given image
1657 bool InsertImageWithUndo(long pos, const wxRichTextImageBlock& imageBlock, wxRichTextCtrl* ctrl, int flags = 0);
1658
1659 /// Submit command to delete this range
1660 bool DeleteRangeWithUndo(const wxRichTextRange& range, long initialCaretPosition, long newCaretPositon, wxRichTextCtrl* ctrl);
1661
1662 /// Mark modified
1663 void Modify(bool modify = true) { m_modified = modify; }
1664 bool IsModified() const { return m_modified; }
1665
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
1668 /// style.
1669 wxRichTextAttr GetStyleForNewParagraph(long pos, bool caretPosition = false) const;
1670
1671 /// Dumps contents of buffer for debugging purposes
1672 virtual void Dump();
1673 virtual void Dump(wxTextOutputStream& stream) { wxRichTextParagraphLayoutBox::Dump(stream); }
1674
1675 /// Returns the file handlers
1676 static wxList& GetHandlers() { return sm_handlers; }
1677
1678 /// Adds a handler to the end
1679 static void AddHandler(wxRichTextFileHandler *handler);
1680
1681 /// Inserts a handler at the front
1682 static void InsertHandler(wxRichTextFileHandler *handler);
1683
1684 /// Removes a handler
1685 static bool RemoveHandler(const wxString& name);
1686
1687 /// Finds a handler by name
1688 static wxRichTextFileHandler *FindHandler(const wxString& name);
1689
1690 /// Finds a handler by extension and type
1691 static wxRichTextFileHandler *FindHandler(const wxString& extension, int imageType);
1692
1693 /// Finds a handler by filename or, if supplied, type
1694 static wxRichTextFileHandler *FindHandlerFilenameOrType(const wxString& filename, int imageType);
1695
1696 /// Finds a handler by type
1697 static wxRichTextFileHandler *FindHandler(int imageType);
1698
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);
1703
1704 /// Clean up handlers
1705 static void CleanUpHandlers();
1706
1707 /// Initialise the standard handlers
1708 static void InitStandardHandlers();
1709
1710 protected:
1711
1712 /// Command processor
1713 wxCommandProcessor* m_commandProcessor;
1714
1715 /// Has been modified?
1716 bool m_modified;
1717
1718 /// Collapsed command stack
1719 int m_batchedCommandDepth;
1720
1721 /// Name for collapsed command
1722 wxString m_batchedCommandsName;
1723
1724 /// Current collapsed command accumulating actions
1725 wxRichTextCommand* m_batchedCommand;
1726
1727 /// Whether to suppress undo
1728 int m_suppressUndo;
1729
1730 /// Style sheet, if any
1731 wxRichTextStyleSheet* m_styleSheet;
1732
1733 /// Stack of attributes for convenience functions
1734 wxList m_attributeStack;
1735
1736 /// File handlers
1737 static wxList sm_handlers;
1738 };
1739
1740 /*!
1741 * The command identifiers
1742 *
1743 */
1744
1745 enum wxRichTextCommandId
1746 {
1747 wxRICHTEXT_INSERT,
1748 wxRICHTEXT_DELETE,
1749 wxRICHTEXT_CHANGE_STYLE
1750 };
1751
1752 /*!
1753 * Command classes for undo/redo
1754 *
1755 */
1756
1757 class WXDLLIMPEXP_RICHTEXT wxRichTextAction;
1758 class WXDLLIMPEXP_RICHTEXT wxRichTextCommand: public wxCommand
1759 {
1760 public:
1761 // Ctor for one action
1762 wxRichTextCommand(const wxString& name, wxRichTextCommandId id, wxRichTextBuffer* buffer,
1763 wxRichTextCtrl* ctrl, bool ignoreFirstTime = false);
1764
1765 // Ctor for multiple actions
1766 wxRichTextCommand(const wxString& name);
1767
1768 virtual ~wxRichTextCommand();
1769
1770 bool Do();
1771 bool Undo();
1772
1773 void AddAction(wxRichTextAction* action);
1774 void ClearActions();
1775
1776 wxList& GetActions() { return m_actions; }
1777
1778 protected:
1779
1780 wxList m_actions;
1781 };
1782
1783 /*!
1784 * wxRichTextAction class declaration
1785 * There can be more than one action in a command.
1786 */
1787
1788 class WXDLLIMPEXP_RICHTEXT wxRichTextAction: public wxObject
1789 {
1790 public:
1791 wxRichTextAction(wxRichTextCommand* cmd, const wxString& name, wxRichTextCommandId id, wxRichTextBuffer* buffer,
1792 wxRichTextCtrl* ctrl, bool ignoreFirstTime = false);
1793
1794 virtual ~wxRichTextAction();
1795
1796 bool Do();
1797 bool Undo();
1798
1799 /// Update the control appearance
1800 void UpdateAppearance(long caretPosition, bool sendUpdateEvent = false);
1801
1802 /// Replace the buffer paragraphs with the given fragment.
1803 void ApplyParagraphs(const wxRichTextParagraphLayoutBox& fragment);
1804
1805 /// Get the fragments
1806 wxRichTextParagraphLayoutBox& GetNewParagraphs() { return m_newParagraphs; }
1807 wxRichTextParagraphLayoutBox& GetOldParagraphs() { return m_oldParagraphs; }
1808
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; }
1812
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; }
1816
1817 /// Get name
1818 const wxString& GetName() const { return m_name; }
1819
1820 protected:
1821 // Action name
1822 wxString m_name;
1823
1824 // Buffer
1825 wxRichTextBuffer* m_buffer;
1826
1827 // Control
1828 wxRichTextCtrl* m_ctrl;
1829
1830 // Stores the new paragraphs
1831 wxRichTextParagraphLayoutBox m_newParagraphs;
1832
1833 // Stores the old paragraphs
1834 wxRichTextParagraphLayoutBox m_oldParagraphs;
1835
1836 // The affected range
1837 wxRichTextRange m_range;
1838
1839 // The insertion point for this command
1840 long m_position;
1841
1842 // Ignore 1st 'Do' operation because we already did it
1843 bool m_ignoreThis;
1844
1845 // The command identifier
1846 wxRichTextCommandId m_cmdId;
1847 };
1848
1849 /*!
1850 * wxRichTextFileHandler
1851 * Base class for file handlers
1852 */
1853
1854 class WXDLLIMPEXP_RICHTEXT wxRichTextFileHandler: public wxObject
1855 {
1856 DECLARE_CLASS(wxRichTextFileHandler)
1857 public:
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)
1860 { }
1861
1862 #if wxUSE_STREAMS
1863 bool LoadFile(wxRichTextBuffer *buffer, wxInputStream& stream)
1864 { return DoLoadFile(buffer, stream); }
1865 bool SaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream)
1866 { return DoSaveFile(buffer, stream); }
1867 #endif
1868
1869 bool LoadFile(wxRichTextBuffer *buffer, const wxString& filename);
1870 bool SaveFile(wxRichTextBuffer *buffer, const wxString& filename);
1871
1872 /// Can we handle this filename (if using files)? By default, checks the extension.
1873 virtual bool CanHandle(const wxString& filename) const;
1874
1875 /// Can we save using this handler?
1876 virtual bool CanSave() const { return false; }
1877
1878 /// Can we load using this handler?
1879 virtual bool CanLoad() const { return false; }
1880
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; }
1884
1885 /// The name of the nandler
1886 void SetName(const wxString& name) { m_name = name; }
1887 wxString GetName() const { return m_name; }
1888
1889 /// The default extension to recognise
1890 void SetExtension(const wxString& ext) { m_extension = ext; }
1891 wxString GetExtension() const { return m_extension; }
1892
1893 /// The handler type
1894 void SetType(int type) { m_type = type; }
1895 int GetType() const { return m_type; }
1896
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; }
1900
1901 protected:
1902
1903 #if wxUSE_STREAMS
1904 virtual bool DoLoadFile(wxRichTextBuffer *buffer, wxInputStream& stream) = 0;
1905 virtual bool DoSaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream) = 0;
1906 #endif
1907
1908 wxString m_name;
1909 wxString m_encoding;
1910 wxString m_extension;
1911 int m_type;
1912 bool m_visible;
1913 };
1914
1915 /*!
1916 * wxRichTextPlainTextHandler
1917 * Plain text handler
1918 */
1919
1920 class WXDLLIMPEXP_RICHTEXT wxRichTextPlainTextHandler: public wxRichTextFileHandler
1921 {
1922 DECLARE_CLASS(wxRichTextPlainTextHandler)
1923 public:
1924 wxRichTextPlainTextHandler(const wxString& name = wxT("Text"), const wxString& ext = wxT("txt"), int type = wxRICHTEXT_TYPE_TEXT)
1925 : wxRichTextFileHandler(name, ext, type)
1926 { }
1927
1928 /// Can we save using this handler?
1929 virtual bool CanSave() const { return true; }
1930
1931 /// Can we load using this handler?
1932 virtual bool CanLoad() const { return true; }
1933
1934 protected:
1935
1936 #if wxUSE_STREAMS
1937 virtual bool DoLoadFile(wxRichTextBuffer *buffer, wxInputStream& stream);
1938 virtual bool DoSaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream);
1939 #endif
1940
1941 };
1942
1943 #if wxUSE_DATAOBJ
1944
1945 /*!
1946 * The data object for a wxRichTextBuffer
1947 */
1948
1949 class wxRichTextBufferDataObject: public wxDataObjectSimple
1950 {
1951 public:
1952 // ctor doesn't copy the pointer, so it shouldn't go away while this object
1953 // is alive
1954 wxRichTextBufferDataObject(wxRichTextBuffer* richTextBuffer = (wxRichTextBuffer*) NULL);
1955 virtual ~wxRichTextBufferDataObject();
1956
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();
1960
1961 // Returns the id for the new data format
1962 static const wxChar* GetRichTextBufferFormatId() { return ms_richTextBufferFormatId; }
1963
1964 // base class pure virtuals
1965
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);
1970
1971 // prevent warnings
1972
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); }
1976
1977 private:
1978 wxDataFormat m_formatRichTextBuffer; // our custom format
1979 wxRichTextBuffer* m_richTextBuffer; // our data
1980 static const wxChar* ms_richTextBufferFormatId; // our format id
1981 };
1982
1983 #endif
1984
1985 /*!
1986 * Utilities
1987 *
1988 */
1989
1990 inline bool wxRichTextHasStyle(int flags, int style)
1991 {
1992 return ((flags & style) == style);
1993 }
1994
1995 /// Compare two attribute objects
1996 bool wxTextAttrEq(const wxTextAttrEx& attr1, const wxTextAttrEx& attr2);
1997 bool wxTextAttrEq(const wxTextAttr& attr1, const wxRichTextAttr& attr2);
1998
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);
2003
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);
2008
2009 /// Compare tabs
2010 bool wxRichTextTabsEq(const wxArrayInt& tabs1, const wxArrayInt& tabs2);
2011
2012 /// Set the font without changing the font attributes
2013 void wxSetFontPreservingStyles(wxTextAttr& attr, const wxFont& font);
2014
2015 /// Convert a decimal to Roman numerals
2016 wxString wxRichTextDecimalToRoman(long n);
2017
2018
2019 WXDLLIMPEXP_RICHTEXT void wxRichTextModuleInit();
2020
2021 #endif
2022 // wxUSE_RICHTEXT
2023
2024 #endif
2025 // _WX_RICHTEXTBUFFER_H_
2026