]> git.saurik.com Git - wxWidgets.git/blob - include/wx/richtext/richtextbuffer.h
Add EVT_WINDOW_MODAL_DIALOG_CLOSED() event table macro.
[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 #include "wx/variant.h"
69
70 #if wxUSE_DATAOBJ
71 #include "wx/dataobj.h"
72 #endif
73
74 // Compatibility
75 //#define wxRichTextAttr wxTextAttr
76 #define wxTextAttrEx wxTextAttr
77
78 // Setting wxRICHTEXT_USE_OWN_CARET to 1 implements a
79 // caret reliably without using wxClientDC in case there
80 // are platform-specific problems with the generic caret.
81 #if defined(__WXGTK__) || defined(__WXMAC__)
82 #define wxRICHTEXT_USE_OWN_CARET 1
83 #else
84 #define wxRICHTEXT_USE_OWN_CARET 0
85 #endif
86
87 // Switch off for binary compatibility, on for faster drawing
88 // Note: this seems to be buggy (overzealous use of extents) so
89 // don't use for now
90 #define wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING 0
91
92 // The following two symbols determine whether an output implementation
93 // is present. To switch the relevant one on, set wxRICHTEXT_USE_XMLDOCUMENT_OUTPUT in
94 // richtextxml.cpp. By default, the faster direct output implementation is used.
95
96 // Include the wxXmlDocument implementation for output
97 #define wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT 1
98
99 // Include the faster, direct implementation for output
100 #define wxRICHTEXT_HAVE_DIRECT_OUTPUT 1
101
102 /**
103 The line break character that can be embedded in content.
104 */
105
106 extern WXDLLIMPEXP_RICHTEXT const wxChar wxRichTextLineBreakChar;
107
108 /**
109 File types in wxRichText context.
110 */
111 enum wxRichTextFileType
112 {
113 wxRICHTEXT_TYPE_ANY = 0,
114 wxRICHTEXT_TYPE_TEXT,
115 wxRICHTEXT_TYPE_XML,
116 wxRICHTEXT_TYPE_HTML,
117 wxRICHTEXT_TYPE_RTF,
118 wxRICHTEXT_TYPE_PDF
119 };
120
121 /*
122 * Forward declarations
123 */
124
125 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextCtrl;
126 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextObject;
127 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextImage;
128 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextCacheObject;
129 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextObjectList;
130 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextLine;
131 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextParagraph;
132 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextFileHandler;
133 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextStyleSheet;
134 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextListStyleDefinition;
135 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextEvent;
136 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextRenderer;
137 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextBuffer;
138 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextXMLHandler;
139 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextParagraphLayoutBox;
140 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextImageBlock;
141 class WXDLLIMPEXP_FWD_XML wxXmlNode;
142 class wxRichTextFloatCollector;
143 class WXDLLIMPEXP_FWD_BASE wxDataInputStream;
144 class WXDLLIMPEXP_FWD_BASE wxDataOutputStream;
145
146 /**
147 Flags determining the available space, passed to Layout.
148 */
149
150 #define wxRICHTEXT_FIXED_WIDTH 0x01
151 #define wxRICHTEXT_FIXED_HEIGHT 0x02
152 #define wxRICHTEXT_VARIABLE_WIDTH 0x04
153 #define wxRICHTEXT_VARIABLE_HEIGHT 0x08
154
155 // Only lay out the part of the buffer that lies within
156 // the rect passed to Layout.
157 #define wxRICHTEXT_LAYOUT_SPECIFIED_RECT 0x10
158
159 /**
160 Flags to pass to Draw
161 */
162
163 // Ignore paragraph cache optimization, e.g. for printing purposes
164 // where one line may be drawn higher (on the next page) compared
165 // with the previous line
166 #define wxRICHTEXT_DRAW_IGNORE_CACHE 0x01
167 #define wxRICHTEXT_DRAW_SELECTED 0x02
168 #define wxRICHTEXT_DRAW_PRINT 0x04
169 #define wxRICHTEXT_DRAW_GUIDELINES 0x08
170
171 /**
172 Flags returned from hit-testing, or passed to hit-test function.
173 */
174 enum wxRichTextHitTestFlags
175 {
176 // The point was not on this object
177 wxRICHTEXT_HITTEST_NONE = 0x01,
178
179 // The point was before the position returned from HitTest
180 wxRICHTEXT_HITTEST_BEFORE = 0x02,
181
182 // The point was after the position returned from HitTest
183 wxRICHTEXT_HITTEST_AFTER = 0x04,
184
185 // The point was on the position returned from HitTest
186 wxRICHTEXT_HITTEST_ON = 0x08,
187
188 // The point was on space outside content
189 wxRICHTEXT_HITTEST_OUTSIDE = 0x10,
190
191 // Only do hit-testing at the current level (don't traverse into top-level objects)
192 wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS = 0x20,
193
194 // Ignore floating objects
195 wxRICHTEXT_HITTEST_NO_FLOATING_OBJECTS = 0x40
196 };
197
198 /**
199 Flags for GetRangeSize.
200 */
201
202 #define wxRICHTEXT_FORMATTED 0x01
203 #define wxRICHTEXT_UNFORMATTED 0x02
204 #define wxRICHTEXT_CACHE_SIZE 0x04
205 #define wxRICHTEXT_HEIGHT_ONLY 0x08
206
207 /**
208 Flags for SetStyle/SetListStyle.
209 */
210
211 #define wxRICHTEXT_SETSTYLE_NONE 0x00
212
213 // Specifies that this operation should be undoable
214 #define wxRICHTEXT_SETSTYLE_WITH_UNDO 0x01
215
216 // Specifies that the style should not be applied if the
217 // combined style at this point is already the style in question.
218 #define wxRICHTEXT_SETSTYLE_OPTIMIZE 0x02
219
220 // Specifies that the style should only be applied to paragraphs,
221 // and not the content. This allows content styling to be
222 // preserved independently from that of e.g. a named paragraph style.
223 #define wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY 0x04
224
225 // Specifies that the style should only be applied to characters,
226 // and not the paragraph. This allows content styling to be
227 // preserved independently from that of e.g. a named paragraph style.
228 #define wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY 0x08
229
230 // For SetListStyle only: specifies starting from the given number, otherwise
231 // deduces number from existing attributes
232 #define wxRICHTEXT_SETSTYLE_RENUMBER 0x10
233
234 // For SetListStyle only: specifies the list level for all paragraphs, otherwise
235 // the current indentation will be used
236 #define wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL 0x20
237
238 // Resets the existing style before applying the new style
239 #define wxRICHTEXT_SETSTYLE_RESET 0x40
240
241 // Removes the given style instead of applying it
242 #define wxRICHTEXT_SETSTYLE_REMOVE 0x80
243
244 /**
245 Flags for object insertion.
246 */
247
248 #define wxRICHTEXT_INSERT_NONE 0x00
249 #define wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE 0x01
250 #define wxRICHTEXT_INSERT_INTERACTIVE 0x02
251
252 // A special flag telling the buffer to keep the first paragraph style
253 // as-is, when deleting a paragraph marker. In future we might pass a
254 // flag to InsertFragment and DeleteRange to indicate the appropriate mode.
255 #define wxTEXT_ATTR_KEEP_FIRST_PARA_STYLE 0x10000000
256
257 /**
258 Default superscript/subscript font multiplication factor.
259 */
260
261 #define wxSCRIPT_MUL_FACTOR 1.5
262
263 /**
264 The type for wxTextAttrDimension flags.
265 */
266 typedef unsigned short wxTextAttrDimensionFlags;
267
268 /**
269 Miscellaneous text box flags
270 */
271 enum wxTextBoxAttrFlags
272 {
273 wxTEXT_BOX_ATTR_FLOAT = 0x00000001,
274 wxTEXT_BOX_ATTR_CLEAR = 0x00000002,
275 wxTEXT_BOX_ATTR_COLLAPSE_BORDERS = 0x00000004,
276 wxTEXT_BOX_ATTR_VERTICAL_ALIGNMENT = 0x00000008
277 };
278
279 /**
280 Whether a value is present, used in dimension flags.
281 */
282 enum wxTextAttrValueFlags
283 {
284 wxTEXT_ATTR_VALUE_VALID = 0x1000,
285 wxTEXT_ATTR_VALUE_VALID_MASK = 0x1000
286 };
287
288 /**
289 Units, included in the dimension value.
290 */
291 enum wxTextAttrUnits
292 {
293 wxTEXT_ATTR_UNITS_TENTHS_MM = 0x0001,
294 wxTEXT_ATTR_UNITS_PIXELS = 0x0002,
295 wxTEXT_ATTR_UNITS_PERCENTAGE = 0x0004,
296 wxTEXT_ATTR_UNITS_POINTS = 0x0008,
297
298 wxTEXT_ATTR_UNITS_MASK = 0x000F
299 };
300
301 /**
302 Position alternatives, included in the dimension flags.
303 */
304 enum wxTextBoxAttrPosition
305 {
306 wxTEXT_BOX_ATTR_POSITION_STATIC = 0x0000, // Default is static, i.e. as per normal layout
307 wxTEXT_BOX_ATTR_POSITION_RELATIVE = 0x0010, // Relative to the relevant edge
308 wxTEXT_BOX_ATTR_POSITION_ABSOLUTE = 0x0020,
309
310 wxTEXT_BOX_ATTR_POSITION_MASK = 0x00F0
311 };
312
313 /**
314 @class wxTextAttrDimension
315
316 A class representing a rich text dimension, including units and position.
317
318 @library{wxrichtext}
319 @category{richtext}
320
321 @see wxRichTextAttr, wxRichTextCtrl, wxTextAttrDimensions
322 */
323
324 class WXDLLIMPEXP_RICHTEXT wxTextAttrDimension
325 {
326 public:
327 /**
328 Default constructor.
329 */
330 wxTextAttrDimension() { Reset(); }
331 /**
332 Constructor taking value and units flag.
333 */
334 wxTextAttrDimension(int value, wxTextAttrUnits units = wxTEXT_ATTR_UNITS_TENTHS_MM) { m_value = value; m_flags = units|wxTEXT_ATTR_VALUE_VALID; }
335
336 /**
337 Resets the dimension value and flags.
338 */
339 void Reset() { m_value = 0; m_flags = 0; }
340
341 /**
342 Partial equality test.
343 */
344 bool EqPartial(const wxTextAttrDimension& dim) const;
345
346 /** Apply the dimension, but not those identical to @a compareWith if present.
347 */
348 bool Apply(const wxTextAttrDimension& dim, const wxTextAttrDimension* compareWith = NULL);
349
350 /** Collects the attributes that are common to a range of content, building up a note of
351 which attributes are absent in some objects and which clash in some objects.
352 */
353 void CollectCommonAttributes(const wxTextAttrDimension& attr, wxTextAttrDimension& clashingAttr, wxTextAttrDimension& absentAttr);
354
355 /**
356 Equality operator.
357 */
358 bool operator==(const wxTextAttrDimension& dim) const { return m_value == dim.m_value && m_flags == dim.m_flags; }
359
360 /**
361 Returns the integer value of the dimension.
362 */
363 int GetValue() const { return m_value; }
364
365 /**
366 Returns the floating-pointing value of the dimension in mm.
367
368 */
369 float GetValueMM() const { return float(m_value) / 10.0; }
370
371 /**
372 Sets the value of the dimension in mm.
373 */
374 void SetValueMM(float value) { m_value = (int) ((value * 10.0) + 0.5); m_flags |= wxTEXT_ATTR_VALUE_VALID; }
375
376 /**
377 Sets the integer value of the dimension.
378 */
379 void SetValue(int value) { m_value = value; m_flags |= wxTEXT_ATTR_VALUE_VALID; }
380
381 /**
382 Sets the integer value of the dimension, passing dimension flags.
383 */
384 void SetValue(int value, wxTextAttrDimensionFlags flags) { SetValue(value); m_flags = flags; }
385
386 /**
387 Sets the integer value and units.
388 */
389 void SetValue(int value, wxTextAttrUnits units) { m_value = value; m_flags = units | wxTEXT_ATTR_VALUE_VALID; }
390
391 /**
392 Sets the dimension.
393 */
394 void SetValue(const wxTextAttrDimension& dim) { (*this) = dim; }
395
396 /**
397 Gets the units of the dimension.
398 */
399 wxTextAttrUnits GetUnits() const { return (wxTextAttrUnits) (m_flags & wxTEXT_ATTR_UNITS_MASK); }
400
401 /**
402 Sets the units of the dimension.
403 */
404 void SetUnits(wxTextAttrUnits units) { m_flags &= ~wxTEXT_ATTR_UNITS_MASK; m_flags |= units; }
405
406 /**
407 Gets the position flags.
408 */
409 wxTextBoxAttrPosition GetPosition() const { return (wxTextBoxAttrPosition) (m_flags & wxTEXT_BOX_ATTR_POSITION_MASK); }
410
411 /**
412 Sets the position flags.
413 */
414 void SetPosition(wxTextBoxAttrPosition pos) { m_flags &= ~wxTEXT_BOX_ATTR_POSITION_MASK; m_flags |= pos; }
415
416 /**
417 Returns @true if the dimension is valid.
418 */
419 bool IsValid() const { return (m_flags & wxTEXT_ATTR_VALUE_VALID) != 0; }
420
421 /**
422 Sets the valid flag.
423 */
424 void SetValid(bool b) { m_flags &= ~wxTEXT_ATTR_VALUE_VALID_MASK; m_flags |= (b ? wxTEXT_ATTR_VALUE_VALID : 0); }
425
426 /**
427 Gets the dimension flags.
428 */
429 wxTextAttrDimensionFlags GetFlags() const { return m_flags; }
430
431 /**
432 Sets the dimension flags.
433 */
434 void SetFlags(wxTextAttrDimensionFlags flags) { m_flags = flags; }
435
436 int m_value;
437 wxTextAttrDimensionFlags m_flags;
438 };
439
440 /**
441 @class wxTextAttrDimensions
442 A class for left, right, top and bottom dimensions.
443
444 @library{wxrichtext}
445 @category{richtext}
446
447 @see wxRichTextAttr, wxRichTextCtrl, wxTextAttrDimension
448 */
449
450 class WXDLLIMPEXP_RICHTEXT wxTextAttrDimensions
451 {
452 public:
453 /**
454 Default constructor.
455 */
456 wxTextAttrDimensions() {}
457
458 /**
459 Resets the value and flags for all dimensions.
460 */
461 void Reset() { m_left.Reset(); m_top.Reset(); m_right.Reset(); m_bottom.Reset(); }
462
463 /**
464 Equality operator.
465 */
466 bool operator==(const wxTextAttrDimensions& dims) const { return m_left == dims.m_left && m_top == dims.m_top && m_right == dims.m_right && m_bottom == dims.m_bottom; }
467
468 /**
469 Partial equality test.
470
471 */
472 bool EqPartial(const wxTextAttrDimensions& dims) const;
473
474 /**
475 Apply border to 'this', but not if the same as @a compareWith.
476
477 */
478 bool Apply(const wxTextAttrDimensions& dims, const wxTextAttrDimensions* compareWith = NULL);
479
480 /**
481 Collects the attributes that are common to a range of content, building up a note of
482 which attributes are absent in some objects and which clash in some objects.
483
484 */
485 void CollectCommonAttributes(const wxTextAttrDimensions& attr, wxTextAttrDimensions& clashingAttr, wxTextAttrDimensions& absentAttr);
486
487 /**
488 Remove specified attributes from this object.
489 */
490 bool RemoveStyle(const wxTextAttrDimensions& attr);
491
492 /**
493 Gets the left dimension.
494 */
495 const wxTextAttrDimension& GetLeft() const { return m_left; }
496 wxTextAttrDimension& GetLeft() { return m_left; }
497
498 /**
499 Gets the right dimension.
500
501 */
502 const wxTextAttrDimension& GetRight() const { return m_right; }
503 wxTextAttrDimension& GetRight() { return m_right; }
504
505 /**
506 Gets the top dimension.
507
508 */
509 const wxTextAttrDimension& GetTop() const { return m_top; }
510 wxTextAttrDimension& GetTop() { return m_top; }
511
512 /**
513 Gets the bottom dimension.
514
515 */
516 const wxTextAttrDimension& GetBottom() const { return m_bottom; }
517 wxTextAttrDimension& GetBottom() { return m_bottom; }
518
519 wxTextAttrDimension m_left;
520 wxTextAttrDimension m_top;
521 wxTextAttrDimension m_right;
522 wxTextAttrDimension m_bottom;
523 };
524
525 /**
526 @class wxTextAttrSize
527 A class for representing width and height.
528
529 @library{wxrichtext}
530 @category{richtext}
531
532 @see wxRichTextAttr, wxRichTextCtrl, wxTextAttrDimension
533 */
534
535 class WXDLLIMPEXP_RICHTEXT wxTextAttrSize
536 {
537 public:
538 /**
539 Default constructor.
540 */
541 wxTextAttrSize() {}
542
543 /**
544 Resets the width and height dimensions.
545 */
546 void Reset() { m_width.Reset(); m_height.Reset(); }
547
548 /**
549 Equality operator.
550 */
551 bool operator==(const wxTextAttrSize& size) const { return m_width == size.m_width && m_height == size.m_height ; }
552
553 /**
554 Partial equality test.
555 */
556 bool EqPartial(const wxTextAttrSize& dims) const;
557
558 /**
559 Apply border to this object, but not if the same as @a compareWith.
560 */
561 bool Apply(const wxTextAttrSize& dims, const wxTextAttrSize* compareWith = NULL);
562
563 /**
564 Collects the attributes that are common to a range of content, building up a note of
565 which attributes are absent in some objects and which clash in some objects.
566 */
567 void CollectCommonAttributes(const wxTextAttrSize& attr, wxTextAttrSize& clashingAttr, wxTextAttrSize& absentAttr);
568
569 /**
570 Removes the specified attributes from this object.
571 */
572 bool RemoveStyle(const wxTextAttrSize& attr);
573
574 /**
575 Returns the width.
576 */
577 wxTextAttrDimension& GetWidth() { return m_width; }
578 const wxTextAttrDimension& GetWidth() const { return m_width; }
579
580 /**
581 Sets the width.
582 */
583 void SetWidth(int value, wxTextAttrDimensionFlags flags) { m_width.SetValue(value, flags); }
584 /**
585 Sets the width.
586 */
587 void SetWidth(int value, wxTextAttrUnits units) { m_width.SetValue(value, units); }
588 /**
589 Sets the width.
590 */
591 void SetWidth(const wxTextAttrDimension& dim) { m_width.SetValue(dim); }
592
593 /**
594 Gets the height.
595 */
596 wxTextAttrDimension& GetHeight() { return m_height; }
597 const wxTextAttrDimension& GetHeight() const { return m_height; }
598
599 /**
600 Sets the height.
601 */
602 void SetHeight(int value, wxTextAttrDimensionFlags flags) { m_height.SetValue(value, flags); }
603 /**
604 Sets the height.
605 */
606 void SetHeight(int value, wxTextAttrUnits units) { m_height.SetValue(value, units); }
607 /**
608 Sets the height.
609 */
610 void SetHeight(const wxTextAttrDimension& dim) { m_height.SetValue(dim); }
611
612 wxTextAttrDimension m_width;
613 wxTextAttrDimension m_height;
614 };
615
616 /**
617 @class wxTextAttrDimensionConverter
618 A class to make it easier to convert dimensions.
619
620 @library{wxrichtext}
621 @category{richtext}
622
623 @see wxRichTextAttr, wxRichTextCtrl, wxTextAttrDimension
624 */
625
626 class WXDLLIMPEXP_RICHTEXT wxTextAttrDimensionConverter
627 {
628 public:
629 /**
630 Constructor.
631 */
632 wxTextAttrDimensionConverter(wxDC& dc, double scale = 1.0, const wxSize& parentSize = wxDefaultSize);
633 /**
634 Constructor.
635 */
636 wxTextAttrDimensionConverter(int ppi, double scale = 1.0, const wxSize& parentSize = wxDefaultSize);
637
638 /**
639 Gets the pixel size for the given dimension.
640 */
641 int GetPixels(const wxTextAttrDimension& dim, int direction = wxHORIZONTAL) const;
642 /**
643 Gets the mm size for the given dimension.
644 */
645 int GetTenthsMM(const wxTextAttrDimension& dim) const;
646
647 /**
648 Converts tenths of a mm to pixels.
649 */
650 int ConvertTenthsMMToPixels(int units) const;
651 /**
652 Converts pixels to tenths of a mm.
653 */
654 int ConvertPixelsToTenthsMM(int pixels) const;
655
656 int m_ppi;
657 double m_scale;
658 wxSize m_parentSize;
659 };
660
661 /**
662 Border styles, used with wxTextAttrBorder.
663 */
664 enum wxTextAttrBorderStyle
665 {
666 wxTEXT_BOX_ATTR_BORDER_NONE = 0,
667 wxTEXT_BOX_ATTR_BORDER_SOLID = 1,
668 wxTEXT_BOX_ATTR_BORDER_DOTTED = 2,
669 wxTEXT_BOX_ATTR_BORDER_DASHED = 3,
670 wxTEXT_BOX_ATTR_BORDER_DOUBLE = 4,
671 wxTEXT_BOX_ATTR_BORDER_GROOVE = 5,
672 wxTEXT_BOX_ATTR_BORDER_RIDGE = 6,
673 wxTEXT_BOX_ATTR_BORDER_INSET = 7,
674 wxTEXT_BOX_ATTR_BORDER_OUTSET = 8
675 };
676
677 /**
678 Border style presence flags, used with wxTextAttrBorder.
679 */
680 enum wxTextAttrBorderFlags
681 {
682 wxTEXT_BOX_ATTR_BORDER_STYLE = 0x0001,
683 wxTEXT_BOX_ATTR_BORDER_COLOUR = 0x0002
684 };
685
686 /**
687 Border width symbols for qualitative widths, used with wxTextAttrBorder.
688 */
689 enum wxTextAttrBorderWidth
690 {
691 wxTEXT_BOX_ATTR_BORDER_THIN = -1,
692 wxTEXT_BOX_ATTR_BORDER_MEDIUM = -2,
693 wxTEXT_BOX_ATTR_BORDER_THICK = -3
694 };
695
696 /**
697 Float styles.
698 */
699 enum wxTextBoxAttrFloatStyle
700 {
701 wxTEXT_BOX_ATTR_FLOAT_NONE = 0,
702 wxTEXT_BOX_ATTR_FLOAT_LEFT = 1,
703 wxTEXT_BOX_ATTR_FLOAT_RIGHT = 2
704 };
705
706 /**
707 Clear styles.
708 */
709 enum wxTextBoxAttrClearStyle
710 {
711 wxTEXT_BOX_ATTR_CLEAR_NONE = 0,
712 wxTEXT_BOX_ATTR_CLEAR_LEFT = 1,
713 wxTEXT_BOX_ATTR_CLEAR_RIGHT = 2,
714 wxTEXT_BOX_ATTR_CLEAR_BOTH = 3
715 };
716
717 /**
718 Collapse mode styles. TODO: can they be switched on per side?
719 */
720 enum wxTextBoxAttrCollapseMode
721 {
722 wxTEXT_BOX_ATTR_COLLAPSE_NONE = 0,
723 wxTEXT_BOX_ATTR_COLLAPSE_FULL = 1
724 };
725
726 /**
727 Vertical alignment values.
728 */
729 enum wxTextBoxAttrVerticalAlignment
730 {
731 wxTEXT_BOX_ATTR_VERTICAL_ALIGNMENT_NONE = 0,
732 wxTEXT_BOX_ATTR_VERTICAL_ALIGNMENT_TOP = 1,
733 wxTEXT_BOX_ATTR_VERTICAL_ALIGNMENT_CENTRE = 2,
734 wxTEXT_BOX_ATTR_VERTICAL_ALIGNMENT_BOTTOM = 3
735 };
736
737 /**
738 @class wxTextAttrBorder
739 A class representing a rich text object border.
740
741 @library{wxrichtext}
742 @category{richtext}
743
744 @see wxRichTextAttr, wxRichTextCtrl, wxRichTextAttrBorders
745 */
746
747 class WXDLLIMPEXP_RICHTEXT wxTextAttrBorder
748 {
749 public:
750 /**
751 Default constructor.
752 */
753 wxTextAttrBorder() { Reset(); }
754
755 /**
756 Equality operator.
757 */
758 bool operator==(const wxTextAttrBorder& border) const
759 {
760 return m_flags == border.m_flags && m_borderStyle == border.m_borderStyle &&
761 m_borderColour == border.m_borderColour && m_borderWidth == border.m_borderWidth;
762 }
763
764 /**
765 Resets the border style, colour, width and flags.
766 */
767 void Reset() { m_borderStyle = 0; m_borderColour = 0; m_flags = 0; m_borderWidth.Reset(); }
768
769 /**
770 Partial equality test.
771 */
772 bool EqPartial(const wxTextAttrBorder& border) const;
773
774 /**
775 Applies the border to this object, but not if the same as @a compareWith.
776
777 */
778 bool Apply(const wxTextAttrBorder& border, const wxTextAttrBorder* compareWith = NULL);
779
780 /**
781 Removes the specified attributes from this object.
782 */
783 bool RemoveStyle(const wxTextAttrBorder& attr);
784
785 /**
786 Collects the attributes that are common to a range of content, building up a note of
787 which attributes are absent in some objects and which clash in some objects.
788 */
789 void CollectCommonAttributes(const wxTextAttrBorder& attr, wxTextAttrBorder& clashingAttr, wxTextAttrBorder& absentAttr);
790
791 /**
792 Sets the border style.
793 */
794 void SetStyle(int style) { m_borderStyle = style; m_flags |= wxTEXT_BOX_ATTR_BORDER_STYLE; }
795
796 /**
797 Gets the border style.
798
799 */
800 int GetStyle() const { return m_borderStyle; }
801
802 /**
803 Sets the border colour.
804 */
805 void SetColour(unsigned long colour) { m_borderColour = colour; m_flags |= wxTEXT_BOX_ATTR_BORDER_COLOUR; }
806
807 /**
808 Sets the border colour.
809 */
810 void SetColour(const wxColour& colour) { m_borderColour = colour.GetRGB(); m_flags |= wxTEXT_BOX_ATTR_BORDER_COLOUR; }
811
812 /**
813 Gets the colour as a long.
814 */
815 unsigned long GetColourLong() const { return m_borderColour; }
816
817 /**
818 Gets the colour.
819 */
820 wxColour GetColour() const { return wxColour(m_borderColour); }
821
822 /**
823 Gets the border width.
824 */
825 wxTextAttrDimension& GetWidth() { return m_borderWidth; }
826 const wxTextAttrDimension& GetWidth() const { return m_borderWidth; }
827
828 /**
829 Sets the border width.
830 */
831 void SetWidth(const wxTextAttrDimension& width) { m_borderWidth = width; }
832 /**
833 Sets the border width.
834 */
835 void SetWidth(int value, wxTextAttrUnits units = wxTEXT_ATTR_UNITS_TENTHS_MM) { SetWidth(wxTextAttrDimension(value, units)); }
836
837 /**
838 True if the border has a valid style.
839 */
840 bool HasStyle() const { return (m_flags & wxTEXT_BOX_ATTR_BORDER_STYLE) != 0; }
841
842 /**
843 True if the border has a valid colour.
844 */
845 bool HasColour() const { return (m_flags & wxTEXT_BOX_ATTR_BORDER_COLOUR) != 0; }
846
847 /**
848 True if the border has a valid width.
849 */
850 bool HasWidth() const { return m_borderWidth.IsValid(); }
851
852 /**
853 True if the border is valid.
854 */
855 bool IsValid() const { return HasWidth(); }
856
857 /**
858 Set the valid flag for this border.
859 */
860 void MakeValid() { m_borderWidth.SetValid(true); }
861
862 /**
863 Returns the border flags.
864 */
865 int GetFlags() const { return m_flags; }
866
867 /**
868 Sets the border flags.
869 */
870 void SetFlags(int flags) { m_flags = flags; }
871
872 /**
873 Adds a border flag.
874 */
875 void AddFlag(int flag) { m_flags |= flag; }
876
877 /**
878 Removes a border flag.
879 */
880 void RemoveFlag(int flag) { m_flags &= ~flag; }
881
882 int m_borderStyle;
883 unsigned long m_borderColour;
884 wxTextAttrDimension m_borderWidth;
885 int m_flags;
886 };
887
888 /**
889 @class wxTextAttrBorders
890 A class representing a rich text object's borders.
891
892 @library{wxrichtext}
893 @category{richtext}
894
895 @see wxRichTextAttr, wxRichTextCtrl, wxRichTextAttrBorder
896 */
897
898 class WXDLLIMPEXP_RICHTEXT wxTextAttrBorders
899 {
900 public:
901 /**
902 Default constructor.
903 */
904 wxTextAttrBorders() { }
905
906 /**
907 Equality operator.
908 */
909 bool operator==(const wxTextAttrBorders& borders) const
910 {
911 return m_left == borders.m_left && m_right == borders.m_right &&
912 m_top == borders.m_top && m_bottom == borders.m_bottom;
913 }
914
915 /**
916 Sets the style of all borders.
917 */
918 void SetStyle(int style);
919
920 /**
921 Sets colour of all borders.
922 */
923 void SetColour(unsigned long colour);
924
925 /**
926 Sets the colour for all borders.
927 */
928 void SetColour(const wxColour& colour);
929
930 /**
931 Sets the width of all borders.
932 */
933 void SetWidth(const wxTextAttrDimension& width);
934
935 /**
936 Sets the width of all borders.
937 */
938 void SetWidth(int value, wxTextAttrUnits units = wxTEXT_ATTR_UNITS_TENTHS_MM) { SetWidth(wxTextAttrDimension(value, units)); }
939
940 /**
941 Resets all borders.
942 */
943 void Reset() { m_left.Reset(); m_right.Reset(); m_top.Reset(); m_bottom.Reset(); }
944
945 /**
946 Partial equality test.
947 */
948 bool EqPartial(const wxTextAttrBorders& borders) const;
949
950 /**
951 Applies border to this object, but not if the same as @a compareWith.
952 */
953 bool Apply(const wxTextAttrBorders& borders, const wxTextAttrBorders* compareWith = NULL);
954
955 /**
956 Removes the specified attributes from this object.
957 */
958 bool RemoveStyle(const wxTextAttrBorders& attr);
959
960 /**
961 Collects the attributes that are common to a range of content, building up a note of
962 which attributes are absent in some objects and which clash in some objects.
963 */
964 void CollectCommonAttributes(const wxTextAttrBorders& attr, wxTextAttrBorders& clashingAttr, wxTextAttrBorders& absentAttr);
965
966 /**
967 Returns @true if all borders are valid.
968 */
969 bool IsValid() const { return m_left.IsValid() || m_right.IsValid() || m_top.IsValid() || m_bottom.IsValid(); }
970
971 /**
972 Returns the left border.
973 */
974 const wxTextAttrBorder& GetLeft() const { return m_left; }
975 wxTextAttrBorder& GetLeft() { return m_left; }
976
977 /**
978 Returns the right border.
979 */
980 const wxTextAttrBorder& GetRight() const { return m_right; }
981 wxTextAttrBorder& GetRight() { return m_right; }
982
983 /**
984 Returns the top border.
985 */
986 const wxTextAttrBorder& GetTop() const { return m_top; }
987 wxTextAttrBorder& GetTop() { return m_top; }
988
989 /**
990 Returns the bottom border.
991 */
992 const wxTextAttrBorder& GetBottom() const { return m_bottom; }
993 wxTextAttrBorder& GetBottom() { return m_bottom; }
994
995 wxTextAttrBorder m_left, m_right, m_top, m_bottom;
996
997 };
998
999 /**
1000 @class wxTextBoxAttr
1001 A class representing the box attributes of a rich text object.
1002
1003 @library{wxrichtext}
1004 @category{richtext}
1005
1006 @see wxRichTextAttr, wxRichTextCtrl
1007 */
1008
1009 class WXDLLIMPEXP_RICHTEXT wxTextBoxAttr
1010 {
1011 public:
1012 /**
1013 Default constructor.
1014 */
1015 wxTextBoxAttr() { Init(); }
1016
1017 /**
1018 Copy constructor.
1019 */
1020 wxTextBoxAttr(const wxTextBoxAttr& attr) { Init(); (*this) = attr; }
1021
1022 /**
1023 Initialises this object.
1024 */
1025 void Init() { Reset(); }
1026
1027 /**
1028 Resets this object.
1029 */
1030 void Reset();
1031
1032 // Copy. Unnecessary since we let it do a binary copy
1033 //void Copy(const wxTextBoxAttr& attr);
1034
1035 // Assignment
1036 //void operator= (const wxTextBoxAttr& attr);
1037
1038 /**
1039 Equality test.
1040 */
1041 bool operator== (const wxTextBoxAttr& attr) const;
1042
1043 /**
1044 Partial equality test, ignoring unset attributes.
1045
1046 */
1047 bool EqPartial(const wxTextBoxAttr& attr) const;
1048
1049 /**
1050 Merges the given attributes. If @a compareWith is non-NULL, then it will be used
1051 to mask out those attributes that are the same in style and @a compareWith, for
1052 situations where we don't want to explicitly set inherited attributes.
1053 */
1054 bool Apply(const wxTextBoxAttr& style, const wxTextBoxAttr* compareWith = NULL);
1055
1056 /**
1057 Collects the attributes that are common to a range of content, building up a note of
1058 which attributes are absent in some objects and which clash in some objects.
1059 */
1060 void CollectCommonAttributes(const wxTextBoxAttr& attr, wxTextBoxAttr& clashingAttr, wxTextBoxAttr& absentAttr);
1061
1062 /**
1063 Removes the specified attributes from this object.
1064 */
1065 bool RemoveStyle(const wxTextBoxAttr& attr);
1066
1067 /**
1068 Sets the flags.
1069 */
1070 void SetFlags(int flags) { m_flags = flags; }
1071
1072 /**
1073 Returns the flags.
1074 */
1075 int GetFlags() const { return m_flags; }
1076
1077 /**
1078 Is this flag present?
1079 */
1080 bool HasFlag(wxTextBoxAttrFlags flag) const { return (m_flags & flag) != 0; }
1081
1082 /**
1083 Removes this flag.
1084 */
1085 void RemoveFlag(wxTextBoxAttrFlags flag) { m_flags &= ~flag; }
1086
1087 /**
1088 Adds this flag.
1089 */
1090 void AddFlag(wxTextBoxAttrFlags flag) { m_flags |= flag; }
1091
1092 /**
1093 Returns @true if no attributes are set.
1094 */
1095 bool IsDefault() const;
1096
1097 /**
1098 Returns the float mode.
1099 */
1100 wxTextBoxAttrFloatStyle GetFloatMode() const { return m_floatMode; }
1101
1102 /**
1103 Sets the float mode.
1104 */
1105 void SetFloatMode(wxTextBoxAttrFloatStyle mode) { m_floatMode = mode; m_flags |= wxTEXT_BOX_ATTR_FLOAT; }
1106
1107 /**
1108 Returns @true if float mode is active.
1109 */
1110 bool HasFloatMode() const { return HasFlag(wxTEXT_BOX_ATTR_FLOAT); }
1111
1112 /**
1113 Returns @true if this object is floating.
1114 */
1115 bool IsFloating() const { return HasFloatMode() && GetFloatMode() != wxTEXT_BOX_ATTR_FLOAT_NONE; }
1116
1117 /**
1118 Returns the clear mode - whether to wrap text after object. Currently unimplemented.
1119 */
1120 wxTextBoxAttrClearStyle GetClearMode() const { return m_clearMode; }
1121
1122 /**
1123 Set the clear mode. Currently unimplemented.
1124 */
1125 void SetClearMode(wxTextBoxAttrClearStyle mode) { m_clearMode = mode; m_flags |= wxTEXT_BOX_ATTR_CLEAR; }
1126
1127 /**
1128 Returns @true if we have a clear flag.
1129 */
1130 bool HasClearMode() const { return HasFlag(wxTEXT_BOX_ATTR_CLEAR); }
1131
1132 /**
1133 Returns the collapse mode - whether to collapse borders. Currently unimplemented.
1134 */
1135 wxTextBoxAttrCollapseMode GetCollapseBorders() const { return m_collapseMode; }
1136
1137 /**
1138 Sets the collapse mode - whether to collapse borders. Currently unimplemented.
1139 */
1140 void SetCollapseBorders(wxTextBoxAttrCollapseMode collapse) { m_collapseMode = collapse; m_flags |= wxTEXT_BOX_ATTR_COLLAPSE_BORDERS; }
1141
1142 /**
1143 Returns @true if the collapse borders flag is present.
1144 */
1145 bool HasCollapseBorders() const { return HasFlag(wxTEXT_BOX_ATTR_COLLAPSE_BORDERS); }
1146
1147 /**
1148 Returns the vertical alignment.
1149 */
1150 wxTextBoxAttrVerticalAlignment GetVerticalAlignment() const { return m_verticalAlignment; }
1151
1152 /**
1153 Sets the vertical alignment.
1154 */
1155 void SetVerticalAlignment(wxTextBoxAttrVerticalAlignment verticalAlignment) { m_verticalAlignment = verticalAlignment; m_flags |= wxTEXT_BOX_ATTR_VERTICAL_ALIGNMENT; }
1156
1157 /**
1158 Returns @true if a vertical alignment flag is present.
1159 */
1160 bool HasVerticalAlignment() const { return HasFlag(wxTEXT_BOX_ATTR_VERTICAL_ALIGNMENT); }
1161
1162 /**
1163 Returns the margin values.
1164 */
1165 wxTextAttrDimensions& GetMargins() { return m_margins; }
1166 const wxTextAttrDimensions& GetMargins() const { return m_margins; }
1167
1168 /**
1169 Returns the left margin.
1170 */
1171 wxTextAttrDimension& GetLeftMargin() { return m_margins.m_left; }
1172 const wxTextAttrDimension& GetLeftMargin() const { return m_margins.m_left; }
1173
1174 /**
1175 Returns the right margin.
1176 */
1177 wxTextAttrDimension& GetRightMargin() { return m_margins.m_right; }
1178 const wxTextAttrDimension& GetRightMargin() const { return m_margins.m_right; }
1179
1180 /**
1181 Returns the top margin.
1182 */
1183 wxTextAttrDimension& GetTopMargin() { return m_margins.m_top; }
1184 const wxTextAttrDimension& GetTopMargin() const { return m_margins.m_top; }
1185
1186 /**
1187 Returns the bottom margin.
1188 */
1189 wxTextAttrDimension& GetBottomMargin() { return m_margins.m_bottom; }
1190 const wxTextAttrDimension& GetBottomMargin() const { return m_margins.m_bottom; }
1191
1192 /**
1193 Returns the position.
1194 */
1195 wxTextAttrDimensions& GetPosition() { return m_position; }
1196 const wxTextAttrDimensions& GetPosition() const { return m_position; }
1197
1198 /**
1199 Returns the left position.
1200 */
1201 wxTextAttrDimension& GetLeft() { return m_position.m_left; }
1202 const wxTextAttrDimension& GetLeft() const { return m_position.m_left; }
1203
1204 /**
1205 Returns the right position.
1206 */
1207 wxTextAttrDimension& GetRight() { return m_position.m_right; }
1208 const wxTextAttrDimension& GetRight() const { return m_position.m_right; }
1209
1210 /**
1211 Returns the top position.
1212 */
1213 wxTextAttrDimension& GetTop() { return m_position.m_top; }
1214 const wxTextAttrDimension& GetTop() const { return m_position.m_top; }
1215
1216 /**
1217 Returns the bottom position.
1218 */
1219 wxTextAttrDimension& GetBottom() { return m_position.m_bottom; }
1220 const wxTextAttrDimension& GetBottom() const { return m_position.m_bottom; }
1221
1222 /**
1223 Returns the padding values.
1224 */
1225 wxTextAttrDimensions& GetPadding() { return m_padding; }
1226 const wxTextAttrDimensions& GetPadding() const { return m_padding; }
1227
1228 /**
1229 Returns the left padding value.
1230 */
1231 wxTextAttrDimension& GetLeftPadding() { return m_padding.m_left; }
1232 const wxTextAttrDimension& GetLeftPadding() const { return m_padding.m_left; }
1233
1234 /**
1235 Returns the right padding value.
1236 */
1237 wxTextAttrDimension& GetRightPadding() { return m_padding.m_right; }
1238 const wxTextAttrDimension& GetRightPadding() const { return m_padding.m_right; }
1239
1240 /**
1241 Returns the top padding value.
1242 */
1243 wxTextAttrDimension& GetTopPadding() { return m_padding.m_top; }
1244 const wxTextAttrDimension& GetTopPadding() const { return m_padding.m_top; }
1245
1246 /**
1247 Returns the bottom padding value.
1248 */
1249 wxTextAttrDimension& GetBottomPadding() { return m_padding.m_bottom; }
1250 const wxTextAttrDimension& GetBottomPadding() const { return m_padding.m_bottom; }
1251
1252 /**
1253 Returns the borders.
1254 */
1255 wxTextAttrBorders& GetBorder() { return m_border; }
1256 const wxTextAttrBorders& GetBorder() const { return m_border; }
1257
1258 /**
1259 Returns the left border.
1260 */
1261 wxTextAttrBorder& GetLeftBorder() { return m_border.m_left; }
1262 const wxTextAttrBorder& GetLeftBorder() const { return m_border.m_left; }
1263
1264 /**
1265 Returns the top border.
1266 */
1267 wxTextAttrBorder& GetTopBorder() { return m_border.m_top; }
1268 const wxTextAttrBorder& GetTopBorder() const { return m_border.m_top; }
1269
1270 /**
1271 Returns the right border.
1272 */
1273 wxTextAttrBorder& GetRightBorder() { return m_border.m_right; }
1274 const wxTextAttrBorder& GetRightBorder() const { return m_border.m_right; }
1275
1276 /**
1277 Returns the bottom border.
1278 */
1279 wxTextAttrBorder& GetBottomBorder() { return m_border.m_bottom; }
1280 const wxTextAttrBorder& GetBottomBorder() const { return m_border.m_bottom; }
1281
1282 /**
1283 Returns the outline.
1284 */
1285 wxTextAttrBorders& GetOutline() { return m_outline; }
1286 const wxTextAttrBorders& GetOutline() const { return m_outline; }
1287
1288 /**
1289 Returns the left outline.
1290 */
1291 wxTextAttrBorder& GetLeftOutline() { return m_outline.m_left; }
1292 const wxTextAttrBorder& GetLeftOutline() const { return m_outline.m_left; }
1293
1294 /**
1295 Returns the top outline.
1296 */
1297 wxTextAttrBorder& GetTopOutline() { return m_outline.m_top; }
1298 const wxTextAttrBorder& GetTopOutline() const { return m_outline.m_top; }
1299
1300 /**
1301 Returns the right outline.
1302 */
1303 wxTextAttrBorder& GetRightOutline() { return m_outline.m_right; }
1304 const wxTextAttrBorder& GetRightOutline() const { return m_outline.m_right; }
1305
1306 /**
1307 Returns the bottom outline.
1308 */
1309 wxTextAttrBorder& GetBottomOutline() { return m_outline.m_bottom; }
1310 const wxTextAttrBorder& GetBottomOutline() const { return m_outline.m_bottom; }
1311
1312 /**
1313 Returns the object size.
1314 */
1315 wxTextAttrSize& GetSize() { return m_size; }
1316 const wxTextAttrSize& GetSize() const { return m_size; }
1317
1318 /**
1319 Sets the object size.
1320 */
1321 void SetSize(const wxTextAttrSize& sz) { m_size = sz; }
1322
1323 /**
1324 Returns the object width.
1325 */
1326 wxTextAttrDimension& GetWidth() { return m_size.m_width; }
1327 const wxTextAttrDimension& GetWidth() const { return m_size.m_width; }
1328
1329 /**
1330 Returns the object height.
1331 */
1332 wxTextAttrDimension& GetHeight() { return m_size.m_height; }
1333 const wxTextAttrDimension& GetHeight() const { return m_size.m_height; }
1334
1335 public:
1336
1337 int m_flags;
1338
1339 wxTextAttrDimensions m_margins;
1340 wxTextAttrDimensions m_padding;
1341 wxTextAttrDimensions m_position;
1342
1343 wxTextAttrSize m_size;
1344
1345 wxTextAttrBorders m_border;
1346 wxTextAttrBorders m_outline;
1347
1348 wxTextBoxAttrFloatStyle m_floatMode;
1349 wxTextBoxAttrClearStyle m_clearMode;
1350 wxTextBoxAttrCollapseMode m_collapseMode;
1351 wxTextBoxAttrVerticalAlignment m_verticalAlignment;
1352 };
1353
1354 /**
1355 @class wxRichTextAttr
1356 A class representing enhanced attributes for rich text objects.
1357 This adds a wxTextBoxAttr member to the basic wxTextAttr class.
1358
1359 @library{wxrichtext}
1360 @category{richtext}
1361
1362 @see wxRichTextAttr, wxTextBoxAttr, wxRichTextCtrl
1363 */
1364
1365 class WXDLLIMPEXP_RICHTEXT wxRichTextAttr: public wxTextAttr
1366 {
1367 public:
1368 /**
1369 Constructor taking a wxTextAttr.
1370 */
1371 wxRichTextAttr(const wxTextAttr& attr) { wxTextAttr::Copy(attr); }
1372
1373 /**
1374 Copy constructor.
1375 */
1376 wxRichTextAttr(const wxRichTextAttr& attr): wxTextAttr() { Copy(attr); }
1377
1378 /**
1379 Default constructor.
1380 */
1381 wxRichTextAttr() {}
1382
1383 /**
1384 Copy function.
1385 */
1386 void Copy(const wxRichTextAttr& attr);
1387
1388 /**
1389 Assignment operator.
1390 */
1391 void operator=(const wxRichTextAttr& attr) { Copy(attr); }
1392
1393 /**
1394 Assignment operator.
1395 */
1396 void operator=(const wxTextAttr& attr) { wxTextAttr::Copy(attr); }
1397
1398 /**
1399 Equality test.
1400 */
1401 bool operator==(const wxRichTextAttr& attr) const;
1402
1403 /**
1404 Partial equality test taking comparison object into account.
1405 */
1406 bool EqPartial(const wxRichTextAttr& attr) const;
1407
1408 /**
1409 Merges the given attributes. If @a compareWith
1410 is non-NULL, then it will be used to mask out those attributes that are the same in style
1411 and @a compareWith, for situations where we don't want to explicitly set inherited attributes.
1412 */
1413 bool Apply(const wxRichTextAttr& style, const wxRichTextAttr* compareWith = NULL);
1414
1415 /**
1416 Collects the attributes that are common to a range of content, building up a note of
1417 which attributes are absent in some objects and which clash in some objects.
1418 */
1419 void CollectCommonAttributes(const wxRichTextAttr& attr, wxRichTextAttr& clashingAttr, wxRichTextAttr& absentAttr);
1420
1421 /**
1422 Removes the specified attributes from this object.
1423 */
1424 bool RemoveStyle(const wxRichTextAttr& attr);
1425
1426 /**
1427 Returns the text box attributes.
1428 */
1429 wxTextBoxAttr& GetTextBoxAttr() { return m_textBoxAttr; }
1430 const wxTextBoxAttr& GetTextBoxAttr() const { return m_textBoxAttr; }
1431
1432 /**
1433 Set the text box attributes.
1434 */
1435 void SetTextBoxAttr(const wxTextBoxAttr& attr) { m_textBoxAttr = attr; }
1436
1437 wxTextBoxAttr m_textBoxAttr;
1438 };
1439
1440 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxVariant, wxRichTextVariantArray, WXDLLIMPEXP_RICHTEXT);
1441
1442 /**
1443 @class wxRichTextProperties
1444 A simple property class using wxVariants. This is used to give each rich text object the
1445 ability to store custom properties that can be used by the application.
1446
1447 @library{wxrichtext}
1448 @category{richtext}
1449
1450 @see wxRichTextBuffer, wxRichTextObject, wxRichTextCtrl
1451 */
1452
1453 class WXDLLIMPEXP_RICHTEXT wxRichTextProperties: public wxObject
1454 {
1455 DECLARE_DYNAMIC_CLASS(wxRichTextProperties)
1456 public:
1457
1458 /**
1459 Default constructor.
1460 */
1461 wxRichTextProperties() {}
1462
1463 /**
1464 Copy constructor.
1465 */
1466 wxRichTextProperties(const wxRichTextProperties& props): wxObject() { Copy(props); }
1467
1468 /**
1469 Assignment operator.
1470 */
1471 void operator=(const wxRichTextProperties& props) { Copy(props); }
1472
1473 /**
1474 Equality operator.
1475 */
1476 bool operator==(const wxRichTextProperties& props) const;
1477
1478 /**
1479 Copies from @a props.
1480 */
1481 void Copy(const wxRichTextProperties& props) { m_properties = props.m_properties; }
1482
1483 /**
1484 Returns the variant at the given index.
1485 */
1486 const wxVariant& operator[](size_t idx) const { return m_properties[idx]; }
1487
1488 /**
1489 Returns the variant at the given index.
1490 */
1491 wxVariant& operator[](size_t idx) { return m_properties[idx]; }
1492
1493 /**
1494 Clears the properties.
1495 */
1496 void Clear() { m_properties.Clear(); }
1497
1498 /**
1499 Returns the array of variants implementing the properties.
1500 */
1501 const wxRichTextVariantArray& GetProperties() const { return m_properties; }
1502
1503 /**
1504 Returns the array of variants implementing the properties.
1505 */
1506 wxRichTextVariantArray& GetProperties() { return m_properties; }
1507
1508 /**
1509 Sets the array of variants.
1510 */
1511 void SetProperties(const wxRichTextVariantArray& props) { m_properties = props; }
1512
1513 /**
1514 Returns all the property names.
1515 */
1516 wxArrayString GetPropertyNames() const;
1517
1518 /**
1519 Returns a count of the properties.
1520 */
1521 size_t GetCount() const { return m_properties.GetCount(); }
1522
1523 /**
1524 Returns @true if the given property is found.
1525 */
1526 bool HasProperty(const wxString& name) const { return Find(name) != -1; }
1527
1528 /**
1529 Finds the given property.
1530 */
1531 int Find(const wxString& name) const;
1532
1533 /**
1534 Gets the property variant by name.
1535 */
1536 const wxVariant& GetProperty(const wxString& name) const;
1537
1538 /**
1539 Finds or creates a property with the given name, returning a pointer to the variant.
1540 */
1541 wxVariant* FindOrCreateProperty(const wxString& name);
1542
1543 /**
1544 Gets the value of the named property as a string.
1545 */
1546 wxString GetPropertyString(const wxString& name) const;
1547
1548 /**
1549 Gets the value of the named property as a long integer.
1550 */
1551 long GetPropertyLong(const wxString& name) const;
1552
1553 /**
1554 Gets the value of the named property as a boolean.
1555 */
1556 bool GetPropertyBool(const wxString& name) const;
1557
1558 /**
1559 Gets the value of the named property as a double.
1560 */
1561 double GetPropertyDouble(const wxString& name) const;
1562
1563 /**
1564 Sets the property by passing a variant which contains a name and value.
1565 */
1566 void SetProperty(const wxVariant& variant);
1567
1568 /**
1569 Sets a property by name and variant.
1570 */
1571 void SetProperty(const wxString& name, const wxVariant& variant);
1572
1573 /**
1574 Sets a property by name and string value.
1575 */
1576 void SetProperty(const wxString& name, const wxString& value);
1577
1578 /**
1579 Sets property by name and long integer value.
1580 */
1581 void SetProperty(const wxString& name, long value);
1582
1583 /**
1584 Sets property by name and double value.
1585 */
1586 void SetProperty(const wxString& name, double value);
1587
1588 /**
1589 Sets property by name and boolean value.
1590 */
1591 void SetProperty(const wxString& name, bool value);
1592
1593 protected:
1594 wxRichTextVariantArray m_properties;
1595 };
1596
1597
1598 /**
1599 @class wxRichTextFontTable
1600 Manages quick access to a pool of fonts for rendering rich text.
1601
1602 @library{wxrichtext}
1603 @category{richtext}
1604
1605 @see wxRichTextBuffer, wxRichTextCtrl
1606 */
1607
1608 class WXDLLIMPEXP_RICHTEXT wxRichTextFontTable: public wxObject
1609 {
1610 public:
1611 /**
1612 Default constructor.
1613 */
1614 wxRichTextFontTable();
1615
1616 /**
1617 Copy constructor.
1618 */
1619 wxRichTextFontTable(const wxRichTextFontTable& table);
1620 virtual ~wxRichTextFontTable();
1621
1622 /**
1623 Returns @true if the font table is valid.
1624 */
1625 bool IsOk() const { return m_refData != NULL; }
1626
1627 /**
1628 Finds a font for the given attribute object.
1629 */
1630 wxFont FindFont(const wxRichTextAttr& fontSpec);
1631
1632 /**
1633 Clears the font table.
1634 */
1635 void Clear();
1636
1637 /**
1638 Assignment operator.
1639 */
1640 void operator= (const wxRichTextFontTable& table);
1641
1642 /**
1643 Equality operator.
1644 */
1645 bool operator == (const wxRichTextFontTable& table) const;
1646
1647 /**
1648 Inequality operator.
1649 */
1650 bool operator != (const wxRichTextFontTable& table) const { return !(*this == table); }
1651
1652 protected:
1653
1654 DECLARE_DYNAMIC_CLASS(wxRichTextFontTable)
1655 };
1656
1657 /**
1658 @class wxRichTextRange
1659
1660 This stores beginning and end positions for a range of data.
1661
1662 @library{wxrichtext}
1663 @category{richtext}
1664
1665 @see wxRichTextBuffer, wxRichTextCtrl
1666 */
1667
1668 class WXDLLIMPEXP_RICHTEXT wxRichTextRange
1669 {
1670 public:
1671 // Constructors
1672
1673 /**
1674 Default constructor.
1675 */
1676 wxRichTextRange() { m_start = 0; m_end = 0; }
1677
1678 /**
1679 Constructor taking start and end positions.
1680 */
1681 wxRichTextRange(long start, long end) { m_start = start; m_end = end; }
1682
1683 /**
1684 Copy constructor.
1685 */
1686 wxRichTextRange(const wxRichTextRange& range) { m_start = range.m_start; m_end = range.m_end; }
1687 ~wxRichTextRange() {}
1688
1689 /**
1690 Assigns @a range to this range.
1691 */
1692 void operator =(const wxRichTextRange& range) { m_start = range.m_start; m_end = range.m_end; }
1693
1694 /**
1695 Equality operator. Returns @true if @a range is the same as this range.
1696 */
1697 bool operator ==(const wxRichTextRange& range) const { return (m_start == range.m_start && m_end == range.m_end); }
1698
1699 /**
1700 Inequality operator.
1701 */
1702 bool operator !=(const wxRichTextRange& range) const { return (m_start != range.m_start || m_end != range.m_end); }
1703
1704 /**
1705 Subtracts a range from this range.
1706 */
1707 wxRichTextRange operator -(const wxRichTextRange& range) const { return wxRichTextRange(m_start - range.m_start, m_end - range.m_end); }
1708
1709 /**
1710 Adds a range to this range.
1711 */
1712 wxRichTextRange operator +(const wxRichTextRange& range) const { return wxRichTextRange(m_start + range.m_start, m_end + range.m_end); }
1713
1714 /**
1715 Sets the range start and end positions.
1716 */
1717 void SetRange(long start, long end) { m_start = start; m_end = end; }
1718
1719 /**
1720 Sets the start position.
1721 */
1722 void SetStart(long start) { m_start = start; }
1723
1724 /**
1725 Returns the start position.
1726 */
1727 long GetStart() const { return m_start; }
1728
1729 /**
1730 Sets the end position.
1731 */
1732 void SetEnd(long end) { m_end = end; }
1733
1734 /**
1735 Gets the end position.
1736 */
1737 long GetEnd() const { return m_end; }
1738
1739 /**
1740 Returns true if this range is completely outside @a range.
1741 */
1742 bool IsOutside(const wxRichTextRange& range) const { return range.m_start > m_end || range.m_end < m_start; }
1743
1744 /**
1745 Returns true if this range is completely within @a range.
1746 */
1747 bool IsWithin(const wxRichTextRange& range) const { return m_start >= range.m_start && m_end <= range.m_end; }
1748
1749 /**
1750 Returns true if @a pos was within the range. Does not match if the range is empty.
1751 */
1752 bool Contains(long pos) const { return pos >= m_start && pos <= m_end ; }
1753
1754 /**
1755 Limit this range to be within @a range.
1756 */
1757 bool LimitTo(const wxRichTextRange& range) ;
1758
1759 /**
1760 Gets the length of the range.
1761 */
1762 long GetLength() const { return m_end - m_start + 1; }
1763
1764 /**
1765 Swaps the start and end.
1766 */
1767 void Swap() { long tmp = m_start; m_start = m_end; m_end = tmp; }
1768
1769 /**
1770 Converts the API-standard range, whose end is one past the last character in
1771 the range, to the internal form, which uses the first and last character
1772 positions of the range. In other words, one is subtracted from the end position.
1773 (n, n) is the range of a single character.
1774 */
1775 wxRichTextRange ToInternal() const { return wxRichTextRange(m_start, m_end-1); }
1776
1777 /**
1778 Converts the internal range, which uses the first and last character positions
1779 of the range, to the API-standard range, whose end is one past the last
1780 character in the range. In other words, one is added to the end position.
1781 (n, n+1) is the range of a single character.
1782 */
1783 wxRichTextRange FromInternal() const { return wxRichTextRange(m_start, m_end+1); }
1784
1785 protected:
1786 long m_start;
1787 long m_end;
1788 };
1789
1790 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxRichTextRange, wxRichTextRangeArray, WXDLLIMPEXP_RICHTEXT);
1791
1792 #define wxRICHTEXT_ALL wxRichTextRange(-2, -2)
1793 #define wxRICHTEXT_NONE wxRichTextRange(-1, -1)
1794
1795 #define wxRICHTEXT_NO_SELECTION wxRichTextRange(-2, -2)
1796
1797 /**
1798 @class wxRichTextSelection
1799
1800 Stores selection information. The selection does not have to be contiguous, though currently non-contiguous
1801 selections are only supported for a range of table cells (a geometric block of cells can consist
1802 of a set of non-contiguous positions).
1803
1804 The selection consists of an array of ranges, and the container that is the context for the selection. It
1805 follows that a single selection object can only represent ranges with the same parent container.
1806
1807 @library{wxrichtext}
1808 @category{richtext}
1809
1810 @see wxRichTextBuffer, wxRichTextCtrl
1811 */
1812
1813 class WXDLLIMPEXP_RICHTEXT wxRichTextSelection
1814 {
1815 public:
1816 /**
1817 Copy constructor.
1818 */
1819 wxRichTextSelection(const wxRichTextSelection& sel) { Copy(sel); }
1820
1821 /**
1822 Creates a selection from a range and a container.
1823 */
1824 wxRichTextSelection(const wxRichTextRange& range, wxRichTextParagraphLayoutBox* container) { m_ranges.Add(range); m_container = container; }
1825
1826 /**
1827 Default constructor.
1828 */
1829 wxRichTextSelection() { Reset(); }
1830
1831 /**
1832 Resets the selection.
1833 */
1834 void Reset() { m_ranges.Clear(); m_container = NULL; }
1835
1836 /**
1837 Sets the selection.
1838 */
1839
1840 void Set(const wxRichTextRange& range, wxRichTextParagraphLayoutBox* container)
1841 { m_ranges.Clear(); m_ranges.Add(range); m_container = container; }
1842
1843 /**
1844 Adds a range to the selection.
1845 */
1846 void Add(const wxRichTextRange& range)
1847 { m_ranges.Add(range); }
1848
1849 /**
1850 Sets the selections from an array of ranges and a container object.
1851 */
1852 void Set(const wxRichTextRangeArray& ranges, wxRichTextParagraphLayoutBox* container)
1853 { m_ranges = ranges; m_container = container; }
1854
1855 /**
1856 Copies from @a sel.
1857 */
1858 void Copy(const wxRichTextSelection& sel)
1859 { m_ranges = sel.m_ranges; m_container = sel.m_container; }
1860
1861 /**
1862 Assignment operator.
1863 */
1864 void operator=(const wxRichTextSelection& sel) { Copy(sel); }
1865
1866 /**
1867 Equality operator.
1868 */
1869 bool operator==(const wxRichTextSelection& sel) const;
1870
1871 /**
1872 Index operator.
1873 */
1874 wxRichTextRange operator[](size_t i) const { return GetRange(i); }
1875
1876 /**
1877 Returns the selection ranges.
1878 */
1879 wxRichTextRangeArray& GetRanges() { return m_ranges; }
1880
1881 /**
1882 Returns the selection ranges.
1883 */
1884 const wxRichTextRangeArray& GetRanges() const { return m_ranges; }
1885
1886 /**
1887 Sets the selection ranges.
1888 */
1889 void SetRanges(const wxRichTextRangeArray& ranges) { m_ranges = ranges; }
1890
1891 /**
1892 Returns the number of ranges in the selection.
1893 */
1894 size_t GetCount() const { return m_ranges.GetCount(); }
1895
1896 /**
1897 Returns the range at the given index.
1898
1899 */
1900 wxRichTextRange GetRange(size_t i) const { return m_ranges[i]; }
1901
1902 /**
1903 Returns the first range if there is one, otherwise wxRICHTEXT_NO_SELECTION.
1904 */
1905 wxRichTextRange GetRange() const { return (m_ranges.GetCount() > 0) ? (m_ranges[0]) : wxRICHTEXT_NO_SELECTION; }
1906
1907 /**
1908 Sets a single range.
1909 */
1910 void SetRange(const wxRichTextRange& range) { m_ranges.Clear(); m_ranges.Add(range); }
1911
1912 /**
1913 Returns the container for which the selection is valid.
1914 */
1915 wxRichTextParagraphLayoutBox* GetContainer() const { return m_container; }
1916
1917 /**
1918 Sets the container for which the selection is valid.
1919 */
1920 void SetContainer(wxRichTextParagraphLayoutBox* container) { m_container = container; }
1921
1922 /**
1923 Returns @true if the selection is valid.
1924 */
1925 bool IsValid() const { return m_ranges.GetCount() > 0 && GetContainer(); }
1926
1927 /**
1928 Returns the selection appropriate to the specified object, if any; returns an empty array if none
1929 at the level of the object's container.
1930 */
1931 wxRichTextRangeArray GetSelectionForObject(wxRichTextObject* obj) const;
1932
1933 /**
1934 Returns @true if the given position is within the selection.
1935 */
1936 bool WithinSelection(long pos, wxRichTextObject* obj) const;
1937
1938 /**
1939 Returns @true if the given position is within the selection.
1940
1941 */
1942 bool WithinSelection(long pos) const { return WithinSelection(pos, m_ranges); }
1943
1944 /**
1945 Returns @true if the given position is within the selection range.
1946 */
1947 static bool WithinSelection(long pos, const wxRichTextRangeArray& ranges);
1948
1949 /**
1950 Returns @true if the given range is within the selection range.
1951 */
1952 static bool WithinSelection(const wxRichTextRange& range, const wxRichTextRangeArray& ranges);
1953
1954 wxRichTextRangeArray m_ranges;
1955 wxRichTextParagraphLayoutBox* m_container;
1956 };
1957
1958 /**
1959 @class wxRichTextObject
1960
1961 This is the base for drawable rich text objects.
1962
1963 @library{wxrichtext}
1964 @category{richtext}
1965
1966 @see wxRichTextBuffer, wxRichTextCtrl
1967 */
1968
1969 class WXDLLIMPEXP_RICHTEXT wxRichTextObject: public wxObject
1970 {
1971 DECLARE_CLASS(wxRichTextObject)
1972 public:
1973 /**
1974 Constructor, taking an optional parent pointer.
1975 */
1976 wxRichTextObject(wxRichTextObject* parent = NULL);
1977
1978 virtual ~wxRichTextObject();
1979
1980 // Overridables
1981
1982 /**
1983 Draw the item, within the given range. Some objects may ignore the range (for
1984 example paragraphs) while others must obey it (lines, to implement wrapping)
1985 */
1986 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style) = 0;
1987
1988 /**
1989 Lay the item out at the specified position with the given size constraint.
1990 Layout must set the cached size.
1991 */
1992 virtual bool Layout(wxDC& dc, const wxRect& rect, int style) = 0;
1993
1994 /**
1995 Hit-testing: returns a flag indicating hit test details, plus
1996 information about position. @a contextObj is returned to specify what object
1997 position is relevant to, since otherwise there's an ambiguity.
1998 @ obj might not be a child of @a contextObj, since we may be referring to the container itself
1999 if we have no hit on a child - for example if we click outside an object.
2000
2001 The function puts the position in @a textPosition if one is found.
2002 @a pt is in logical units (a zero y position is at the beginning of the buffer).
2003
2004 Pass wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS if you only want to consider objects
2005 directly under the object you are calling HitTest on. Otherwise, it will recurse
2006 and potentially find a nested object.
2007
2008 @return One of the ::wxRichTextHitTestFlags values.
2009 */
2010
2011 virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition, wxRichTextObject** obj, wxRichTextObject** contextObj, int flags = 0);
2012
2013 /**
2014 Finds the absolute position and row height for the given character position.
2015 */
2016 virtual bool FindPosition(wxDC& WXUNUSED(dc), long WXUNUSED(index), wxPoint& WXUNUSED(pt), int* WXUNUSED(height), bool WXUNUSED(forceLineStart)) { return false; }
2017
2018 /**
2019 Returns the best size, i.e. the ideal starting size for this object irrespective
2020 of available space. For a short text string, it will be the size that exactly encloses
2021 the text. For a longer string, it might use the parent width for example.
2022 */
2023 virtual wxSize GetBestSize() const { return m_size; }
2024
2025 /**
2026 Returns the object size for the given range. Returns @false if the range
2027 is invalid for this object.
2028 */
2029
2030 virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const = 0;
2031
2032 /**
2033 Do a split from @a pos, returning an object containing the second part, and setting
2034 the first part in 'this'.
2035 */
2036 virtual wxRichTextObject* DoSplit(long WXUNUSED(pos)) { return NULL; }
2037
2038 /**
2039 Calculates the range of the object. By default, guess that the object is 1 unit long.
2040 */
2041 virtual void CalculateRange(long start, long& end) { end = start ; m_range.SetRange(start, end); }
2042
2043 /**
2044 Deletes the given range.
2045 */
2046 virtual bool DeleteRange(const wxRichTextRange& WXUNUSED(range)) { return false; }
2047
2048 /**
2049 Returns @true if the object is empty.
2050 */
2051 virtual bool IsEmpty() const { return false; }
2052
2053 /**
2054 Returns @true if this class of object is floatable.
2055 */
2056 virtual bool IsFloatable() const { return false; }
2057
2058 /**
2059 Returns @true if this object is currently floating.
2060 */
2061 virtual bool IsFloating() const { return GetAttributes().GetTextBoxAttr().IsFloating(); }
2062
2063 /**
2064 Returns the floating direction.
2065 */
2066 virtual int GetFloatDirection() const { return GetAttributes().GetTextBoxAttr().GetFloatMode(); }
2067
2068 /**
2069 Returns any text in this object for the given range.
2070 */
2071 virtual wxString GetTextForRange(const wxRichTextRange& WXUNUSED(range)) const { return wxEmptyString; }
2072
2073 /**
2074 Returns @true if this object can merge itself with the given one.
2075 */
2076 virtual bool CanMerge(wxRichTextObject* WXUNUSED(object)) const { return false; }
2077
2078 /**
2079 Returns @true if this object merged itself with the given one.
2080 The calling code will then delete the given object.
2081 */
2082 virtual bool Merge(wxRichTextObject* WXUNUSED(object)) { return false; }
2083
2084 /**
2085 Dump object data to the given output stream for debugging.
2086 */
2087 virtual void Dump(wxTextOutputStream& stream);
2088
2089 /**
2090 Returns @true if we can edit the object's properties via a GUI.
2091 */
2092 virtual bool CanEditProperties() const { return false; }
2093
2094 /**
2095 Edits the object's properties via a GUI.
2096 */
2097 virtual bool EditProperties(wxWindow* WXUNUSED(parent), wxRichTextBuffer* WXUNUSED(buffer)) { return false; }
2098
2099 /**
2100 Returns the label to be used for the properties context menu item.
2101 */
2102 virtual wxString GetPropertiesMenuLabel() const { return wxEmptyString; }
2103
2104 /**
2105 Returns @true if objects of this class can accept the focus, i.e. a call to SetFocusObject
2106 is possible. For example, containers supporting text, such as a text box object, can accept the focus,
2107 but a table can't (set the focus to individual cells instead).
2108 */
2109 virtual bool AcceptsFocus() const { return false; }
2110
2111 #if wxUSE_XML
2112 /**
2113 Imports this object from XML.
2114 */
2115 virtual bool ImportFromXML(wxRichTextBuffer* buffer, wxXmlNode* node, wxRichTextXMLHandler* handler, bool* recurse);
2116 #endif
2117
2118 #if wxRICHTEXT_HAVE_DIRECT_OUTPUT
2119 /**
2120 Exports this object directly to the given stream, bypassing the creation of a wxXmlNode hierarchy.
2121 This method is considerably faster than creating a tree first. However, both versions of ExportXML must be
2122 implemented so that if the tree method is made efficient in the future, we can deprecate the
2123 more verbose direct output method. Compiled only if wxRICHTEXT_HAVE_DIRECT_OUTPUT is defined (on by default).
2124 */
2125 virtual bool ExportXML(wxOutputStream& stream, int indent, wxRichTextXMLHandler* handler);
2126 #endif
2127
2128 #if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT
2129 /**
2130 Exports this object to the given parent node, usually creating at least one child node.
2131 This method is less efficient than the direct-to-stream method but is retained to allow for
2132 switching to this method if we make it more efficient. Compiled only if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT is defined
2133 (on by default).
2134 */
2135 virtual bool ExportXML(wxXmlNode* parent, wxRichTextXMLHandler* handler);
2136 #endif
2137
2138 /**
2139 Returns @true if this object takes note of paragraph attributes (text and image objects don't).
2140 */
2141 virtual bool UsesParagraphAttributes() const { return true; }
2142
2143 /**
2144 Returns the XML node name of this object. This must be overridden for wxXmlNode-base XML export to work.
2145 */
2146 virtual wxString GetXMLNodeName() const { return wxT("unknown"); }
2147
2148 /**
2149 Invalidates the object at the given range. With no argument, invalidates the whole object.
2150 */
2151 virtual void Invalidate(const wxRichTextRange& invalidRange = wxRICHTEXT_ALL);
2152
2153 /**
2154 Returns @true if this object can handle the selections of its children, fOr example a table.
2155 Required for composite selection handling to work.
2156 */
2157 virtual bool HandlesChildSelections() const { return false; }
2158
2159 /**
2160 Returns a selection object specifying the selections between start and end character positions.
2161 For example, a table would deduce what cells (of range length 1) are selected when dragging across the table.
2162 */
2163 virtual wxRichTextSelection GetSelection(long WXUNUSED(start), long WXUNUSED(end)) const { return wxRichTextSelection(); }
2164
2165 // Accessors
2166
2167 /**
2168 Gets the cached object size as calculated by Layout.
2169 */
2170 virtual wxSize GetCachedSize() const { return m_size; }
2171
2172 /**
2173 Sets the cached object size as calculated by Layout.
2174 */
2175 virtual void SetCachedSize(const wxSize& sz) { m_size = sz; }
2176
2177 /**
2178 Gets the maximum object size as calculated by Layout. This allows
2179 us to fit an object to its contents or allocate extra space if required.
2180 */
2181 virtual wxSize GetMaxSize() const { return m_maxSize; }
2182
2183 /**
2184 Sets the maximum object size as calculated by Layout. This allows
2185 us to fit an object to its contents or allocate extra space if required.
2186 */
2187 virtual void SetMaxSize(const wxSize& sz) { m_maxSize = sz; }
2188
2189 /**
2190 Gets the minimum object size as calculated by Layout. This allows
2191 us to constrain an object to its absolute minimum size if necessary.
2192 */
2193 virtual wxSize GetMinSize() const { return m_minSize; }
2194
2195 /**
2196 Sets the minimum object size as calculated by Layout. This allows
2197 us to constrain an object to its absolute minimum size if necessary.
2198 */
2199 virtual void SetMinSize(const wxSize& sz) { m_minSize = sz; }
2200
2201 /**
2202 Gets the 'natural' size for an object. For an image, it would be the
2203 image size.
2204 */
2205 virtual wxTextAttrSize GetNaturalSize() const { return wxTextAttrSize(); }
2206
2207 /**
2208 Returns the object position in pixels.
2209 */
2210 virtual wxPoint GetPosition() const { return m_pos; }
2211
2212 /**
2213 Sets the object position in pixels.
2214 */
2215 virtual void SetPosition(const wxPoint& pos) { m_pos = pos; }
2216
2217 /**
2218 Returns the absolute object position, by traversing up the child/parent hierarchy.
2219 TODO: may not be needed, if all object positions are in fact relative to the
2220 top of the coordinate space.
2221 */
2222 virtual wxPoint GetAbsolutePosition() const;
2223
2224 /**
2225 Returns the rectangle enclosing the object.
2226 */
2227 virtual wxRect GetRect() const { return wxRect(GetPosition(), GetCachedSize()); }
2228
2229 /**
2230 Sets the object's range within its container.
2231 */
2232 void SetRange(const wxRichTextRange& range) { m_range = range; }
2233
2234 /**
2235 Returns the object's range.
2236 */
2237 const wxRichTextRange& GetRange() const { return m_range; }
2238
2239 /**
2240 Returns the object's range.
2241 */
2242 wxRichTextRange& GetRange() { return m_range; }
2243
2244 /**
2245 Set the object's own range, for a top-level object with its own position space.
2246 */
2247 void SetOwnRange(const wxRichTextRange& range) { m_ownRange = range; }
2248
2249 /**
2250 Returns the object's own range (valid if top-level).
2251 */
2252 const wxRichTextRange& GetOwnRange() const { return m_ownRange; }
2253
2254 /**
2255 Returns the object's own range (valid if top-level).
2256 */
2257 wxRichTextRange& GetOwnRange() { return m_ownRange; }
2258
2259 /**
2260 Returns the object's own range only if a top-level object.
2261 */
2262 wxRichTextRange GetOwnRangeIfTopLevel() const { return IsTopLevel() ? m_ownRange : m_range; }
2263
2264 /**
2265 Returns @true if this object this composite.
2266 */
2267 virtual bool IsComposite() const { return false; }
2268
2269 /**
2270 Returns a pointer to the parent object.
2271 */
2272 virtual wxRichTextObject* GetParent() const { return m_parent; }
2273
2274 /**
2275 Sets the pointer to the parent object.
2276 */
2277 virtual void SetParent(wxRichTextObject* parent) { m_parent = parent; }
2278
2279 /**
2280 Returns the top-level container of this object.
2281 May return itself if it's a container; use GetParentContainer to return
2282 a different container.
2283 */
2284 virtual wxRichTextParagraphLayoutBox* GetContainer() const;
2285
2286 /**
2287 Returns the top-level container of this object.
2288 Returns a different container than itself, unless there's no parent, in which case it will return NULL.
2289 */
2290 virtual wxRichTextParagraphLayoutBox* GetParentContainer() const { return GetParent() ? GetParent()->GetContainer() : GetContainer(); }
2291
2292 /**
2293 Set the margin around the object, in pixels.
2294 */
2295 virtual void SetMargins(int margin);
2296
2297 /**
2298 Set the margin around the object, in pixels.
2299 */
2300 virtual void SetMargins(int leftMargin, int rightMargin, int topMargin, int bottomMargin);
2301
2302 /**
2303 Returns the left margin of the object, in pixels.
2304 */
2305 virtual int GetLeftMargin() const;
2306
2307 /**
2308 Returns the right margin of the object, in pixels.
2309 */
2310 virtual int GetRightMargin() const;
2311
2312 /**
2313 Returns the top margin of the object, in pixels.
2314 */
2315 virtual int GetTopMargin() const;
2316
2317 /**
2318 Returns the bottom margin of the object, in pixels.
2319 */
2320 virtual int GetBottomMargin() const;
2321
2322 /**
2323 Calculates the available content space in the given rectangle, given the
2324 margins, border and padding specified in the object's attributes.
2325 */
2326 virtual wxRect GetAvailableContentArea(wxDC& dc, const wxRect& outerRect) const;
2327
2328 /**
2329 Lays out the object first with a given amount of space, and then if no width was specified in attr,
2330 lays out the object again using the minimum size
2331 */
2332 virtual bool LayoutToBestSize(wxDC& dc, wxRichTextBuffer* buffer,
2333 const wxRichTextAttr& parentAttr, const wxRichTextAttr& attr, const wxRect& availableParentSpace, int style);
2334
2335 /**
2336 Sets the object's attributes.
2337 */
2338 void SetAttributes(const wxRichTextAttr& attr) { m_attributes = attr; }
2339
2340 /**
2341 Returns the object's attributes.
2342 */
2343 const wxRichTextAttr& GetAttributes() const { return m_attributes; }
2344
2345 /**
2346 Returns the object's attributes.
2347 */
2348 wxRichTextAttr& GetAttributes() { return m_attributes; }
2349
2350 /**
2351 Sets the object's properties.
2352 */
2353 wxRichTextProperties& GetProperties() { return m_properties; }
2354
2355 /**
2356 Returns the object's properties.
2357 */
2358 const wxRichTextProperties& GetProperties() const { return m_properties; }
2359
2360 /**
2361 Returns the object's properties.
2362 */
2363 void SetProperties(const wxRichTextProperties& props) { m_properties = props; }
2364
2365 /**
2366 Sets the stored descent value.
2367 */
2368 void SetDescent(int descent) { m_descent = descent; }
2369
2370 /**
2371 Returns the stored descent value.
2372 */
2373 int GetDescent() const { return m_descent; }
2374
2375 /**
2376 Returns the containing buffer.
2377 */
2378 wxRichTextBuffer* GetBuffer() const;
2379
2380 /**
2381 Sets the identifying name for this object as a property using the "name" key.
2382 */
2383 void SetName(const wxString& name) { m_properties.SetProperty(wxT("name"), name); }
2384
2385 /**
2386 Returns the identifying name for this object from the properties, using the "name" key.
2387 */
2388 wxString GetName() const { return m_properties.GetPropertyString(wxT("name")); }
2389
2390 /**
2391 Returns @true if this object is top-level, i.e. contains its own paragraphs, such as a text box.
2392 */
2393 virtual bool IsTopLevel() const { return false; }
2394
2395 /**
2396 Returns @true if the object will be shown, @false otherwise.
2397 */
2398 bool IsShown() const { return m_show; }
2399
2400 // Operations
2401
2402 /**
2403 Call to show or hide this object. This function does not cause the content to be
2404 laid out or redrawn.
2405 */
2406 virtual void Show(bool show) { m_show = show; }
2407
2408 /**
2409 Clones the object.
2410 */
2411 virtual wxRichTextObject* Clone() const { return NULL; }
2412
2413 /**
2414 Copies the object.
2415 */
2416 void Copy(const wxRichTextObject& obj);
2417
2418 /**
2419 Reference-counting allows us to use the same object in multiple
2420 lists (not yet used).
2421 */
2422
2423 void Reference() { m_refCount ++; }
2424
2425 /**
2426 Reference-counting allows us to use the same object in multiple
2427 lists (not yet used).
2428 */
2429 void Dereference();
2430
2431 /**
2432 Moves the object recursively, by adding the offset from old to new.
2433 */
2434 virtual void Move(const wxPoint& pt);
2435
2436 /**
2437 Converts units in tenths of a millimetre to device units.
2438 */
2439 int ConvertTenthsMMToPixels(wxDC& dc, int units) const;
2440
2441 /**
2442 Converts units in tenths of a millimetre to device units.
2443 */
2444 static int ConvertTenthsMMToPixels(int ppi, int units, double scale = 1.0);
2445
2446 /**
2447 Convert units in pixels to tenths of a millimetre.
2448 */
2449 int ConvertPixelsToTenthsMM(wxDC& dc, int pixels) const;
2450
2451 /**
2452 Convert units in pixels to tenths of a millimetre.
2453 */
2454 static int ConvertPixelsToTenthsMM(int ppi, int pixels, double scale = 1.0);
2455
2456 /**
2457 Draws the borders and background for the given rectangle and attributes.
2458 @a boxRect is taken to be the outer margin box, not the box around the content.
2459 */
2460 static bool DrawBoxAttributes(wxDC& dc, wxRichTextBuffer* buffer, const wxRichTextAttr& attr, const wxRect& boxRect, int flags = 0);
2461
2462 /**
2463 Draws a border.
2464 */
2465 static bool DrawBorder(wxDC& dc, wxRichTextBuffer* buffer, const wxTextAttrBorders& attr, const wxRect& rect, int flags = 0);
2466
2467 /**
2468 Returns the various rectangles of the box model in pixels. You can either specify @a contentRect (inner)
2469 or @a marginRect (outer), and the other must be the default rectangle (no width or height).
2470 Note that the outline doesn't affect the position of the rectangle, it's drawn in whatever space
2471 is available.
2472 */
2473 static bool GetBoxRects(wxDC& dc, wxRichTextBuffer* buffer, const wxRichTextAttr& attr, wxRect& marginRect, wxRect& borderRect, wxRect& contentRect, wxRect& paddingRect, wxRect& outlineRect);
2474
2475 /**
2476 Returns the total margin for the object in pixels, taking into account margin, padding and border size.
2477 */
2478 static bool GetTotalMargin(wxDC& dc, wxRichTextBuffer* buffer, const wxRichTextAttr& attr, int& leftMargin, int& rightMargin,
2479 int& topMargin, int& bottomMargin);
2480
2481 /**
2482 Returns the rectangle which the child has available to it given restrictions specified in the
2483 child attribute, e.g. 50% width of the parent, 400 pixels, x position 20% of the parent, etc.
2484 */
2485 static wxRect AdjustAvailableSpace(wxDC& dc, wxRichTextBuffer* buffer, const wxRichTextAttr& parentAttr, const wxRichTextAttr& childAttr, const wxRect& availableParentSpace);
2486
2487 protected:
2488 wxSize m_size;
2489 wxSize m_maxSize;
2490 wxSize m_minSize;
2491 wxPoint m_pos;
2492 int m_descent; // Descent for this object (if any)
2493 int m_refCount;
2494 bool m_show;
2495 wxRichTextObject* m_parent;
2496
2497 // The range of this object (start position to end position)
2498 wxRichTextRange m_range;
2499
2500 // The internal range of this object, if it's a top-level object with its own range space
2501 wxRichTextRange m_ownRange;
2502
2503 // Attributes
2504 wxRichTextAttr m_attributes;
2505
2506 // Properties
2507 wxRichTextProperties m_properties;
2508 };
2509
2510 WX_DECLARE_LIST_WITH_DECL( wxRichTextObject, wxRichTextObjectList, class WXDLLIMPEXP_RICHTEXT );
2511
2512 /**
2513 @class wxRichTextCompositeObject
2514
2515 Objects of this class can contain other objects.
2516
2517 @library{wxrichtext}
2518 @category{richtext}
2519
2520 @see wxRichTextObject, wxRichTextBuffer, wxRichTextCtrl
2521 */
2522
2523 class WXDLLIMPEXP_RICHTEXT wxRichTextCompositeObject: public wxRichTextObject
2524 {
2525 DECLARE_CLASS(wxRichTextCompositeObject)
2526 public:
2527 // Constructors
2528
2529 wxRichTextCompositeObject(wxRichTextObject* parent = NULL);
2530 virtual ~wxRichTextCompositeObject();
2531
2532 // Overridables
2533
2534 virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition, wxRichTextObject** obj, wxRichTextObject** contextObj, int flags = 0);
2535
2536 virtual bool FindPosition(wxDC& dc, long index, wxPoint& pt, int* height, bool forceLineStart);
2537
2538 virtual void CalculateRange(long start, long& end);
2539
2540 virtual bool DeleteRange(const wxRichTextRange& range);
2541
2542 virtual wxString GetTextForRange(const wxRichTextRange& range) const;
2543
2544 virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
2545
2546 virtual void Dump(wxTextOutputStream& stream);
2547
2548 virtual void Invalidate(const wxRichTextRange& invalidRange = wxRICHTEXT_ALL);
2549
2550 // Accessors
2551
2552 /**
2553 Returns the children.
2554 */
2555 wxRichTextObjectList& GetChildren() { return m_children; }
2556 /**
2557 Returns the children.
2558 */
2559 const wxRichTextObjectList& GetChildren() const { return m_children; }
2560
2561 /**
2562 Returns the number of children.
2563 */
2564 size_t GetChildCount() const ;
2565
2566 /**
2567 Returns the nth child.
2568 */
2569 wxRichTextObject* GetChild(size_t n) const ;
2570
2571 /**
2572 Returns @true if this object is composite.
2573 */
2574 virtual bool IsComposite() const { return true; }
2575
2576 /**
2577 Returns true if the buffer is empty.
2578 */
2579 virtual bool IsEmpty() const { return GetChildCount() == 0; }
2580
2581 /**
2582 Returns the child object at the given character position.
2583 */
2584 virtual wxRichTextObject* GetChildAtPosition(long pos) const;
2585
2586 // Operations
2587
2588 void Copy(const wxRichTextCompositeObject& obj);
2589
2590 void operator= (const wxRichTextCompositeObject& obj) { Copy(obj); }
2591
2592 /**
2593 Appends a child, returning the position.
2594 */
2595 size_t AppendChild(wxRichTextObject* child) ;
2596
2597 /**
2598 Inserts the child in front of the given object, or at the beginning.
2599 */
2600 bool InsertChild(wxRichTextObject* child, wxRichTextObject* inFrontOf) ;
2601
2602 /**
2603 Removes and optionally deletes the specified child.
2604 */
2605 bool RemoveChild(wxRichTextObject* child, bool deleteChild = false) ;
2606
2607 /**
2608 Deletes all the children.
2609 */
2610 bool DeleteChildren() ;
2611
2612 /**
2613 Recursively merges all pieces that can be merged.
2614 */
2615 bool Defragment(const wxRichTextRange& range = wxRICHTEXT_ALL);
2616
2617 /**
2618 Moves the object recursively, by adding the offset from old to new.
2619 */
2620 virtual void Move(const wxPoint& pt);
2621
2622 protected:
2623 wxRichTextObjectList m_children;
2624 };
2625
2626 /**
2627 @class wxRichTextParagraphBox
2628
2629 This class knows how to lay out paragraphs.
2630
2631 @library{wxrichtext}
2632 @category{richtext}
2633
2634 @see wxRichTextCompositeObject, wxRichTextObject, wxRichTextBuffer, wxRichTextCtrl
2635 */
2636
2637 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraphLayoutBox: public wxRichTextCompositeObject
2638 {
2639 DECLARE_DYNAMIC_CLASS(wxRichTextParagraphLayoutBox)
2640 public:
2641 // Constructors
2642
2643 wxRichTextParagraphLayoutBox(wxRichTextObject* parent = NULL);
2644 wxRichTextParagraphLayoutBox(const wxRichTextParagraphLayoutBox& obj): wxRichTextCompositeObject() { Init(); Copy(obj); }
2645 ~wxRichTextParagraphLayoutBox();
2646
2647 // Overridables
2648
2649 virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition, wxRichTextObject** obj, wxRichTextObject** contextObj, int flags = 0);
2650
2651 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
2652
2653 virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
2654
2655 virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
2656
2657 virtual bool DeleteRange(const wxRichTextRange& range);
2658
2659 virtual wxString GetTextForRange(const wxRichTextRange& range) const;
2660
2661 #if wxUSE_XML
2662 virtual bool ImportFromXML(wxRichTextBuffer* buffer, wxXmlNode* node, wxRichTextXMLHandler* handler, bool* recurse);
2663 #endif
2664
2665 #if wxRICHTEXT_HAVE_DIRECT_OUTPUT
2666 virtual bool ExportXML(wxOutputStream& stream, int indent, wxRichTextXMLHandler* handler);
2667 #endif
2668
2669 #if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT
2670 virtual bool ExportXML(wxXmlNode* parent, wxRichTextXMLHandler* handler);
2671 #endif
2672
2673 virtual wxString GetXMLNodeName() const { return wxT("paragraphlayout"); }
2674
2675 virtual bool AcceptsFocus() const { return true; }
2676
2677 // Accessors
2678
2679 /**
2680 Associates a control with the buffer, for operations that for example require refreshing the window.
2681 */
2682 void SetRichTextCtrl(wxRichTextCtrl* ctrl) { m_ctrl = ctrl; }
2683
2684 /**
2685 Returns the associated control.
2686 */
2687 wxRichTextCtrl* GetRichTextCtrl() const { return m_ctrl; }
2688
2689 /**
2690 Sets a flag indicating whether the last paragraph is partial or complete.
2691 */
2692 void SetPartialParagraph(bool partialPara) { m_partialParagraph = partialPara; }
2693
2694 /**
2695 Returns a flag indicating whether the last paragraph is partial or complete.
2696 */
2697 bool GetPartialParagraph() const { return m_partialParagraph; }
2698
2699 /**
2700 Returns the style sheet associated with the overall buffer.
2701 */
2702 virtual wxRichTextStyleSheet* GetStyleSheet() const;
2703
2704 virtual bool IsTopLevel() const { return true; }
2705
2706 // Operations
2707
2708 /**
2709 Submits a command to insert paragraphs.
2710 */
2711 bool InsertParagraphsWithUndo(long pos, const wxRichTextParagraphLayoutBox& paragraphs, wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer, int flags = 0);
2712
2713 /**
2714 Submits a command to insert the given text.
2715 */
2716 bool InsertTextWithUndo(long pos, const wxString& text, wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer, int flags = 0);
2717
2718 /**
2719 Submits a command to insert the given text.
2720 */
2721 bool InsertNewlineWithUndo(long pos, wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer, int flags = 0);
2722
2723 /**
2724 Submits a command to insert the given image.
2725 */
2726 bool InsertImageWithUndo(long pos, const wxRichTextImageBlock& imageBlock,
2727 wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer, int flags,
2728 const wxRichTextAttr& textAttr);
2729
2730 /**
2731 Returns the style that is appropriate for a new paragraph at this position.
2732 If the previous paragraph has a paragraph style name, looks up the next-paragraph
2733 style.
2734 */
2735 wxRichTextAttr GetStyleForNewParagraph(wxRichTextBuffer* buffer, long pos, bool caretPosition = false, bool lookUpNewParaStyle=false) const;
2736
2737 /**
2738 Inserts an object.
2739 */
2740 wxRichTextObject* InsertObjectWithUndo(long pos, wxRichTextObject *object, wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer, int flags = 0);
2741
2742 /**
2743 Submits a command to delete this range.
2744 */
2745 bool DeleteRangeWithUndo(const wxRichTextRange& range, wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer);
2746
2747 /**
2748 Draws the floating objects in this buffer.
2749 */
2750 void DrawFloats(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
2751
2752 /**
2753 Moves an anchored object to another paragraph.
2754 */
2755 void MoveAnchoredObjectToParagraph(wxRichTextParagraph* from, wxRichTextParagraph* to, wxRichTextObject* obj);
2756
2757 /**
2758 Initializes the object.
2759 */
2760 void Init();
2761
2762 /**
2763 Clears all the children.
2764 */
2765 virtual void Clear();
2766
2767 /**
2768 Clears and initializes with one blank paragraph.
2769 */
2770 virtual void Reset();
2771
2772 /**
2773 Convenience function to add a paragraph of text.
2774 */
2775 virtual wxRichTextRange AddParagraph(const wxString& text, wxRichTextAttr* paraStyle = NULL);
2776
2777 /**
2778 Convenience function to add an image.
2779 */
2780 virtual wxRichTextRange AddImage(const wxImage& image, wxRichTextAttr* paraStyle = NULL);
2781
2782 /**
2783 Adds multiple paragraphs, based on newlines.
2784 */
2785 virtual wxRichTextRange AddParagraphs(const wxString& text, wxRichTextAttr* paraStyle = NULL);
2786
2787 /**
2788 Returns the line at the given position. If @a caretPosition is true, the position is
2789 a caret position, which is normally a smaller number.
2790 */
2791 virtual wxRichTextLine* GetLineAtPosition(long pos, bool caretPosition = false) const;
2792
2793 /**
2794 Returns the line at the given y pixel position, or the last line.
2795 */
2796 virtual wxRichTextLine* GetLineAtYPosition(int y) const;
2797
2798 /**
2799 Returns the paragraph at the given character or caret position.
2800 */
2801 virtual wxRichTextParagraph* GetParagraphAtPosition(long pos, bool caretPosition = false) const;
2802
2803 /**
2804 Returns the line size at the given position.
2805 */
2806 virtual wxSize GetLineSizeAtPosition(long pos, bool caretPosition = false) const;
2807
2808 /**
2809 Given a position, returns the number of the visible line (potentially many to a paragraph),
2810 starting from zero at the start of the buffer. We also have to pass a bool (@a startOfLine)
2811 that indicates whether the caret is being shown at the end of the previous line or at the start
2812 of the next, since the caret can be shown at two visible positions for the same underlying
2813 position.
2814 */
2815 virtual long GetVisibleLineNumber(long pos, bool caretPosition = false, bool startOfLine = false) const;
2816
2817 /**
2818 Given a line number, returns the corresponding wxRichTextLine object.
2819 */
2820 virtual wxRichTextLine* GetLineForVisibleLineNumber(long lineNumber) const;
2821
2822 /**
2823 Returns the leaf object in a paragraph at this position.
2824 */
2825 virtual wxRichTextObject* GetLeafObjectAtPosition(long position) const;
2826
2827 /**
2828 Returns the paragraph by number.
2829 */
2830 virtual wxRichTextParagraph* GetParagraphAtLine(long paragraphNumber) const;
2831
2832 /**
2833 Returns the paragraph for a given line.
2834 */
2835 virtual wxRichTextParagraph* GetParagraphForLine(wxRichTextLine* line) const;
2836
2837 /**
2838 Returns the length of the paragraph.
2839 */
2840 virtual int GetParagraphLength(long paragraphNumber) const;
2841
2842 /**
2843 Returns the number of paragraphs.
2844 */
2845 virtual int GetParagraphCount() const { return static_cast<int>(GetChildCount()); }
2846
2847 /**
2848 Returns the number of visible lines.
2849 */
2850 virtual int GetLineCount() const;
2851
2852 /**
2853 Returns the text of the paragraph.
2854 */
2855 virtual wxString GetParagraphText(long paragraphNumber) const;
2856
2857 /**
2858 Converts zero-based line column and paragraph number to a position.
2859 */
2860 virtual long XYToPosition(long x, long y) const;
2861
2862 /**
2863 Converts a zero-based position to line column and paragraph number.
2864 */
2865 virtual bool PositionToXY(long pos, long* x, long* y) const;
2866
2867 /**
2868 Sets the attributes for the given range. Pass flags to determine how the
2869 attributes are set.
2870
2871 The end point of range is specified as the last character position of the span
2872 of text. So, for example, to set the style for a character at position 5,
2873 use the range (5,5).
2874 This differs from the wxRichTextCtrl API, where you would specify (5,6).
2875
2876 @a flags may contain a bit list of the following values:
2877 - wxRICHTEXT_SETSTYLE_NONE: no style flag.
2878 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this operation should be
2879 undoable.
2880 - wxRICHTEXT_SETSTYLE_OPTIMIZE: specifies that the style should not be applied
2881 if the combined style at this point is already the style in question.
2882 - wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY: specifies that the style should only be
2883 applied to paragraphs, and not the content.
2884 This allows content styling to be preserved independently from that
2885 of e.g. a named paragraph style.
2886 - wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY: specifies that the style should only be
2887 applied to characters, and not the paragraph.
2888 This allows content styling to be preserved independently from that
2889 of e.g. a named paragraph style.
2890 - wxRICHTEXT_SETSTYLE_RESET: resets (clears) the existing style before applying
2891 the new style.
2892 - wxRICHTEXT_SETSTYLE_REMOVE: removes the specified style.
2893 Only the style flags are used in this operation.
2894 */
2895 virtual bool SetStyle(const wxRichTextRange& range, const wxRichTextAttr& style, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
2896
2897 /**
2898 Sets the attributes for the given object only, for example the box attributes for a text box.
2899 */
2900 virtual void SetStyle(wxRichTextObject *obj, const wxRichTextAttr& textAttr, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
2901
2902 /**
2903 Returns the combined text attributes for this position.
2904
2905 This function gets the @e uncombined style - that is, the attributes associated
2906 with the paragraph or character content, and not necessarily the combined
2907 attributes you see on the screen. To get the combined attributes, use GetStyle().
2908 If you specify (any) paragraph attribute in @e style's flags, this function
2909 will fetch the paragraph attributes.
2910 Otherwise, it will return the character attributes.
2911 */
2912 virtual bool GetStyle(long position, wxRichTextAttr& style);
2913
2914 /**
2915 Returns the content (uncombined) attributes for this position.
2916 */
2917 virtual bool GetUncombinedStyle(long position, wxRichTextAttr& style);
2918
2919 /**
2920 Implementation helper for GetStyle. If combineStyles is true, combine base, paragraph and
2921 context attributes.
2922 */
2923 virtual bool DoGetStyle(long position, wxRichTextAttr& style, bool combineStyles = true);
2924
2925 /**
2926 This function gets a style representing the common, combined attributes in the
2927 given range.
2928 Attributes which have different values within the specified range will not be
2929 included the style flags.
2930
2931 The function is used to get the attributes to display in the formatting dialog:
2932 the user can edit the attributes common to the selection, and optionally specify the
2933 values of further attributes to be applied uniformly.
2934
2935 To apply the edited attributes, you can use SetStyle() specifying
2936 the wxRICHTEXT_SETSTYLE_OPTIMIZE flag, which will only apply attributes that
2937 are different from the @e combined attributes within the range.
2938 So, the user edits the effective, displayed attributes for the range,
2939 but his choice won't be applied unnecessarily to content. As an example,
2940 say the style for a paragraph specifies bold, but the paragraph text doesn't
2941 specify a weight.
2942 The combined style is bold, and this is what the user will see on-screen and
2943 in the formatting dialog. The user now specifies red text, in addition to bold.
2944 When applying with SetStyle(), the content font weight attributes won't be
2945 changed to bold because this is already specified by the paragraph.
2946 However the text colour attributes @e will be changed to show red.
2947 */
2948 virtual bool GetStyleForRange(const wxRichTextRange& range, wxRichTextAttr& style);
2949
2950 /**
2951 Combines @a style with @a currentStyle for the purpose of summarising the attributes of a range of
2952 content.
2953 */
2954 bool CollectStyle(wxRichTextAttr& currentStyle, const wxRichTextAttr& style, wxRichTextAttr& clashingAttr, wxRichTextAttr& absentAttr);
2955
2956 //@{
2957 /**
2958 Sets the list attributes for the given range, passing flags to determine how
2959 the attributes are set.
2960 Either the style definition or the name of the style definition (in the current
2961 sheet) can be passed.
2962
2963 @a flags is a bit list of the following:
2964 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
2965 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
2966 @a startFrom, otherwise existing attributes are used.
2967 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
2968 as the level for all paragraphs, otherwise the current indentation will be used.
2969
2970 @see NumberList(), PromoteList(), ClearListStyle().
2971 */
2972 virtual bool SetListStyle(const wxRichTextRange& range, wxRichTextListStyleDefinition* def, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
2973 virtual bool SetListStyle(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
2974 //@}
2975
2976 /**
2977 Clears the list style from the given range, clearing list-related attributes
2978 and applying any named paragraph style associated with each paragraph.
2979
2980 @a flags is a bit list of the following:
2981 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
2982
2983 @see SetListStyle(), PromoteList(), NumberList()
2984 */
2985 virtual bool ClearListStyle(const wxRichTextRange& range, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
2986
2987 //@{
2988 /**
2989 Numbers the paragraphs in the given range.
2990
2991 Pass flags to determine how the attributes are set.
2992 Either the style definition or the name of the style definition (in the current
2993 sheet) can be passed.
2994
2995 @a flags is a bit list of the following:
2996 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
2997 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
2998 @a startFrom, otherwise existing attributes are used.
2999 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
3000 as the level for all paragraphs, otherwise the current indentation will be used.
3001
3002 @a def can be NULL to indicate that the existing list style should be used.
3003
3004 @see SetListStyle(), PromoteList(), ClearListStyle()
3005 */
3006 virtual bool NumberList(const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
3007 virtual bool NumberList(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
3008 //@}
3009
3010 //@{
3011 /**
3012 Promotes the list items within the given range.
3013 A positive @a promoteBy produces a smaller indent, and a negative number
3014 produces a larger indent. Pass flags to determine how the attributes are set.
3015 Either the style definition or the name of the style definition (in the current
3016 sheet) can be passed.
3017
3018 @a flags is a bit list of the following:
3019 - wxRICHTEXT_SETSTYLE_WITH_UNDO: specifies that this command will be undoable.
3020 - wxRICHTEXT_SETSTYLE_RENUMBER: specifies that numbering should start from
3021 @a startFrom, otherwise existing attributes are used.
3022 - wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL: specifies that @a listLevel should be used
3023 as the level for all paragraphs, otherwise the current indentation will be used.
3024
3025 @see SetListStyle(), SetListStyle(), ClearListStyle()
3026 */
3027 virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1);
3028 virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1);
3029 //@}
3030
3031 /**
3032 Helper for NumberList and PromoteList, that does renumbering and promotion simultaneously
3033 @a def can be NULL/empty to indicate that the existing list style should be used.
3034 */
3035 virtual bool DoNumberList(const wxRichTextRange& range, const wxRichTextRange& promotionRange, int promoteBy, wxRichTextListStyleDefinition* def, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
3036
3037 /**
3038 Fills in the attributes for numbering a paragraph after previousParagraph.
3039 */
3040 virtual bool FindNextParagraphNumber(wxRichTextParagraph* previousParagraph, wxRichTextAttr& attr) const;
3041
3042 /**
3043 Test if this whole range has character attributes of the specified kind. If any
3044 of the attributes are different within the range, the test fails. You
3045 can use this to implement, for example, bold button updating. style must have
3046 flags indicating which attributes are of interest.
3047 */
3048 virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const;
3049
3050 /**
3051 Test if this whole range has paragraph attributes of the specified kind. If any
3052 of the attributes are different within the range, the test fails. You
3053 can use this to implement, for example, centering button updating. style must have
3054 flags indicating which attributes are of interest.
3055 */
3056 virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const;
3057
3058 virtual wxRichTextObject* Clone() const { return new wxRichTextParagraphLayoutBox(*this); }
3059
3060 /**
3061 Insert fragment into this box at the given position. If partialParagraph is true,
3062 it is assumed that the last (or only) paragraph is just a piece of data with no paragraph
3063 marker.
3064 */
3065 virtual bool InsertFragment(long position, wxRichTextParagraphLayoutBox& fragment);
3066
3067 /**
3068 Make a copy of the fragment corresponding to the given range, putting it in @a fragment.
3069 */
3070 virtual bool CopyFragment(const wxRichTextRange& range, wxRichTextParagraphLayoutBox& fragment);
3071
3072 /**
3073 Apply the style sheet to the buffer, for example if the styles have changed.
3074 */
3075 virtual bool ApplyStyleSheet(wxRichTextStyleSheet* styleSheet);
3076
3077 void Copy(const wxRichTextParagraphLayoutBox& obj);
3078
3079 void operator= (const wxRichTextParagraphLayoutBox& obj) { Copy(obj); }
3080
3081 /**
3082 Calculate ranges.
3083 */
3084 virtual void UpdateRanges();
3085
3086 /**
3087 Get all the text.
3088 */
3089 virtual wxString GetText() const;
3090
3091 /**
3092 Sets the default style, affecting the style currently being applied
3093 (for example, setting the default style to bold will cause subsequently
3094 inserted text to be bold).
3095
3096 This is not cumulative - setting the default style will replace the previous
3097 default style.
3098
3099 Setting it to a default attribute object makes new content take on the 'basic' style.
3100 */
3101 virtual bool SetDefaultStyle(const wxRichTextAttr& style);
3102
3103 /**
3104 Returns the current default style, affecting the style currently being applied
3105 (for example, setting the default style to bold will cause subsequently
3106 inserted text to be bold).
3107 */
3108 virtual const wxRichTextAttr& GetDefaultStyle() const { return m_defaultAttributes; }
3109
3110 /**
3111 Sets the basic (overall) style. This is the style of the whole
3112 buffer before further styles are applied, unlike the default style, which
3113 only affects the style currently being applied (for example, setting the default
3114 style to bold will cause subsequently inserted text to be bold).
3115 */
3116 virtual void SetBasicStyle(const wxRichTextAttr& style) { m_attributes = style; }
3117
3118 /**
3119 Returns the basic (overall) style.
3120
3121 This is the style of the whole buffer before further styles are applied,
3122 unlike the default style, which only affects the style currently being
3123 applied (for example, setting the default style to bold will cause
3124 subsequently inserted text to be bold).
3125 */
3126 virtual const wxRichTextAttr& GetBasicStyle() const { return m_attributes; }
3127
3128 /**
3129 Invalidates the buffer. With no argument, invalidates whole buffer.
3130 */
3131 virtual void Invalidate(const wxRichTextRange& invalidRange = wxRICHTEXT_ALL);
3132
3133 /**
3134 Do the (in)validation for this object only.
3135 */
3136 virtual void DoInvalidate(const wxRichTextRange& invalidRange);
3137
3138 /**
3139 Do the (in)validation both up and down the hierarchy.
3140 */
3141 virtual void InvalidateHierarchy(const wxRichTextRange& invalidRange = wxRICHTEXT_ALL);
3142
3143 /**
3144 Gather information about floating objects. If untilObj is non-NULL,
3145 will stop getting information if the current object is this, since we
3146 will collect the rest later.
3147 */
3148 virtual bool UpdateFloatingObjects(const wxRect& availableRect, wxRichTextObject* untilObj = NULL);
3149
3150 /**
3151 Get invalid range, rounding to entire paragraphs if argument is true.
3152 */
3153 wxRichTextRange GetInvalidRange(bool wholeParagraphs = false) const;
3154
3155 /**
3156 Returns @true if this object needs layout.
3157 */
3158 bool IsDirty() const { return m_invalidRange != wxRICHTEXT_NONE; }
3159
3160 /**
3161 Returns the wxRichTextFloatCollector of this object.
3162 */
3163 wxRichTextFloatCollector* GetFloatCollector() { return m_floatCollector; }
3164
3165 /**
3166 Returns the number of floating objects at this level.
3167 */
3168 int GetFloatingObjectCount() const;
3169
3170 /**
3171 Returns a list of floating objects.
3172 */
3173 bool GetFloatingObjects(wxRichTextObjectList& objects) const;
3174
3175 protected:
3176 wxRichTextCtrl* m_ctrl;
3177 wxRichTextAttr m_defaultAttributes;
3178
3179 // The invalidated range that will need full layout
3180 wxRichTextRange m_invalidRange;
3181
3182 // Is the last paragraph partial or complete?
3183 bool m_partialParagraph;
3184
3185 // The floating layout state
3186 wxRichTextFloatCollector* m_floatCollector;
3187 };
3188
3189 /**
3190 @class wxRichTextBox
3191
3192 This class implements a floating or inline text box, containing paragraphs.
3193
3194 @library{wxrichtext}
3195 @category{richtext}
3196
3197 @see wxRichTextParagraphLayoutBox, wxRichTextObject, wxRichTextBuffer, wxRichTextCtrl
3198 */
3199
3200 class WXDLLIMPEXP_RICHTEXT wxRichTextBox: public wxRichTextParagraphLayoutBox
3201 {
3202 DECLARE_DYNAMIC_CLASS(wxRichTextBox)
3203 public:
3204 // Constructors
3205
3206 /**
3207 Default constructor; optionally pass the parent object.
3208 */
3209
3210 wxRichTextBox(wxRichTextObject* parent = NULL);
3211
3212 /**
3213 Copy constructor.
3214 */
3215
3216 wxRichTextBox(const wxRichTextBox& obj): wxRichTextParagraphLayoutBox() { Copy(obj); }
3217
3218 // Overridables
3219
3220 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
3221
3222 virtual wxString GetXMLNodeName() const { return wxT("textbox"); }
3223
3224 virtual bool CanEditProperties() const { return true; }
3225
3226 virtual bool EditProperties(wxWindow* parent, wxRichTextBuffer* buffer);
3227
3228 virtual wxString GetPropertiesMenuLabel() const { return _("&Box"); }
3229
3230 // Accessors
3231
3232 // Operations
3233
3234 virtual wxRichTextObject* Clone() const { return new wxRichTextBox(*this); }
3235
3236 void Copy(const wxRichTextBox& obj);
3237
3238 protected:
3239 };
3240
3241 /**
3242 @class wxRichTextLine
3243
3244 This object represents a line in a paragraph, and stores
3245 offsets from the start of the paragraph representing the
3246 start and end positions of the line.
3247
3248 @library{wxrichtext}
3249 @category{richtext}
3250
3251 @see wxRichTextBuffer, wxRichTextCtrl
3252 */
3253
3254 class WXDLLIMPEXP_RICHTEXT wxRichTextLine
3255 {
3256 public:
3257 // Constructors
3258
3259 wxRichTextLine(wxRichTextParagraph* parent);
3260 wxRichTextLine(const wxRichTextLine& obj) { Init( NULL); Copy(obj); }
3261 virtual ~wxRichTextLine() {}
3262
3263 // Overridables
3264
3265 // Accessors
3266
3267 /**
3268 Sets the range associated with this line.
3269 */
3270 void SetRange(const wxRichTextRange& range) { m_range = range; }
3271 /**
3272 Sets the range associated with this line.
3273 */
3274 void SetRange(long from, long to) { m_range = wxRichTextRange(from, to); }
3275
3276 /**
3277 Returns the parent paragraph.
3278 */
3279 wxRichTextParagraph* GetParent() { return m_parent; }
3280
3281 /**
3282 Returns the range.
3283 */
3284 const wxRichTextRange& GetRange() const { return m_range; }
3285 /**
3286 Returns the range.
3287 */
3288 wxRichTextRange& GetRange() { return m_range; }
3289
3290 /**
3291 Returns the absolute range.
3292 */
3293 wxRichTextRange GetAbsoluteRange() const;
3294
3295 /**
3296 Returns the line size as calculated by Layout.
3297 */
3298 virtual wxSize GetSize() const { return m_size; }
3299
3300 /**
3301 Sets the line size as calculated by Layout.
3302 */
3303 virtual void SetSize(const wxSize& sz) { m_size = sz; }
3304
3305 /**
3306 Returns the object position relative to the parent.
3307 */
3308 virtual wxPoint GetPosition() const { return m_pos; }
3309
3310 /**
3311 Sets the object position relative to the parent.
3312 */
3313 virtual void SetPosition(const wxPoint& pos) { m_pos = pos; }
3314
3315 /**
3316 Returns the absolute object position.
3317 */
3318 virtual wxPoint GetAbsolutePosition() const;
3319
3320 /**
3321 Returns the rectangle enclosing the line.
3322 */
3323 virtual wxRect GetRect() const { return wxRect(GetAbsolutePosition(), GetSize()); }
3324
3325 /**
3326 Sets the stored descent.
3327 */
3328 void SetDescent(int descent) { m_descent = descent; }
3329
3330 /**
3331 Returns the stored descent.
3332 */
3333 int GetDescent() const { return m_descent; }
3334
3335 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
3336 wxArrayInt& GetObjectSizes() { return m_objectSizes; }
3337 const wxArrayInt& GetObjectSizes() const { return m_objectSizes; }
3338 #endif
3339
3340 // Operations
3341
3342 /**
3343 Initialises the object.
3344 */
3345 void Init(wxRichTextParagraph* parent);
3346
3347 /**
3348 Copies from @a obj.
3349 */
3350 void Copy(const wxRichTextLine& obj);
3351
3352 virtual wxRichTextLine* Clone() const { return new wxRichTextLine(*this); }
3353
3354 protected:
3355
3356 // The range of the line (start position to end position)
3357 // This is relative to the parent paragraph.
3358 wxRichTextRange m_range;
3359
3360 // Size and position measured relative to top of paragraph
3361 wxPoint m_pos;
3362 wxSize m_size;
3363
3364 // Maximum descent for this line (location of text baseline)
3365 int m_descent;
3366
3367 // The parent object
3368 wxRichTextParagraph* m_parent;
3369
3370 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
3371 wxArrayInt m_objectSizes;
3372 #endif
3373 };
3374
3375 WX_DECLARE_LIST_WITH_DECL( wxRichTextLine, wxRichTextLineList , class WXDLLIMPEXP_RICHTEXT );
3376
3377 /**
3378 @class wxRichTextParagraph
3379
3380 This object represents a single paragraph containing various objects such as text content, images, and further paragraph layout objects.
3381
3382 @library{wxrichtext}
3383 @category{richtext}
3384
3385 @see wxRichTextBuffer, wxRichTextCtrl
3386 */
3387
3388 class WXDLLIMPEXP_RICHTEXT wxRichTextParagraph: public wxRichTextCompositeObject
3389 {
3390 DECLARE_DYNAMIC_CLASS(wxRichTextParagraph)
3391 public:
3392 // Constructors
3393
3394 /**
3395 Constructor taking a parent and style.
3396 */
3397 wxRichTextParagraph(wxRichTextObject* parent = NULL, wxRichTextAttr* style = NULL);
3398 /**
3399 Constructor taking a text string, a parent and paragraph and character attributes.
3400 */
3401 wxRichTextParagraph(const wxString& text, wxRichTextObject* parent = NULL, wxRichTextAttr* paraStyle = NULL, wxRichTextAttr* charStyle = NULL);
3402 virtual ~wxRichTextParagraph();
3403 wxRichTextParagraph(const wxRichTextParagraph& obj): wxRichTextCompositeObject() { Copy(obj); }
3404
3405 // Overridables
3406
3407 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
3408
3409 virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
3410
3411 virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
3412
3413 virtual bool FindPosition(wxDC& dc, long index, wxPoint& pt, int* height, bool forceLineStart);
3414
3415 virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition, wxRichTextObject** obj, wxRichTextObject** contextObj, int flags = 0);
3416
3417 virtual void CalculateRange(long start, long& end);
3418
3419 virtual wxString GetXMLNodeName() const { return wxT("paragraph"); }
3420
3421 // Accessors
3422
3423 /**
3424 Returns the cached lines.
3425 */
3426 wxRichTextLineList& GetLines() { return m_cachedLines; }
3427
3428 // Operations
3429
3430 /**
3431 Copies the object.
3432 */
3433 void Copy(const wxRichTextParagraph& obj);
3434
3435 virtual wxRichTextObject* Clone() const { return new wxRichTextParagraph(*this); }
3436
3437 /**
3438 Clears the cached lines.
3439 */
3440 void ClearLines();
3441
3442 // Implementation
3443
3444 /**
3445 Applies paragraph styles such as centering to the wrapped lines.
3446 */
3447 virtual void ApplyParagraphStyle(wxRichTextLine* line, const wxRichTextAttr& attr, const wxRect& rect, wxDC& dc);
3448
3449 /**
3450 Inserts text at the given position.
3451 */
3452 virtual bool InsertText(long pos, const wxString& text);
3453
3454 /**
3455 Splits an object at this position if necessary, and returns
3456 the previous object, or NULL if inserting at the beginning.
3457 */
3458 virtual wxRichTextObject* SplitAt(long pos, wxRichTextObject** previousObject = NULL);
3459
3460 /**
3461 Moves content to a list from this point.
3462 */
3463 virtual void MoveToList(wxRichTextObject* obj, wxList& list);
3464
3465 /**
3466 Adds content back from a list.
3467 */
3468 virtual void MoveFromList(wxList& list);
3469
3470 /**
3471 Returns the plain text searching from the start or end of the range.
3472 The resulting string may be shorter than the range given.
3473 */
3474 bool GetContiguousPlainText(wxString& text, const wxRichTextRange& range, bool fromStart = true);
3475
3476 /**
3477 Finds a suitable wrap position. @a wrapPosition is the last position in the line to the left
3478 of the split.
3479 */
3480 bool FindWrapPosition(const wxRichTextRange& range, wxDC& dc, int availableSpace, long& wrapPosition, wxArrayInt* partialExtents);
3481
3482 /**
3483 Finds the object at the given position.
3484 */
3485 wxRichTextObject* FindObjectAtPosition(long position);
3486
3487 /**
3488 Returns the bullet text for this paragraph.
3489 */
3490 wxString GetBulletText();
3491
3492 /**
3493 Allocates or reuses a line object.
3494 */
3495 wxRichTextLine* AllocateLine(int pos);
3496
3497 /**
3498 Clears remaining unused line objects, if any.
3499 */
3500 bool ClearUnusedLines(int lineCount);
3501
3502 /**
3503 Returns combined attributes of the base style, paragraph style and character style. We use this to dynamically
3504 retrieve the actual style.
3505 */
3506 wxRichTextAttr GetCombinedAttributes(const wxRichTextAttr& contentStyle, bool includingBoxAttr = false) const;
3507
3508 /**
3509 Returns the combined attributes of the base style and paragraph style.
3510 */
3511 wxRichTextAttr GetCombinedAttributes(bool includingBoxAttr = false) const;
3512
3513 /**
3514 Returns the first position from pos that has a line break character.
3515 */
3516 long GetFirstLineBreakPosition(long pos);
3517
3518 /**
3519 Creates a default tabstop array.
3520 */
3521 static void InitDefaultTabs();
3522
3523 /**
3524 Clears the default tabstop array.
3525 */
3526 static void ClearDefaultTabs();
3527
3528 /**
3529 Returns the default tabstop array.
3530 */
3531 static const wxArrayInt& GetDefaultTabs() { return sm_defaultTabs; }
3532
3533 /**
3534 Lays out the floating objects.
3535 */
3536 void LayoutFloat(wxDC& dc, const wxRect& rect, int style, wxRichTextFloatCollector* floatCollector);
3537
3538 protected:
3539
3540 // The lines that make up the wrapped paragraph
3541 wxRichTextLineList m_cachedLines;
3542
3543 // Default tabstops
3544 static wxArrayInt sm_defaultTabs;
3545
3546 friend class wxRichTextFloatCollector;
3547 };
3548
3549 /**
3550 @class wxRichTextPlainText
3551
3552 This object represents a single piece of text.
3553
3554 @library{wxrichtext}
3555 @category{richtext}
3556
3557 @see wxRichTextBuffer, wxRichTextCtrl
3558 */
3559
3560 class WXDLLIMPEXP_RICHTEXT wxRichTextPlainText: public wxRichTextObject
3561 {
3562 DECLARE_DYNAMIC_CLASS(wxRichTextPlainText)
3563 public:
3564 // Constructors
3565
3566 /**
3567 Constructor.
3568 */
3569 wxRichTextPlainText(const wxString& text = wxEmptyString, wxRichTextObject* parent = NULL, wxRichTextAttr* style = NULL);
3570
3571 /**
3572 Copy constructor.
3573 */
3574 wxRichTextPlainText(const wxRichTextPlainText& obj): wxRichTextObject() { Copy(obj); }
3575
3576 // Overridables
3577
3578 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
3579
3580 virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
3581
3582 virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
3583
3584 virtual wxString GetTextForRange(const wxRichTextRange& range) const;
3585
3586 virtual wxRichTextObject* DoSplit(long pos);
3587
3588 virtual void CalculateRange(long start, long& end);
3589
3590 virtual bool DeleteRange(const wxRichTextRange& range);
3591
3592 virtual bool IsEmpty() const { return m_text.empty(); }
3593
3594 virtual bool CanMerge(wxRichTextObject* object) const;
3595
3596 virtual bool Merge(wxRichTextObject* object);
3597
3598 virtual void Dump(wxTextOutputStream& stream);
3599
3600 /**
3601 Get the first position from pos that has a line break character.
3602 */
3603 long GetFirstLineBreakPosition(long pos);
3604
3605 /// Does this object take note of paragraph attributes? Text and image objects don't.
3606 virtual bool UsesParagraphAttributes() const { return false; }
3607
3608 #if wxUSE_XML
3609 virtual bool ImportFromXML(wxRichTextBuffer* buffer, wxXmlNode* node, wxRichTextXMLHandler* handler, bool* recurse);
3610 #endif
3611
3612 #if wxRICHTEXT_HAVE_DIRECT_OUTPUT
3613 virtual bool ExportXML(wxOutputStream& stream, int indent, wxRichTextXMLHandler* handler);
3614 #endif
3615
3616 #if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT
3617 virtual bool ExportXML(wxXmlNode* parent, wxRichTextXMLHandler* handler);
3618 #endif
3619
3620 virtual wxString GetXMLNodeName() const { return wxT("text"); }
3621
3622 // Accessors
3623
3624 /**
3625 Returns the text.
3626 */
3627 const wxString& GetText() const { return m_text; }
3628
3629 /**
3630 Sets the text.
3631 */
3632 void SetText(const wxString& text) { m_text = text; }
3633
3634 // Operations
3635
3636 // Copies the text object,
3637 void Copy(const wxRichTextPlainText& obj);
3638
3639 // Clones the text object.
3640 virtual wxRichTextObject* Clone() const { return new wxRichTextPlainText(*this); }
3641
3642 private:
3643 bool DrawTabbedString(wxDC& dc, const wxRichTextAttr& attr, const wxRect& rect, wxString& str, wxCoord& x, wxCoord& y, bool selected);
3644
3645 protected:
3646 wxString m_text;
3647 };
3648
3649 /**
3650 @class wxRichTextImageBlock
3651
3652 This class stores information about an image, in binary in-memory form.
3653
3654 @library{wxrichtext}
3655 @category{richtext}
3656
3657 @see wxRichTextBuffer, wxRichTextCtrl
3658 */
3659
3660 class WXDLLIMPEXP_RICHTEXT wxRichTextImageBlock: public wxObject
3661 {
3662 public:
3663 /**
3664 Constructor.
3665 */
3666 wxRichTextImageBlock();
3667
3668 /**
3669 Copy constructor.
3670 */
3671 wxRichTextImageBlock(const wxRichTextImageBlock& block);
3672 virtual ~wxRichTextImageBlock();
3673
3674 /**
3675 Initialises the block.
3676 */
3677 void Init();
3678
3679 /**
3680 Clears the block.
3681 */
3682
3683 void Clear();
3684
3685 /**
3686 Load the original image into a memory block.
3687 If the image is not a JPEG, we must convert it into a JPEG
3688 to conserve space.
3689 If it's not a JPEG we can make use of @a image, already scaled, so we don't have to
3690 load the image a second time.
3691 */
3692 virtual bool MakeImageBlock(const wxString& filename, wxBitmapType imageType,
3693 wxImage& image, bool convertToJPEG = true);
3694
3695 /**
3696 Make an image block from the wxImage in the given
3697 format.
3698 */
3699 virtual bool MakeImageBlock(wxImage& image, wxBitmapType imageType, int quality = 80);
3700
3701 /**
3702 Uses a const wxImage for efficiency, but can't set quality (only relevant for JPEG)
3703 */
3704 virtual bool MakeImageBlockDefaultQuality(const wxImage& image, wxBitmapType imageType);
3705
3706 /**
3707 Makes the image block.
3708 */
3709 virtual bool DoMakeImageBlock(const wxImage& image, wxBitmapType imageType);
3710
3711 /**
3712 Writes the block to a file.
3713 */
3714 bool Write(const wxString& filename);
3715
3716 /**
3717 Writes the data in hex to a stream.
3718 */
3719 bool WriteHex(wxOutputStream& stream);
3720
3721 /**
3722 Reads the data in hex from a stream.
3723 */
3724 bool ReadHex(wxInputStream& stream, int length, wxBitmapType imageType);
3725
3726 /**
3727 Copy from @a block.
3728 */
3729 void Copy(const wxRichTextImageBlock& block);
3730
3731 // Load a wxImage from the block
3732 /**
3733 */
3734 bool Load(wxImage& image);
3735
3736 // Operators
3737
3738 /**
3739 Assignment operation.
3740 */
3741 void operator=(const wxRichTextImageBlock& block);
3742
3743 // Accessors
3744
3745 /**
3746 Returns the raw data.
3747 */
3748 unsigned char* GetData() const { return m_data; }
3749
3750 /**
3751 Returns the data size in bytes.
3752 */
3753 size_t GetDataSize() const { return m_dataSize; }
3754
3755 /**
3756 Returns the image type.
3757 */
3758 wxBitmapType GetImageType() const { return m_imageType; }
3759
3760 /**
3761 */
3762 void SetData(unsigned char* image) { m_data = image; }
3763
3764 /**
3765 Sets the data size.
3766 */
3767 void SetDataSize(size_t size) { m_dataSize = size; }
3768
3769 /**
3770 Sets the image type.
3771 */
3772 void SetImageType(wxBitmapType imageType) { m_imageType = imageType; }
3773
3774 /**
3775 Returns @true if the data is non-NULL.
3776 */
3777 bool IsOk() const { return GetData() != NULL; }
3778 bool Ok() const { return IsOk(); }
3779
3780 /**
3781 Gets the extension for the block's type.
3782 */
3783 wxString GetExtension() const;
3784
3785 /// Implementation
3786
3787 /**
3788 Allocates and reads from a stream as a block of memory.
3789 */
3790 static unsigned char* ReadBlock(wxInputStream& stream, size_t size);
3791
3792 /**
3793 Allocates and reads from a file as a block of memory.
3794 */
3795 static unsigned char* ReadBlock(const wxString& filename, size_t size);
3796
3797 /**
3798 Writes a memory block to stream.
3799 */
3800 static bool WriteBlock(wxOutputStream& stream, unsigned char* block, size_t size);
3801
3802 /**
3803 Writes a memory block to a file.
3804 */
3805 static bool WriteBlock(const wxString& filename, unsigned char* block, size_t size);
3806
3807 protected:
3808 // Size in bytes of the image stored.
3809 // This is in the raw, original form such as a JPEG file.
3810 unsigned char* m_data;
3811 size_t m_dataSize;
3812 wxBitmapType m_imageType;
3813 };
3814
3815 /**
3816 @class wxRichTextImage
3817
3818 This class implements a graphic object.
3819
3820 @library{wxrichtext}
3821 @category{richtext}
3822
3823 @see wxRichTextBuffer, wxRichTextCtrl, wxRichTextImageBlock
3824 */
3825
3826 class WXDLLIMPEXP_RICHTEXT wxRichTextImage: public wxRichTextObject
3827 {
3828 DECLARE_DYNAMIC_CLASS(wxRichTextImage)
3829 public:
3830 // Constructors
3831
3832 /**
3833 Default constructor.
3834 */
3835 wxRichTextImage(wxRichTextObject* parent = NULL): wxRichTextObject(parent) { }
3836
3837 /**
3838 Creates a wxRichTextImage from a wxImage.
3839 */
3840 wxRichTextImage(const wxImage& image, wxRichTextObject* parent = NULL, wxRichTextAttr* charStyle = NULL);
3841
3842 /**
3843 Creates a wxRichTextImage from an image block.
3844 */
3845 wxRichTextImage(const wxRichTextImageBlock& imageBlock, wxRichTextObject* parent = NULL, wxRichTextAttr* charStyle = NULL);
3846
3847 /**
3848 Copy constructor.
3849 */
3850 wxRichTextImage(const wxRichTextImage& obj): wxRichTextObject(obj) { Copy(obj); }
3851
3852 // Overridables
3853
3854 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
3855
3856 virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
3857
3858 virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
3859
3860 /**
3861 Returns the 'natural' size for this object - the image size.
3862 */
3863 virtual wxTextAttrSize GetNaturalSize() const;
3864
3865 virtual bool IsEmpty() const { return false; /* !m_imageBlock.IsOk(); */ }
3866
3867 virtual bool CanEditProperties() const { return true; }
3868
3869 virtual bool EditProperties(wxWindow* parent, wxRichTextBuffer* buffer);
3870
3871 virtual wxString GetPropertiesMenuLabel() const { return _("&Picture"); }
3872
3873 virtual bool UsesParagraphAttributes() const { return false; }
3874
3875 #if wxUSE_XML
3876 virtual bool ImportFromXML(wxRichTextBuffer* buffer, wxXmlNode* node, wxRichTextXMLHandler* handler, bool* recurse);
3877 #endif
3878
3879 #if wxRICHTEXT_HAVE_DIRECT_OUTPUT
3880 virtual bool ExportXML(wxOutputStream& stream, int indent, wxRichTextXMLHandler* handler);
3881 #endif
3882
3883 #if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT
3884 virtual bool ExportXML(wxXmlNode* parent, wxRichTextXMLHandler* handler);
3885 #endif
3886
3887 // Images can be floatable (optionally).
3888 virtual bool IsFloatable() const { return true; }
3889
3890 virtual wxString GetXMLNodeName() const { return wxT("image"); }
3891
3892 // Accessors
3893
3894 /**
3895 Returns the image cache (a scaled bitmap).
3896 */
3897 const wxBitmap& GetImageCache() const { return m_imageCache; }
3898
3899 /**
3900 Sets the image cache.
3901 */
3902 void SetImageCache(const wxBitmap& bitmap) { m_imageCache = bitmap; }
3903
3904 /**
3905 Resets the image cache.
3906 */
3907 void ResetImageCache() { m_imageCache = wxNullBitmap; }
3908
3909 /**
3910 Returns the image block containing the raw data.
3911 */
3912 wxRichTextImageBlock& GetImageBlock() { return m_imageBlock; }
3913
3914 // Operations
3915
3916 /**
3917 Copies the image object.
3918 */
3919 void Copy(const wxRichTextImage& obj);
3920
3921 /**
3922 Clones the image object.
3923 */
3924 virtual wxRichTextObject* Clone() const { return new wxRichTextImage(*this); }
3925
3926 /**
3927 Creates a cached image at the required size.
3928 */
3929 virtual bool LoadImageCache(wxDC& dc, bool resetCache = false);
3930
3931 protected:
3932 wxRichTextImageBlock m_imageBlock;
3933 wxBitmap m_imageCache;
3934 };
3935
3936 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextCommand;
3937 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextAction;
3938
3939 /**
3940 @class wxRichTextBuffer
3941
3942 This is a kind of paragraph layout box, used to represent the whole buffer.
3943
3944 @library{wxrichtext}
3945 @category{richtext}
3946
3947 @see wxRichTextParagraphLayoutBox, wxRichTextCtrl
3948 */
3949
3950 class WXDLLIMPEXP_RICHTEXT wxRichTextBuffer: public wxRichTextParagraphLayoutBox
3951 {
3952 DECLARE_DYNAMIC_CLASS(wxRichTextBuffer)
3953 public:
3954 // Constructors
3955
3956 /**
3957 Default constructor.
3958 */
3959 wxRichTextBuffer() { Init(); }
3960
3961 /**
3962 Copy constructor.
3963 */
3964 wxRichTextBuffer(const wxRichTextBuffer& obj): wxRichTextParagraphLayoutBox() { Init(); Copy(obj); }
3965
3966 virtual ~wxRichTextBuffer() ;
3967
3968 // Accessors
3969
3970 /**
3971 Returns the command processor.
3972 A text buffer always creates its own command processor when it is initialized.
3973 */
3974 wxCommandProcessor* GetCommandProcessor() const { return m_commandProcessor; }
3975
3976 /**
3977 Sets style sheet, if any. This will allow the application to use named character and paragraph
3978 styles found in the style sheet.
3979
3980 Neither the buffer nor the control owns the style sheet so must be deleted by the application.
3981 */
3982 void SetStyleSheet(wxRichTextStyleSheet* styleSheet) { m_styleSheet = styleSheet; }
3983
3984 /**
3985 Returns the style sheet.
3986 */
3987 virtual wxRichTextStyleSheet* GetStyleSheet() const { return m_styleSheet; }
3988
3989 /**
3990 Sets the style sheet and sends a notification of the change.
3991 */
3992 bool SetStyleSheetAndNotify(wxRichTextStyleSheet* sheet);
3993
3994 /**
3995 Pushes the style sheet to the top of the style sheet stack.
3996 */
3997 bool PushStyleSheet(wxRichTextStyleSheet* styleSheet);
3998
3999 /**
4000 Pops the style sheet from the top of the style sheet stack.
4001 */
4002 wxRichTextStyleSheet* PopStyleSheet();
4003
4004 /**
4005 Returns the table storing fonts, for quick access and font reuse.
4006 */
4007 wxRichTextFontTable& GetFontTable() { return m_fontTable; }
4008
4009 /**
4010 Returns the table storing fonts, for quick access and font reuse.
4011 */
4012 const wxRichTextFontTable& GetFontTable() const { return m_fontTable; }
4013
4014 /**
4015 Sets table storing fonts, for quick access and font reuse.
4016 */
4017 void SetFontTable(const wxRichTextFontTable& table) { m_fontTable = table; }
4018
4019 // Operations
4020
4021 /**
4022 Initialisation.
4023 */
4024 void Init();
4025
4026 /**
4027 Clears the buffer, adds an empty paragraph, and clears the command processor.
4028 */
4029 virtual void ResetAndClearCommands();
4030
4031 //@{
4032 /**
4033 Loads content from a stream or file.
4034 Not all handlers will implement file loading.
4035 */
4036 virtual bool LoadFile(const wxString& filename, wxRichTextFileType type = wxRICHTEXT_TYPE_ANY);
4037 virtual bool LoadFile(wxInputStream& stream, wxRichTextFileType type = wxRICHTEXT_TYPE_ANY);
4038 //@}
4039
4040 //@{
4041 /**
4042 Saves content to a stream or file.
4043 Not all handlers will implement file saving.
4044 */
4045 virtual bool SaveFile(const wxString& filename, wxRichTextFileType type = wxRICHTEXT_TYPE_ANY);
4046 virtual bool SaveFile(wxOutputStream& stream, wxRichTextFileType type = wxRICHTEXT_TYPE_ANY);
4047 //@}
4048
4049 /**
4050 Sets the handler flags, controlling loading and saving.
4051 */
4052 void SetHandlerFlags(int flags) { m_handlerFlags = flags; }
4053
4054 /**
4055 Gets the handler flags, controlling loading and saving.
4056 */
4057 int GetHandlerFlags() const { return m_handlerFlags; }
4058
4059 /**
4060 Convenience function to add a paragraph of text.
4061 */
4062 virtual wxRichTextRange AddParagraph(const wxString& text, wxRichTextAttr* paraStyle = NULL) { Modify(); return wxRichTextParagraphLayoutBox::AddParagraph(text, paraStyle); }
4063
4064 /**
4065 Begin collapsing undo/redo commands. Note that this may not work properly
4066 if combining commands that delete or insert content, changing ranges for
4067 subsequent actions.
4068
4069 @a cmdName should be the name of the combined command that will appear
4070 next to Undo and Redo in the edit menu.
4071 */
4072 virtual bool BeginBatchUndo(const wxString& cmdName);
4073
4074 /**
4075 End collapsing undo/redo commands.
4076 */
4077 virtual bool EndBatchUndo();
4078
4079 /**
4080 Returns @true if we are collapsing commands.
4081 */
4082 virtual bool BatchingUndo() const { return m_batchedCommandDepth > 0; }
4083
4084 /**
4085 Submit the action immediately, or delay according to whether collapsing is on.
4086 */
4087 virtual bool SubmitAction(wxRichTextAction* action);
4088
4089 /**
4090 Returns the collapsed command.
4091 */
4092 virtual wxRichTextCommand* GetBatchedCommand() const { return m_batchedCommand; }
4093
4094 /**
4095 Begin suppressing undo/redo commands. The way undo is suppressed may be implemented
4096 differently by each command. If not dealt with by a command implementation, then
4097 it will be implemented automatically by not storing the command in the undo history
4098 when the action is submitted to the command processor.
4099 */
4100 virtual bool BeginSuppressUndo();
4101
4102 /**
4103 End suppressing undo/redo commands.
4104 */
4105 virtual bool EndSuppressUndo();
4106
4107 /**
4108 Are we suppressing undo??
4109 */
4110 virtual bool SuppressingUndo() const { return m_suppressUndo > 0; }
4111
4112 /**
4113 Copy the range to the clipboard.
4114 */
4115 virtual bool CopyToClipboard(const wxRichTextRange& range);
4116
4117 /**
4118 Paste the clipboard content to the buffer.
4119 */
4120 virtual bool PasteFromClipboard(long position);
4121
4122 /**
4123 Returns @true if we can paste from the clipboard.
4124 */
4125 virtual bool CanPasteFromClipboard() const;
4126
4127 /**
4128 Begin using a style.
4129 */
4130 virtual bool BeginStyle(const wxRichTextAttr& style);
4131
4132 /**
4133 End the style.
4134 */
4135 virtual bool EndStyle();
4136
4137 /**
4138 End all styles.
4139 */
4140 virtual bool EndAllStyles();
4141
4142 /**
4143 Clears the style stack.
4144 */
4145 virtual void ClearStyleStack();
4146
4147 /**
4148 Returns the size of the style stack, for example to check correct nesting.
4149 */
4150 virtual size_t GetStyleStackSize() const { return m_attributeStack.GetCount(); }
4151
4152 /**
4153 Begins using bold.
4154 */
4155 bool BeginBold();
4156
4157 /**
4158 Ends using bold.
4159 */
4160 bool EndBold() { return EndStyle(); }
4161
4162 /**
4163 Begins using italic.
4164 */
4165 bool BeginItalic();
4166
4167 /**
4168 Ends using italic.
4169 */
4170 bool EndItalic() { return EndStyle(); }
4171
4172 /**
4173 Begins using underline.
4174 */
4175 bool BeginUnderline();
4176
4177 /**
4178 Ends using underline.
4179 */
4180 bool EndUnderline() { return EndStyle(); }
4181
4182 /**
4183 Begins using point size.
4184 */
4185 bool BeginFontSize(int pointSize);
4186
4187 /**
4188 Ends using point size.
4189 */
4190 bool EndFontSize() { return EndStyle(); }
4191
4192 /**
4193 Begins using this font.
4194 */
4195 bool BeginFont(const wxFont& font);
4196
4197 /**
4198 Ends using a font.
4199 */
4200 bool EndFont() { return EndStyle(); }
4201
4202 /**
4203 Begins using this colour.
4204 */
4205 bool BeginTextColour(const wxColour& colour);
4206
4207 /**
4208 Ends using a colour.
4209 */
4210 bool EndTextColour() { return EndStyle(); }
4211
4212 /**
4213 Begins using alignment.
4214 */
4215 bool BeginAlignment(wxTextAttrAlignment alignment);
4216
4217 /**
4218 Ends alignment.
4219 */
4220 bool EndAlignment() { return EndStyle(); }
4221
4222 /**
4223 Begins using @a leftIndent for the left indent, and optionally @a leftSubIndent for
4224 the sub-indent. Both are expressed in tenths of a millimetre.
4225
4226 The sub-indent is an offset from the left of the paragraph, and is used for all
4227 but the first line in a paragraph. A positive value will cause the first line to appear
4228 to the left of the subsequent lines, and a negative value will cause the first line to be
4229 indented relative to the subsequent lines.
4230 */
4231 bool BeginLeftIndent(int leftIndent, int leftSubIndent = 0);
4232
4233 /**
4234 Ends left indent.
4235 */
4236 bool EndLeftIndent() { return EndStyle(); }
4237
4238 /**
4239 Begins a right indent, specified in tenths of a millimetre.
4240 */
4241 bool BeginRightIndent(int rightIndent);
4242
4243 /**
4244 Ends right indent.
4245 */
4246 bool EndRightIndent() { return EndStyle(); }
4247
4248 /**
4249 Begins paragraph spacing; pass the before-paragraph and after-paragraph spacing
4250 in tenths of a millimetre.
4251 */
4252 bool BeginParagraphSpacing(int before, int after);
4253
4254 /**
4255 Ends paragraph spacing.
4256 */
4257 bool EndParagraphSpacing() { return EndStyle(); }
4258
4259 /**
4260 Begins line spacing using the specified value. @e spacing is a multiple, where
4261 10 means single-spacing, 15 means 1.5 spacing, and 20 means double spacing.
4262
4263 The ::wxTextAttrLineSpacing enumeration values are defined for convenience.
4264 */
4265 bool BeginLineSpacing(int lineSpacing);
4266
4267 /**
4268 Ends line spacing.
4269 */
4270 bool EndLineSpacing() { return EndStyle(); }
4271
4272 /**
4273 Begins numbered bullet.
4274
4275 This call will be needed for each item in the list, and the
4276 application should take care of incrementing the numbering.
4277
4278 @a bulletNumber is a number, usually starting with 1.
4279 @a leftIndent and @a leftSubIndent are values in tenths of a millimetre.
4280 @a bulletStyle is a bitlist of the following values:
4281
4282 wxRichTextBuffer uses indentation to render a bulleted item.
4283 The left indent is the distance between the margin and the bullet.
4284 The content of the paragraph, including the first line, starts
4285 at leftMargin + leftSubIndent.
4286 So the distance between the left edge of the bullet and the
4287 left of the actual paragraph is leftSubIndent.
4288 */
4289 bool BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_ARABIC|wxTEXT_ATTR_BULLET_STYLE_PERIOD);
4290
4291 /**
4292 Ends numbered bullet.
4293 */
4294 bool EndNumberedBullet() { return EndStyle(); }
4295
4296 /**
4297 Begins applying a symbol bullet, using a character from the current font.
4298
4299 See BeginNumberedBullet() for an explanation of how indentation is used
4300 to render the bulleted paragraph.
4301 */
4302 bool BeginSymbolBullet(const wxString& symbol, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL);
4303
4304 /**
4305 Ends symbol bullet.
4306 */
4307 bool EndSymbolBullet() { return EndStyle(); }
4308
4309 /**
4310 Begins applying a standard bullet, using one of the standard bullet names
4311 (currently @c standard/circle or @c standard/square.
4312
4313 See BeginNumberedBullet() for an explanation of how indentation is used to
4314 render the bulleted paragraph.
4315 */
4316 bool BeginStandardBullet(const wxString& bulletName, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_STANDARD);
4317
4318 /**
4319 Ends standard bullet.
4320 */
4321 bool EndStandardBullet() { return EndStyle(); }
4322
4323 /**
4324 Begins named character style.
4325 */
4326 bool BeginCharacterStyle(const wxString& characterStyle);
4327
4328 /**
4329 Ends named character style.
4330 */
4331 bool EndCharacterStyle() { return EndStyle(); }
4332
4333 /**
4334 Begins named paragraph style.
4335 */
4336 bool BeginParagraphStyle(const wxString& paragraphStyle);
4337
4338 /**
4339 Ends named character style.
4340 */
4341 bool EndParagraphStyle() { return EndStyle(); }
4342
4343 /**
4344 Begins named list style.
4345
4346 Optionally, you can also pass a level and a number.
4347 */
4348 bool BeginListStyle(const wxString& listStyle, int level = 1, int number = 1);
4349
4350 /**
4351 Ends named character style.
4352 */
4353 bool EndListStyle() { return EndStyle(); }
4354
4355 /**
4356 Begins applying wxTEXT_ATTR_URL to the content.
4357
4358 Pass a URL and optionally, a character style to apply, since it is common
4359 to mark a URL with a familiar style such as blue text with underlining.
4360 */
4361 bool BeginURL(const wxString& url, const wxString& characterStyle = wxEmptyString);
4362
4363 /**
4364 Ends URL.
4365 */
4366 bool EndURL() { return EndStyle(); }
4367
4368 // Event handling
4369
4370 /**
4371 Adds an event handler.
4372
4373 A buffer associated with a control has the control as the only event handler,
4374 but the application is free to add more if further notification is required.
4375 All handlers are notified of an event originating from the buffer, such as
4376 the replacement of a style sheet during loading.
4377
4378 The buffer never deletes any of the event handlers, unless RemoveEventHandler()
4379 is called with @true as the second argument.
4380 */
4381 bool AddEventHandler(wxEvtHandler* handler);
4382
4383 /**
4384 Removes an event handler from the buffer's list of handlers, deleting the
4385 object if @a deleteHandler is @true.
4386 */
4387 bool RemoveEventHandler(wxEvtHandler* handler, bool deleteHandler = false);
4388
4389 /**
4390 Clear event handlers.
4391 */
4392 void ClearEventHandlers();
4393
4394 /**
4395 Send event to event handlers. If sendToAll is true, will send to all event handlers,
4396 otherwise will stop at the first successful one.
4397 */
4398 bool SendEvent(wxEvent& event, bool sendToAll = true);
4399
4400 // Implementation
4401
4402 virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition, wxRichTextObject** obj, wxRichTextObject** contextObj, int flags = 0);
4403
4404 /**
4405 Copies the buffer.
4406 */
4407 void Copy(const wxRichTextBuffer& obj);
4408
4409 /**
4410 Assignment operator.
4411 */
4412 void operator= (const wxRichTextBuffer& obj) { Copy(obj); }
4413
4414 /**
4415 Clones the buffer.
4416 */
4417 virtual wxRichTextObject* Clone() const { return new wxRichTextBuffer(*this); }
4418
4419 /**
4420 Submits a command to insert paragraphs.
4421 */
4422 bool InsertParagraphsWithUndo(long pos, const wxRichTextParagraphLayoutBox& paragraphs, wxRichTextCtrl* ctrl, int flags = 0);
4423
4424 /**
4425 Submits a command to insert the given text.
4426 */
4427 bool InsertTextWithUndo(long pos, const wxString& text, wxRichTextCtrl* ctrl, int flags = 0);
4428
4429 /**
4430 Submits a command to insert a newline.
4431 */
4432 bool InsertNewlineWithUndo(long pos, wxRichTextCtrl* ctrl, int flags = 0);
4433
4434 /**
4435 Submits a command to insert the given image.
4436 */
4437 bool InsertImageWithUndo(long pos, const wxRichTextImageBlock& imageBlock, wxRichTextCtrl* ctrl, int flags = 0,
4438 const wxRichTextAttr& textAttr = wxRichTextAttr());
4439
4440 /**
4441 Submits a command to insert an object.
4442 */
4443 wxRichTextObject* InsertObjectWithUndo(long pos, wxRichTextObject *object, wxRichTextCtrl* ctrl, int flags);
4444
4445 /**
4446 Submits a command to delete this range.
4447 */
4448 bool DeleteRangeWithUndo(const wxRichTextRange& range, wxRichTextCtrl* ctrl);
4449
4450 /**
4451 Mark modified.
4452 */
4453 void Modify(bool modify = true) { m_modified = modify; }
4454
4455 /**
4456 Returns @true if the buffer was modified.
4457 */
4458 bool IsModified() const { return m_modified; }
4459
4460 //@{
4461 /**
4462 Dumps contents of buffer for debugging purposes.
4463 */
4464 virtual void Dump();
4465 virtual void Dump(wxTextOutputStream& stream) { wxRichTextParagraphLayoutBox::Dump(stream); }
4466 //@}
4467
4468 /**
4469 Returns the file handlers.
4470 */
4471 static wxList& GetHandlers() { return sm_handlers; }
4472
4473 /**
4474 Adds a file handler to the end.
4475 */
4476 static void AddHandler(wxRichTextFileHandler *handler);
4477
4478 /**
4479 Inserts a file handler at the front.
4480 */
4481 static void InsertHandler(wxRichTextFileHandler *handler);
4482
4483 /**
4484 Removes a file handler.
4485 */
4486 static bool RemoveHandler(const wxString& name);
4487
4488 /**
4489 Finds a file handler by name.
4490 */
4491 static wxRichTextFileHandler *FindHandler(const wxString& name);
4492
4493 /**
4494 Finds a file handler by extension and type.
4495 */
4496 static wxRichTextFileHandler *FindHandler(const wxString& extension, wxRichTextFileType imageType);
4497
4498 /**
4499 Finds a handler by filename or, if supplied, type.
4500 */
4501 static wxRichTextFileHandler *FindHandlerFilenameOrType(const wxString& filename,
4502 wxRichTextFileType imageType);
4503
4504 /**
4505 Finds a handler by type.
4506 */
4507 static wxRichTextFileHandler *FindHandler(wxRichTextFileType imageType);
4508
4509 /**
4510 Gets a wildcard incorporating all visible handlers. If @a types is present,
4511 it will be filled with the file type corresponding to each filter. This can be
4512 used to determine the type to pass to LoadFile given a selected filter.
4513 */
4514 static wxString GetExtWildcard(bool combine = false, bool save = false, wxArrayInt* types = NULL);
4515
4516 /**
4517 Clean up file handlers.
4518 */
4519 static void CleanUpHandlers();
4520
4521 /**
4522 Initialise the standard file handlers.
4523 Currently, only the plain text loading/saving handler is initialised by default.
4524 */
4525 static void InitStandardHandlers();
4526
4527 /**
4528 Returns the renderer object.
4529 */
4530 static wxRichTextRenderer* GetRenderer() { return sm_renderer; }
4531
4532 /**
4533 Sets @a renderer as the object to be used to render certain aspects of the
4534 content, such as bullets.
4535
4536 You can override default rendering by deriving a new class from
4537 wxRichTextRenderer or wxRichTextStdRenderer, overriding one or more
4538 virtual functions, and setting an instance of the class using this function.
4539 */
4540 static void SetRenderer(wxRichTextRenderer* renderer);
4541
4542 /**
4543 Returns the minimum margin between bullet and paragraph in 10ths of a mm.
4544 */
4545 static int GetBulletRightMargin() { return sm_bulletRightMargin; }
4546
4547 /**
4548 Sets the minimum margin between bullet and paragraph in 10ths of a mm.
4549 */
4550 static void SetBulletRightMargin(int margin) { sm_bulletRightMargin = margin; }
4551
4552 /**
4553 Returns the factor to multiply by character height to get a reasonable bullet size.
4554 */
4555 static float GetBulletProportion() { return sm_bulletProportion; }
4556
4557 /**
4558 Sets the factor to multiply by character height to get a reasonable bullet size.
4559 */
4560 static void SetBulletProportion(float prop) { sm_bulletProportion = prop; }
4561
4562 /**
4563 Returns the scale factor for calculating dimensions.
4564 */
4565 double GetScale() const { return m_scale; }
4566
4567 /**
4568 Sets the scale factor for calculating dimensions.
4569 */
4570 void SetScale(double scale) { m_scale = scale; }
4571
4572 protected:
4573
4574 /// Command processor
4575 wxCommandProcessor* m_commandProcessor;
4576
4577 /// Table storing fonts
4578 wxRichTextFontTable m_fontTable;
4579
4580 /// Has been modified?
4581 bool m_modified;
4582
4583 /// Collapsed command stack
4584 int m_batchedCommandDepth;
4585
4586 /// Name for collapsed command
4587 wxString m_batchedCommandsName;
4588
4589 /// Current collapsed command accumulating actions
4590 wxRichTextCommand* m_batchedCommand;
4591
4592 /// Whether to suppress undo
4593 int m_suppressUndo;
4594
4595 /// Style sheet, if any
4596 wxRichTextStyleSheet* m_styleSheet;
4597
4598 /// List of event handlers that will be notified of events
4599 wxList m_eventHandlers;
4600
4601 /// Stack of attributes for convenience functions
4602 wxList m_attributeStack;
4603
4604 /// Flags to be passed to handlers
4605 int m_handlerFlags;
4606
4607 /// File handlers
4608 static wxList sm_handlers;
4609
4610 /// Renderer
4611 static wxRichTextRenderer* sm_renderer;
4612
4613 /// Minimum margin between bullet and paragraph in 10ths of a mm
4614 static int sm_bulletRightMargin;
4615
4616 /// Factor to multiply by character height to get a reasonable bullet size
4617 static float sm_bulletProportion;
4618
4619 /// Scaling factor in use: needed to calculate correct dimensions when printing
4620 double m_scale;
4621 };
4622
4623 /**
4624 @class wxRichTextCell
4625
4626 wxRichTextCell is the cell in a table.
4627 */
4628
4629 class WXDLLIMPEXP_RICHTEXT wxRichTextCell: public wxRichTextBox
4630 {
4631 DECLARE_DYNAMIC_CLASS(wxRichTextCell)
4632 public:
4633 // Constructors
4634
4635 /**
4636 Default constructor; optionally pass the parent object.
4637 */
4638
4639 wxRichTextCell(wxRichTextObject* parent = NULL);
4640
4641 /**
4642 Copy constructor.
4643 */
4644
4645 wxRichTextCell(const wxRichTextCell& obj): wxRichTextBox() { Copy(obj); }
4646
4647 // Overridables
4648
4649 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
4650
4651 virtual wxString GetXMLNodeName() const { return wxT("cell"); }
4652
4653 virtual bool CanEditProperties() const { return true; }
4654
4655 virtual bool EditProperties(wxWindow* parent, wxRichTextBuffer* buffer);
4656
4657 virtual wxString GetPropertiesMenuLabel() const { return _("&Cell"); }
4658
4659 // Accessors
4660
4661 // Operations
4662
4663 virtual wxRichTextObject* Clone() const { return new wxRichTextCell(*this); }
4664
4665 void Copy(const wxRichTextCell& obj);
4666
4667 protected:
4668 };
4669
4670 /**
4671 @class wxRichTextTable
4672
4673 wxRichTextTable represents a table with arbitrary columns and rows.
4674 */
4675
4676 WX_DEFINE_ARRAY_PTR(wxRichTextObject*, wxRichTextObjectPtrArray);
4677 WX_DECLARE_OBJARRAY(wxRichTextObjectPtrArray, wxRichTextObjectPtrArrayArray);
4678
4679 class WXDLLIMPEXP_RICHTEXT wxRichTextTable: public wxRichTextBox
4680 {
4681 DECLARE_DYNAMIC_CLASS(wxRichTextTable)
4682 public:
4683
4684 // Constructors
4685
4686 /**
4687 Default constructor; optionally pass the parent object.
4688 */
4689
4690 wxRichTextTable(wxRichTextObject* parent = NULL);
4691
4692 /**
4693 Copy constructor.
4694 */
4695
4696 wxRichTextTable(const wxRichTextTable& obj): wxRichTextBox() { Copy(obj); }
4697
4698 // Overridables
4699
4700 virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
4701
4702 virtual wxString GetXMLNodeName() const { return wxT("table"); }
4703
4704 virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
4705
4706 virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
4707
4708 virtual bool DeleteRange(const wxRichTextRange& range);
4709
4710 virtual wxString GetTextForRange(const wxRichTextRange& range) const;
4711
4712 #if wxUSE_XML
4713 virtual bool ImportFromXML(wxRichTextBuffer* buffer, wxXmlNode* node, wxRichTextXMLHandler* handler, bool* recurse);
4714 #endif
4715
4716 #if wxRICHTEXT_HAVE_DIRECT_OUTPUT
4717 virtual bool ExportXML(wxOutputStream& stream, int indent, wxRichTextXMLHandler* handler);
4718 #endif
4719
4720 #if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT
4721 virtual bool ExportXML(wxXmlNode* parent, wxRichTextXMLHandler* handler);
4722 #endif
4723
4724 virtual bool FindPosition(wxDC& dc, long index, wxPoint& pt, int* height, bool forceLineStart);
4725
4726 virtual void CalculateRange(long start, long& end);
4727
4728 // Can this object handle the selections of its children? FOr example, a table.
4729 virtual bool HandlesChildSelections() const { return true; }
4730
4731 /// Returns a selection object specifying the selections between start and end character positions.
4732 /// For example, a table would deduce what cells (of range length 1) are selected when dragging across the table.
4733 virtual wxRichTextSelection GetSelection(long start, long end) const;
4734
4735 virtual bool CanEditProperties() const { return true; }
4736
4737 virtual bool EditProperties(wxWindow* parent, wxRichTextBuffer* buffer);
4738
4739 virtual wxString GetPropertiesMenuLabel() const { return _("&Table"); }
4740
4741 // Returns true if objects of this class can accept the focus, i.e. a call to SetFocusObject
4742 // is possible. For example, containers supporting text, such as a text box object, can accept the focus,
4743 // but a table can't (set the focus to individual cells instead).
4744 virtual bool AcceptsFocus() const { return false; }
4745
4746 // Accessors
4747
4748 /**
4749 Returns the cells array.
4750 */
4751 const wxRichTextObjectPtrArrayArray& GetCells() const { return m_cells; }
4752
4753 /**
4754 Returns the cells array.
4755 */
4756 wxRichTextObjectPtrArrayArray& GetCells() { return m_cells; }
4757
4758 /**
4759 Returns the row count.
4760 */
4761 int GetRowCount() const { return m_rowCount; }
4762
4763 /**
4764 Returns the column count.
4765 */
4766 int GetColumnCount() const { return m_colCount; }
4767
4768 /**
4769 Returns the cell at the given row/column position.
4770 */
4771 virtual wxRichTextCell* GetCell(int row, int col) const;
4772
4773 /**
4774 Returns the cell at the given character position (in the range of the table).
4775 */
4776 virtual wxRichTextCell* GetCell(long pos) const;
4777
4778 /**
4779 Returns the row/column for a given character position.
4780 */
4781 virtual bool GetCellRowColumnPosition(long pos, int& row, int& col) const;
4782
4783 // Operations
4784
4785 /**
4786 Clears the table.
4787 */
4788
4789 virtual void ClearTable();
4790
4791 /**
4792 Creates a table of the given dimensions.
4793 */
4794
4795 virtual bool CreateTable(int rows, int cols);
4796
4797 /**
4798 Sets the attributes for the cells specified by the selection.
4799 */
4800
4801 virtual bool SetCellStyle(const wxRichTextSelection& selection, const wxRichTextAttr& style, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
4802
4803 /**
4804 Deletes rows from the given row position.
4805 */
4806
4807 virtual bool DeleteRows(int startRow, int noRows = 1);
4808
4809 /**
4810 Deletes columns from the given column position.
4811 */
4812
4813 virtual bool DeleteColumns(int startCol, int noCols = 1);
4814
4815 /**
4816 Adds rows from the given row position.
4817 */
4818
4819 virtual bool AddRows(int startRow, int noRows = 1, const wxRichTextAttr& attr = wxRichTextAttr());
4820
4821 /**
4822 Adds columns from the given column position.
4823 */
4824
4825 virtual bool AddColumns(int startCol, int noCols = 1, const wxRichTextAttr& attr = wxRichTextAttr());
4826
4827 // Makes a clone of this object.
4828 virtual wxRichTextObject* Clone() const { return new wxRichTextTable(*this); }
4829
4830 // Copies this object.
4831 void Copy(const wxRichTextTable& obj);
4832
4833 protected:
4834
4835 int m_rowCount;
4836 int m_colCount;
4837
4838 // An array of rows, each of which is a wxRichTextObjectPtrArray containing
4839 // the cell objects. The cell objects are also children of this object.
4840 // Problem: if boxes are immediate children of a box, this will cause problems
4841 // with wxRichTextParagraphLayoutBox functions (and functions elsewhere) that
4842 // expect to find just paragraphs. May have to adjust the way we handle the
4843 // hierarchy to accept non-paragraph objects in a paragraph layout box.
4844 // We'll be overriding much wxRichTextParagraphLayoutBox functionality so this
4845 // may not be such a problem. Perhaps the table should derive from a different
4846 // class?
4847 wxRichTextObjectPtrArrayArray m_cells;
4848 };
4849
4850
4851 /**
4852 The command identifiers for Do/Undo.
4853 */
4854
4855 enum wxRichTextCommandId
4856 {
4857 wxRICHTEXT_INSERT,
4858 wxRICHTEXT_DELETE,
4859 wxRICHTEXT_CHANGE_ATTRIBUTES,
4860 wxRICHTEXT_CHANGE_STYLE,
4861 wxRICHTEXT_CHANGE_OBJECT
4862 };
4863
4864 /**
4865 @class wxRichTextObjectAddress
4866
4867 A class for specifying an object anywhere in an object hierarchy,
4868 without using a pointer, necessary since wxRTC commands may delete
4869 and recreate sub-objects so physical object addresses change. An array
4870 of positions (one per hierarchy level) is used.
4871
4872 @library{wxrichtext}
4873 @category{richtext}
4874
4875 @see wxRichTextCommand
4876 */
4877
4878 class WXDLLIMPEXP_RICHTEXT wxRichTextObjectAddress
4879 {
4880 public:
4881 /**
4882 Creates the address given a container and an object.
4883 */
4884 wxRichTextObjectAddress(wxRichTextParagraphLayoutBox* topLevelContainer, wxRichTextObject* obj) { Create(topLevelContainer, obj); }
4885 /**
4886 */
4887 wxRichTextObjectAddress() { Init(); }
4888 /**
4889 */
4890 wxRichTextObjectAddress(const wxRichTextObjectAddress& address) { Copy(address); }
4891
4892 void Init() {}
4893
4894 /**
4895 Copies the address.
4896 */
4897 void Copy(const wxRichTextObjectAddress& address) { m_address = address.m_address; }
4898
4899 /**
4900 Assignment operator.
4901 */
4902 void operator=(const wxRichTextObjectAddress& address) { Copy(address); }
4903
4904 /**
4905 Returns the object specified by the address, given a top level container.
4906 */
4907 wxRichTextObject* GetObject(wxRichTextParagraphLayoutBox* topLevelContainer) const;
4908
4909 /**
4910 Creates the address given a container and an object.
4911 */
4912 bool Create(wxRichTextParagraphLayoutBox* topLevelContainer, wxRichTextObject* obj);
4913
4914 /**
4915 Returns the array of integers representing the object address.
4916 */
4917 wxArrayInt& GetAddress() { return m_address; }
4918
4919 /**
4920 Returns the array of integers representing the object address.
4921 */
4922 const wxArrayInt& GetAddress() const { return m_address; }
4923
4924 /**
4925 Sets the address from an array of integers.
4926 */
4927 void SetAddress(const wxArrayInt& address) { m_address = address; }
4928
4929 protected:
4930
4931 wxArrayInt m_address;
4932 };
4933
4934 class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextAction;
4935
4936 /**
4937 @class wxRichTextCommand
4938
4939 Implements a command on the undo/redo stack. A wxRichTextCommand object contains one or more wxRichTextAction
4940 objects, allowing aggregation of a number of operations into one command.
4941
4942 @library{wxrichtext}
4943 @category{richtext}
4944
4945 @see wxRichTextAction
4946 */
4947
4948 class WXDLLIMPEXP_RICHTEXT wxRichTextCommand: public wxCommand
4949 {
4950 public:
4951 /**
4952 Constructor for one action.
4953 */
4954 wxRichTextCommand(const wxString& name, wxRichTextCommandId id, wxRichTextBuffer* buffer,
4955 wxRichTextParagraphLayoutBox* container, wxRichTextCtrl* ctrl, bool ignoreFirstTime = false);
4956
4957 /**
4958 Constructor for multiple actions.
4959 */
4960 wxRichTextCommand(const wxString& name);
4961
4962 virtual ~wxRichTextCommand();
4963
4964 /**
4965 Performs the command.
4966 */
4967 bool Do();
4968
4969 /**
4970 Undoes the command.
4971 */
4972 bool Undo();
4973
4974 /**
4975 Adds an action to the action list.
4976 */
4977 void AddAction(wxRichTextAction* action);
4978
4979 /**
4980 Clears the action list.
4981 */
4982 void ClearActions();
4983
4984 /**
4985 Returns the action list.
4986 */
4987 wxList& GetActions() { return m_actions; }
4988
4989 protected:
4990
4991 wxList m_actions;
4992 };
4993
4994 /**
4995 @class wxRichTextAction
4996
4997 Implements a part of a command.
4998
4999 @library{wxrichtext}
5000 @category{richtext}
5001
5002 @see wxRichTextCommand
5003 */
5004
5005 class WXDLLIMPEXP_RICHTEXT wxRichTextAction: public wxObject
5006 {
5007 public:
5008 /**
5009 Constructor. @a buffer is the top-level buffer, while @a container is the object within
5010 which the action is taking place. In the simplest case, they are the same.
5011 */
5012 wxRichTextAction(wxRichTextCommand* cmd, const wxString& name, wxRichTextCommandId id,
5013 wxRichTextBuffer* buffer, wxRichTextParagraphLayoutBox* container,
5014 wxRichTextCtrl* ctrl, bool ignoreFirstTime = false);
5015
5016 virtual ~wxRichTextAction();
5017
5018 /**
5019 Performs the action.
5020 */
5021 bool Do();
5022
5023 /**
5024 Undoes the action.
5025 */
5026 bool Undo();
5027
5028 /**
5029 Updates the control appearance, optimizing if possible given information from the call to Layout.
5030 */
5031 void UpdateAppearance(long caretPosition, bool sendUpdateEvent = false,
5032 wxArrayInt* optimizationLineCharPositions = NULL, wxArrayInt* optimizationLineYPositions = NULL, bool isDoCmd = true);
5033
5034 /**
5035 Replaces the buffer paragraphs with the given fragment.
5036 */
5037 void ApplyParagraphs(const wxRichTextParagraphLayoutBox& fragment);
5038
5039 /**
5040 Returns the new fragments.
5041 */
5042 wxRichTextParagraphLayoutBox& GetNewParagraphs() { return m_newParagraphs; }
5043
5044 /**
5045 Returns the old fragments.
5046 */
5047 wxRichTextParagraphLayoutBox& GetOldParagraphs() { return m_oldParagraphs; }
5048
5049 /**
5050 Returns the attributes, for single-object commands.
5051 */
5052 wxRichTextAttr& GetAttributes() { return m_attributes; }
5053
5054 /**
5055 Returns the object to replace the one at the position defined by the container address
5056 and the action's range start position.
5057 */
5058 wxRichTextObject* GetObject() const { return m_object; }
5059
5060 /**
5061 Sets the object to replace the one at the position defined by the container address
5062 and the action's range start position.
5063 */
5064 void SetObject(wxRichTextObject* obj) { m_object = obj; m_objectAddress.Create(m_buffer, m_object); }
5065
5066 /**
5067 Makes an address from the given object.
5068 */
5069 void MakeObject(wxRichTextObject* obj) { m_objectAddress.Create(m_buffer, obj); }
5070
5071 /**
5072 Calculate arrays for refresh optimization.
5073 */
5074 void CalculateRefreshOptimizations(wxArrayInt& optimizationLineCharPositions, wxArrayInt& optimizationLineYPositions);
5075
5076 /**
5077 Sets the position used for e.g. insertion.
5078 */
5079 void SetPosition(long pos) { m_position = pos; }
5080
5081 /**
5082 Returns the position used for e.g. insertion.
5083 */
5084 long GetPosition() const { return m_position; }
5085
5086 /**
5087 Sets the range for e.g. deletion.
5088 */
5089 void SetRange(const wxRichTextRange& range) { m_range = range; }
5090
5091 /**
5092 Returns the range for e.g. deletion.
5093 */
5094 const wxRichTextRange& GetRange() const { return m_range; }
5095
5096 /**
5097 Returns the address (nested position) of the container within the buffer being manipulated.
5098 */
5099 wxRichTextObjectAddress& GetContainerAddress() { return m_containerAddress; }
5100
5101 /**
5102 Returns the address (nested position) of the container within the buffer being manipulated.
5103 */
5104 const wxRichTextObjectAddress& GetContainerAddress() const { return m_containerAddress; }
5105
5106 /**
5107 Sets the address (nested position) of the container within the buffer being manipulated.
5108 */
5109 void SetContainerAddress(const wxRichTextObjectAddress& address) { m_containerAddress = address; }
5110
5111 /**
5112 Sets the address (nested position) of the container within the buffer being manipulated.
5113 */
5114 void SetContainerAddress(wxRichTextParagraphLayoutBox* container, wxRichTextObject* obj) { m_containerAddress.Create(container, obj); }
5115
5116 /**
5117 Returns the container that this action refers to, using the container address and top-level buffer.
5118 */
5119 wxRichTextParagraphLayoutBox* GetContainer() const;
5120
5121 /**
5122 Returns the action name.
5123 */
5124 const wxString& GetName() const { return m_name; }
5125
5126 protected:
5127 // Action name
5128 wxString m_name;
5129
5130 // Buffer
5131 wxRichTextBuffer* m_buffer;
5132
5133 // The address (nested position) of the container being manipulated.
5134 // This is necessary because objects are deleted, and we can't
5135 // therefore store actual pointers.
5136 wxRichTextObjectAddress m_containerAddress;
5137
5138 // Control
5139 wxRichTextCtrl* m_ctrl;
5140
5141 // Stores the new paragraphs
5142 wxRichTextParagraphLayoutBox m_newParagraphs;
5143
5144 // Stores the old paragraphs
5145 wxRichTextParagraphLayoutBox m_oldParagraphs;
5146
5147 // Stores an object to replace the one at the position
5148 // defined by the container address and the action's range start position.
5149 wxRichTextObject* m_object;
5150
5151 // Stores the attributes
5152 wxRichTextAttr m_attributes;
5153
5154 // The address of the object being manipulated (used for changing an individual object or its attributes)
5155 wxRichTextObjectAddress m_objectAddress;
5156
5157 // Stores the old attributes
5158 // wxRichTextAttr m_oldAttributes;
5159
5160 // The affected range
5161 wxRichTextRange m_range;
5162
5163 // The insertion point for this command
5164 long m_position;
5165
5166 // Ignore 1st 'Do' operation because we already did it
5167 bool m_ignoreThis;
5168
5169 // The command identifier
5170 wxRichTextCommandId m_cmdId;
5171 };
5172
5173 /*!
5174 * Handler flags
5175 */
5176
5177 // Include style sheet when loading and saving
5178 #define wxRICHTEXT_HANDLER_INCLUDE_STYLESHEET 0x0001
5179
5180 // Save images to memory file system in HTML handler
5181 #define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_MEMORY 0x0010
5182
5183 // Save images to files in HTML handler
5184 #define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_FILES 0x0020
5185
5186 // Save images as inline base64 data in HTML handler
5187 #define wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_BASE64 0x0040
5188
5189 // Don't write header and footer (or BODY), so we can include the fragment
5190 // in a larger document
5191 #define wxRICHTEXT_HANDLER_NO_HEADER_FOOTER 0x0080
5192
5193 // Convert the more common face names to names that will work on the current platform
5194 // in a larger document
5195 #define wxRICHTEXT_HANDLER_CONVERT_FACENAMES 0x0100
5196
5197 /**
5198 @class wxRichTextFileHandler
5199
5200 The base class for file handlers.
5201
5202 @library{wxrichtext}
5203 @category{richtext}
5204
5205 @see wxRichTextBuffer, wxRichTextCtrl
5206 */
5207
5208 class WXDLLIMPEXP_RICHTEXT wxRichTextFileHandler: public wxObject
5209 {
5210 DECLARE_CLASS(wxRichTextFileHandler)
5211 public:
5212 /**
5213 Creates a file handler object.
5214 */
5215 wxRichTextFileHandler(const wxString& name = wxEmptyString, const wxString& ext = wxEmptyString, int type = 0)
5216 : m_name(name), m_extension(ext), m_type(type), m_flags(0), m_visible(true)
5217 { }
5218
5219 #if wxUSE_STREAMS
5220 /**
5221 Loads the buffer from a stream.
5222 Not all handlers will implement file loading.
5223 */
5224 bool LoadFile(wxRichTextBuffer *buffer, wxInputStream& stream)
5225 { return DoLoadFile(buffer, stream); }
5226
5227 /**
5228 Saves the buffer to a stream.
5229 Not all handlers will implement file saving.
5230 */
5231 bool SaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream)
5232 { return DoSaveFile(buffer, stream); }
5233 #endif
5234
5235 #if wxUSE_FFILE && wxUSE_STREAMS
5236 /**
5237 Loads the buffer from a file.
5238 */
5239 virtual bool LoadFile(wxRichTextBuffer *buffer, const wxString& filename);
5240
5241 /**
5242 Saves the buffer to a file.
5243 */
5244 virtual bool SaveFile(wxRichTextBuffer *buffer, const wxString& filename);
5245 #endif // wxUSE_STREAMS && wxUSE_STREAMS
5246
5247 /**
5248 Returns @true if we handle this filename (if using files). By default, checks the extension.
5249 */
5250 virtual bool CanHandle(const wxString& filename) const;
5251
5252 /**
5253 Returns @true if we can save using this handler.
5254 */
5255 virtual bool CanSave() const { return false; }
5256
5257 /**
5258 Returns @true if we can load using this handler.
5259 */
5260 virtual bool CanLoad() const { return false; }
5261
5262 /**
5263 Returns @true if this handler should be visible to the user.
5264 */
5265 virtual bool IsVisible() const { return m_visible; }
5266
5267 /**
5268 Sets whether the handler should be visible to the user (via the application's
5269 load and save dialogs).
5270 */
5271 virtual void SetVisible(bool visible) { m_visible = visible; }
5272
5273 /**
5274 Sets the name of the nandler.
5275 */
5276 void SetName(const wxString& name) { m_name = name; }
5277
5278 /**
5279 Returns the name of the nandler.
5280 */
5281 wxString GetName() const { return m_name; }
5282
5283 /**
5284 Sets the default extension to recognise.
5285 */
5286 void SetExtension(const wxString& ext) { m_extension = ext; }
5287
5288 /**
5289 Returns the default extension to recognise.
5290 */
5291 wxString GetExtension() const { return m_extension; }
5292
5293 /**
5294 Sets the handler type.
5295 */
5296 void SetType(int type) { m_type = type; }
5297
5298 /**
5299 Returns the handler type.
5300 */
5301 int GetType() const { return m_type; }
5302
5303 /**
5304 Sets flags that change the behaviour of loading or saving.
5305 See the documentation for each handler class to see what flags are relevant
5306 for each handler.
5307
5308 You call this function directly if you are using a file handler explicitly
5309 (without going through the text control or buffer LoadFile/SaveFile API).
5310 Or, you can call the control or buffer's SetHandlerFlags function to set
5311 the flags that will be used for subsequent load and save operations.
5312 */
5313 void SetFlags(int flags) { m_flags = flags; }
5314
5315 /**
5316 Returns flags controlling how loading and saving is done.
5317 */
5318 int GetFlags() const { return m_flags; }
5319
5320 /**
5321 Sets the encoding to use when saving a file. If empty, a suitable encoding is chosen.
5322 */
5323 void SetEncoding(const wxString& encoding) { m_encoding = encoding; }
5324
5325 /**
5326 Returns the encoding to use when saving a file. If empty, a suitable encoding is chosen.
5327 */
5328 const wxString& GetEncoding() const { return m_encoding; }
5329
5330 protected:
5331
5332 #if wxUSE_STREAMS
5333 /**
5334 Override to load content from @a stream into @a buffer.
5335 */
5336 virtual bool DoLoadFile(wxRichTextBuffer *buffer, wxInputStream& stream) = 0;
5337
5338 /**
5339 Override to save content to @a stream from @a buffer.
5340 */
5341 virtual bool DoSaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream) = 0;
5342 #endif
5343
5344 wxString m_name;
5345 wxString m_encoding;
5346 wxString m_extension;
5347 int m_type;
5348 int m_flags;
5349 bool m_visible;
5350 };
5351
5352 /**
5353 @class wxRichTextPlainTextHandler
5354
5355 Implements saving a buffer to plain text.
5356
5357 @library{wxrichtext}
5358 @category{richtext}
5359
5360 @see wxRichTextFileHandler, wxRichTextBuffer, wxRichTextCtrl
5361 */
5362
5363 class WXDLLIMPEXP_RICHTEXT wxRichTextPlainTextHandler: public wxRichTextFileHandler
5364 {
5365 DECLARE_CLASS(wxRichTextPlainTextHandler)
5366 public:
5367 wxRichTextPlainTextHandler(const wxString& name = wxT("Text"),
5368 const wxString& ext = wxT("txt"),
5369 wxRichTextFileType type = wxRICHTEXT_TYPE_TEXT)
5370 : wxRichTextFileHandler(name, ext, type)
5371 { }
5372
5373 // Can we save using this handler?
5374 virtual bool CanSave() const { return true; }
5375
5376 // Can we load using this handler?
5377 virtual bool CanLoad() const { return true; }
5378
5379 protected:
5380
5381 #if wxUSE_STREAMS
5382 virtual bool DoLoadFile(wxRichTextBuffer *buffer, wxInputStream& stream);
5383 virtual bool DoSaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream);
5384 #endif
5385
5386 };
5387
5388 #if wxUSE_DATAOBJ
5389
5390 /**
5391 @class wxRichTextBufferDataObject
5392
5393 Implements a rich text data object for clipboard transfer.
5394
5395 @library{wxrichtext}
5396 @category{richtext}
5397
5398 @see wxDataObjectSimple, wxRichTextBuffer, wxRichTextCtrl
5399 */
5400
5401 class WXDLLIMPEXP_RICHTEXT wxRichTextBufferDataObject: public wxDataObjectSimple
5402 {
5403 public:
5404 /**
5405 The constructor doesn't copy the pointer, so it shouldn't go away while this object
5406 is alive.
5407 */
5408 wxRichTextBufferDataObject(wxRichTextBuffer* richTextBuffer = NULL);
5409 virtual ~wxRichTextBufferDataObject();
5410
5411 /**
5412 After a call to this function, the buffer is owned by the caller and it
5413 is responsible for deleting it.
5414 */
5415 wxRichTextBuffer* GetRichTextBuffer();
5416
5417 /**
5418 Returns the id for the new data format.
5419 */
5420 static const wxChar* GetRichTextBufferFormatId() { return ms_richTextBufferFormatId; }
5421
5422 // base class pure virtuals
5423
5424 virtual wxDataFormat GetPreferredFormat(Direction dir) const;
5425 virtual size_t GetDataSize() const;
5426 virtual bool GetDataHere(void *pBuf) const;
5427 virtual bool SetData(size_t len, const void *buf);
5428
5429 // prevent warnings
5430
5431 virtual size_t GetDataSize(const wxDataFormat&) const { return GetDataSize(); }
5432 virtual bool GetDataHere(const wxDataFormat&, void *buf) const { return GetDataHere(buf); }
5433 virtual bool SetData(const wxDataFormat&, size_t len, const void *buf) { return SetData(len, buf); }
5434
5435 private:
5436 wxDataFormat m_formatRichTextBuffer; // our custom format
5437 wxRichTextBuffer* m_richTextBuffer; // our data
5438 static const wxChar* ms_richTextBufferFormatId; // our format id
5439 };
5440
5441 #endif
5442
5443 /**
5444 @class wxRichTextRenderer
5445
5446 This class isolates some common drawing functionality.
5447
5448 @library{wxrichtext}
5449 @category{richtext}
5450
5451 @see wxRichTextBuffer, wxRichTextCtrl
5452 */
5453
5454 class WXDLLIMPEXP_RICHTEXT wxRichTextRenderer: public wxObject
5455 {
5456 public:
5457 /**
5458 Constructor.
5459 */
5460 wxRichTextRenderer() {}
5461 virtual ~wxRichTextRenderer() {}
5462
5463 /**
5464 Draws a standard bullet, as specified by the value of GetBulletName. This function should be overridden.
5465 */
5466 virtual bool DrawStandardBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxRichTextAttr& attr, const wxRect& rect) = 0;
5467
5468 /**
5469 Draws a bullet that can be described by text, such as numbered or symbol bullets. This function should be overridden.
5470 */
5471 virtual bool DrawTextBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxRichTextAttr& attr, const wxRect& rect, const wxString& text) = 0;
5472
5473 /**
5474 Draws a bitmap bullet, where the bullet bitmap is specified by the value of GetBulletName. This function should be overridden.
5475 */
5476 virtual bool DrawBitmapBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxRichTextAttr& attr, const wxRect& rect) = 0;
5477
5478 /**
5479 Enumerate the standard bullet names currently supported. This function should be overridden.
5480 */
5481 virtual bool EnumerateStandardBulletNames(wxArrayString& bulletNames) = 0;
5482 };
5483
5484 /**
5485 @class wxRichTextStdRenderer
5486
5487 The standard renderer for drawing bullets.
5488
5489 @library{wxrichtext}
5490 @category{richtext}
5491
5492 @see wxRichTextRenderer, wxRichTextBuffer, wxRichTextCtrl
5493 */
5494
5495 class WXDLLIMPEXP_RICHTEXT wxRichTextStdRenderer: public wxRichTextRenderer
5496 {
5497 public:
5498 /**
5499 Constructor.
5500 */
5501 wxRichTextStdRenderer() {}
5502
5503 // Draw a standard bullet, as specified by the value of GetBulletName
5504 virtual bool DrawStandardBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxRichTextAttr& attr, const wxRect& rect);
5505
5506 // Draw a bullet that can be described by text, such as numbered or symbol bullets
5507 virtual bool DrawTextBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxRichTextAttr& attr, const wxRect& rect, const wxString& text);
5508
5509 // Draw a bitmap bullet, where the bullet bitmap is specified by the value of GetBulletName
5510 virtual bool DrawBitmapBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxRichTextAttr& attr, const wxRect& rect);
5511
5512 // Enumerate the standard bullet names currently supported
5513 virtual bool EnumerateStandardBulletNames(wxArrayString& bulletNames);
5514 };
5515
5516 /*!
5517 * Utilities
5518 *
5519 */
5520
5521 inline bool wxRichTextHasStyle(int flags, int style)
5522 {
5523 return ((flags & style) == style);
5524 }
5525
5526 /// Compare two attribute objects
5527 WXDLLIMPEXP_RICHTEXT bool wxTextAttrEq(const wxRichTextAttr& attr1, const wxRichTextAttr& attr2);
5528 WXDLLIMPEXP_RICHTEXT bool wxTextAttrEq(const wxRichTextAttr& attr1, const wxRichTextAttr& attr2);
5529
5530 /// Compare two attribute objects, but take into account the flags
5531 /// specifying attributes of interest.
5532 WXDLLIMPEXP_RICHTEXT bool wxTextAttrEqPartial(const wxRichTextAttr& attr1, const wxRichTextAttr& attr2);
5533
5534 /// Apply one style to another
5535 WXDLLIMPEXP_RICHTEXT bool wxRichTextApplyStyle(wxRichTextAttr& destStyle, const wxRichTextAttr& style, wxRichTextAttr* compareWith = NULL);
5536
5537 // Remove attributes
5538 WXDLLIMPEXP_RICHTEXT bool wxRichTextRemoveStyle(wxRichTextAttr& destStyle, const wxRichTextAttr& style);
5539
5540 /// Combine two bitlists
5541 WXDLLIMPEXP_RICHTEXT bool wxRichTextCombineBitlists(int& valueA, int valueB, int& flagsA, int flagsB);
5542
5543 /// Compare two bitlists
5544 WXDLLIMPEXP_RICHTEXT bool wxRichTextBitlistsEqPartial(int valueA, int valueB, int flags);
5545
5546 /// Split into paragraph and character styles
5547 WXDLLIMPEXP_RICHTEXT bool wxRichTextSplitParaCharStyles(const wxRichTextAttr& style, wxRichTextAttr& parStyle, wxRichTextAttr& charStyle);
5548
5549 /// Compare tabs
5550 WXDLLIMPEXP_RICHTEXT bool wxRichTextTabsEq(const wxArrayInt& tabs1, const wxArrayInt& tabs2);
5551
5552 /// Convert a decimal to Roman numerals
5553 WXDLLIMPEXP_RICHTEXT wxString wxRichTextDecimalToRoman(long n);
5554
5555 // Collects the attributes that are common to a range of content, building up a note of
5556 // which attributes are absent in some objects and which clash in some objects.
5557 WXDLLIMPEXP_RICHTEXT void wxTextAttrCollectCommonAttributes(wxTextAttr& currentStyle, const wxTextAttr& attr, wxTextAttr& clashingAttr, wxTextAttr& absentAttr);
5558
5559 WXDLLIMPEXP_RICHTEXT void wxRichTextModuleInit();
5560
5561 #endif
5562 // wxUSE_RICHTEXT
5563
5564 #endif
5565 // _WX_RICHTEXTBUFFER_H_
5566