1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/richtext/richtextbuffer.cpp
3 // Purpose: Buffer for wxRichTextCtrl
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/richtext/richtextbuffer.h"
27 #include "wx/dataobj.h"
28 #include "wx/module.h"
31 #include "wx/filename.h"
32 #include "wx/clipbrd.h"
33 #include "wx/wfstream.h"
34 #include "wx/mstream.h"
35 #include "wx/sstream.h"
36 #include "wx/textfile.h"
38 #include "wx/richtext/richtextctrl.h"
39 #include "wx/richtext/richtextstyles.h"
41 #include "wx/listimpl.cpp"
43 WX_DEFINE_LIST(wxRichTextObjectList
)
44 WX_DEFINE_LIST(wxRichTextLineList
)
46 // Switch off if the platform doesn't like it for some reason
47 #define wxRICHTEXT_USE_OPTIMIZED_DRAWING 1
51 * This is the base for drawable objects.
54 IMPLEMENT_CLASS(wxRichTextObject
, wxObject
)
56 wxRichTextObject::wxRichTextObject(wxRichTextObject
* parent
)
68 wxRichTextObject::~wxRichTextObject()
72 void wxRichTextObject::Dereference()
80 void wxRichTextObject::Copy(const wxRichTextObject
& obj
)
84 m_dirty
= obj
.m_dirty
;
85 m_range
= obj
.m_range
;
86 m_attributes
= obj
.m_attributes
;
87 m_descent
= obj
.m_descent
;
89 if (!m_attributes.GetFont().Ok())
90 wxLogDebug(wxT("No font!"));
91 if (!obj.m_attributes.GetFont().Ok())
92 wxLogDebug(wxT("Parent has no font!"));
96 void wxRichTextObject::SetMargins(int margin
)
98 m_leftMargin
= m_rightMargin
= m_topMargin
= m_bottomMargin
= margin
;
101 void wxRichTextObject::SetMargins(int leftMargin
, int rightMargin
, int topMargin
, int bottomMargin
)
103 m_leftMargin
= leftMargin
;
104 m_rightMargin
= rightMargin
;
105 m_topMargin
= topMargin
;
106 m_bottomMargin
= bottomMargin
;
109 // Convert units in tenths of a millimetre to device units
110 int wxRichTextObject::ConvertTenthsMMToPixels(wxDC
& dc
, int units
)
112 int p
= ConvertTenthsMMToPixels(dc
.GetPPI().x
, units
);
115 wxRichTextBuffer
* buffer
= GetBuffer();
117 p
= (int) ((double)p
/ buffer
->GetScale());
121 // Convert units in tenths of a millimetre to device units
122 int wxRichTextObject::ConvertTenthsMMToPixels(int ppi
, int units
)
124 // There are ppi pixels in 254.1 "1/10 mm"
126 double pixels
= ((double) units
* (double)ppi
) / 254.1;
131 /// Dump to output stream for debugging
132 void wxRichTextObject::Dump(wxTextOutputStream
& stream
)
134 stream
<< GetClassInfo()->GetClassName() << wxT("\n");
135 stream
<< wxString::Format(wxT("Size: %d,%d. Position: %d,%d, Range: %ld,%ld"), m_size
.x
, m_size
.y
, m_pos
.x
, m_pos
.y
, m_range
.GetStart(), m_range
.GetEnd()) << wxT("\n");
136 stream
<< wxString::Format(wxT("Text colour: %d,%d,%d."), (int) m_attributes
.GetTextColour().Red(), (int) m_attributes
.GetTextColour().Green(), (int) m_attributes
.GetTextColour().Blue()) << wxT("\n");
139 /// Gets the containing buffer
140 wxRichTextBuffer
* wxRichTextObject::GetBuffer() const
142 const wxRichTextObject
* obj
= this;
143 while (obj
&& !obj
->IsKindOf(CLASSINFO(wxRichTextBuffer
)))
144 obj
= obj
->GetParent();
145 return wxDynamicCast(obj
, wxRichTextBuffer
);
149 * wxRichTextCompositeObject
150 * This is the base for drawable objects.
153 IMPLEMENT_CLASS(wxRichTextCompositeObject
, wxRichTextObject
)
155 wxRichTextCompositeObject::wxRichTextCompositeObject(wxRichTextObject
* parent
):
156 wxRichTextObject(parent
)
160 wxRichTextCompositeObject::~wxRichTextCompositeObject()
165 /// Get the nth child
166 wxRichTextObject
* wxRichTextCompositeObject::GetChild(size_t n
) const
168 wxASSERT ( n
< m_children
.GetCount() );
170 return m_children
.Item(n
)->GetData();
173 /// Append a child, returning the position
174 size_t wxRichTextCompositeObject::AppendChild(wxRichTextObject
* child
)
176 m_children
.Append(child
);
177 child
->SetParent(this);
178 return m_children
.GetCount() - 1;
181 /// Insert the child in front of the given object, or at the beginning
182 bool wxRichTextCompositeObject::InsertChild(wxRichTextObject
* child
, wxRichTextObject
* inFrontOf
)
186 wxRichTextObjectList::compatibility_iterator node
= m_children
.Find(inFrontOf
);
187 m_children
.Insert(node
, child
);
190 m_children
.Insert(child
);
191 child
->SetParent(this);
197 bool wxRichTextCompositeObject::RemoveChild(wxRichTextObject
* child
, bool deleteChild
)
199 wxRichTextObjectList::compatibility_iterator node
= m_children
.Find(child
);
202 wxRichTextObject
* obj
= node
->GetData();
203 m_children
.Erase(node
);
212 /// Delete all children
213 bool wxRichTextCompositeObject::DeleteChildren()
215 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
218 wxRichTextObjectList::compatibility_iterator oldNode
= node
;
220 wxRichTextObject
* child
= node
->GetData();
221 child
->Dereference(); // Only delete if reference count is zero
223 node
= node
->GetNext();
224 m_children
.Erase(oldNode
);
230 /// Get the child count
231 size_t wxRichTextCompositeObject::GetChildCount() const
233 return m_children
.GetCount();
237 void wxRichTextCompositeObject::Copy(const wxRichTextCompositeObject
& obj
)
239 wxRichTextObject::Copy(obj
);
243 wxRichTextObjectList::compatibility_iterator node
= obj
.m_children
.GetFirst();
246 wxRichTextObject
* child
= node
->GetData();
247 wxRichTextObject
* newChild
= child
->Clone();
248 newChild
->SetParent(this);
249 m_children
.Append(newChild
);
251 node
= node
->GetNext();
255 /// Hit-testing: returns a flag indicating hit test details, plus
256 /// information about position
257 int wxRichTextCompositeObject::HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
)
259 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
262 wxRichTextObject
* child
= node
->GetData();
264 int ret
= child
->HitTest(dc
, pt
, textPosition
);
265 if (ret
!= wxRICHTEXT_HITTEST_NONE
)
268 node
= node
->GetNext();
271 return wxRICHTEXT_HITTEST_NONE
;
274 /// Finds the absolute position and row height for the given character position
275 bool wxRichTextCompositeObject::FindPosition(wxDC
& dc
, long index
, wxPoint
& pt
, int* height
, bool forceLineStart
)
277 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
280 wxRichTextObject
* child
= node
->GetData();
282 if (child
->FindPosition(dc
, index
, pt
, height
, forceLineStart
))
285 node
= node
->GetNext();
292 void wxRichTextCompositeObject::CalculateRange(long start
, long& end
)
294 long current
= start
;
295 long lastEnd
= current
;
297 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
300 wxRichTextObject
* child
= node
->GetData();
303 child
->CalculateRange(current
, childEnd
);
306 current
= childEnd
+ 1;
308 node
= node
->GetNext();
313 // An object with no children has zero length
314 if (m_children
.GetCount() == 0)
317 m_range
.SetRange(start
, end
);
320 /// Delete range from layout.
321 bool wxRichTextCompositeObject::DeleteRange(const wxRichTextRange
& range
)
323 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
327 wxRichTextObject
* obj
= (wxRichTextObject
*) node
->GetData();
328 wxRichTextObjectList::compatibility_iterator next
= node
->GetNext();
330 // Delete the range in each paragraph
332 // When a chunk has been deleted, internally the content does not
333 // now match the ranges.
334 // However, so long as deletion is not done on the same object twice this is OK.
335 // If you may delete content from the same object twice, recalculate
336 // the ranges inbetween DeleteRange calls by calling CalculateRanges, and
337 // adjust the range you're deleting accordingly.
339 if (!obj
->GetRange().IsOutside(range
))
341 obj
->DeleteRange(range
);
343 // Delete an empty object, or paragraph within this range.
344 if (obj
->IsEmpty() ||
345 (range
.GetStart() <= obj
->GetRange().GetStart() && range
.GetEnd() >= obj
->GetRange().GetEnd()))
347 // An empty paragraph has length 1, so won't be deleted unless the
348 // whole range is deleted.
349 RemoveChild(obj
, true);
359 /// Get any text in this object for the given range
360 wxString
wxRichTextCompositeObject::GetTextForRange(const wxRichTextRange
& range
) const
363 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
366 wxRichTextObject
* child
= node
->GetData();
367 wxRichTextRange childRange
= range
;
368 if (!child
->GetRange().IsOutside(range
))
370 childRange
.LimitTo(child
->GetRange());
372 wxString childText
= child
->GetTextForRange(childRange
);
376 node
= node
->GetNext();
382 /// Recursively merge all pieces that can be merged.
383 bool wxRichTextCompositeObject::Defragment()
385 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
388 wxRichTextObject
* child
= node
->GetData();
389 wxRichTextCompositeObject
* composite
= wxDynamicCast(child
, wxRichTextCompositeObject
);
391 composite
->Defragment();
395 wxRichTextObject
* nextChild
= node
->GetNext()->GetData();
396 if (child
->CanMerge(nextChild
) && child
->Merge(nextChild
))
398 nextChild
->Dereference();
399 m_children
.Erase(node
->GetNext());
401 // Don't set node -- we'll see if we can merge again with the next
405 node
= node
->GetNext();
408 node
= node
->GetNext();
414 /// Dump to output stream for debugging
415 void wxRichTextCompositeObject::Dump(wxTextOutputStream
& stream
)
417 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
420 wxRichTextObject
* child
= node
->GetData();
422 node
= node
->GetNext();
429 * This defines a 2D space to lay out objects
432 IMPLEMENT_DYNAMIC_CLASS(wxRichTextBox
, wxRichTextCompositeObject
)
434 wxRichTextBox::wxRichTextBox(wxRichTextObject
* parent
):
435 wxRichTextCompositeObject(parent
)
440 bool wxRichTextBox::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& WXUNUSED(rect
), int descent
, int style
)
442 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
445 wxRichTextObject
* child
= node
->GetData();
447 wxRect childRect
= wxRect(child
->GetPosition(), child
->GetCachedSize());
448 child
->Draw(dc
, range
, selectionRange
, childRect
, descent
, style
);
450 node
= node
->GetNext();
456 bool wxRichTextBox::Layout(wxDC
& dc
, const wxRect
& rect
, int style
)
458 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
461 wxRichTextObject
* child
= node
->GetData();
462 child
->Layout(dc
, rect
, style
);
464 node
= node
->GetNext();
470 /// Get/set the size for the given range. Assume only has one child.
471 bool wxRichTextBox::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
) const
473 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
476 wxRichTextObject
* child
= node
->GetData();
477 return child
->GetRangeSize(range
, size
, descent
, dc
, flags
, position
);
484 void wxRichTextBox::Copy(const wxRichTextBox
& obj
)
486 wxRichTextCompositeObject::Copy(obj
);
491 * wxRichTextParagraphLayoutBox
492 * This box knows how to lay out paragraphs.
495 IMPLEMENT_DYNAMIC_CLASS(wxRichTextParagraphLayoutBox
, wxRichTextBox
)
497 wxRichTextParagraphLayoutBox::wxRichTextParagraphLayoutBox(wxRichTextObject
* parent
):
498 wxRichTextBox(parent
)
503 /// Initialize the object.
504 void wxRichTextParagraphLayoutBox::Init()
508 // For now, assume is the only box and has no initial size.
509 m_range
= wxRichTextRange(0, -1);
511 m_invalidRange
.SetRange(-1, -1);
516 m_partialParagraph
= false;
520 bool wxRichTextParagraphLayoutBox::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
)
522 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
525 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
526 wxASSERT (child
!= NULL
);
528 if (child
&& !child
->GetRange().IsOutside(range
))
530 wxRect
childRect(child
->GetPosition(), child
->GetCachedSize());
532 if (((style
& wxRICHTEXT_DRAW_IGNORE_CACHE
) == 0) && childRect
.GetTop() > rect
.GetBottom())
537 else if (((style
& wxRICHTEXT_DRAW_IGNORE_CACHE
) == 0) && childRect
.GetBottom() < rect
.GetTop())
542 child
->Draw(dc
, range
, selectionRange
, childRect
, descent
, style
);
545 node
= node
->GetNext();
551 bool wxRichTextParagraphLayoutBox::Layout(wxDC
& dc
, const wxRect
& rect
, int style
)
553 wxRect availableSpace
;
554 bool formatRect
= (style
& wxRICHTEXT_LAYOUT_SPECIFIED_RECT
) == wxRICHTEXT_LAYOUT_SPECIFIED_RECT
;
556 // If only laying out a specific area, the passed rect has a different meaning:
557 // the visible part of the buffer. This is used in wxRichTextCtrl::OnSize,
558 // so that during a size, only the visible part will be relaid out, or
559 // it would take too long causing flicker. As an approximation, we assume that
560 // everything up to the start of the visible area is laid out correctly.
563 availableSpace
= wxRect(0 + m_leftMargin
,
565 rect
.width
- m_leftMargin
- m_rightMargin
,
568 // Invalidate the part of the buffer from the first visible line
569 // to the end. If other parts of the buffer are currently invalid,
570 // then they too will be taken into account if they are above
571 // the visible point.
573 wxRichTextLine
* line
= GetLineAtYPosition(rect
.y
);
575 startPos
= line
->GetAbsoluteRange().GetStart();
577 Invalidate(wxRichTextRange(startPos
, GetRange().GetEnd()));
580 availableSpace
= wxRect(rect
.x
+ m_leftMargin
,
581 rect
.y
+ m_topMargin
,
582 rect
.width
- m_leftMargin
- m_rightMargin
,
583 rect
.height
- m_topMargin
- m_bottomMargin
);
587 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
589 bool layoutAll
= true;
591 // Get invalid range, rounding to paragraph start/end.
592 wxRichTextRange invalidRange
= GetInvalidRange(true);
594 if (invalidRange
== wxRICHTEXT_NONE
&& !formatRect
)
597 if (invalidRange
== wxRICHTEXT_ALL
)
599 else // If we know what range is affected, start laying out from that point on.
600 if (invalidRange
.GetStart() > GetRange().GetStart())
602 wxRichTextParagraph
* firstParagraph
= GetParagraphAtPosition(invalidRange
.GetStart());
605 wxRichTextObjectList::compatibility_iterator firstNode
= m_children
.Find(firstParagraph
);
606 wxRichTextObjectList::compatibility_iterator previousNode
;
608 previousNode
= firstNode
->GetPrevious();
609 if (firstNode
&& previousNode
)
611 wxRichTextParagraph
* previousParagraph
= wxDynamicCast(previousNode
->GetData(), wxRichTextParagraph
);
612 availableSpace
.y
= previousParagraph
->GetPosition().y
+ previousParagraph
->GetCachedSize().y
;
614 // Now we're going to start iterating from the first affected paragraph.
622 // A way to force speedy rest-of-buffer layout (the 'else' below)
623 bool forceQuickLayout
= false;
627 // Assume this box only contains paragraphs
629 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
630 wxCHECK_MSG( child
, false, _T("Unknown object in layout") );
632 // TODO: what if the child hasn't been laid out (e.g. involved in Undo) but still has 'old' lines
633 if ( !forceQuickLayout
&&
635 child
->GetLines().IsEmpty() ||
636 !child
->GetRange().IsOutside(invalidRange
)) )
638 child
->Layout(dc
, availableSpace
, style
);
640 // Layout must set the cached size
641 availableSpace
.y
+= child
->GetCachedSize().y
;
642 maxWidth
= wxMax(maxWidth
, child
->GetCachedSize().x
);
644 // If we're just formatting the visible part of the buffer,
645 // and we're now past the bottom of the window, start quick
647 if (formatRect
&& child
->GetPosition().y
> rect
.GetBottom())
648 forceQuickLayout
= true;
652 // We're outside the immediately affected range, so now let's just
653 // move everything up or down. This assumes that all the children have previously
654 // been laid out and have wrapped line lists associated with them.
655 // TODO: check all paragraphs before the affected range.
657 int inc
= availableSpace
.y
- child
->GetPosition().y
;
661 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
664 if (child
->GetLines().GetCount() == 0)
665 child
->Layout(dc
, availableSpace
, style
);
667 child
->SetPosition(wxPoint(child
->GetPosition().x
, child
->GetPosition().y
+ inc
));
669 availableSpace
.y
+= child
->GetCachedSize().y
;
670 maxWidth
= wxMax(maxWidth
, child
->GetCachedSize().x
);
673 node
= node
->GetNext();
678 node
= node
->GetNext();
681 SetCachedSize(wxSize(maxWidth
, availableSpace
.y
));
684 m_invalidRange
= wxRICHTEXT_NONE
;
690 void wxRichTextParagraphLayoutBox::Copy(const wxRichTextParagraphLayoutBox
& obj
)
692 wxRichTextBox::Copy(obj
);
694 m_partialParagraph
= obj
.m_partialParagraph
;
697 /// Get/set the size for the given range.
698 bool wxRichTextParagraphLayoutBox::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
) const
702 wxRichTextObjectList::compatibility_iterator startPara
= wxRichTextObjectList::compatibility_iterator();
703 wxRichTextObjectList::compatibility_iterator endPara
= wxRichTextObjectList::compatibility_iterator();
705 // First find the first paragraph whose starting position is within the range.
706 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
709 // child is a paragraph
710 wxRichTextObject
* child
= node
->GetData();
711 const wxRichTextRange
& r
= child
->GetRange();
713 if (r
.GetStart() <= range
.GetStart() && r
.GetEnd() >= range
.GetStart())
719 node
= node
->GetNext();
722 // Next find the last paragraph containing part of the range
723 node
= m_children
.GetFirst();
726 // child is a paragraph
727 wxRichTextObject
* child
= node
->GetData();
728 const wxRichTextRange
& r
= child
->GetRange();
730 if (r
.GetStart() <= range
.GetEnd() && r
.GetEnd() >= range
.GetEnd())
736 node
= node
->GetNext();
739 if (!startPara
|| !endPara
)
742 // Now we can add up the sizes
743 for (node
= startPara
; node
; node
= node
->GetNext())
745 // child is a paragraph
746 wxRichTextObject
* child
= node
->GetData();
747 const wxRichTextRange
& childRange
= child
->GetRange();
748 wxRichTextRange rangeToFind
= range
;
749 rangeToFind
.LimitTo(childRange
);
753 int childDescent
= 0;
754 child
->GetRangeSize(rangeToFind
, childSize
, childDescent
, dc
, flags
, position
);
756 descent
= wxMax(childDescent
, descent
);
758 sz
.x
= wxMax(sz
.x
, childSize
.x
);
770 /// Get the paragraph at the given position
771 wxRichTextParagraph
* wxRichTextParagraphLayoutBox::GetParagraphAtPosition(long pos
, bool caretPosition
) const
776 // First find the first paragraph whose starting position is within the range.
777 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
780 // child is a paragraph
781 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
782 wxASSERT (child
!= NULL
);
784 // Return first child in buffer if position is -1
788 if (child
->GetRange().Contains(pos
))
791 node
= node
->GetNext();
796 /// Get the line at the given position
797 wxRichTextLine
* wxRichTextParagraphLayoutBox::GetLineAtPosition(long pos
, bool caretPosition
) const
802 // First find the first paragraph whose starting position is within the range.
803 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
806 // child is a paragraph
807 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
808 wxASSERT (child
!= NULL
);
810 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
813 wxRichTextLine
* line
= node2
->GetData();
815 wxRichTextRange range
= line
->GetAbsoluteRange();
817 if (range
.Contains(pos
) ||
819 // If the position is end-of-paragraph, then return the last line of
821 (range
.GetEnd() == child
->GetRange().GetEnd()-1) && (pos
== child
->GetRange().GetEnd()))
824 node2
= node2
->GetNext();
827 node
= node
->GetNext();
830 int lineCount
= GetLineCount();
832 return GetLineForVisibleLineNumber(lineCount
-1);
837 /// Get the line at the given y pixel position, or the last line.
838 wxRichTextLine
* wxRichTextParagraphLayoutBox::GetLineAtYPosition(int y
) const
840 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
843 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
844 wxASSERT (child
!= NULL
);
846 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
849 wxRichTextLine
* line
= node2
->GetData();
851 wxRect
rect(line
->GetRect());
853 if (y
<= rect
.GetBottom())
856 node2
= node2
->GetNext();
859 node
= node
->GetNext();
863 int lineCount
= GetLineCount();
865 return GetLineForVisibleLineNumber(lineCount
-1);
870 /// Get the number of visible lines
871 int wxRichTextParagraphLayoutBox::GetLineCount() const
875 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
878 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
879 wxASSERT (child
!= NULL
);
881 count
+= child
->GetLines().GetCount();
882 node
= node
->GetNext();
888 /// Get the paragraph for a given line
889 wxRichTextParagraph
* wxRichTextParagraphLayoutBox::GetParagraphForLine(wxRichTextLine
* line
) const
891 return GetParagraphAtPosition(line
->GetAbsoluteRange().GetStart());
894 /// Get the line size at the given position
895 wxSize
wxRichTextParagraphLayoutBox::GetLineSizeAtPosition(long pos
, bool caretPosition
) const
897 wxRichTextLine
* line
= GetLineAtPosition(pos
, caretPosition
);
900 return line
->GetSize();
907 /// Convenience function to add a paragraph of text
908 wxRichTextRange
wxRichTextParagraphLayoutBox::AddParagraph(const wxString
& text
, wxTextAttrEx
* paraStyle
)
910 #if wxRICHTEXT_USE_DYNAMIC_STYLES
911 // Don't use the base style, just the default style, and the base style will
912 // be combined at display time.
913 // Divide into paragraph and character styles.
915 wxTextAttrEx defaultCharStyle
;
916 wxTextAttrEx defaultParaStyle
;
917 wxRichTextSplitParaCharStyles(GetDefaultStyle(), defaultParaStyle
, defaultCharStyle
);
919 wxTextAttrEx
style(GetAttributes());
921 // Apply default style. If the style has no attributes set,
922 // then the attributes will remain the 'basic style' (i.e. the
923 // layout box's style).
924 wxRichTextApplyStyle(style
, GetDefaultStyle());
926 wxTextAttrEx defaultCharStyle
= style
;
927 wxTextAttrEx defaultParaStyle
= style
;
929 wxTextAttrEx
* pStyle
= paraStyle
? paraStyle
: (wxTextAttrEx
*) & defaultParaStyle
;
930 wxTextAttrEx
* cStyle
= & defaultCharStyle
;
932 wxRichTextParagraph
* para
= new wxRichTextParagraph(text
, this, pStyle
, cStyle
);
939 return para
->GetRange();
942 /// Adds multiple paragraphs, based on newlines.
943 wxRichTextRange
wxRichTextParagraphLayoutBox::AddParagraphs(const wxString
& text
, wxTextAttrEx
* paraStyle
)
945 #if wxRICHTEXT_USE_DYNAMIC_STYLES
946 // Don't use the base style, just the default style, and the base style will
947 // be combined at display time.
948 // Divide into paragraph and character styles.
950 wxTextAttrEx defaultCharStyle
;
951 wxTextAttrEx defaultParaStyle
;
952 wxRichTextSplitParaCharStyles(GetDefaultStyle(), defaultParaStyle
, defaultCharStyle
);
954 wxTextAttrEx
style(GetAttributes());
956 // Apply default style. If the style has no attributes set,
957 // then the attributes will remain the 'basic style' (i.e. the
958 // layout box's style).
959 wxRichTextApplyStyle(style
, GetDefaultStyle());
961 wxTextAttrEx defaultCharStyle
= style
;
962 wxTextAttrEx defaultParaStyle
= style
;
965 wxTextAttrEx
* pStyle
= paraStyle
? paraStyle
: (wxTextAttrEx
*) & defaultParaStyle
;
966 wxTextAttrEx
* cStyle
= & defaultCharStyle
;
968 wxRichTextParagraph
* firstPara
= NULL
;
969 wxRichTextParagraph
* lastPara
= NULL
;
971 wxRichTextRange
range(-1, -1);
974 size_t len
= text
.length();
976 wxRichTextParagraph
* para
= new wxRichTextParagraph(wxEmptyString
, this, pStyle
, cStyle
);
986 if (ch
== wxT('\n') || ch
== wxT('\r'))
988 wxRichTextPlainText
* plainText
= (wxRichTextPlainText
*) para
->GetChildren().GetFirst()->GetData();
989 plainText
->SetText(line
);
991 para
= new wxRichTextParagraph(wxEmptyString
, this, pStyle
, cStyle
);
996 line
= wxEmptyString
;
1006 wxRichTextPlainText
* plainText
= (wxRichTextPlainText
*) para
->GetChildren().GetFirst()->GetData();
1007 plainText
->SetText(line
);
1014 return wxRichTextRange(firstPara
->GetRange().GetStart(), lastPara
->GetRange().GetEnd());
1017 /// Convenience function to add an image
1018 wxRichTextRange
wxRichTextParagraphLayoutBox::AddImage(const wxImage
& image
, wxTextAttrEx
* paraStyle
)
1020 #if wxRICHTEXT_USE_DYNAMIC_STYLES
1021 // Don't use the base style, just the default style, and the base style will
1022 // be combined at display time.
1023 // Divide into paragraph and character styles.
1025 wxTextAttrEx defaultCharStyle
;
1026 wxTextAttrEx defaultParaStyle
;
1027 wxRichTextSplitParaCharStyles(GetDefaultStyle(), defaultParaStyle
, defaultCharStyle
);
1029 wxTextAttrEx
style(GetAttributes());
1031 // Apply default style. If the style has no attributes set,
1032 // then the attributes will remain the 'basic style' (i.e. the
1033 // layout box's style).
1034 wxRichTextApplyStyle(style
, GetDefaultStyle());
1036 wxTextAttrEx defaultCharStyle
= style
;
1037 wxTextAttrEx defaultParaStyle
= style
;
1040 wxTextAttrEx
* pStyle
= paraStyle
? paraStyle
: (wxTextAttrEx
*) & defaultParaStyle
;
1041 wxTextAttrEx
* cStyle
= & defaultCharStyle
;
1043 wxRichTextParagraph
* para
= new wxRichTextParagraph(this, pStyle
);
1045 para
->AppendChild(new wxRichTextImage(image
, this, cStyle
));
1050 return para
->GetRange();
1054 /// Insert fragment into this box at the given position. If partialParagraph is true,
1055 /// it is assumed that the last (or only) paragraph is just a piece of data with no paragraph
1058 bool wxRichTextParagraphLayoutBox::InsertFragment(long position
, wxRichTextParagraphLayoutBox
& fragment
)
1062 // First, find the first paragraph whose starting position is within the range.
1063 wxRichTextParagraph
* para
= GetParagraphAtPosition(position
);
1066 wxRichTextObjectList::compatibility_iterator node
= m_children
.Find(para
);
1068 // Now split at this position, returning the object to insert the new
1069 // ones in front of.
1070 wxRichTextObject
* nextObject
= para
->SplitAt(position
);
1072 // Special case: partial paragraph, just one paragraph. Might be a small amount of
1073 // text, for example, so let's optimize.
1075 if (fragment
.GetPartialParagraph() && fragment
.GetChildren().GetCount() == 1)
1077 // Add the first para to this para...
1078 wxRichTextObjectList::compatibility_iterator firstParaNode
= fragment
.GetChildren().GetFirst();
1082 // Iterate through the fragment paragraph inserting the content into this paragraph.
1083 wxRichTextParagraph
* firstPara
= wxDynamicCast(firstParaNode
->GetData(), wxRichTextParagraph
);
1084 wxASSERT (firstPara
!= NULL
);
1086 // Apply the new paragraph attributes to the existing paragraph
1087 wxTextAttrEx
attr(para
->GetAttributes());
1088 wxRichTextApplyStyle(attr
, firstPara
->GetAttributes());
1089 para
->SetAttributes(attr
);
1091 wxRichTextObjectList::compatibility_iterator objectNode
= firstPara
->GetChildren().GetFirst();
1094 wxRichTextObject
* newObj
= objectNode
->GetData()->Clone();
1099 para
->AppendChild(newObj
);
1103 // Insert before nextObject
1104 para
->InsertChild(newObj
, nextObject
);
1107 objectNode
= objectNode
->GetNext();
1114 // Procedure for inserting a fragment consisting of a number of
1117 // 1. Remove and save the content that's after the insertion point, for adding
1118 // back once we've added the fragment.
1119 // 2. Add the content from the first fragment paragraph to the current
1121 // 3. Add remaining fragment paragraphs after the current paragraph.
1122 // 4. Add back the saved content from the first paragraph. If partialParagraph
1123 // is true, add it to the last paragraph added and not a new one.
1125 // 1. Remove and save objects after split point.
1126 wxList savedObjects
;
1128 para
->MoveToList(nextObject
, savedObjects
);
1130 // 2. Add the content from the 1st fragment paragraph.
1131 wxRichTextObjectList::compatibility_iterator firstParaNode
= fragment
.GetChildren().GetFirst();
1135 wxRichTextParagraph
* firstPara
= wxDynamicCast(firstParaNode
->GetData(), wxRichTextParagraph
);
1136 wxASSERT(firstPara
!= NULL
);
1138 wxRichTextObjectList::compatibility_iterator objectNode
= firstPara
->GetChildren().GetFirst();
1141 wxRichTextObject
* newObj
= objectNode
->GetData()->Clone();
1144 para
->AppendChild(newObj
);
1146 objectNode
= objectNode
->GetNext();
1149 // 3. Add remaining fragment paragraphs after the current paragraph.
1150 wxRichTextObjectList::compatibility_iterator nextParagraphNode
= node
->GetNext();
1151 wxRichTextObject
* nextParagraph
= NULL
;
1152 if (nextParagraphNode
)
1153 nextParagraph
= nextParagraphNode
->GetData();
1155 wxRichTextObjectList::compatibility_iterator i
= fragment
.GetChildren().GetFirst()->GetNext();
1156 wxRichTextParagraph
* finalPara
= para
;
1158 // If there was only one paragraph, we need to insert a new one.
1161 finalPara
= new wxRichTextParagraph
;
1163 // TODO: These attributes should come from the subsequent paragraph
1164 // when originally deleted, since the subsequent para takes on
1165 // the previous para's attributes.
1166 finalPara
->SetAttributes(firstPara
->GetAttributes());
1169 InsertChild(finalPara
, nextParagraph
);
1171 AppendChild(finalPara
);
1175 wxRichTextParagraph
* para
= wxDynamicCast(i
->GetData(), wxRichTextParagraph
);
1176 wxASSERT( para
!= NULL
);
1178 finalPara
= (wxRichTextParagraph
*) para
->Clone();
1181 InsertChild(finalPara
, nextParagraph
);
1183 AppendChild(finalPara
);
1188 // 4. Add back the remaining content.
1191 finalPara
->MoveFromList(savedObjects
);
1193 // Ensure there's at least one object
1194 if (finalPara
->GetChildCount() == 0)
1196 wxRichTextPlainText
* text
= new wxRichTextPlainText(wxEmptyString
);
1198 finalPara
->AppendChild(text
);
1208 wxRichTextObjectList::compatibility_iterator i
= fragment
.GetChildren().GetFirst();
1211 wxRichTextParagraph
* para
= wxDynamicCast(i
->GetData(), wxRichTextParagraph
);
1212 wxASSERT( para
!= NULL
);
1214 AppendChild(para
->Clone());
1223 /// Make a copy of the fragment corresponding to the given range, putting it in 'fragment'.
1224 /// If there was an incomplete paragraph at the end, partialParagraph is set to true.
1225 bool wxRichTextParagraphLayoutBox::CopyFragment(const wxRichTextRange
& range
, wxRichTextParagraphLayoutBox
& fragment
)
1227 wxRichTextObjectList::compatibility_iterator i
= GetChildren().GetFirst();
1230 wxRichTextParagraph
* para
= wxDynamicCast(i
->GetData(), wxRichTextParagraph
);
1231 wxASSERT( para
!= NULL
);
1233 if (!para
->GetRange().IsOutside(range
))
1235 fragment
.AppendChild(para
->Clone());
1240 // Now top and tail the first and last paragraphs in our new fragment (which might be the same).
1241 if (!fragment
.IsEmpty())
1243 wxRichTextRange
topTailRange(range
);
1245 wxRichTextParagraph
* firstPara
= wxDynamicCast(fragment
.GetChildren().GetFirst()->GetData(), wxRichTextParagraph
);
1246 wxASSERT( firstPara
!= NULL
);
1248 // Chop off the start of the paragraph
1249 if (topTailRange
.GetStart() > firstPara
->GetRange().GetStart())
1251 wxRichTextRange
r(firstPara
->GetRange().GetStart(), topTailRange
.GetStart()-1);
1252 firstPara
->DeleteRange(r
);
1254 // Make sure the numbering is correct
1256 fragment
.CalculateRange(firstPara
->GetRange().GetStart(), end
);
1258 // Now, we've deleted some positions, so adjust the range
1260 topTailRange
.SetEnd(topTailRange
.GetEnd() - r
.GetLength());
1263 wxRichTextParagraph
* lastPara
= wxDynamicCast(fragment
.GetChildren().GetLast()->GetData(), wxRichTextParagraph
);
1264 wxASSERT( lastPara
!= NULL
);
1266 if (topTailRange
.GetEnd() < (lastPara
->GetRange().GetEnd()-1))
1268 wxRichTextRange
r(topTailRange
.GetEnd()+1, lastPara
->GetRange().GetEnd()-1); /* -1 since actual text ends 1 position before end of para marker */
1269 lastPara
->DeleteRange(r
);
1271 // Make sure the numbering is correct
1273 fragment
.CalculateRange(firstPara
->GetRange().GetStart(), end
);
1275 // We only have part of a paragraph at the end
1276 fragment
.SetPartialParagraph(true);
1280 if (topTailRange
.GetEnd() == (lastPara
->GetRange().GetEnd() - 1))
1281 // We have a partial paragraph (don't save last new paragraph marker)
1282 fragment
.SetPartialParagraph(true);
1284 // We have a complete paragraph
1285 fragment
.SetPartialParagraph(false);
1292 /// Given a position, get the number of the visible line (potentially many to a paragraph),
1293 /// starting from zero at the start of the buffer.
1294 long wxRichTextParagraphLayoutBox::GetVisibleLineNumber(long pos
, bool caretPosition
, bool startOfLine
) const
1301 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1304 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
1305 wxASSERT( child
!= NULL
);
1307 if (child
->GetRange().Contains(pos
))
1309 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
1312 wxRichTextLine
* line
= node2
->GetData();
1313 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1315 if (lineRange
.Contains(pos
))
1317 // If the caret is displayed at the end of the previous wrapped line,
1318 // we want to return the line it's _displayed_ at (not the actual line
1319 // containing the position).
1320 if (lineRange
.GetStart() == pos
&& !startOfLine
&& child
->GetRange().GetStart() != pos
)
1321 return lineCount
- 1;
1328 node2
= node2
->GetNext();
1330 // If we didn't find it in the lines, it must be
1331 // the last position of the paragraph. So return the last line.
1335 lineCount
+= child
->GetLines().GetCount();
1337 node
= node
->GetNext();
1344 /// Given a line number, get the corresponding wxRichTextLine object.
1345 wxRichTextLine
* wxRichTextParagraphLayoutBox::GetLineForVisibleLineNumber(long lineNumber
) const
1349 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1352 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
1353 wxASSERT(child
!= NULL
);
1355 if (lineNumber
< (int) (child
->GetLines().GetCount() + lineCount
))
1357 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
1360 wxRichTextLine
* line
= node2
->GetData();
1362 if (lineCount
== lineNumber
)
1367 node2
= node2
->GetNext();
1371 lineCount
+= child
->GetLines().GetCount();
1373 node
= node
->GetNext();
1380 /// Delete range from layout.
1381 bool wxRichTextParagraphLayoutBox::DeleteRange(const wxRichTextRange
& range
)
1383 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1387 wxRichTextParagraph
* obj
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
1388 wxASSERT (obj
!= NULL
);
1390 wxRichTextObjectList::compatibility_iterator next
= node
->GetNext();
1392 // Delete the range in each paragraph
1394 if (!obj
->GetRange().IsOutside(range
))
1396 // Deletes the content of this object within the given range
1397 obj
->DeleteRange(range
);
1399 // If the whole paragraph is within the range to delete,
1400 // delete the whole thing.
1401 if (range
.GetStart() <= obj
->GetRange().GetStart() && range
.GetEnd() >= obj
->GetRange().GetEnd())
1403 // Delete the whole object
1404 RemoveChild(obj
, true);
1406 // If the range includes the paragraph end, we need to join this
1407 // and the next paragraph.
1408 else if (range
.Contains(obj
->GetRange().GetEnd()))
1410 // We need to move the objects from the next paragraph
1411 // to this paragraph
1415 wxRichTextParagraph
* nextParagraph
= wxDynamicCast(next
->GetData(), wxRichTextParagraph
);
1416 next
= next
->GetNext();
1419 // Delete the stuff we need to delete
1420 nextParagraph
->DeleteRange(range
);
1422 // Move the objects to the previous para
1423 wxRichTextObjectList::compatibility_iterator node1
= nextParagraph
->GetChildren().GetFirst();
1427 wxRichTextObject
* obj1
= node1
->GetData();
1429 // If the object is empty, optimise it out
1430 if (obj1
->IsEmpty())
1436 obj
->AppendChild(obj1
);
1439 wxRichTextObjectList::compatibility_iterator next1
= node1
->GetNext();
1440 nextParagraph
->GetChildren().Erase(node1
);
1445 // Delete the paragraph
1446 RemoveChild(nextParagraph
, true);
1460 /// Get any text in this object for the given range
1461 wxString
wxRichTextParagraphLayoutBox::GetTextForRange(const wxRichTextRange
& range
) const
1465 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1468 wxRichTextObject
* child
= node
->GetData();
1469 if (!child
->GetRange().IsOutside(range
))
1471 // if (lineCount > 0)
1472 // text += wxT("\n");
1473 wxRichTextRange childRange
= range
;
1474 childRange
.LimitTo(child
->GetRange());
1476 wxString childText
= child
->GetTextForRange(childRange
);
1480 if (childRange
.GetEnd() == child
->GetRange().GetEnd())
1485 node
= node
->GetNext();
1491 /// Get all the text
1492 wxString
wxRichTextParagraphLayoutBox::GetText() const
1494 return GetTextForRange(GetRange());
1497 /// Get the paragraph by number
1498 wxRichTextParagraph
* wxRichTextParagraphLayoutBox::GetParagraphAtLine(long paragraphNumber
) const
1500 if ((size_t) paragraphNumber
>= GetChildCount())
1503 return (wxRichTextParagraph
*) GetChild((size_t) paragraphNumber
);
1506 /// Get the length of the paragraph
1507 int wxRichTextParagraphLayoutBox::GetParagraphLength(long paragraphNumber
) const
1509 wxRichTextParagraph
* para
= GetParagraphAtLine(paragraphNumber
);
1511 return para
->GetRange().GetLength() - 1; // don't include newline
1516 /// Get the text of the paragraph
1517 wxString
wxRichTextParagraphLayoutBox::GetParagraphText(long paragraphNumber
) const
1519 wxRichTextParagraph
* para
= GetParagraphAtLine(paragraphNumber
);
1521 return para
->GetTextForRange(para
->GetRange());
1523 return wxEmptyString
;
1526 /// Convert zero-based line column and paragraph number to a position.
1527 long wxRichTextParagraphLayoutBox::XYToPosition(long x
, long y
) const
1529 wxRichTextParagraph
* para
= GetParagraphAtLine(y
);
1532 return para
->GetRange().GetStart() + x
;
1538 /// Convert zero-based position to line column and paragraph number
1539 bool wxRichTextParagraphLayoutBox::PositionToXY(long pos
, long* x
, long* y
) const
1541 wxRichTextParagraph
* para
= GetParagraphAtPosition(pos
);
1545 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1548 wxRichTextObject
* child
= node
->GetData();
1552 node
= node
->GetNext();
1556 *x
= pos
- para
->GetRange().GetStart();
1564 /// Get the leaf object in a paragraph at this position.
1565 /// Given a line number, get the corresponding wxRichTextLine object.
1566 wxRichTextObject
* wxRichTextParagraphLayoutBox::GetLeafObjectAtPosition(long position
) const
1568 wxRichTextParagraph
* para
= GetParagraphAtPosition(position
);
1571 wxRichTextObjectList::compatibility_iterator node
= para
->GetChildren().GetFirst();
1575 wxRichTextObject
* child
= node
->GetData();
1576 if (child
->GetRange().Contains(position
))
1579 node
= node
->GetNext();
1581 if (position
== para
->GetRange().GetEnd() && para
->GetChildCount() > 0)
1582 return para
->GetChildren().GetLast()->GetData();
1587 /// Set character or paragraph text attributes: apply character styles only to immediate text nodes
1588 bool wxRichTextParagraphLayoutBox::SetStyle(const wxRichTextRange
& range
, const wxRichTextAttr
& style
, int flags
)
1590 bool characterStyle
= false;
1591 bool paragraphStyle
= false;
1593 if (style
.IsCharacterStyle())
1594 characterStyle
= true;
1595 if (style
.IsParagraphStyle())
1596 paragraphStyle
= true;
1598 bool withUndo
= ((flags
& wxRICHTEXT_SETSTYLE_WITH_UNDO
) != 0);
1599 bool applyMinimal
= ((flags
& wxRICHTEXT_SETSTYLE_OPTIMIZE
) != 0);
1600 bool parasOnly
= ((flags
& wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
) != 0);
1601 bool charactersOnly
= ((flags
& wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
) != 0);
1602 bool resetExistingStyle
= ((flags
& wxRICHTEXT_SETSTYLE_RESET
) != 0);
1604 // Apply paragraph style first, if any
1605 wxRichTextAttr
wholeStyle(style
);
1607 if (wholeStyle
.HasParagraphStyleName() && GetStyleSheet())
1609 wxRichTextParagraphStyleDefinition
* def
= GetStyleSheet()->FindParagraphStyle(wholeStyle
.GetParagraphStyleName());
1611 wxRichTextApplyStyle(wholeStyle
, def
->GetStyle());
1614 // Limit the attributes to be set to the content to only character attributes.
1615 wxRichTextAttr
characterAttributes(wholeStyle
);
1616 characterAttributes
.SetFlags(characterAttributes
.GetFlags() & (wxTEXT_ATTR_CHARACTER
));
1618 if (characterAttributes
.HasCharacterStyleName() && GetStyleSheet())
1620 wxRichTextCharacterStyleDefinition
* def
= GetStyleSheet()->FindCharacterStyle(characterAttributes
.GetCharacterStyleName());
1622 wxRichTextApplyStyle(characterAttributes
, def
->GetStyle());
1625 // If we are associated with a control, make undoable; otherwise, apply immediately
1628 bool haveControl
= (GetRichTextCtrl() != NULL
);
1630 wxRichTextAction
* action
= NULL
;
1632 if (haveControl
&& withUndo
)
1634 action
= new wxRichTextAction(NULL
, _("Change Style"), wxRICHTEXT_CHANGE_STYLE
, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
1635 action
->SetRange(range
);
1636 action
->SetPosition(GetRichTextCtrl()->GetCaretPosition());
1639 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1642 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
1643 wxASSERT (para
!= NULL
);
1645 if (para
&& para
->GetChildCount() > 0)
1647 // Stop searching if we're beyond the range of interest
1648 if (para
->GetRange().GetStart() > range
.GetEnd())
1651 if (!para
->GetRange().IsOutside(range
))
1653 // We'll be using a copy of the paragraph to make style changes,
1654 // not updating the buffer directly.
1655 wxRichTextParagraph
* newPara
wxDUMMY_INITIALIZE(NULL
);
1657 if (haveControl
&& withUndo
)
1659 newPara
= new wxRichTextParagraph(*para
);
1660 action
->GetNewParagraphs().AppendChild(newPara
);
1662 // Also store the old ones for Undo
1663 action
->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para
));
1668 // If we're specifying paragraphs only, then we really mean character formatting
1669 // to be included in the paragraph style
1670 if ((paragraphStyle
|| parasOnly
) && !charactersOnly
)
1672 if (resetExistingStyle
)
1673 newPara
->GetAttributes() = wholeStyle
;
1678 // Only apply attributes that will make a difference to the combined
1679 // style as seen on the display
1680 wxRichTextAttr
combinedAttr(para
->GetCombinedAttributes());
1681 wxRichTextApplyStyle(newPara
->GetAttributes(), wholeStyle
, & combinedAttr
);
1684 wxRichTextApplyStyle(newPara
->GetAttributes(), wholeStyle
);
1688 #if wxRICHTEXT_USE_DYNAMIC_STYLES
1689 // If applying paragraph styles dynamically, don't change the text objects' attributes
1690 // since they will computed as needed. Only apply the character styling if it's _only_
1691 // character styling. This policy is subject to change and might be put under user control.
1693 // Hm. we might well be applying a mix of paragraph and character styles, in which
1694 // case we _do_ want to apply character styles regardless of what para styles are set.
1695 // But if we're applying a paragraph style, which has some character attributes, but
1696 // we only want the paragraphs to hold this character style, then we _don't_ want to
1697 // apply the character style. So we need to be able to choose.
1699 // if (!paragraphStyle && characterStyle && range.GetStart() != newPara->GetRange().GetEnd())
1700 if (!parasOnly
&& characterStyle
&& range
.GetStart() != newPara
->GetRange().GetEnd())
1702 if (characterStyle
&& range
.GetStart() != newPara
->GetRange().GetEnd())
1705 wxRichTextRange
childRange(range
);
1706 childRange
.LimitTo(newPara
->GetRange());
1708 // Find the starting position and if necessary split it so
1709 // we can start applying a different style.
1710 // TODO: check that the style actually changes or is different
1711 // from style outside of range
1712 wxRichTextObject
* firstObject
wxDUMMY_INITIALIZE(NULL
);
1713 wxRichTextObject
* lastObject
wxDUMMY_INITIALIZE(NULL
);
1715 if (childRange
.GetStart() == newPara
->GetRange().GetStart())
1716 firstObject
= newPara
->GetChildren().GetFirst()->GetData();
1718 firstObject
= newPara
->SplitAt(range
.GetStart());
1720 // Increment by 1 because we're apply the style one _after_ the split point
1721 long splitPoint
= childRange
.GetEnd();
1722 if (splitPoint
!= newPara
->GetRange().GetEnd())
1726 if (splitPoint
== newPara
->GetRange().GetEnd() || splitPoint
== (newPara
->GetRange().GetEnd() - 1))
1727 lastObject
= newPara
->GetChildren().GetLast()->GetData();
1729 // lastObject is set as a side-effect of splitting. It's
1730 // returned as the object before the new object.
1731 (void) newPara
->SplitAt(splitPoint
, & lastObject
);
1733 wxASSERT(firstObject
!= NULL
);
1734 wxASSERT(lastObject
!= NULL
);
1736 if (!firstObject
|| !lastObject
)
1739 wxRichTextObjectList::compatibility_iterator firstNode
= newPara
->GetChildren().Find(firstObject
);
1740 wxRichTextObjectList::compatibility_iterator lastNode
= newPara
->GetChildren().Find(lastObject
);
1742 wxASSERT(firstNode
);
1745 wxRichTextObjectList::compatibility_iterator node2
= firstNode
;
1749 wxRichTextObject
* child
= node2
->GetData();
1751 if (resetExistingStyle
)
1752 child
->GetAttributes() = characterAttributes
;
1757 // Only apply attributes that will make a difference to the combined
1758 // style as seen on the display
1759 wxRichTextAttr
combinedAttr(newPara
->GetCombinedAttributes(child
->GetAttributes()));
1760 wxRichTextApplyStyle(child
->GetAttributes(), characterAttributes
, & combinedAttr
);
1763 wxRichTextApplyStyle(child
->GetAttributes(), characterAttributes
);
1766 if (node2
== lastNode
)
1769 node2
= node2
->GetNext();
1775 node
= node
->GetNext();
1778 // Do action, or delay it until end of batch.
1779 if (haveControl
&& withUndo
)
1780 GetRichTextCtrl()->GetBuffer().SubmitAction(action
);
1785 /// Set text attributes
1786 bool wxRichTextParagraphLayoutBox::SetStyle(const wxRichTextRange
& range
, const wxTextAttrEx
& style
, int flags
)
1788 wxRichTextAttr richStyle
= style
;
1789 return SetStyle(range
, richStyle
, flags
);
1792 /// Get the text attributes for this position.
1793 bool wxRichTextParagraphLayoutBox::GetStyle(long position
, wxTextAttrEx
& style
)
1795 return DoGetStyle(position
, style
, true);
1798 /// Get the text attributes for this position.
1799 bool wxRichTextParagraphLayoutBox::GetStyle(long position
, wxRichTextAttr
& style
)
1801 wxTextAttrEx
textAttrEx(style
);
1802 if (GetStyle(position
, textAttrEx
))
1811 /// Get the content (uncombined) attributes for this position.
1812 bool wxRichTextParagraphLayoutBox::GetUncombinedStyle(long position
, wxTextAttrEx
& style
)
1814 return DoGetStyle(position
, style
, false);
1817 bool wxRichTextParagraphLayoutBox::GetUncombinedStyle(long position
, wxRichTextAttr
& style
)
1819 wxTextAttrEx
textAttrEx(style
);
1820 if (GetUncombinedStyle(position
, textAttrEx
))
1829 /// Implementation helper for GetStyle. If combineStyles is true, combine base, paragraph and
1830 /// context attributes.
1831 bool wxRichTextParagraphLayoutBox::DoGetStyle(long position
, wxTextAttrEx
& style
, bool combineStyles
)
1833 wxRichTextObject
* obj
wxDUMMY_INITIALIZE(NULL
);
1835 if (style
.IsParagraphStyle())
1837 obj
= GetParagraphAtPosition(position
);
1840 #if wxRICHTEXT_USE_DYNAMIC_STYLES
1843 // Start with the base style
1844 style
= GetAttributes();
1846 // Apply the paragraph style
1847 wxRichTextApplyStyle(style
, obj
->GetAttributes());
1850 style
= obj
->GetAttributes();
1852 style
= obj
->GetAttributes();
1859 obj
= GetLeafObjectAtPosition(position
);
1862 #if wxRICHTEXT_USE_DYNAMIC_STYLES
1865 wxRichTextParagraph
* para
= wxDynamicCast(obj
->GetParent(), wxRichTextParagraph
);
1866 style
= para
? para
->GetCombinedAttributes(obj
->GetAttributes()) : obj
->GetAttributes();
1869 style
= obj
->GetAttributes();
1871 style
= obj
->GetAttributes();
1879 static bool wxHasStyle(long flags
, long style
)
1881 return (flags
& style
) != 0;
1884 /// Combines 'style' with 'currentStyle' for the purpose of summarising the attributes of a range of
1886 bool wxRichTextParagraphLayoutBox::CollectStyle(wxTextAttrEx
& currentStyle
, const wxTextAttrEx
& style
, long& multipleStyleAttributes
, int& multipleTextEffectAttributes
)
1888 if (style
.HasFont())
1890 if (style
.HasSize() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_FONT_SIZE
))
1892 if (currentStyle
.GetFont().Ok() && currentStyle
.HasSize())
1894 if (currentStyle
.GetFont().GetPointSize() != style
.GetFont().GetPointSize())
1896 // Clash of style - mark as such
1897 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_SIZE
;
1898 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_SIZE
);
1903 if (!currentStyle
.GetFont().Ok())
1904 wxSetFontPreservingStyles(currentStyle
, *wxNORMAL_FONT
);
1905 wxFont
font(currentStyle
.GetFont());
1906 font
.SetPointSize(style
.GetFont().GetPointSize());
1908 wxSetFontPreservingStyles(currentStyle
, font
);
1909 currentStyle
.SetFlags(currentStyle
.GetFlags() | wxTEXT_ATTR_FONT_SIZE
);
1913 if (style
.HasItalic() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_FONT_ITALIC
))
1915 if (currentStyle
.GetFont().Ok() && currentStyle
.HasItalic())
1917 if (currentStyle
.GetFont().GetStyle() != style
.GetFont().GetStyle())
1919 // Clash of style - mark as such
1920 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_ITALIC
;
1921 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_ITALIC
);
1926 if (!currentStyle
.GetFont().Ok())
1927 wxSetFontPreservingStyles(currentStyle
, *wxNORMAL_FONT
);
1928 wxFont
font(currentStyle
.GetFont());
1929 font
.SetStyle(style
.GetFont().GetStyle());
1930 wxSetFontPreservingStyles(currentStyle
, font
);
1931 currentStyle
.SetFlags(currentStyle
.GetFlags() | wxTEXT_ATTR_FONT_ITALIC
);
1935 if (style
.HasWeight() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_FONT_WEIGHT
))
1937 if (currentStyle
.GetFont().Ok() && currentStyle
.HasWeight())
1939 if (currentStyle
.GetFont().GetWeight() != style
.GetFont().GetWeight())
1941 // Clash of style - mark as such
1942 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_WEIGHT
;
1943 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_WEIGHT
);
1948 if (!currentStyle
.GetFont().Ok())
1949 wxSetFontPreservingStyles(currentStyle
, *wxNORMAL_FONT
);
1950 wxFont
font(currentStyle
.GetFont());
1951 font
.SetWeight(style
.GetFont().GetWeight());
1952 wxSetFontPreservingStyles(currentStyle
, font
);
1953 currentStyle
.SetFlags(currentStyle
.GetFlags() | wxTEXT_ATTR_FONT_WEIGHT
);
1957 if (style
.HasFaceName() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_FONT_FACE
))
1959 if (currentStyle
.GetFont().Ok() && currentStyle
.HasFaceName())
1961 wxString
faceName1(currentStyle
.GetFont().GetFaceName());
1962 wxString
faceName2(style
.GetFont().GetFaceName());
1964 if (faceName1
!= faceName2
)
1966 // Clash of style - mark as such
1967 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_FACE
;
1968 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_FACE
);
1973 if (!currentStyle
.GetFont().Ok())
1974 wxSetFontPreservingStyles(currentStyle
, *wxNORMAL_FONT
);
1975 wxFont
font(currentStyle
.GetFont());
1976 font
.SetFaceName(style
.GetFont().GetFaceName());
1977 wxSetFontPreservingStyles(currentStyle
, font
);
1978 currentStyle
.SetFlags(currentStyle
.GetFlags() | wxTEXT_ATTR_FONT_FACE
);
1982 if (style
.HasUnderlined() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_FONT_UNDERLINE
))
1984 if (currentStyle
.GetFont().Ok() && currentStyle
.HasUnderlined())
1986 if (currentStyle
.GetFont().GetUnderlined() != style
.GetFont().GetUnderlined())
1988 // Clash of style - mark as such
1989 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_UNDERLINE
;
1990 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_UNDERLINE
);
1995 if (!currentStyle
.GetFont().Ok())
1996 wxSetFontPreservingStyles(currentStyle
, *wxNORMAL_FONT
);
1997 wxFont
font(currentStyle
.GetFont());
1998 font
.SetUnderlined(style
.GetFont().GetUnderlined());
1999 wxSetFontPreservingStyles(currentStyle
, font
);
2000 currentStyle
.SetFlags(currentStyle
.GetFlags() | wxTEXT_ATTR_FONT_UNDERLINE
);
2005 if (style
.HasTextColour() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_TEXT_COLOUR
))
2007 if (currentStyle
.HasTextColour())
2009 if (currentStyle
.GetTextColour() != style
.GetTextColour())
2011 // Clash of style - mark as such
2012 multipleStyleAttributes
|= wxTEXT_ATTR_TEXT_COLOUR
;
2013 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_TEXT_COLOUR
);
2017 currentStyle
.SetTextColour(style
.GetTextColour());
2020 if (style
.HasBackgroundColour() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_BACKGROUND_COLOUR
))
2022 if (currentStyle
.HasBackgroundColour())
2024 if (currentStyle
.GetBackgroundColour() != style
.GetBackgroundColour())
2026 // Clash of style - mark as such
2027 multipleStyleAttributes
|= wxTEXT_ATTR_BACKGROUND_COLOUR
;
2028 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BACKGROUND_COLOUR
);
2032 currentStyle
.SetBackgroundColour(style
.GetBackgroundColour());
2035 if (style
.HasAlignment() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_ALIGNMENT
))
2037 if (currentStyle
.HasAlignment())
2039 if (currentStyle
.GetAlignment() != style
.GetAlignment())
2041 // Clash of style - mark as such
2042 multipleStyleAttributes
|= wxTEXT_ATTR_ALIGNMENT
;
2043 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_ALIGNMENT
);
2047 currentStyle
.SetAlignment(style
.GetAlignment());
2050 if (style
.HasTabs() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_TABS
))
2052 if (currentStyle
.HasTabs())
2054 if (!wxRichTextTabsEq(currentStyle
.GetTabs(), style
.GetTabs()))
2056 // Clash of style - mark as such
2057 multipleStyleAttributes
|= wxTEXT_ATTR_TABS
;
2058 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_TABS
);
2062 currentStyle
.SetTabs(style
.GetTabs());
2065 if (style
.HasLeftIndent() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_LEFT_INDENT
))
2067 if (currentStyle
.HasLeftIndent())
2069 if (currentStyle
.GetLeftIndent() != style
.GetLeftIndent() || currentStyle
.GetLeftSubIndent() != style
.GetLeftSubIndent())
2071 // Clash of style - mark as such
2072 multipleStyleAttributes
|= wxTEXT_ATTR_LEFT_INDENT
;
2073 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_LEFT_INDENT
);
2077 currentStyle
.SetLeftIndent(style
.GetLeftIndent(), style
.GetLeftSubIndent());
2080 if (style
.HasRightIndent() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_RIGHT_INDENT
))
2082 if (currentStyle
.HasRightIndent())
2084 if (currentStyle
.GetRightIndent() != style
.GetRightIndent())
2086 // Clash of style - mark as such
2087 multipleStyleAttributes
|= wxTEXT_ATTR_RIGHT_INDENT
;
2088 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_RIGHT_INDENT
);
2092 currentStyle
.SetRightIndent(style
.GetRightIndent());
2095 if (style
.HasParagraphSpacingAfter() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_PARA_SPACING_AFTER
))
2097 if (currentStyle
.HasParagraphSpacingAfter())
2099 if (currentStyle
.GetParagraphSpacingAfter() != style
.GetParagraphSpacingAfter())
2101 // Clash of style - mark as such
2102 multipleStyleAttributes
|= wxTEXT_ATTR_PARA_SPACING_AFTER
;
2103 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_PARA_SPACING_AFTER
);
2107 currentStyle
.SetParagraphSpacingAfter(style
.GetParagraphSpacingAfter());
2110 if (style
.HasParagraphSpacingBefore() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_PARA_SPACING_BEFORE
))
2112 if (currentStyle
.HasParagraphSpacingBefore())
2114 if (currentStyle
.GetParagraphSpacingBefore() != style
.GetParagraphSpacingBefore())
2116 // Clash of style - mark as such
2117 multipleStyleAttributes
|= wxTEXT_ATTR_PARA_SPACING_BEFORE
;
2118 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_PARA_SPACING_BEFORE
);
2122 currentStyle
.SetParagraphSpacingBefore(style
.GetParagraphSpacingBefore());
2125 if (style
.HasLineSpacing() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_LINE_SPACING
))
2127 if (currentStyle
.HasLineSpacing())
2129 if (currentStyle
.GetLineSpacing() != style
.GetLineSpacing())
2131 // Clash of style - mark as such
2132 multipleStyleAttributes
|= wxTEXT_ATTR_LINE_SPACING
;
2133 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_LINE_SPACING
);
2137 currentStyle
.SetLineSpacing(style
.GetLineSpacing());
2140 if (style
.HasCharacterStyleName() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_CHARACTER_STYLE_NAME
))
2142 if (currentStyle
.HasCharacterStyleName())
2144 if (currentStyle
.GetCharacterStyleName() != style
.GetCharacterStyleName())
2146 // Clash of style - mark as such
2147 multipleStyleAttributes
|= wxTEXT_ATTR_CHARACTER_STYLE_NAME
;
2148 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_CHARACTER_STYLE_NAME
);
2152 currentStyle
.SetCharacterStyleName(style
.GetCharacterStyleName());
2155 if (style
.HasParagraphStyleName() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
))
2157 if (currentStyle
.HasParagraphStyleName())
2159 if (currentStyle
.GetParagraphStyleName() != style
.GetParagraphStyleName())
2161 // Clash of style - mark as such
2162 multipleStyleAttributes
|= wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
;
2163 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
);
2167 currentStyle
.SetParagraphStyleName(style
.GetParagraphStyleName());
2170 if (style
.HasListStyleName() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_LIST_STYLE_NAME
))
2172 if (currentStyle
.HasListStyleName())
2174 if (currentStyle
.GetListStyleName() != style
.GetListStyleName())
2176 // Clash of style - mark as such
2177 multipleStyleAttributes
|= wxTEXT_ATTR_LIST_STYLE_NAME
;
2178 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_LIST_STYLE_NAME
);
2182 currentStyle
.SetListStyleName(style
.GetListStyleName());
2185 if (style
.HasBulletStyle() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_BULLET_STYLE
))
2187 if (currentStyle
.HasBulletStyle())
2189 if (currentStyle
.GetBulletStyle() != style
.GetBulletStyle())
2191 // Clash of style - mark as such
2192 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_STYLE
;
2193 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_STYLE
);
2197 currentStyle
.SetBulletStyle(style
.GetBulletStyle());
2200 if (style
.HasBulletNumber() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_BULLET_NUMBER
))
2202 if (currentStyle
.HasBulletNumber())
2204 if (currentStyle
.GetBulletNumber() != style
.GetBulletNumber())
2206 // Clash of style - mark as such
2207 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_NUMBER
;
2208 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_NUMBER
);
2212 currentStyle
.SetBulletNumber(style
.GetBulletNumber());
2215 if (style
.HasBulletText() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_BULLET_TEXT
))
2217 if (currentStyle
.HasBulletText())
2219 if (currentStyle
.GetBulletText() != style
.GetBulletText())
2221 // Clash of style - mark as such
2222 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_TEXT
;
2223 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_TEXT
);
2228 currentStyle
.SetBulletText(style
.GetBulletText());
2229 currentStyle
.SetBulletFont(style
.GetBulletFont());
2233 if (style
.HasBulletName() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_BULLET_NAME
))
2235 if (currentStyle
.HasBulletName())
2237 if (currentStyle
.GetBulletName() != style
.GetBulletName())
2239 // Clash of style - mark as such
2240 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_NAME
;
2241 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_NAME
);
2246 currentStyle
.SetBulletName(style
.GetBulletName());
2250 if (style
.HasURL() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_URL
))
2252 if (currentStyle
.HasURL())
2254 if (currentStyle
.GetURL() != style
.GetURL())
2256 // Clash of style - mark as such
2257 multipleStyleAttributes
|= wxTEXT_ATTR_URL
;
2258 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_URL
);
2263 currentStyle
.SetURL(style
.GetURL());
2267 if (style
.HasTextEffects() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_EFFECTS
))
2269 if (currentStyle
.HasTextEffects())
2271 // We need to find the bits in the new style that are different:
2272 // just look at those bits that are specified by the new style.
2274 int currentRelevantTextEffects
= currentStyle
.GetTextEffects() & style
.GetTextEffectFlags();
2275 int newRelevantTextEffects
= style
.GetTextEffects() & style
.GetTextEffectFlags();
2277 if (currentRelevantTextEffects
!= newRelevantTextEffects
)
2279 // Find the text effects that were different, using XOR
2280 int differentEffects
= currentRelevantTextEffects
^ newRelevantTextEffects
;
2282 // Clash of style - mark as such
2283 multipleTextEffectAttributes
|= differentEffects
;
2284 currentStyle
.SetTextEffectFlags(currentStyle
.GetTextEffectFlags() & ~differentEffects
);
2289 currentStyle
.SetTextEffects(style
.GetTextEffects());
2290 currentStyle
.SetTextEffectFlags(style
.GetTextEffectFlags());
2294 if (style
.HasOutlineLevel() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_OUTLINE_LEVEL
))
2296 if (currentStyle
.HasOutlineLevel())
2298 if (currentStyle
.GetOutlineLevel() != style
.GetOutlineLevel())
2300 // Clash of style - mark as such
2301 multipleStyleAttributes
|= wxTEXT_ATTR_OUTLINE_LEVEL
;
2302 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_OUTLINE_LEVEL
);
2306 currentStyle
.SetOutlineLevel(style
.GetOutlineLevel());
2312 /// Get the combined style for a range - if any attribute is different within the range,
2313 /// that attribute is not present within the flags.
2314 /// *** Note that this is not recursive, and so assumes that content inside a paragraph is not itself
2316 bool wxRichTextParagraphLayoutBox::GetStyleForRange(const wxRichTextRange
& range
, wxTextAttrEx
& style
)
2318 style
= wxTextAttrEx();
2320 // The attributes that aren't valid because of multiple styles within the range
2321 long multipleStyleAttributes
= 0;
2322 int multipleTextEffectAttributes
= 0;
2324 wxRichTextObjectList::compatibility_iterator node
= GetChildren().GetFirst();
2327 wxRichTextParagraph
* para
= (wxRichTextParagraph
*) node
->GetData();
2328 if (!(para
->GetRange().GetStart() > range
.GetEnd() || para
->GetRange().GetEnd() < range
.GetStart()))
2330 if (para
->GetChildren().GetCount() == 0)
2332 wxTextAttrEx paraStyle
= para
->GetCombinedAttributes();
2334 CollectStyle(style
, paraStyle
, multipleStyleAttributes
, multipleTextEffectAttributes
);
2338 wxRichTextRange
paraRange(para
->GetRange());
2339 paraRange
.LimitTo(range
);
2341 // First collect paragraph attributes only
2342 wxTextAttrEx paraStyle
= para
->GetCombinedAttributes();
2343 paraStyle
.SetFlags(paraStyle
.GetFlags() & wxTEXT_ATTR_PARAGRAPH
);
2344 CollectStyle(style
, paraStyle
, multipleStyleAttributes
, multipleTextEffectAttributes
);
2346 wxRichTextObjectList::compatibility_iterator childNode
= para
->GetChildren().GetFirst();
2350 wxRichTextObject
* child
= childNode
->GetData();
2351 if (!(child
->GetRange().GetStart() > range
.GetEnd() || child
->GetRange().GetEnd() < range
.GetStart()))
2353 wxTextAttrEx childStyle
= para
->GetCombinedAttributes(child
->GetAttributes());
2355 // Now collect character attributes only
2356 childStyle
.SetFlags(childStyle
.GetFlags() & wxTEXT_ATTR_CHARACTER
);
2358 CollectStyle(style
, childStyle
, multipleStyleAttributes
, multipleTextEffectAttributes
);
2361 childNode
= childNode
->GetNext();
2365 node
= node
->GetNext();
2370 /// Set default style
2371 bool wxRichTextParagraphLayoutBox::SetDefaultStyle(const wxTextAttrEx
& style
)
2373 m_defaultAttributes
= style
;
2377 /// Test if this whole range has character attributes of the specified kind. If any
2378 /// of the attributes are different within the range, the test fails. You
2379 /// can use this to implement, for example, bold button updating. style must have
2380 /// flags indicating which attributes are of interest.
2381 bool wxRichTextParagraphLayoutBox::HasCharacterAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
2384 int matchingCount
= 0;
2386 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2389 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2390 wxASSERT (para
!= NULL
);
2394 // Stop searching if we're beyond the range of interest
2395 if (para
->GetRange().GetStart() > range
.GetEnd())
2396 return foundCount
== matchingCount
;
2398 if (!para
->GetRange().IsOutside(range
))
2400 wxRichTextObjectList::compatibility_iterator node2
= para
->GetChildren().GetFirst();
2404 wxRichTextObject
* child
= node2
->GetData();
2405 if (!child
->GetRange().IsOutside(range
) && child
->IsKindOf(CLASSINFO(wxRichTextPlainText
)))
2408 #if wxRICHTEXT_USE_DYNAMIC_STYLES
2409 wxTextAttrEx textAttr
= para
->GetCombinedAttributes(child
->GetAttributes());
2411 const wxTextAttrEx
& textAttr
= child
->GetAttributes();
2413 if (wxTextAttrEqPartial(textAttr
, style
, style
.GetFlags()))
2417 node2
= node2
->GetNext();
2422 node
= node
->GetNext();
2425 return foundCount
== matchingCount
;
2428 bool wxRichTextParagraphLayoutBox::HasCharacterAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const
2430 wxRichTextAttr richStyle
= style
;
2431 return HasCharacterAttributes(range
, richStyle
);
2434 /// Test if this whole range has paragraph attributes of the specified kind. If any
2435 /// of the attributes are different within the range, the test fails. You
2436 /// can use this to implement, for example, centering button updating. style must have
2437 /// flags indicating which attributes are of interest.
2438 bool wxRichTextParagraphLayoutBox::HasParagraphAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
2441 int matchingCount
= 0;
2443 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2446 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2447 wxASSERT (para
!= NULL
);
2451 // Stop searching if we're beyond the range of interest
2452 if (para
->GetRange().GetStart() > range
.GetEnd())
2453 return foundCount
== matchingCount
;
2455 if (!para
->GetRange().IsOutside(range
))
2457 #if wxRICHTEXT_USE_DYNAMIC_STYLES
2458 wxTextAttrEx textAttr
= GetAttributes();
2459 // Apply the paragraph style
2460 wxRichTextApplyStyle(textAttr
, para
->GetAttributes());
2463 const wxTextAttrEx
& textAttr
= para
->GetAttributes();
2466 if (wxTextAttrEqPartial(textAttr
, style
, style
.GetFlags()))
2471 node
= node
->GetNext();
2473 return foundCount
== matchingCount
;
2476 bool wxRichTextParagraphLayoutBox::HasParagraphAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const
2478 wxRichTextAttr richStyle
= style
;
2479 return HasParagraphAttributes(range
, richStyle
);
2482 void wxRichTextParagraphLayoutBox::Clear()
2487 void wxRichTextParagraphLayoutBox::Reset()
2491 AddParagraph(wxEmptyString
);
2493 Invalidate(wxRICHTEXT_ALL
);
2496 /// Invalidate the buffer. With no argument, invalidates whole buffer.
2497 void wxRichTextParagraphLayoutBox::Invalidate(const wxRichTextRange
& invalidRange
)
2501 if (invalidRange
== wxRICHTEXT_ALL
)
2503 m_invalidRange
= wxRICHTEXT_ALL
;
2507 // Already invalidating everything
2508 if (m_invalidRange
== wxRICHTEXT_ALL
)
2511 if ((invalidRange
.GetStart() < m_invalidRange
.GetStart()) || m_invalidRange
.GetStart() == -1)
2512 m_invalidRange
.SetStart(invalidRange
.GetStart());
2513 if (invalidRange
.GetEnd() > m_invalidRange
.GetEnd())
2514 m_invalidRange
.SetEnd(invalidRange
.GetEnd());
2517 /// Get invalid range, rounding to entire paragraphs if argument is true.
2518 wxRichTextRange
wxRichTextParagraphLayoutBox::GetInvalidRange(bool wholeParagraphs
) const
2520 if (m_invalidRange
== wxRICHTEXT_ALL
|| m_invalidRange
== wxRICHTEXT_NONE
)
2521 return m_invalidRange
;
2523 wxRichTextRange range
= m_invalidRange
;
2525 if (wholeParagraphs
)
2527 wxRichTextParagraph
* para1
= GetParagraphAtPosition(range
.GetStart());
2528 wxRichTextParagraph
* para2
= GetParagraphAtPosition(range
.GetEnd());
2530 range
.SetStart(para1
->GetRange().GetStart());
2532 range
.SetEnd(para2
->GetRange().GetEnd());
2537 /// Apply the style sheet to the buffer, for example if the styles have changed.
2538 bool wxRichTextParagraphLayoutBox::ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
)
2540 wxASSERT(styleSheet
!= NULL
);
2546 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2549 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2550 wxASSERT (para
!= NULL
);
2554 // Combine paragraph and list styles. If there is a list style in the original attributes,
2555 // the current indentation overrides anything else and is used to find the item indentation.
2556 // Also, for applying paragraph styles, consider having 2 modes: (1) we merge with what we have,
2557 // thereby taking into account all user changes, (2) reset the style completely (except for indentation/list
2558 // exception as above).
2559 // Problem: when changing from one list style to another, there's a danger that the level info will get lost.
2560 // So when changing a list style interactively, could retrieve level based on current style, then
2561 // set appropriate indent and apply new style.
2563 if (!para
->GetAttributes().GetParagraphStyleName().IsEmpty() && !para
->GetAttributes().GetListStyleName().IsEmpty())
2565 int currentIndent
= para
->GetAttributes().GetLeftIndent();
2567 wxRichTextParagraphStyleDefinition
* paraDef
= styleSheet
->FindParagraphStyle(para
->GetAttributes().GetParagraphStyleName());
2568 wxRichTextListStyleDefinition
* listDef
= styleSheet
->FindListStyle(para
->GetAttributes().GetListStyleName());
2569 if (paraDef
&& !listDef
)
2571 para
->GetAttributes() = paraDef
->GetStyle();
2574 else if (listDef
&& !paraDef
)
2576 // Set overall style defined for the list style definition
2577 para
->GetAttributes() = listDef
->GetStyle();
2579 // Apply the style for this level
2580 wxRichTextApplyStyle(para
->GetAttributes(), * listDef
->GetLevelAttributes(listDef
->FindLevelForIndent(currentIndent
)));
2583 else if (listDef
&& paraDef
)
2585 // Combines overall list style, style for level, and paragraph style
2586 para
->GetAttributes() = listDef
->CombineWithParagraphStyle(currentIndent
, paraDef
->GetStyle());
2590 else if (para
->GetAttributes().GetParagraphStyleName().IsEmpty() && !para
->GetAttributes().GetListStyleName().IsEmpty())
2592 int currentIndent
= para
->GetAttributes().GetLeftIndent();
2594 wxRichTextListStyleDefinition
* listDef
= styleSheet
->FindListStyle(para
->GetAttributes().GetListStyleName());
2596 // Overall list definition style
2597 para
->GetAttributes() = listDef
->GetStyle();
2599 // Style for this level
2600 wxRichTextApplyStyle(para
->GetAttributes(), * listDef
->GetLevelAttributes(listDef
->FindLevelForIndent(currentIndent
)));
2604 else if (!para
->GetAttributes().GetParagraphStyleName().IsEmpty() && para
->GetAttributes().GetListStyleName().IsEmpty())
2606 wxRichTextParagraphStyleDefinition
* def
= styleSheet
->FindParagraphStyle(para
->GetAttributes().GetParagraphStyleName());
2609 para
->GetAttributes() = def
->GetStyle();
2615 node
= node
->GetNext();
2617 return foundCount
!= 0;
2621 bool wxRichTextParagraphLayoutBox::SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
2623 bool withUndo
= ((flags
& wxRICHTEXT_SETSTYLE_WITH_UNDO
) != 0);
2624 // bool applyMinimal = ((flags & wxRICHTEXT_SETSTYLE_OPTIMIZE) != 0);
2625 bool specifyLevel
= ((flags
& wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL
) != 0);
2626 bool renumber
= ((flags
& wxRICHTEXT_SETSTYLE_RENUMBER
) != 0);
2628 // Current number, if numbering
2631 wxASSERT (!specifyLevel
|| (specifyLevel
&& (specifiedLevel
>= 0)));
2633 // If we are associated with a control, make undoable; otherwise, apply immediately
2636 bool haveControl
= (GetRichTextCtrl() != NULL
);
2638 wxRichTextAction
* action
= NULL
;
2640 if (haveControl
&& withUndo
)
2642 action
= new wxRichTextAction(NULL
, _("Change List Style"), wxRICHTEXT_CHANGE_STYLE
, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
2643 action
->SetRange(range
);
2644 action
->SetPosition(GetRichTextCtrl()->GetCaretPosition());
2647 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2650 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2651 wxASSERT (para
!= NULL
);
2653 if (para
&& para
->GetChildCount() > 0)
2655 // Stop searching if we're beyond the range of interest
2656 if (para
->GetRange().GetStart() > range
.GetEnd())
2659 if (!para
->GetRange().IsOutside(range
))
2661 // We'll be using a copy of the paragraph to make style changes,
2662 // not updating the buffer directly.
2663 wxRichTextParagraph
* newPara
wxDUMMY_INITIALIZE(NULL
);
2665 if (haveControl
&& withUndo
)
2667 newPara
= new wxRichTextParagraph(*para
);
2668 action
->GetNewParagraphs().AppendChild(newPara
);
2670 // Also store the old ones for Undo
2671 action
->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para
));
2678 int thisIndent
= newPara
->GetAttributes().GetLeftIndent();
2679 int thisLevel
= specifyLevel
? specifiedLevel
: def
->FindLevelForIndent(thisIndent
);
2681 // How is numbering going to work?
2682 // If we are renumbering, or numbering for the first time, we need to keep
2683 // track of the number for each level. But we might be simply applying a different
2685 // In Word, applying a style to several paragraphs, even if at different levels,
2686 // reverts the level back to the same one. So we could do the same here.
2687 // Renumbering will need to be done when we promote/demote a paragraph.
2689 // Apply the overall list style, and item style for this level
2690 wxTextAttrEx
listStyle(def
->GetCombinedStyleForLevel(thisLevel
));
2691 wxRichTextApplyStyle(newPara
->GetAttributes(), listStyle
);
2693 // Now we need to do numbering
2696 newPara
->GetAttributes().SetBulletNumber(n
);
2701 else if (!newPara
->GetAttributes().GetListStyleName().IsEmpty())
2703 // if def is NULL, remove list style, applying any associated paragraph style
2704 // to restore the attributes
2706 newPara
->GetAttributes().SetListStyleName(wxEmptyString
);
2707 newPara
->GetAttributes().SetLeftIndent(0, 0);
2708 newPara
->GetAttributes().SetBulletText(wxEmptyString
);
2710 // Eliminate the main list-related attributes
2711 newPara
->GetAttributes().SetFlags(newPara
->GetAttributes().GetFlags() & ~wxTEXT_ATTR_LEFT_INDENT
& ~wxTEXT_ATTR_BULLET_STYLE
& ~wxTEXT_ATTR_BULLET_NUMBER
& ~wxTEXT_ATTR_BULLET_TEXT
& wxTEXT_ATTR_LIST_STYLE_NAME
);
2713 wxRichTextStyleSheet
* styleSheet
= GetStyleSheet();
2714 if (styleSheet
&& !newPara
->GetAttributes().GetParagraphStyleName().IsEmpty())
2716 wxRichTextParagraphStyleDefinition
* def
= styleSheet
->FindParagraphStyle(newPara
->GetAttributes().GetParagraphStyleName());
2719 newPara
->GetAttributes() = def
->GetStyle();
2726 node
= node
->GetNext();
2729 // Do action, or delay it until end of batch.
2730 if (haveControl
&& withUndo
)
2731 GetRichTextCtrl()->GetBuffer().SubmitAction(action
);
2736 bool wxRichTextParagraphLayoutBox::SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
2738 if (GetStyleSheet())
2740 wxRichTextListStyleDefinition
* def
= GetStyleSheet()->FindListStyle(defName
);
2742 return SetListStyle(range
, def
, flags
, startFrom
, specifiedLevel
);
2747 /// Clear list for given range
2748 bool wxRichTextParagraphLayoutBox::ClearListStyle(const wxRichTextRange
& range
, int flags
)
2750 return SetListStyle(range
, NULL
, flags
);
2753 /// Number/renumber any list elements in the given range
2754 bool wxRichTextParagraphLayoutBox::NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
2756 return DoNumberList(range
, range
, 0, def
, flags
, startFrom
, specifiedLevel
);
2759 /// Number/renumber any list elements in the given range. Also do promotion or demotion of items, if specified
2760 bool wxRichTextParagraphLayoutBox::DoNumberList(const wxRichTextRange
& range
, const wxRichTextRange
& promotionRange
, int promoteBy
,
2761 wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
2763 bool withUndo
= ((flags
& wxRICHTEXT_SETSTYLE_WITH_UNDO
) != 0);
2764 // bool applyMinimal = ((flags & wxRICHTEXT_SETSTYLE_OPTIMIZE) != 0);
2766 bool specifyLevel
= ((flags
& wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL
) != 0);
2769 bool renumber
= ((flags
& wxRICHTEXT_SETSTYLE_RENUMBER
) != 0);
2771 // Max number of levels
2772 const int maxLevels
= 10;
2774 // The level we're looking at now
2775 int currentLevel
= -1;
2777 // The item number for each level
2778 int levels
[maxLevels
];
2781 // Reset all numbering
2782 for (i
= 0; i
< maxLevels
; i
++)
2784 if (startFrom
!= -1)
2785 levels
[i
] = startFrom
-1;
2786 else if (renumber
) // start again
2789 levels
[i
] = -1; // start from the number we found, if any
2792 wxASSERT(!specifyLevel
|| (specifyLevel
&& (specifiedLevel
>= 0)));
2794 // If we are associated with a control, make undoable; otherwise, apply immediately
2797 bool haveControl
= (GetRichTextCtrl() != NULL
);
2799 wxRichTextAction
* action
= NULL
;
2801 if (haveControl
&& withUndo
)
2803 action
= new wxRichTextAction(NULL
, _("Renumber List"), wxRICHTEXT_CHANGE_STYLE
, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
2804 action
->SetRange(range
);
2805 action
->SetPosition(GetRichTextCtrl()->GetCaretPosition());
2808 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2811 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2812 wxASSERT (para
!= NULL
);
2814 if (para
&& para
->GetChildCount() > 0)
2816 // Stop searching if we're beyond the range of interest
2817 if (para
->GetRange().GetStart() > range
.GetEnd())
2820 if (!para
->GetRange().IsOutside(range
))
2822 // We'll be using a copy of the paragraph to make style changes,
2823 // not updating the buffer directly.
2824 wxRichTextParagraph
* newPara
wxDUMMY_INITIALIZE(NULL
);
2826 if (haveControl
&& withUndo
)
2828 newPara
= new wxRichTextParagraph(*para
);
2829 action
->GetNewParagraphs().AppendChild(newPara
);
2831 // Also store the old ones for Undo
2832 action
->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para
));
2837 wxRichTextListStyleDefinition
* defToUse
= def
;
2840 wxRichTextStyleSheet
* sheet
= GetStyleSheet();
2842 if (sheet
&& !newPara
->GetAttributes().GetListStyleName().IsEmpty())
2843 defToUse
= sheet
->FindListStyle(newPara
->GetAttributes().GetListStyleName());
2848 int thisIndent
= newPara
->GetAttributes().GetLeftIndent();
2849 int thisLevel
= defToUse
->FindLevelForIndent(thisIndent
);
2851 // If we've specified a level to apply to all, change the level.
2852 if (specifiedLevel
!= -1)
2853 thisLevel
= specifiedLevel
;
2855 // Do promotion if specified
2856 if ((promoteBy
!= 0) && !para
->GetRange().IsOutside(promotionRange
))
2858 thisLevel
= thisLevel
- promoteBy
;
2865 // Apply the overall list style, and item style for this level
2866 wxTextAttrEx
listStyle(defToUse
->GetCombinedStyleForLevel(thisLevel
));
2867 wxRichTextApplyStyle(newPara
->GetAttributes(), listStyle
);
2869 // OK, we've (re)applied the style, now let's get the numbering right.
2871 if (currentLevel
== -1)
2872 currentLevel
= thisLevel
;
2874 // Same level as before, do nothing except increment level's number afterwards
2875 if (currentLevel
== thisLevel
)
2878 // A deeper level: start renumbering all levels after current level
2879 else if (thisLevel
> currentLevel
)
2881 for (i
= currentLevel
+1; i
<= thisLevel
; i
++)
2885 currentLevel
= thisLevel
;
2887 else if (thisLevel
< currentLevel
)
2889 currentLevel
= thisLevel
;
2892 // Use the current numbering if -1 and we have a bullet number already
2893 if (levels
[currentLevel
] == -1)
2895 if (newPara
->GetAttributes().HasBulletNumber())
2896 levels
[currentLevel
] = newPara
->GetAttributes().GetBulletNumber();
2898 levels
[currentLevel
] = 1;
2902 levels
[currentLevel
] ++;
2905 newPara
->GetAttributes().SetBulletNumber(levels
[currentLevel
]);
2907 // Create the bullet text if an outline list
2908 if (listStyle
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
)
2911 for (i
= 0; i
<= currentLevel
; i
++)
2913 if (!text
.IsEmpty())
2915 text
+= wxString::Format(wxT("%d"), levels
[i
]);
2917 newPara
->GetAttributes().SetBulletText(text
);
2923 node
= node
->GetNext();
2926 // Do action, or delay it until end of batch.
2927 if (haveControl
&& withUndo
)
2928 GetRichTextCtrl()->GetBuffer().SubmitAction(action
);
2933 bool wxRichTextParagraphLayoutBox::NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
2935 if (GetStyleSheet())
2937 wxRichTextListStyleDefinition
* def
= NULL
;
2938 if (!defName
.IsEmpty())
2939 def
= GetStyleSheet()->FindListStyle(defName
);
2940 return NumberList(range
, def
, flags
, startFrom
, specifiedLevel
);
2945 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
2946 bool wxRichTextParagraphLayoutBox::PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int specifiedLevel
)
2949 // One strategy is to first work out the range within which renumbering must occur. Then could pass these two ranges
2950 // to NumberList with a flag indicating promotion is required within one of the ranges.
2951 // Find first and last paragraphs in range. Then for first, calculate new indentation and look back until we find
2952 // a paragraph that either has no list style, or has one that is different or whose indentation is less.
2953 // We start renumbering from the para after that different para we found. We specify that the numbering of that
2954 // list position will start from 1.
2955 // Similarly, we look after the last para in the promote range for an indentation that is less (or no list style).
2956 // We can end the renumbering at this point.
2958 // For now, only renumber within the promotion range.
2960 return DoNumberList(range
, range
, promoteBy
, def
, flags
, 1, specifiedLevel
);
2963 bool wxRichTextParagraphLayoutBox::PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int specifiedLevel
)
2965 if (GetStyleSheet())
2967 wxRichTextListStyleDefinition
* def
= NULL
;
2968 if (!defName
.IsEmpty())
2969 def
= GetStyleSheet()->FindListStyle(defName
);
2970 return PromoteList(promoteBy
, range
, def
, flags
, specifiedLevel
);
2975 /// Fills in the attributes for numbering a paragraph after previousParagraph. It also finds the
2976 /// position of the paragraph that it had to start looking from.
2977 bool wxRichTextParagraphLayoutBox::FindNextParagraphNumber(wxRichTextParagraph
* previousParagraph
, wxRichTextAttr
& attr
) const
2979 if (!previousParagraph
->GetAttributes().HasFlag(wxTEXT_ATTR_BULLET_STYLE
) || previousParagraph
->GetAttributes().GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_NONE
)
2982 wxRichTextStyleSheet
* sheet
= GetStyleSheet();
2983 if (sheet
&& !previousParagraph
->GetAttributes().GetListStyleName().IsEmpty())
2985 wxRichTextListStyleDefinition
* def
= sheet
->FindListStyle(previousParagraph
->GetAttributes().GetListStyleName());
2988 // int thisIndent = previousParagraph->GetAttributes().GetLeftIndent();
2989 // int thisLevel = def->FindLevelForIndent(thisIndent);
2991 bool isOutline
= (previousParagraph
->GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
) != 0;
2993 attr
.SetFlags(previousParagraph
->GetAttributes().GetFlags() & (wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_BULLET_NUMBER
|wxTEXT_ATTR_BULLET_TEXT
|wxTEXT_ATTR_BULLET_NAME
));
2994 if (previousParagraph
->GetAttributes().HasBulletName())
2995 attr
.SetBulletName(previousParagraph
->GetAttributes().GetBulletName());
2996 attr
.SetBulletStyle(previousParagraph
->GetAttributes().GetBulletStyle());
2997 attr
.SetListStyleName(previousParagraph
->GetAttributes().GetListStyleName());
2999 int nextNumber
= previousParagraph
->GetAttributes().GetBulletNumber() + 1;
3000 attr
.SetBulletNumber(nextNumber
);
3004 wxString text
= previousParagraph
->GetAttributes().GetBulletText();
3005 if (!text
.IsEmpty())
3007 int pos
= text
.Find(wxT('.'), true);
3008 if (pos
!= wxNOT_FOUND
)
3010 text
= text
.Mid(0, text
.Length() - pos
- 1);
3013 text
= wxEmptyString
;
3014 if (!text
.IsEmpty())
3016 text
+= wxString::Format(wxT("%d"), nextNumber
);
3017 attr
.SetBulletText(text
);
3031 * wxRichTextParagraph
3032 * This object represents a single paragraph (or in a straight text editor, a line).
3035 IMPLEMENT_DYNAMIC_CLASS(wxRichTextParagraph
, wxRichTextBox
)
3037 wxArrayInt
wxRichTextParagraph::sm_defaultTabs
;
3039 wxRichTextParagraph::wxRichTextParagraph(wxRichTextObject
* parent
, wxTextAttrEx
* style
):
3040 wxRichTextBox(parent
)
3043 SetAttributes(*style
);
3046 wxRichTextParagraph::wxRichTextParagraph(const wxString
& text
, wxRichTextObject
* parent
, wxTextAttrEx
* paraStyle
, wxTextAttrEx
* charStyle
):
3047 wxRichTextBox(parent
)
3050 SetAttributes(*paraStyle
);
3052 AppendChild(new wxRichTextPlainText(text
, this, charStyle
));
3055 wxRichTextParagraph::~wxRichTextParagraph()
3061 bool wxRichTextParagraph::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& WXUNUSED(rect
), int WXUNUSED(descent
), int style
)
3063 #if wxRICHTEXT_USE_DYNAMIC_STYLES
3064 wxTextAttrEx attr
= GetCombinedAttributes();
3066 const wxTextAttrEx
& attr
= GetAttributes();
3069 // Draw the bullet, if any
3070 if (attr
.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE
)
3072 if (attr
.GetLeftSubIndent() != 0)
3074 int spaceBeforePara
= ConvertTenthsMMToPixels(dc
, attr
.GetParagraphSpacingBefore());
3075 int leftIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetLeftIndent());
3077 wxTextAttrEx
bulletAttr(GetCombinedAttributes());
3079 // Get line height from first line, if any
3080 wxRichTextLine
* line
= m_cachedLines
.GetFirst() ? (wxRichTextLine
* ) m_cachedLines
.GetFirst()->GetData() : (wxRichTextLine
*) NULL
;
3083 int lineHeight
wxDUMMY_INITIALIZE(0);
3086 lineHeight
= line
->GetSize().y
;
3087 linePos
= line
->GetPosition() + GetPosition();
3092 if (bulletAttr
.GetFont().Ok())
3093 font
= bulletAttr
.GetFont();
3095 font
= (*wxNORMAL_FONT
);
3099 lineHeight
= dc
.GetCharHeight();
3100 linePos
= GetPosition();
3101 linePos
.y
+= spaceBeforePara
;
3104 wxRect
bulletRect(GetPosition().x
+ leftIndent
, linePos
.y
, linePos
.x
- (GetPosition().x
+ leftIndent
), lineHeight
);
3106 if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_BITMAP
)
3108 if (wxRichTextBuffer::GetRenderer())
3109 wxRichTextBuffer::GetRenderer()->DrawBitmapBullet(this, dc
, bulletAttr
, bulletRect
);
3111 else if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_STANDARD
)
3113 if (wxRichTextBuffer::GetRenderer())
3114 wxRichTextBuffer::GetRenderer()->DrawStandardBullet(this, dc
, bulletAttr
, bulletRect
);
3118 wxString bulletText
= GetBulletText();
3120 if (!bulletText
.empty() && wxRichTextBuffer::GetRenderer())
3121 wxRichTextBuffer::GetRenderer()->DrawTextBullet(this, dc
, bulletAttr
, bulletRect
, bulletText
);
3126 // Draw the range for each line, one object at a time.
3128 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3131 wxRichTextLine
* line
= node
->GetData();
3132 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3134 int maxDescent
= line
->GetDescent();
3136 // Lines are specified relative to the paragraph
3138 wxPoint linePosition
= line
->GetPosition() + GetPosition();
3139 wxPoint objectPosition
= linePosition
;
3141 // Loop through objects until we get to the one within range
3142 wxRichTextObjectList::compatibility_iterator node2
= m_children
.GetFirst();
3145 wxRichTextObject
* child
= node2
->GetData();
3147 if (!child
->GetRange().IsOutside(lineRange
) && !lineRange
.IsOutside(range
))
3149 // Draw this part of the line at the correct position
3150 wxRichTextRange
objectRange(child
->GetRange());
3151 objectRange
.LimitTo(lineRange
);
3155 child
->GetRangeSize(objectRange
, objectSize
, descent
, dc
, wxRICHTEXT_UNFORMATTED
, objectPosition
);
3157 // Use the child object's width, but the whole line's height
3158 wxRect
childRect(objectPosition
, wxSize(objectSize
.x
, line
->GetSize().y
));
3159 child
->Draw(dc
, objectRange
, selectionRange
, childRect
, maxDescent
, style
);
3161 objectPosition
.x
+= objectSize
.x
;
3163 else if (child
->GetRange().GetStart() > lineRange
.GetEnd())
3164 // Can break out of inner loop now since we've passed this line's range
3167 node2
= node2
->GetNext();
3170 node
= node
->GetNext();
3176 /// Lay the item out
3177 bool wxRichTextParagraph::Layout(wxDC
& dc
, const wxRect
& rect
, int style
)
3179 #if wxRICHTEXT_USE_DYNAMIC_STYLES
3180 wxTextAttrEx attr
= GetCombinedAttributes();
3182 const wxTextAttrEx
& attr
= GetAttributes();
3187 // Increase the size of the paragraph due to spacing
3188 int spaceBeforePara
= ConvertTenthsMMToPixels(dc
, attr
.GetParagraphSpacingBefore());
3189 int spaceAfterPara
= ConvertTenthsMMToPixels(dc
, attr
.GetParagraphSpacingAfter());
3190 int leftIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetLeftIndent());
3191 int leftSubIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetLeftSubIndent());
3192 int rightIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetRightIndent());
3194 int lineSpacing
= 0;
3196 // Let's assume line spacing of 10 is normal, 15 is 1.5, 20 is 2, etc.
3197 if (attr
.GetLineSpacing() > 10 && attr
.GetFont().Ok())
3199 dc
.SetFont(attr
.GetFont());
3200 lineSpacing
= (ConvertTenthsMMToPixels(dc
, dc
.GetCharHeight()) * attr
.GetLineSpacing())/10;
3203 // Available space for text on each line differs.
3204 int availableTextSpaceFirstLine
= rect
.GetWidth() - leftIndent
- rightIndent
;
3206 // Bullets start the text at the same position as subsequent lines
3207 if (attr
.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE
)
3208 availableTextSpaceFirstLine
-= leftSubIndent
;
3210 int availableTextSpaceSubsequentLines
= rect
.GetWidth() - leftIndent
- rightIndent
- leftSubIndent
;
3212 // Start position for each line relative to the paragraph
3213 int startPositionFirstLine
= leftIndent
;
3214 int startPositionSubsequentLines
= leftIndent
+ leftSubIndent
;
3216 // If we have a bullet in this paragraph, the start position for the first line's text
3217 // is actually leftIndent + leftSubIndent.
3218 if (attr
.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE
)
3219 startPositionFirstLine
= startPositionSubsequentLines
;
3221 long lastEndPos
= GetRange().GetStart()-1;
3222 long lastCompletedEndPos
= lastEndPos
;
3224 int currentWidth
= 0;
3225 SetPosition(rect
.GetPosition());
3227 wxPoint
currentPosition(0, spaceBeforePara
); // We will calculate lines relative to paragraph
3236 // We may need to go back to a previous child, in which case create the new line,
3237 // find the child corresponding to the start position of the string, and
3240 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3243 wxRichTextObject
* child
= node
->GetData();
3245 // If this is e.g. a composite text box, it will need to be laid out itself.
3246 // But if just a text fragment or image, for example, this will
3247 // do nothing. NB: won't we need to set the position after layout?
3248 // since for example if position is dependent on vertical line size, we
3249 // can't tell the position until the size is determined. So possibly introduce
3250 // another layout phase.
3252 child
->Layout(dc
, rect
, style
);
3254 // Available width depends on whether we're on the first or subsequent lines
3255 int availableSpaceForText
= (lineCount
== 0 ? availableTextSpaceFirstLine
: availableTextSpaceSubsequentLines
);
3257 currentPosition
.x
= (lineCount
== 0 ? startPositionFirstLine
: startPositionSubsequentLines
);
3259 // We may only be looking at part of a child, if we searched back for wrapping
3260 // and found a suitable point some way into the child. So get the size for the fragment
3264 int childDescent
= 0;
3265 if (lastEndPos
== child
->GetRange().GetStart() - 1)
3267 childSize
= child
->GetCachedSize();
3268 childDescent
= child
->GetDescent();
3271 GetRangeSize(wxRichTextRange(lastEndPos
+1, child
->GetRange().GetEnd()), childSize
, childDescent
, dc
, wxRICHTEXT_UNFORMATTED
,rect
.GetPosition());
3273 if (childSize
.x
+ currentWidth
> availableSpaceForText
)
3275 long wrapPosition
= 0;
3277 // Find a place to wrap. This may walk back to previous children,
3278 // for example if a word spans several objects.
3279 if (!FindWrapPosition(wxRichTextRange(lastCompletedEndPos
+1, child
->GetRange().GetEnd()), dc
, availableSpaceForText
, wrapPosition
))
3281 // If the function failed, just cut it off at the end of this child.
3282 wrapPosition
= child
->GetRange().GetEnd();
3285 // FindWrapPosition can still return a value that will put us in an endless wrapping loop
3286 if (wrapPosition
<= lastCompletedEndPos
)
3287 wrapPosition
= wxMax(lastCompletedEndPos
+1,child
->GetRange().GetEnd());
3289 // wxLogDebug(wxT("Split at %ld"), wrapPosition);
3291 // Let's find the actual size of the current line now
3293 wxRichTextRange
actualRange(lastCompletedEndPos
+1, wrapPosition
);
3294 GetRangeSize(actualRange
, actualSize
, childDescent
, dc
, wxRICHTEXT_UNFORMATTED
);
3295 currentWidth
= actualSize
.x
;
3296 lineHeight
= wxMax(lineHeight
, actualSize
.y
);
3297 maxDescent
= wxMax(childDescent
, maxDescent
);
3300 wxRichTextLine
* line
= AllocateLine(lineCount
);
3302 // Set relative range so we won't have to change line ranges when paragraphs are moved
3303 line
->SetRange(wxRichTextRange(actualRange
.GetStart() - GetRange().GetStart(), actualRange
.GetEnd() - GetRange().GetStart()));
3304 line
->SetPosition(currentPosition
);
3305 line
->SetSize(wxSize(currentWidth
, lineHeight
));
3306 line
->SetDescent(maxDescent
);
3308 // Now move down a line. TODO: add margins, spacing
3309 currentPosition
.y
+= lineHeight
;
3310 currentPosition
.y
+= lineSpacing
;
3313 maxWidth
= wxMax(maxWidth
, currentWidth
);
3317 // TODO: account for zero-length objects, such as fields
3318 wxASSERT(wrapPosition
> lastCompletedEndPos
);
3320 lastEndPos
= wrapPosition
;
3321 lastCompletedEndPos
= lastEndPos
;
3325 // May need to set the node back to a previous one, due to searching back in wrapping
3326 wxRichTextObject
* childAfterWrapPosition
= FindObjectAtPosition(wrapPosition
+1);
3327 if (childAfterWrapPosition
)
3328 node
= m_children
.Find(childAfterWrapPosition
);
3330 node
= node
->GetNext();
3334 // We still fit, so don't add a line, and keep going
3335 currentWidth
+= childSize
.x
;
3336 lineHeight
= wxMax(lineHeight
, childSize
.y
);
3337 maxDescent
= wxMax(childDescent
, maxDescent
);
3339 maxWidth
= wxMax(maxWidth
, currentWidth
);
3340 lastEndPos
= child
->GetRange().GetEnd();
3342 node
= node
->GetNext();
3346 // Add the last line - it's the current pos -> last para pos
3347 // Substract -1 because the last position is always the end-paragraph position.
3348 if (lastCompletedEndPos
<= GetRange().GetEnd()-1)
3350 currentPosition
.x
= (lineCount
== 0 ? startPositionFirstLine
: startPositionSubsequentLines
);
3352 wxRichTextLine
* line
= AllocateLine(lineCount
);
3354 wxRichTextRange
actualRange(lastCompletedEndPos
+1, GetRange().GetEnd()-1);
3356 // Set relative range so we won't have to change line ranges when paragraphs are moved
3357 line
->SetRange(wxRichTextRange(actualRange
.GetStart() - GetRange().GetStart(), actualRange
.GetEnd() - GetRange().GetStart()));
3359 line
->SetPosition(currentPosition
);
3361 if (lineHeight
== 0)
3363 if (attr
.GetFont().Ok())
3364 dc
.SetFont(attr
.GetFont());
3365 lineHeight
= dc
.GetCharHeight();
3367 if (maxDescent
== 0)
3370 dc
.GetTextExtent(wxT("X"), & w
, &h
, & maxDescent
);
3373 line
->SetSize(wxSize(currentWidth
, lineHeight
));
3374 line
->SetDescent(maxDescent
);
3375 currentPosition
.y
+= lineHeight
;
3376 currentPosition
.y
+= lineSpacing
;
3380 // Remove remaining unused line objects, if any
3381 ClearUnusedLines(lineCount
);
3383 // Apply styles to wrapped lines
3384 ApplyParagraphStyle(attr
, rect
);
3386 SetCachedSize(wxSize(maxWidth
, currentPosition
.y
+ spaceBeforePara
+ spaceAfterPara
));
3393 /// Apply paragraph styles, such as centering, to wrapped lines
3394 void wxRichTextParagraph::ApplyParagraphStyle(const wxTextAttrEx
& attr
, const wxRect
& rect
)
3396 if (!attr
.HasAlignment())
3399 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3402 wxRichTextLine
* line
= node
->GetData();
3404 wxPoint pos
= line
->GetPosition();
3405 wxSize size
= line
->GetSize();
3407 // centering, right-justification
3408 if (attr
.HasAlignment() && GetAttributes().GetAlignment() == wxTEXT_ALIGNMENT_CENTRE
)
3410 pos
.x
= (rect
.GetWidth() - size
.x
)/2 + pos
.x
;
3411 line
->SetPosition(pos
);
3413 else if (attr
.HasAlignment() && GetAttributes().GetAlignment() == wxTEXT_ALIGNMENT_RIGHT
)
3415 pos
.x
= pos
.x
+ rect
.GetWidth() - size
.x
;
3416 line
->SetPosition(pos
);
3419 node
= node
->GetNext();
3423 /// Insert text at the given position
3424 bool wxRichTextParagraph::InsertText(long pos
, const wxString
& text
)
3426 wxRichTextObject
* childToUse
= NULL
;
3427 wxRichTextObjectList::compatibility_iterator nodeToUse
= wxRichTextObjectList::compatibility_iterator();
3429 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3432 wxRichTextObject
* child
= node
->GetData();
3433 if (child
->GetRange().Contains(pos
) && child
->GetRange().GetLength() > 0)
3440 node
= node
->GetNext();
3445 wxRichTextPlainText
* textObject
= wxDynamicCast(childToUse
, wxRichTextPlainText
);
3448 int posInString
= pos
- textObject
->GetRange().GetStart();
3450 wxString newText
= textObject
->GetText().Mid(0, posInString
) +
3451 text
+ textObject
->GetText().Mid(posInString
);
3452 textObject
->SetText(newText
);
3454 int textLength
= text
.length();
3456 textObject
->SetRange(wxRichTextRange(textObject
->GetRange().GetStart(),
3457 textObject
->GetRange().GetEnd() + textLength
));
3459 // Increment the end range of subsequent fragments in this paragraph.
3460 // We'll set the paragraph range itself at a higher level.
3462 wxRichTextObjectList::compatibility_iterator node
= nodeToUse
->GetNext();
3465 wxRichTextObject
* child
= node
->GetData();
3466 child
->SetRange(wxRichTextRange(textObject
->GetRange().GetStart() + textLength
,
3467 textObject
->GetRange().GetEnd() + textLength
));
3469 node
= node
->GetNext();
3476 // TODO: if not a text object, insert at closest position, e.g. in front of it
3482 // Don't pass parent initially to suppress auto-setting of parent range.
3483 // We'll do that at a higher level.
3484 wxRichTextPlainText
* textObject
= new wxRichTextPlainText(text
, this);
3486 AppendChild(textObject
);
3493 void wxRichTextParagraph::Copy(const wxRichTextParagraph
& obj
)
3495 wxRichTextBox::Copy(obj
);
3498 /// Clear the cached lines
3499 void wxRichTextParagraph::ClearLines()
3501 WX_CLEAR_LIST(wxRichTextLineList
, m_cachedLines
);
3504 /// Get/set the object size for the given range. Returns false if the range
3505 /// is invalid for this object.
3506 bool wxRichTextParagraph::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
) const
3508 if (!range
.IsWithin(GetRange()))
3511 if (flags
& wxRICHTEXT_UNFORMATTED
)
3513 // Just use unformatted data, assume no line breaks
3514 // TODO: take into account line breaks
3518 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3521 wxRichTextObject
* child
= node
->GetData();
3522 if (!child
->GetRange().IsOutside(range
))
3526 wxRichTextRange rangeToUse
= range
;
3527 rangeToUse
.LimitTo(child
->GetRange());
3528 int childDescent
= 0;
3530 if (child
->GetRangeSize(rangeToUse
, childSize
, childDescent
, dc
, flags
, position
))
3532 sz
.y
= wxMax(sz
.y
, childSize
.y
);
3533 sz
.x
+= childSize
.x
;
3534 descent
= wxMax(descent
, childDescent
);
3538 node
= node
->GetNext();
3544 // Use formatted data, with line breaks
3547 // We're going to loop through each line, and then for each line,
3548 // call GetRangeSize for the fragment that comprises that line.
3549 // Only we have to do that multiple times within the line, because
3550 // the line may be broken into pieces. For now ignore line break commands
3551 // (so we can assume that getting the unformatted size for a fragment
3552 // within a line is the actual size)
3554 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3557 wxRichTextLine
* line
= node
->GetData();
3558 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3559 if (!lineRange
.IsOutside(range
))
3563 wxRichTextObjectList::compatibility_iterator node2
= m_children
.GetFirst();
3566 wxRichTextObject
* child
= node2
->GetData();
3568 if (!child
->GetRange().IsOutside(lineRange
))
3570 wxRichTextRange rangeToUse
= lineRange
;
3571 rangeToUse
.LimitTo(child
->GetRange());
3574 int childDescent
= 0;
3575 if (child
->GetRangeSize(rangeToUse
, childSize
, childDescent
, dc
, flags
, position
))
3577 lineSize
.y
= wxMax(lineSize
.y
, childSize
.y
);
3578 lineSize
.x
+= childSize
.x
;
3580 descent
= wxMax(descent
, childDescent
);
3583 node2
= node2
->GetNext();
3586 // Increase size by a line (TODO: paragraph spacing)
3588 sz
.x
= wxMax(sz
.x
, lineSize
.x
);
3590 node
= node
->GetNext();
3597 /// Finds the absolute position and row height for the given character position
3598 bool wxRichTextParagraph::FindPosition(wxDC
& dc
, long index
, wxPoint
& pt
, int* height
, bool forceLineStart
)
3602 wxRichTextLine
* line
= ((wxRichTextParagraphLayoutBox
*)GetParent())->GetLineAtPosition(0);
3604 *height
= line
->GetSize().y
;
3606 *height
= dc
.GetCharHeight();
3608 // -1 means 'the start of the buffer'.
3611 pt
= pt
+ line
->GetPosition();
3616 // The final position in a paragraph is taken to mean the position
3617 // at the start of the next paragraph.
3618 if (index
== GetRange().GetEnd())
3620 wxRichTextParagraphLayoutBox
* parent
= wxDynamicCast(GetParent(), wxRichTextParagraphLayoutBox
);
3621 wxASSERT( parent
!= NULL
);
3623 // Find the height at the next paragraph, if any
3624 wxRichTextLine
* line
= parent
->GetLineAtPosition(index
+ 1);
3627 *height
= line
->GetSize().y
;
3628 pt
= line
->GetAbsolutePosition();
3632 *height
= dc
.GetCharHeight();
3633 int indent
= ConvertTenthsMMToPixels(dc
, m_attributes
.GetLeftIndent());
3634 pt
= wxPoint(indent
, GetCachedSize().y
);
3640 if (index
< GetRange().GetStart() || index
> GetRange().GetEnd())
3643 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3646 wxRichTextLine
* line
= node
->GetData();
3647 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3648 if (index
>= lineRange
.GetStart() && index
<= lineRange
.GetEnd())
3650 // If this is the last point in the line, and we're forcing the
3651 // returned value to be the start of the next line, do the required
3653 if (index
== lineRange
.GetEnd() && forceLineStart
)
3655 if (node
->GetNext())
3657 wxRichTextLine
* nextLine
= node
->GetNext()->GetData();
3658 *height
= nextLine
->GetSize().y
;
3659 pt
= nextLine
->GetAbsolutePosition();
3664 pt
.y
= line
->GetPosition().y
+ GetPosition().y
;
3666 wxRichTextRange
r(lineRange
.GetStart(), index
);
3670 // We find the size of the line up to this point,
3671 // then we can add this size to the line start position and
3672 // paragraph start position to find the actual position.
3674 if (GetRangeSize(r
, rangeSize
, descent
, dc
, wxRICHTEXT_UNFORMATTED
, line
->GetPosition()+ GetPosition()))
3676 pt
.x
= line
->GetPosition().x
+ GetPosition().x
+ rangeSize
.x
;
3677 *height
= line
->GetSize().y
;
3684 node
= node
->GetNext();
3690 /// Hit-testing: returns a flag indicating hit test details, plus
3691 /// information about position
3692 int wxRichTextParagraph::HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
)
3694 wxPoint paraPos
= GetPosition();
3696 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3699 wxRichTextLine
* line
= node
->GetData();
3700 wxPoint linePos
= paraPos
+ line
->GetPosition();
3701 wxSize lineSize
= line
->GetSize();
3702 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3704 if (pt
.y
>= linePos
.y
&& pt
.y
<= linePos
.y
+ lineSize
.y
)
3706 if (pt
.x
< linePos
.x
)
3708 textPosition
= lineRange
.GetStart();
3709 return wxRICHTEXT_HITTEST_BEFORE
;
3711 else if (pt
.x
>= (linePos
.x
+ lineSize
.x
))
3713 textPosition
= lineRange
.GetEnd();
3714 return wxRICHTEXT_HITTEST_AFTER
;
3719 int lastX
= linePos
.x
;
3720 for (i
= lineRange
.GetStart(); i
<= lineRange
.GetEnd(); i
++)
3725 wxRichTextRange
rangeToUse(lineRange
.GetStart(), i
);
3727 GetRangeSize(rangeToUse
, childSize
, descent
, dc
, wxRICHTEXT_UNFORMATTED
, linePos
);
3729 int nextX
= childSize
.x
+ linePos
.x
;
3731 if (pt
.x
>= lastX
&& pt
.x
<= nextX
)
3735 // So now we know it's between i-1 and i.
3736 // Let's see if we can be more precise about
3737 // which side of the position it's on.
3739 int midPoint
= (nextX
- lastX
)/2 + lastX
;
3740 if (pt
.x
>= midPoint
)
3741 return wxRICHTEXT_HITTEST_AFTER
;
3743 return wxRICHTEXT_HITTEST_BEFORE
;
3753 node
= node
->GetNext();
3756 return wxRICHTEXT_HITTEST_NONE
;
3759 /// Split an object at this position if necessary, and return
3760 /// the previous object, or NULL if inserting at beginning.
3761 wxRichTextObject
* wxRichTextParagraph::SplitAt(long pos
, wxRichTextObject
** previousObject
)
3763 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3766 wxRichTextObject
* child
= node
->GetData();
3768 if (pos
== child
->GetRange().GetStart())
3772 if (node
->GetPrevious())
3773 *previousObject
= node
->GetPrevious()->GetData();
3775 *previousObject
= NULL
;
3781 if (child
->GetRange().Contains(pos
))
3783 // This should create a new object, transferring part of
3784 // the content to the old object and the rest to the new object.
3785 wxRichTextObject
* newObject
= child
->DoSplit(pos
);
3787 // If we couldn't split this object, just insert in front of it.
3790 // Maybe this is an empty string, try the next one
3795 // Insert the new object after 'child'
3796 if (node
->GetNext())
3797 m_children
.Insert(node
->GetNext(), newObject
);
3799 m_children
.Append(newObject
);
3800 newObject
->SetParent(this);
3803 *previousObject
= child
;
3809 node
= node
->GetNext();
3812 *previousObject
= NULL
;
3816 /// Move content to a list from obj on
3817 void wxRichTextParagraph::MoveToList(wxRichTextObject
* obj
, wxList
& list
)
3819 wxRichTextObjectList::compatibility_iterator node
= m_children
.Find(obj
);
3822 wxRichTextObject
* child
= node
->GetData();
3825 wxRichTextObjectList::compatibility_iterator oldNode
= node
;
3827 node
= node
->GetNext();
3829 m_children
.DeleteNode(oldNode
);
3833 /// Add content back from list
3834 void wxRichTextParagraph::MoveFromList(wxList
& list
)
3836 for (wxList::compatibility_iterator node
= list
.GetFirst(); node
; node
= node
->GetNext())
3838 AppendChild((wxRichTextObject
*) node
->GetData());
3843 void wxRichTextParagraph::CalculateRange(long start
, long& end
)
3845 wxRichTextCompositeObject::CalculateRange(start
, end
);
3847 // Add one for end of paragraph
3850 m_range
.SetRange(start
, end
);
3853 /// Find the object at the given position
3854 wxRichTextObject
* wxRichTextParagraph::FindObjectAtPosition(long position
)
3856 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3859 wxRichTextObject
* obj
= node
->GetData();
3860 if (obj
->GetRange().Contains(position
))
3863 node
= node
->GetNext();
3868 /// Get the plain text searching from the start or end of the range.
3869 /// The resulting string may be shorter than the range given.
3870 bool wxRichTextParagraph::GetContiguousPlainText(wxString
& text
, const wxRichTextRange
& range
, bool fromStart
)
3872 text
= wxEmptyString
;
3876 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3879 wxRichTextObject
* obj
= node
->GetData();
3880 if (!obj
->GetRange().IsOutside(range
))
3882 wxRichTextPlainText
* textObj
= wxDynamicCast(obj
, wxRichTextPlainText
);
3885 text
+= textObj
->GetTextForRange(range
);
3891 node
= node
->GetNext();
3896 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetLast();
3899 wxRichTextObject
* obj
= node
->GetData();
3900 if (!obj
->GetRange().IsOutside(range
))
3902 wxRichTextPlainText
* textObj
= wxDynamicCast(obj
, wxRichTextPlainText
);
3905 text
= textObj
->GetTextForRange(range
) + text
;
3911 node
= node
->GetPrevious();
3918 /// Find a suitable wrap position.
3919 bool wxRichTextParagraph::FindWrapPosition(const wxRichTextRange
& range
, wxDC
& dc
, int availableSpace
, long& wrapPosition
)
3921 // Find the first position where the line exceeds the available space.
3924 long breakPosition
= range
.GetEnd();
3925 for (i
= range
.GetStart(); i
<= range
.GetEnd(); i
++)
3928 GetRangeSize(wxRichTextRange(range
.GetStart(), i
), sz
, descent
, dc
, wxRICHTEXT_UNFORMATTED
);
3930 if (sz
.x
> availableSpace
)
3932 breakPosition
= i
-1;
3937 // Now we know the last position on the line.
3938 // Let's try to find a word break.
3941 if (GetContiguousPlainText(plainText
, wxRichTextRange(range
.GetStart(), breakPosition
), false))
3943 int spacePos
= plainText
.Find(wxT(' '), true);
3944 if (spacePos
!= wxNOT_FOUND
)
3946 int positionsFromEndOfString
= plainText
.length() - spacePos
- 1;
3947 breakPosition
= breakPosition
- positionsFromEndOfString
;
3951 wrapPosition
= breakPosition
;
3956 /// Get the bullet text for this paragraph.
3957 wxString
wxRichTextParagraph::GetBulletText()
3959 if (GetAttributes().GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_NONE
||
3960 (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_BITMAP
))
3961 return wxEmptyString
;
3963 int number
= GetAttributes().GetBulletNumber();
3966 if ((GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ARABIC
) || (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
))
3968 text
.Printf(wxT("%d"), number
);
3970 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER
)
3972 // TODO: Unicode, and also check if number > 26
3973 text
.Printf(wxT("%c"), (wxChar
) (number
+64));
3975 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER
)
3977 // TODO: Unicode, and also check if number > 26
3978 text
.Printf(wxT("%c"), (wxChar
) (number
+96));
3980 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER
)
3982 text
= wxRichTextDecimalToRoman(number
);
3984 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER
)
3986 text
= wxRichTextDecimalToRoman(number
);
3989 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_SYMBOL
)
3991 text
= GetAttributes().GetBulletText();
3994 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
)
3996 // The outline style relies on the text being computed statically,
3997 // since it depends on other levels points (e.g. 1.2.1.1). So normally the bullet text
3998 // should be stored in the attributes; if not, just use the number for this
3999 // level, as previously computed.
4000 if (!GetAttributes().GetBulletText().IsEmpty())
4001 text
= GetAttributes().GetBulletText();
4004 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_PARENTHESES
)
4006 text
= wxT("(") + text
+ wxT(")");
4008 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_RIGHT_PARENTHESIS
)
4010 text
= text
+ wxT(")");
4013 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_PERIOD
)
4021 /// Allocate or reuse a line object
4022 wxRichTextLine
* wxRichTextParagraph::AllocateLine(int pos
)
4024 if (pos
< (int) m_cachedLines
.GetCount())
4026 wxRichTextLine
* line
= m_cachedLines
.Item(pos
)->GetData();
4032 wxRichTextLine
* line
= new wxRichTextLine(this);
4033 m_cachedLines
.Append(line
);
4038 /// Clear remaining unused line objects, if any
4039 bool wxRichTextParagraph::ClearUnusedLines(int lineCount
)
4041 int cachedLineCount
= m_cachedLines
.GetCount();
4042 if ((int) cachedLineCount
> lineCount
)
4044 for (int i
= 0; i
< (int) (cachedLineCount
- lineCount
); i
++)
4046 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetLast();
4047 wxRichTextLine
* line
= node
->GetData();
4048 m_cachedLines
.Erase(node
);
4055 /// Get combined attributes of the base style, paragraph style and character style. We use this to dynamically
4056 /// retrieve the actual style.
4057 wxTextAttrEx
wxRichTextParagraph::GetCombinedAttributes(const wxTextAttrEx
& contentStyle
) const
4060 wxRichTextBuffer
* buf
= wxDynamicCast(GetParent(), wxRichTextBuffer
);
4063 attr
= buf
->GetBasicStyle();
4064 wxRichTextApplyStyle(attr
, GetAttributes());
4067 attr
= GetAttributes();
4069 wxRichTextApplyStyle(attr
, contentStyle
);
4073 /// Get combined attributes of the base style and paragraph style.
4074 wxTextAttrEx
wxRichTextParagraph::GetCombinedAttributes() const
4077 wxRichTextBuffer
* buf
= wxDynamicCast(GetParent(), wxRichTextBuffer
);
4080 attr
= buf
->GetBasicStyle();
4081 wxRichTextApplyStyle(attr
, GetAttributes());
4084 attr
= GetAttributes();
4089 /// Create default tabstop array
4090 void wxRichTextParagraph::InitDefaultTabs()
4092 // create a default tab list at 10 mm each.
4093 for (int i
= 0; i
< 20; ++i
)
4095 sm_defaultTabs
.Add(i
*100);
4099 /// Clear default tabstop array
4100 void wxRichTextParagraph::ClearDefaultTabs()
4102 sm_defaultTabs
.Clear();
4108 * This object represents a line in a paragraph, and stores
4109 * offsets from the start of the paragraph representing the
4110 * start and end positions of the line.
4113 wxRichTextLine::wxRichTextLine(wxRichTextParagraph
* parent
)
4119 void wxRichTextLine::Init(wxRichTextParagraph
* parent
)
4122 m_range
.SetRange(-1, -1);
4123 m_pos
= wxPoint(0, 0);
4124 m_size
= wxSize(0, 0);
4129 void wxRichTextLine::Copy(const wxRichTextLine
& obj
)
4131 m_range
= obj
.m_range
;
4134 /// Get the absolute object position
4135 wxPoint
wxRichTextLine::GetAbsolutePosition() const
4137 return m_parent
->GetPosition() + m_pos
;
4140 /// Get the absolute range
4141 wxRichTextRange
wxRichTextLine::GetAbsoluteRange() const
4143 wxRichTextRange
range(m_range
.GetStart() + m_parent
->GetRange().GetStart(), 0);
4144 range
.SetEnd(range
.GetStart() + m_range
.GetLength()-1);
4149 * wxRichTextPlainText
4150 * This object represents a single piece of text.
4153 IMPLEMENT_DYNAMIC_CLASS(wxRichTextPlainText
, wxRichTextObject
)
4155 wxRichTextPlainText::wxRichTextPlainText(const wxString
& text
, wxRichTextObject
* parent
, wxTextAttrEx
* style
):
4156 wxRichTextObject(parent
)
4159 SetAttributes(*style
);
4164 #define USE_KERNING_FIX 1
4167 bool wxRichTextPlainText::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int WXUNUSED(style
))
4169 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4170 wxRichTextParagraph
* para
= wxDynamicCast(GetParent(), wxRichTextParagraph
);
4171 wxASSERT (para
!= NULL
);
4173 wxTextAttrEx
textAttr(para
? para
->GetCombinedAttributes(GetAttributes()) : GetAttributes());
4175 wxTextAttrEx
textAttr(GetAttributes());
4178 int offset
= GetRange().GetStart();
4180 long len
= range
.GetLength();
4181 wxString stringChunk
= m_text
.Mid(range
.GetStart() - offset
, (size_t) len
);
4182 if (textAttr
.HasTextEffects() && (textAttr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_CAPITALS
))
4183 stringChunk
.MakeUpper();
4185 int charHeight
= dc
.GetCharHeight();
4188 int y
= rect
.y
+ (rect
.height
- charHeight
- (descent
- m_descent
));
4190 // Test for the optimized situations where all is selected, or none
4193 if (textAttr
.GetFont().Ok())
4194 dc
.SetFont(textAttr
.GetFont());
4196 // (a) All selected.
4197 if (selectionRange
.GetStart() <= range
.GetStart() && selectionRange
.GetEnd() >= range
.GetEnd())
4199 DrawTabbedString(dc
, textAttr
, rect
, stringChunk
, x
, y
, true);
4201 // (b) None selected.
4202 else if (selectionRange
.GetEnd() < range
.GetStart() || selectionRange
.GetStart() > range
.GetEnd())
4204 // Draw all unselected
4205 DrawTabbedString(dc
, textAttr
, rect
, stringChunk
, x
, y
, false);
4209 // (c) Part selected, part not
4210 // Let's draw unselected chunk, selected chunk, then unselected chunk.
4212 dc
.SetBackgroundMode(wxTRANSPARENT
);
4214 // 1. Initial unselected chunk, if any, up until start of selection.
4215 if (selectionRange
.GetStart() > range
.GetStart() && selectionRange
.GetStart() <= range
.GetEnd())
4217 int r1
= range
.GetStart();
4218 int s1
= selectionRange
.GetStart()-1;
4219 int fragmentLen
= s1
- r1
+ 1;
4220 if (fragmentLen
< 0)
4221 wxLogDebug(wxT("Mid(%d, %d"), (int)(r1
- offset
), (int)fragmentLen
);
4222 wxString stringFragment
= m_text
.Mid(r1
- offset
, fragmentLen
);
4224 DrawTabbedString(dc
, textAttr
, rect
, stringFragment
, x
, y
, false);
4227 if (stringChunk
.Find(wxT("\t")) == wxNOT_FOUND
)
4229 // Compensate for kerning difference
4230 wxString
stringFragment2(m_text
.Mid(r1
- offset
, fragmentLen
+1));
4231 wxString
stringFragment3(m_text
.Mid(r1
- offset
+ fragmentLen
, 1));
4233 wxCoord w1
, h1
, w2
, h2
, w3
, h3
;
4234 dc
.GetTextExtent(stringFragment
, & w1
, & h1
);
4235 dc
.GetTextExtent(stringFragment2
, & w2
, & h2
);
4236 dc
.GetTextExtent(stringFragment3
, & w3
, & h3
);
4238 int kerningDiff
= (w1
+ w3
) - w2
;
4239 x
= x
- kerningDiff
;
4244 // 2. Selected chunk, if any.
4245 if (selectionRange
.GetEnd() >= range
.GetStart())
4247 int s1
= wxMax(selectionRange
.GetStart(), range
.GetStart());
4248 int s2
= wxMin(selectionRange
.GetEnd(), range
.GetEnd());
4250 int fragmentLen
= s2
- s1
+ 1;
4251 if (fragmentLen
< 0)
4252 wxLogDebug(wxT("Mid(%d, %d"), (int)(s1
- offset
), (int)fragmentLen
);
4253 wxString stringFragment
= m_text
.Mid(s1
- offset
, fragmentLen
);
4255 DrawTabbedString(dc
, textAttr
, rect
, stringFragment
, x
, y
, true);
4258 if (stringChunk
.Find(wxT("\t")) == wxNOT_FOUND
)
4260 // Compensate for kerning difference
4261 wxString
stringFragment2(m_text
.Mid(s1
- offset
, fragmentLen
+1));
4262 wxString
stringFragment3(m_text
.Mid(s1
- offset
+ fragmentLen
, 1));
4264 wxCoord w1
, h1
, w2
, h2
, w3
, h3
;
4265 dc
.GetTextExtent(stringFragment
, & w1
, & h1
);
4266 dc
.GetTextExtent(stringFragment2
, & w2
, & h2
);
4267 dc
.GetTextExtent(stringFragment3
, & w3
, & h3
);
4269 int kerningDiff
= (w1
+ w3
) - w2
;
4270 x
= x
- kerningDiff
;
4275 // 3. Remaining unselected chunk, if any
4276 if (selectionRange
.GetEnd() < range
.GetEnd())
4278 int s2
= wxMin(selectionRange
.GetEnd()+1, range
.GetEnd());
4279 int r2
= range
.GetEnd();
4281 int fragmentLen
= r2
- s2
+ 1;
4282 if (fragmentLen
< 0)
4283 wxLogDebug(wxT("Mid(%d, %d"), (int)(s2
- offset
), (int)fragmentLen
);
4284 wxString stringFragment
= m_text
.Mid(s2
- offset
, fragmentLen
);
4286 DrawTabbedString(dc
, textAttr
, rect
, stringFragment
, x
, y
, false);
4293 bool wxRichTextPlainText::DrawTabbedString(wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
,wxString
& str
, wxCoord
& x
, wxCoord
& y
, bool selected
)
4295 bool hasTabs
= (str
.Find(wxT('\t')) != wxNOT_FOUND
);
4297 wxArrayInt tabArray
;
4301 if (attr
.GetTabs().IsEmpty())
4302 tabArray
= wxRichTextParagraph::GetDefaultTabs();
4304 tabArray
= attr
.GetTabs();
4305 tabCount
= tabArray
.GetCount();
4307 for (int i
= 0; i
< tabCount
; ++i
)
4309 int pos
= tabArray
[i
];
4310 pos
= ConvertTenthsMMToPixels(dc
, pos
);
4317 int nextTabPos
= -1;
4323 dc
.SetBrush(*wxBLACK_BRUSH
);
4324 dc
.SetPen(*wxBLACK_PEN
);
4325 dc
.SetTextForeground(*wxWHITE
);
4326 dc
.SetBackgroundMode(wxTRANSPARENT
);
4330 dc
.SetTextForeground(attr
.GetTextColour());
4331 dc
.SetBackgroundMode(wxTRANSPARENT
);
4336 // the string has a tab
4337 // break up the string at the Tab
4338 wxString stringChunk
= str
.BeforeFirst(wxT('\t'));
4339 str
= str
.AfterFirst(wxT('\t'));
4340 dc
.GetTextExtent(stringChunk
, & w
, & h
);
4342 bool not_found
= true;
4343 for (int i
= 0; i
< tabCount
&& not_found
; ++i
)
4345 nextTabPos
= tabArray
.Item(i
);
4346 if (nextTabPos
> tabPos
)
4352 wxRect
selRect(x
, rect
.y
, w
, rect
.GetHeight());
4353 dc
.DrawRectangle(selRect
);
4355 dc
.DrawText(stringChunk
, x
, y
);
4357 if (attr
.HasTextEffects() && (attr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_STRIKETHROUGH
))
4359 wxPen oldPen
= dc
.GetPen();
4360 dc
.SetPen(wxPen(attr
.GetTextColour(), 1));
4361 dc
.DrawLine(x
, (int) (y
+(h
/2)+0.5), x
+w
, (int) (y
+(h
/2)+0.5));
4368 hasTabs
= (str
.Find(wxT('\t')) != wxNOT_FOUND
);
4373 dc
.GetTextExtent(str
, & w
, & h
);
4376 wxRect
selRect(x
, rect
.y
, w
, rect
.GetHeight());
4377 dc
.DrawRectangle(selRect
);
4379 dc
.DrawText(str
, x
, y
);
4381 if (attr
.HasTextEffects() && (attr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_STRIKETHROUGH
))
4383 wxPen oldPen
= dc
.GetPen();
4384 dc
.SetPen(wxPen(attr
.GetTextColour(), 1));
4385 dc
.DrawLine(x
, (int) (y
+(h
/2)+0.5), x
+w
, (int) (y
+(h
/2)+0.5));
4395 /// Lay the item out
4396 bool wxRichTextPlainText::Layout(wxDC
& dc
, const wxRect
& WXUNUSED(rect
), int WXUNUSED(style
))
4398 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4399 wxRichTextParagraph
* para
= wxDynamicCast(GetParent(), wxRichTextParagraph
);
4400 wxASSERT (para
!= NULL
);
4402 wxTextAttrEx
textAttr(para
? para
->GetCombinedAttributes(GetAttributes()) : GetAttributes());
4404 wxTextAttrEx
textAttr(GetAttributes());
4407 if (textAttr
.GetFont().Ok())
4408 dc
.SetFont(textAttr
.GetFont());
4410 wxString str
= m_text
;
4411 if (textAttr
.HasTextEffects() && (textAttr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_CAPITALS
))
4415 dc
.GetTextExtent(str
, & w
, & h
, & m_descent
);
4416 m_size
= wxSize(w
, dc
.GetCharHeight());
4422 void wxRichTextPlainText::Copy(const wxRichTextPlainText
& obj
)
4424 wxRichTextObject::Copy(obj
);
4426 m_text
= obj
.m_text
;
4429 /// Get/set the object size for the given range. Returns false if the range
4430 /// is invalid for this object.
4431 bool wxRichTextPlainText::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int WXUNUSED(flags
), wxPoint position
) const
4433 if (!range
.IsWithin(GetRange()))
4436 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4437 wxRichTextParagraph
* para
= wxDynamicCast(GetParent(), wxRichTextParagraph
);
4438 wxASSERT (para
!= NULL
);
4440 wxTextAttrEx
textAttr(para
? para
->GetCombinedAttributes(GetAttributes()) : GetAttributes());
4442 wxTextAttrEx
textAttr(GetAttributes());
4445 // Always assume unformatted text, since at this level we have no knowledge
4446 // of line breaks - and we don't need it, since we'll calculate size within
4447 // formatted text by doing it in chunks according to the line ranges
4449 if (textAttr
.GetFont().Ok())
4450 dc
.SetFont(textAttr
.GetFont());
4452 int startPos
= range
.GetStart() - GetRange().GetStart();
4453 long len
= range
.GetLength();
4454 wxString stringChunk
= m_text
.Mid(startPos
, (size_t) len
);
4456 if (textAttr
.HasTextEffects() && (textAttr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_CAPITALS
))
4457 stringChunk
.MakeUpper();
4461 if (stringChunk
.Find(wxT('\t')) != wxNOT_FOUND
)
4463 // the string has a tab
4464 wxArrayInt tabArray
;
4465 if (textAttr
.GetTabs().IsEmpty())
4466 tabArray
= wxRichTextParagraph::GetDefaultTabs();
4468 tabArray
= textAttr
.GetTabs();
4470 int tabCount
= tabArray
.GetCount();
4472 for (int i
= 0; i
< tabCount
; ++i
)
4474 int pos
= tabArray
[i
];
4475 pos
= ((wxRichTextPlainText
*) this)->ConvertTenthsMMToPixels(dc
, pos
);
4479 int nextTabPos
= -1;
4481 while (stringChunk
.Find(wxT('\t')) >= 0)
4483 // the string has a tab
4484 // break up the string at the Tab
4485 wxString stringFragment
= stringChunk
.BeforeFirst(wxT('\t'));
4486 stringChunk
= stringChunk
.AfterFirst(wxT('\t'));
4487 dc
.GetTextExtent(stringFragment
, & w
, & h
);
4489 int absoluteWidth
= width
+ position
.x
;
4490 bool notFound
= true;
4491 for (int i
= 0; i
< tabCount
&& notFound
; ++i
)
4493 nextTabPos
= tabArray
.Item(i
);
4494 if (nextTabPos
> absoluteWidth
)
4497 width
= nextTabPos
- position
.x
;
4502 dc
.GetTextExtent(stringChunk
, & w
, & h
, & descent
);
4504 size
= wxSize(width
, dc
.GetCharHeight());
4509 /// Do a split, returning an object containing the second part, and setting
4510 /// the first part in 'this'.
4511 wxRichTextObject
* wxRichTextPlainText::DoSplit(long pos
)
4513 int index
= pos
- GetRange().GetStart();
4514 if (index
< 0 || index
>= (int) m_text
.length())
4517 wxString firstPart
= m_text
.Mid(0, index
);
4518 wxString secondPart
= m_text
.Mid(index
);
4522 wxRichTextPlainText
* newObject
= new wxRichTextPlainText(secondPart
);
4523 newObject
->SetAttributes(GetAttributes());
4525 newObject
->SetRange(wxRichTextRange(pos
, GetRange().GetEnd()));
4526 GetRange().SetEnd(pos
-1);
4532 void wxRichTextPlainText::CalculateRange(long start
, long& end
)
4534 end
= start
+ m_text
.length() - 1;
4535 m_range
.SetRange(start
, end
);
4539 bool wxRichTextPlainText::DeleteRange(const wxRichTextRange
& range
)
4541 wxRichTextRange r
= range
;
4543 r
.LimitTo(GetRange());
4545 if (r
.GetStart() == GetRange().GetStart() && r
.GetEnd() == GetRange().GetEnd())
4551 long startIndex
= r
.GetStart() - GetRange().GetStart();
4552 long len
= r
.GetLength();
4554 m_text
= m_text
.Mid(0, startIndex
) + m_text
.Mid(startIndex
+len
);
4558 /// Get text for the given range.
4559 wxString
wxRichTextPlainText::GetTextForRange(const wxRichTextRange
& range
) const
4561 wxRichTextRange r
= range
;
4563 r
.LimitTo(GetRange());
4565 long startIndex
= r
.GetStart() - GetRange().GetStart();
4566 long len
= r
.GetLength();
4568 return m_text
.Mid(startIndex
, len
);
4571 /// Returns true if this object can merge itself with the given one.
4572 bool wxRichTextPlainText::CanMerge(wxRichTextObject
* object
) const
4574 return object
->GetClassInfo() == CLASSINFO(wxRichTextPlainText
) &&
4575 (m_text
.empty() || wxTextAttrEq(GetAttributes(), object
->GetAttributes()));
4578 /// Returns true if this object merged itself with the given one.
4579 /// The calling code will then delete the given object.
4580 bool wxRichTextPlainText::Merge(wxRichTextObject
* object
)
4582 wxRichTextPlainText
* textObject
= wxDynamicCast(object
, wxRichTextPlainText
);
4583 wxASSERT( textObject
!= NULL
);
4587 m_text
+= textObject
->GetText();
4594 /// Dump to output stream for debugging
4595 void wxRichTextPlainText::Dump(wxTextOutputStream
& stream
)
4597 wxRichTextObject::Dump(stream
);
4598 stream
<< m_text
<< wxT("\n");
4603 * This is a kind of box, used to represent the whole buffer
4606 IMPLEMENT_DYNAMIC_CLASS(wxRichTextBuffer
, wxRichTextParagraphLayoutBox
)
4608 wxList
wxRichTextBuffer::sm_handlers
;
4609 wxRichTextRenderer
* wxRichTextBuffer::sm_renderer
= NULL
;
4610 int wxRichTextBuffer::sm_bulletRightMargin
= 20;
4611 float wxRichTextBuffer::sm_bulletProportion
= (float) 0.3;
4614 void wxRichTextBuffer::Init()
4616 m_commandProcessor
= new wxCommandProcessor
;
4617 m_styleSheet
= NULL
;
4619 m_batchedCommandDepth
= 0;
4620 m_batchedCommand
= NULL
;
4627 wxRichTextBuffer::~wxRichTextBuffer()
4629 delete m_commandProcessor
;
4630 delete m_batchedCommand
;
4633 ClearEventHandlers();
4636 void wxRichTextBuffer::ResetAndClearCommands()
4640 GetCommandProcessor()->ClearCommands();
4643 Invalidate(wxRICHTEXT_ALL
);
4646 void wxRichTextBuffer::Copy(const wxRichTextBuffer
& obj
)
4648 wxRichTextParagraphLayoutBox::Copy(obj
);
4650 m_styleSheet
= obj
.m_styleSheet
;
4651 m_modified
= obj
.m_modified
;
4652 m_batchedCommandDepth
= obj
.m_batchedCommandDepth
;
4653 m_batchedCommand
= obj
.m_batchedCommand
;
4654 m_suppressUndo
= obj
.m_suppressUndo
;
4657 /// Push style sheet to top of stack
4658 bool wxRichTextBuffer::PushStyleSheet(wxRichTextStyleSheet
* styleSheet
)
4661 styleSheet
->InsertSheet(m_styleSheet
);
4663 SetStyleSheet(styleSheet
);
4668 /// Pop style sheet from top of stack
4669 wxRichTextStyleSheet
* wxRichTextBuffer::PopStyleSheet()
4673 wxRichTextStyleSheet
* oldSheet
= m_styleSheet
;
4674 m_styleSheet
= oldSheet
->GetNextSheet();
4683 /// Submit command to insert paragraphs
4684 bool wxRichTextBuffer::InsertParagraphsWithUndo(long pos
, const wxRichTextParagraphLayoutBox
& paragraphs
, wxRichTextCtrl
* ctrl
, int flags
)
4686 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Text"), wxRICHTEXT_INSERT
, this, ctrl
, false);
4688 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4689 wxTextAttrEx
attr(GetDefaultStyle());
4691 wxTextAttrEx
attr(GetBasicStyle());
4692 wxRichTextApplyStyle(attr
, GetDefaultStyle());
4695 wxTextAttrEx
* p
= NULL
;
4696 wxTextAttrEx paraAttr
;
4697 if (flags
& wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
)
4699 paraAttr
= GetStyleForNewParagraph(pos
);
4700 if (!paraAttr
.IsDefault())
4706 action
->GetNewParagraphs() = paragraphs
;
4710 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetLast();
4713 wxRichTextParagraph
* obj
= (wxRichTextParagraph
*) node
->GetData();
4714 obj
->SetAttributes(*p
);
4715 node
= node
->GetPrevious();
4719 action
->SetPosition(pos
);
4721 // Set the range we'll need to delete in Undo
4722 action
->SetRange(wxRichTextRange(pos
, pos
+ paragraphs
.GetRange().GetEnd() - 1));
4724 SubmitAction(action
);
4729 /// Submit command to insert the given text
4730 bool wxRichTextBuffer::InsertTextWithUndo(long pos
, const wxString
& text
, wxRichTextCtrl
* ctrl
, int flags
)
4732 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Text"), wxRICHTEXT_INSERT
, this, ctrl
, false);
4734 wxTextAttrEx
* p
= NULL
;
4735 wxTextAttrEx paraAttr
;
4736 if (flags
& wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
)
4738 paraAttr
= GetStyleForNewParagraph(pos
);
4739 if (!paraAttr
.IsDefault())
4743 action
->GetNewParagraphs().AddParagraphs(text
, p
);
4745 int length
= action
->GetNewParagraphs().GetRange().GetLength();
4747 if (text
.length() > 0 && text
.Last() != wxT('\n'))
4749 // Don't count the newline when undoing
4751 action
->GetNewParagraphs().SetPartialParagraph(true);
4754 action
->SetPosition(pos
);
4756 // Set the range we'll need to delete in Undo
4757 action
->SetRange(wxRichTextRange(pos
, pos
+ length
- 1));
4759 SubmitAction(action
);
4764 /// Submit command to insert the given text
4765 bool wxRichTextBuffer::InsertNewlineWithUndo(long pos
, wxRichTextCtrl
* ctrl
, int flags
)
4767 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Text"), wxRICHTEXT_INSERT
, this, ctrl
, false);
4769 wxTextAttrEx
* p
= NULL
;
4770 wxTextAttrEx paraAttr
;
4771 if (flags
& wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
)
4773 paraAttr
= GetStyleForNewParagraph(pos
);
4774 if (!paraAttr
.IsDefault())
4778 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4779 wxTextAttrEx
attr(GetDefaultStyle());
4781 wxTextAttrEx
attr(GetBasicStyle());
4782 wxRichTextApplyStyle(attr
, GetDefaultStyle());
4785 wxRichTextParagraph
* newPara
= new wxRichTextParagraph(wxEmptyString
, this, & attr
);
4786 action
->GetNewParagraphs().AppendChild(newPara
);
4787 action
->GetNewParagraphs().UpdateRanges();
4788 action
->GetNewParagraphs().SetPartialParagraph(false);
4789 action
->SetPosition(pos
);
4792 newPara
->SetAttributes(*p
);
4794 // Set the range we'll need to delete in Undo
4795 action
->SetRange(wxRichTextRange(pos
, pos
));
4797 SubmitAction(action
);
4802 /// Submit command to insert the given image
4803 bool wxRichTextBuffer::InsertImageWithUndo(long pos
, const wxRichTextImageBlock
& imageBlock
, wxRichTextCtrl
* ctrl
, int flags
)
4805 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Image"), wxRICHTEXT_INSERT
, this, ctrl
, false);
4807 wxTextAttrEx
* p
= NULL
;
4808 wxTextAttrEx paraAttr
;
4809 if (flags
& wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
)
4811 paraAttr
= GetStyleForNewParagraph(pos
);
4812 if (!paraAttr
.IsDefault())
4816 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4817 wxTextAttrEx
attr(GetDefaultStyle());
4819 wxTextAttrEx
attr(GetBasicStyle());
4820 wxRichTextApplyStyle(attr
, GetDefaultStyle());
4823 wxRichTextParagraph
* newPara
= new wxRichTextParagraph(this, & attr
);
4825 newPara
->SetAttributes(*p
);
4827 wxRichTextImage
* imageObject
= new wxRichTextImage(imageBlock
, newPara
);
4828 newPara
->AppendChild(imageObject
);
4829 action
->GetNewParagraphs().AppendChild(newPara
);
4830 action
->GetNewParagraphs().UpdateRanges();
4832 action
->GetNewParagraphs().SetPartialParagraph(true);
4834 action
->SetPosition(pos
);
4836 // Set the range we'll need to delete in Undo
4837 action
->SetRange(wxRichTextRange(pos
, pos
));
4839 SubmitAction(action
);
4844 /// Get the style that is appropriate for a new paragraph at this position.
4845 /// If the previous paragraph has a paragraph style name, look up the next-paragraph
4847 wxRichTextAttr
wxRichTextBuffer::GetStyleForNewParagraph(long pos
, bool caretPosition
) const
4849 wxRichTextParagraph
* para
= GetParagraphAtPosition(pos
, caretPosition
);
4852 wxRichTextAttr attr
;
4853 bool foundAttributes
= false;
4855 // Look for a matching paragraph style
4856 if (!para
->GetAttributes().GetParagraphStyleName().IsEmpty() && GetStyleSheet())
4858 wxRichTextParagraphStyleDefinition
* paraDef
= GetStyleSheet()->FindParagraphStyle(para
->GetAttributes().GetParagraphStyleName());
4861 if (!paraDef
->GetNextStyle().IsEmpty())
4863 wxRichTextParagraphStyleDefinition
* nextParaDef
= GetStyleSheet()->FindParagraphStyle(paraDef
->GetNextStyle());
4866 foundAttributes
= true;
4867 attr
= nextParaDef
->GetStyle();
4871 // If we didn't find the 'next style', use this style instead.
4872 if (!foundAttributes
)
4874 foundAttributes
= true;
4875 attr
= paraDef
->GetStyle();
4879 if (!foundAttributes
)
4881 attr
= para
->GetAttributes();
4882 int flags
= attr
.GetFlags();
4884 // Eliminate character styles
4885 flags
&= ( (~ wxTEXT_ATTR_FONT
) |
4886 (~ wxTEXT_ATTR_TEXT_COLOUR
) |
4887 (~ wxTEXT_ATTR_BACKGROUND_COLOUR
) );
4888 attr
.SetFlags(flags
);
4891 // Now see if we need to number the paragraph.
4892 if (attr
.HasBulletStyle())
4894 wxRichTextAttr numberingAttr
;
4895 if (FindNextParagraphNumber(para
, numberingAttr
))
4896 wxRichTextApplyStyle(attr
, (const wxRichTextAttr
&) numberingAttr
);
4902 return wxRichTextAttr();
4905 /// Submit command to delete this range
4906 bool wxRichTextBuffer::DeleteRangeWithUndo(const wxRichTextRange
& range
, long initialCaretPosition
, long WXUNUSED(newCaretPositon
), wxRichTextCtrl
* ctrl
)
4908 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Delete"), wxRICHTEXT_DELETE
, this, ctrl
);
4910 action
->SetPosition(initialCaretPosition
);
4912 // Set the range to delete
4913 action
->SetRange(range
);
4915 // Copy the fragment that we'll need to restore in Undo
4916 CopyFragment(range
, action
->GetOldParagraphs());
4918 // Special case: if there is only one (non-partial) paragraph,
4919 // we must save the *next* paragraph's style, because that
4920 // is the style we must apply when inserting the content back
4921 // when undoing the delete. (This is because we're merging the
4922 // paragraph with the previous paragraph and throwing away
4923 // the style, and we need to restore it.)
4924 if (!action
->GetOldParagraphs().GetPartialParagraph() && action
->GetOldParagraphs().GetChildCount() == 1)
4926 wxRichTextParagraph
* lastPara
= GetParagraphAtPosition(range
.GetStart());
4929 wxRichTextParagraph
* nextPara
= GetParagraphAtPosition(range
.GetEnd()+1);
4932 wxRichTextParagraph
* para
= (wxRichTextParagraph
*) action
->GetOldParagraphs().GetChild(0);
4933 para
->SetAttributes(nextPara
->GetAttributes());
4938 SubmitAction(action
);
4943 /// Collapse undo/redo commands
4944 bool wxRichTextBuffer::BeginBatchUndo(const wxString
& cmdName
)
4946 if (m_batchedCommandDepth
== 0)
4948 wxASSERT(m_batchedCommand
== NULL
);
4949 if (m_batchedCommand
)
4951 GetCommandProcessor()->Submit(m_batchedCommand
);
4953 m_batchedCommand
= new wxRichTextCommand(cmdName
);
4956 m_batchedCommandDepth
++;
4961 /// Collapse undo/redo commands
4962 bool wxRichTextBuffer::EndBatchUndo()
4964 m_batchedCommandDepth
--;
4966 wxASSERT(m_batchedCommandDepth
>= 0);
4967 wxASSERT(m_batchedCommand
!= NULL
);
4969 if (m_batchedCommandDepth
== 0)
4971 GetCommandProcessor()->Submit(m_batchedCommand
);
4972 m_batchedCommand
= NULL
;
4978 /// Submit immediately, or delay according to whether collapsing is on
4979 bool wxRichTextBuffer::SubmitAction(wxRichTextAction
* action
)
4981 if (BatchingUndo() && m_batchedCommand
&& !SuppressingUndo())
4982 m_batchedCommand
->AddAction(action
);
4985 wxRichTextCommand
* cmd
= new wxRichTextCommand(action
->GetName());
4986 cmd
->AddAction(action
);
4988 // Only store it if we're not suppressing undo.
4989 return GetCommandProcessor()->Submit(cmd
, !SuppressingUndo());
4995 /// Begin suppressing undo/redo commands.
4996 bool wxRichTextBuffer::BeginSuppressUndo()
5003 /// End suppressing undo/redo commands.
5004 bool wxRichTextBuffer::EndSuppressUndo()
5011 /// Begin using a style
5012 bool wxRichTextBuffer::BeginStyle(const wxTextAttrEx
& style
)
5014 wxTextAttrEx
newStyle(GetDefaultStyle());
5016 // Save the old default style
5017 m_attributeStack
.Append((wxObject
*) new wxTextAttrEx(GetDefaultStyle()));
5019 wxRichTextApplyStyle(newStyle
, style
);
5020 newStyle
.SetFlags(style
.GetFlags()|newStyle
.GetFlags());
5022 SetDefaultStyle(newStyle
);
5024 // wxLogDebug("Default style size = %d", GetDefaultStyle().GetFont().GetPointSize());
5030 bool wxRichTextBuffer::EndStyle()
5032 if (!m_attributeStack
.GetFirst())
5034 wxLogDebug(_("Too many EndStyle calls!"));
5038 wxList::compatibility_iterator node
= m_attributeStack
.GetLast();
5039 wxTextAttrEx
* attr
= (wxTextAttrEx
*)node
->GetData();
5040 m_attributeStack
.Erase(node
);
5042 SetDefaultStyle(*attr
);
5049 bool wxRichTextBuffer::EndAllStyles()
5051 while (m_attributeStack
.GetCount() != 0)
5056 /// Clear the style stack
5057 void wxRichTextBuffer::ClearStyleStack()
5059 for (wxList::compatibility_iterator node
= m_attributeStack
.GetFirst(); node
; node
= node
->GetNext())
5060 delete (wxTextAttrEx
*) node
->GetData();
5061 m_attributeStack
.Clear();
5064 /// Begin using bold
5065 bool wxRichTextBuffer::BeginBold()
5067 wxFont
font(GetBasicStyle().GetFont());
5068 font
.SetWeight(wxBOLD
);
5071 attr
.SetFont(font
,wxTEXT_ATTR_FONT_WEIGHT
);
5073 return BeginStyle(attr
);
5076 /// Begin using italic
5077 bool wxRichTextBuffer::BeginItalic()
5079 wxFont
font(GetBasicStyle().GetFont());
5080 font
.SetStyle(wxITALIC
);
5083 attr
.SetFont(font
, wxTEXT_ATTR_FONT_ITALIC
);
5085 return BeginStyle(attr
);
5088 /// Begin using underline
5089 bool wxRichTextBuffer::BeginUnderline()
5091 wxFont
font(GetBasicStyle().GetFont());
5092 font
.SetUnderlined(true);
5095 attr
.SetFont(font
, wxTEXT_ATTR_FONT_UNDERLINE
);
5097 return BeginStyle(attr
);
5100 /// Begin using point size
5101 bool wxRichTextBuffer::BeginFontSize(int pointSize
)
5103 wxFont
font(GetBasicStyle().GetFont());
5104 font
.SetPointSize(pointSize
);
5107 attr
.SetFont(font
, wxTEXT_ATTR_FONT_SIZE
);
5109 return BeginStyle(attr
);
5112 /// Begin using this font
5113 bool wxRichTextBuffer::BeginFont(const wxFont
& font
)
5116 attr
.SetFlags(wxTEXT_ATTR_FONT
);
5119 return BeginStyle(attr
);
5122 /// Begin using this colour
5123 bool wxRichTextBuffer::BeginTextColour(const wxColour
& colour
)
5126 attr
.SetFlags(wxTEXT_ATTR_TEXT_COLOUR
);
5127 attr
.SetTextColour(colour
);
5129 return BeginStyle(attr
);
5132 /// Begin using alignment
5133 bool wxRichTextBuffer::BeginAlignment(wxTextAttrAlignment alignment
)
5136 attr
.SetFlags(wxTEXT_ATTR_ALIGNMENT
);
5137 attr
.SetAlignment(alignment
);
5139 return BeginStyle(attr
);
5142 /// Begin left indent
5143 bool wxRichTextBuffer::BeginLeftIndent(int leftIndent
, int leftSubIndent
)
5146 attr
.SetFlags(wxTEXT_ATTR_LEFT_INDENT
);
5147 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5149 return BeginStyle(attr
);
5152 /// Begin right indent
5153 bool wxRichTextBuffer::BeginRightIndent(int rightIndent
)
5156 attr
.SetFlags(wxTEXT_ATTR_RIGHT_INDENT
);
5157 attr
.SetRightIndent(rightIndent
);
5159 return BeginStyle(attr
);
5162 /// Begin paragraph spacing
5163 bool wxRichTextBuffer::BeginParagraphSpacing(int before
, int after
)
5167 flags
|= wxTEXT_ATTR_PARA_SPACING_BEFORE
;
5169 flags
|= wxTEXT_ATTR_PARA_SPACING_AFTER
;
5172 attr
.SetFlags(flags
);
5173 attr
.SetParagraphSpacingBefore(before
);
5174 attr
.SetParagraphSpacingAfter(after
);
5176 return BeginStyle(attr
);
5179 /// Begin line spacing
5180 bool wxRichTextBuffer::BeginLineSpacing(int lineSpacing
)
5183 attr
.SetFlags(wxTEXT_ATTR_LINE_SPACING
);
5184 attr
.SetLineSpacing(lineSpacing
);
5186 return BeginStyle(attr
);
5189 /// Begin numbered bullet
5190 bool wxRichTextBuffer::BeginNumberedBullet(int bulletNumber
, int leftIndent
, int leftSubIndent
, int bulletStyle
)
5193 attr
.SetFlags(wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_LEFT_INDENT
);
5194 attr
.SetBulletStyle(bulletStyle
);
5195 attr
.SetBulletNumber(bulletNumber
);
5196 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5198 return BeginStyle(attr
);
5201 /// Begin symbol bullet
5202 bool wxRichTextBuffer::BeginSymbolBullet(const wxString
& symbol
, int leftIndent
, int leftSubIndent
, int bulletStyle
)
5205 attr
.SetFlags(wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_LEFT_INDENT
);
5206 attr
.SetBulletStyle(bulletStyle
);
5207 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5208 attr
.SetBulletText(symbol
);
5210 return BeginStyle(attr
);
5213 /// Begin standard bullet
5214 bool wxRichTextBuffer::BeginStandardBullet(const wxString
& bulletName
, int leftIndent
, int leftSubIndent
, int bulletStyle
)
5217 attr
.SetFlags(wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_LEFT_INDENT
);
5218 attr
.SetBulletStyle(bulletStyle
);
5219 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5220 attr
.SetBulletName(bulletName
);
5222 return BeginStyle(attr
);
5225 /// Begin named character style
5226 bool wxRichTextBuffer::BeginCharacterStyle(const wxString
& characterStyle
)
5228 if (GetStyleSheet())
5230 wxRichTextCharacterStyleDefinition
* def
= GetStyleSheet()->FindCharacterStyle(characterStyle
);
5233 wxTextAttrEx attr
= def
->GetStyle();
5234 return BeginStyle(attr
);
5240 /// Begin named paragraph style
5241 bool wxRichTextBuffer::BeginParagraphStyle(const wxString
& paragraphStyle
)
5243 if (GetStyleSheet())
5245 wxRichTextParagraphStyleDefinition
* def
= GetStyleSheet()->FindParagraphStyle(paragraphStyle
);
5248 wxTextAttrEx attr
= def
->GetStyle();
5249 return BeginStyle(attr
);
5255 /// Begin named list style
5256 bool wxRichTextBuffer::BeginListStyle(const wxString
& listStyle
, int level
, int number
)
5258 if (GetStyleSheet())
5260 wxRichTextListStyleDefinition
* def
= GetStyleSheet()->FindListStyle(listStyle
);
5263 wxTextAttrEx
attr(def
->GetCombinedStyleForLevel(level
));
5265 attr
.SetBulletNumber(number
);
5267 return BeginStyle(attr
);
5274 bool wxRichTextBuffer::BeginURL(const wxString
& url
, const wxString
& characterStyle
)
5278 if (!characterStyle
.IsEmpty() && GetStyleSheet())
5280 wxRichTextCharacterStyleDefinition
* def
= GetStyleSheet()->FindCharacterStyle(characterStyle
);
5283 attr
= def
->GetStyle();
5288 return BeginStyle(attr
);
5291 /// Adds a handler to the end
5292 void wxRichTextBuffer::AddHandler(wxRichTextFileHandler
*handler
)
5294 sm_handlers
.Append(handler
);
5297 /// Inserts a handler at the front
5298 void wxRichTextBuffer::InsertHandler(wxRichTextFileHandler
*handler
)
5300 sm_handlers
.Insert( handler
);
5303 /// Removes a handler
5304 bool wxRichTextBuffer::RemoveHandler(const wxString
& name
)
5306 wxRichTextFileHandler
*handler
= FindHandler(name
);
5309 sm_handlers
.DeleteObject(handler
);
5317 /// Finds a handler by filename or, if supplied, type
5318 wxRichTextFileHandler
*wxRichTextBuffer::FindHandlerFilenameOrType(const wxString
& filename
, int imageType
)
5320 if (imageType
!= wxRICHTEXT_TYPE_ANY
)
5321 return FindHandler(imageType
);
5322 else if (!filename
.IsEmpty())
5324 wxString path
, file
, ext
;
5325 wxSplitPath(filename
, & path
, & file
, & ext
);
5326 return FindHandler(ext
, imageType
);
5333 /// Finds a handler by name
5334 wxRichTextFileHandler
* wxRichTextBuffer::FindHandler(const wxString
& name
)
5336 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5339 wxRichTextFileHandler
*handler
= (wxRichTextFileHandler
*)node
->GetData();
5340 if (handler
->GetName().Lower() == name
.Lower()) return handler
;
5342 node
= node
->GetNext();
5347 /// Finds a handler by extension and type
5348 wxRichTextFileHandler
* wxRichTextBuffer::FindHandler(const wxString
& extension
, int type
)
5350 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5353 wxRichTextFileHandler
*handler
= (wxRichTextFileHandler
*)node
->GetData();
5354 if ( handler
->GetExtension().Lower() == extension
.Lower() &&
5355 (type
== wxRICHTEXT_TYPE_ANY
|| handler
->GetType() == type
) )
5357 node
= node
->GetNext();
5362 /// Finds a handler by type
5363 wxRichTextFileHandler
* wxRichTextBuffer::FindHandler(int type
)
5365 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5368 wxRichTextFileHandler
*handler
= (wxRichTextFileHandler
*)node
->GetData();
5369 if (handler
->GetType() == type
) return handler
;
5370 node
= node
->GetNext();
5375 void wxRichTextBuffer::InitStandardHandlers()
5377 if (!FindHandler(wxRICHTEXT_TYPE_TEXT
))
5378 AddHandler(new wxRichTextPlainTextHandler
);
5381 void wxRichTextBuffer::CleanUpHandlers()
5383 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5386 wxRichTextFileHandler
* handler
= (wxRichTextFileHandler
*)node
->GetData();
5387 wxList::compatibility_iterator next
= node
->GetNext();
5392 sm_handlers
.Clear();
5395 wxString
wxRichTextBuffer::GetExtWildcard(bool combine
, bool save
, wxArrayInt
* types
)
5402 wxList::compatibility_iterator node
= GetHandlers().GetFirst();
5406 wxRichTextFileHandler
* handler
= (wxRichTextFileHandler
*) node
->GetData();
5407 if (handler
->IsVisible() && ((save
&& handler
->CanSave()) || !save
&& handler
->CanLoad()))
5412 wildcard
+= wxT(";");
5413 wildcard
+= wxT("*.") + handler
->GetExtension();
5418 wildcard
+= wxT("|");
5419 wildcard
+= handler
->GetName();
5420 wildcard
+= wxT(" ");
5421 wildcard
+= _("files");
5422 wildcard
+= wxT(" (*.");
5423 wildcard
+= handler
->GetExtension();
5424 wildcard
+= wxT(")|*.");
5425 wildcard
+= handler
->GetExtension();
5427 types
->Add(handler
->GetType());
5432 node
= node
->GetNext();
5436 wildcard
= wxT("(") + wildcard
+ wxT(")|") + wildcard
;
5441 bool wxRichTextBuffer::LoadFile(const wxString
& filename
, int type
)
5443 wxRichTextFileHandler
* handler
= FindHandlerFilenameOrType(filename
, type
);
5446 SetDefaultStyle(wxTextAttrEx());
5447 handler
->SetFlags(GetHandlerFlags());
5448 bool success
= handler
->LoadFile(this, filename
);
5449 Invalidate(wxRICHTEXT_ALL
);
5457 bool wxRichTextBuffer::SaveFile(const wxString
& filename
, int type
)
5459 wxRichTextFileHandler
* handler
= FindHandlerFilenameOrType(filename
, type
);
5462 handler
->SetFlags(GetHandlerFlags());
5463 return handler
->SaveFile(this, filename
);
5469 /// Load from a stream
5470 bool wxRichTextBuffer::LoadFile(wxInputStream
& stream
, int type
)
5472 wxRichTextFileHandler
* handler
= FindHandler(type
);
5475 SetDefaultStyle(wxTextAttrEx());
5476 handler
->SetFlags(GetHandlerFlags());
5477 bool success
= handler
->LoadFile(this, stream
);
5478 Invalidate(wxRICHTEXT_ALL
);
5485 /// Save to a stream
5486 bool wxRichTextBuffer::SaveFile(wxOutputStream
& stream
, int type
)
5488 wxRichTextFileHandler
* handler
= FindHandler(type
);
5491 handler
->SetFlags(GetHandlerFlags());
5492 return handler
->SaveFile(this, stream
);
5498 /// Copy the range to the clipboard
5499 bool wxRichTextBuffer::CopyToClipboard(const wxRichTextRange
& range
)
5501 bool success
= false;
5502 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
5504 if (!wxTheClipboard
->IsOpened() && wxTheClipboard
->Open())
5506 wxTheClipboard
->Clear();
5508 // Add composite object
5510 wxDataObjectComposite
* compositeObject
= new wxDataObjectComposite();
5513 wxString text
= GetTextForRange(range
);
5516 text
= wxTextFile::Translate(text
, wxTextFileType_Dos
);
5519 compositeObject
->Add(new wxTextDataObject(text
), false /* not preferred */);
5522 // Add rich text buffer data object. This needs the XML handler to be present.
5524 if (FindHandler(wxRICHTEXT_TYPE_XML
))
5526 wxRichTextBuffer
* richTextBuf
= new wxRichTextBuffer
;
5527 CopyFragment(range
, *richTextBuf
);
5529 compositeObject
->Add(new wxRichTextBufferDataObject(richTextBuf
), true /* preferred */);
5532 if (wxTheClipboard
->SetData(compositeObject
))
5535 wxTheClipboard
->Close();
5544 /// Paste the clipboard content to the buffer
5545 bool wxRichTextBuffer::PasteFromClipboard(long position
)
5547 bool success
= false;
5548 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
5549 if (CanPasteFromClipboard())
5551 if (wxTheClipboard
->Open())
5553 if (wxTheClipboard
->IsSupported(wxDataFormat(wxRichTextBufferDataObject::GetRichTextBufferFormatId())))
5555 wxRichTextBufferDataObject data
;
5556 wxTheClipboard
->GetData(data
);
5557 wxRichTextBuffer
* richTextBuffer
= data
.GetRichTextBuffer();
5560 InsertParagraphsWithUndo(position
+1, *richTextBuffer
, GetRichTextCtrl(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
5561 delete richTextBuffer
;
5564 else if (wxTheClipboard
->IsSupported(wxDF_TEXT
) || wxTheClipboard
->IsSupported(wxDF_UNICODETEXT
))
5566 wxTextDataObject data
;
5567 wxTheClipboard
->GetData(data
);
5568 wxString
text(data
.GetText());
5569 text
.Replace(_T("\r\n"), _T("\n"));
5571 InsertTextWithUndo(position
+1, text
, GetRichTextCtrl());
5575 else if (wxTheClipboard
->IsSupported(wxDF_BITMAP
))
5577 wxBitmapDataObject data
;
5578 wxTheClipboard
->GetData(data
);
5579 wxBitmap
bitmap(data
.GetBitmap());
5580 wxImage
image(bitmap
.ConvertToImage());
5582 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Image"), wxRICHTEXT_INSERT
, this, GetRichTextCtrl(), false);
5584 action
->GetNewParagraphs().AddImage(image
);
5586 if (action
->GetNewParagraphs().GetChildCount() == 1)
5587 action
->GetNewParagraphs().SetPartialParagraph(true);
5589 action
->SetPosition(position
);
5591 // Set the range we'll need to delete in Undo
5592 action
->SetRange(wxRichTextRange(position
, position
));
5594 SubmitAction(action
);
5598 wxTheClipboard
->Close();
5602 wxUnusedVar(position
);
5607 /// Can we paste from the clipboard?
5608 bool wxRichTextBuffer::CanPasteFromClipboard() const
5610 bool canPaste
= false;
5611 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
5612 if (!wxTheClipboard
->IsOpened() && wxTheClipboard
->Open())
5614 if (wxTheClipboard
->IsSupported(wxDF_TEXT
) || wxTheClipboard
->IsSupported(wxDF_UNICODETEXT
) ||
5615 wxTheClipboard
->IsSupported(wxDataFormat(wxRichTextBufferDataObject::GetRichTextBufferFormatId())) ||
5616 wxTheClipboard
->IsSupported(wxDF_BITMAP
))
5620 wxTheClipboard
->Close();
5626 /// Dumps contents of buffer for debugging purposes
5627 void wxRichTextBuffer::Dump()
5631 wxStringOutputStream
stream(& text
);
5632 wxTextOutputStream
textStream(stream
);
5639 /// Add an event handler
5640 bool wxRichTextBuffer::AddEventHandler(wxEvtHandler
* handler
)
5642 m_eventHandlers
.Append(handler
);
5646 /// Remove an event handler
5647 bool wxRichTextBuffer::RemoveEventHandler(wxEvtHandler
* handler
, bool deleteHandler
)
5649 wxList::compatibility_iterator node
= m_eventHandlers
.Find(handler
);
5652 m_eventHandlers
.Erase(node
);
5662 /// Clear event handlers
5663 void wxRichTextBuffer::ClearEventHandlers()
5665 m_eventHandlers
.Clear();
5668 /// Send event to event handlers. If sendToAll is true, will send to all event handlers,
5669 /// otherwise will stop at the first successful one.
5670 bool wxRichTextBuffer::SendEvent(wxEvent
& event
, bool sendToAll
)
5672 bool success
= false;
5673 for (wxList::compatibility_iterator node
= m_eventHandlers
.GetFirst(); node
; node
= node
->GetNext())
5675 wxEvtHandler
* handler
= (wxEvtHandler
*) node
->GetData();
5676 if (handler
->ProcessEvent(event
))
5686 /// Set style sheet and notify of the change
5687 bool wxRichTextBuffer::SetStyleSheetAndNotify(wxRichTextStyleSheet
* sheet
)
5689 wxRichTextStyleSheet
* oldSheet
= GetStyleSheet();
5691 wxWindowID id
= wxID_ANY
;
5692 if (GetRichTextCtrl())
5693 id
= GetRichTextCtrl()->GetId();
5695 wxRichTextEvent
event(wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING
, id
);
5696 event
.SetEventObject(GetRichTextCtrl());
5697 event
.SetOldStyleSheet(oldSheet
);
5698 event
.SetNewStyleSheet(sheet
);
5701 if (SendEvent(event
) && !event
.IsAllowed())
5703 if (sheet
!= oldSheet
)
5709 if (oldSheet
&& oldSheet
!= sheet
)
5712 SetStyleSheet(sheet
);
5714 event
.SetEventType(wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED
);
5715 event
.SetOldStyleSheet(NULL
);
5718 return SendEvent(event
);
5721 /// Set renderer, deleting old one
5722 void wxRichTextBuffer::SetRenderer(wxRichTextRenderer
* renderer
)
5726 sm_renderer
= renderer
;
5729 bool wxRichTextStdRenderer::DrawStandardBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttrEx
& bulletAttr
, const wxRect
& rect
)
5731 if (bulletAttr
.GetTextColour().Ok())
5733 dc
.SetPen(wxPen(bulletAttr
.GetTextColour()));
5734 dc
.SetBrush(wxBrush(bulletAttr
.GetTextColour()));
5738 dc
.SetPen(*wxBLACK_PEN
);
5739 dc
.SetBrush(*wxBLACK_BRUSH
);
5743 if (bulletAttr
.GetFont().Ok())
5744 font
= bulletAttr
.GetFont();
5746 font
= (*wxNORMAL_FONT
);
5750 int charHeight
= dc
.GetCharHeight();
5752 int bulletWidth
= (int) (((float) charHeight
) * wxRichTextBuffer::GetBulletProportion());
5753 int bulletHeight
= bulletWidth
;
5757 // Calculate the top position of the character (as opposed to the whole line height)
5758 int y
= rect
.y
+ (rect
.height
- charHeight
);
5760 // Calculate where the bullet should be positioned
5761 y
= y
+ (charHeight
+1)/2 - (bulletHeight
+1)/2;
5763 // The margin between a bullet and text.
5764 int margin
= paragraph
->ConvertTenthsMMToPixels(dc
, wxRichTextBuffer::GetBulletRightMargin());
5766 if (bulletAttr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT
)
5767 x
= rect
.x
+ rect
.width
- bulletWidth
- margin
;
5768 else if (bulletAttr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE
)
5769 x
= x
+ (rect
.width
)/2 - bulletWidth
/2;
5771 if (bulletAttr
.GetBulletName() == wxT("standard/square"))
5773 dc
.DrawRectangle(x
, y
, bulletWidth
, bulletHeight
);
5775 else if (bulletAttr
.GetBulletName() == wxT("standard/diamond"))
5778 pts
[0].x
= x
; pts
[0].y
= y
+ bulletHeight
/2;
5779 pts
[1].x
= x
+ bulletWidth
/2; pts
[1].y
= y
;
5780 pts
[2].x
= x
+ bulletWidth
; pts
[2].y
= y
+ bulletHeight
/2;
5781 pts
[3].x
= x
+ bulletWidth
/2; pts
[3].y
= y
+ bulletHeight
;
5783 dc
.DrawPolygon(4, pts
);
5785 else if (bulletAttr
.GetBulletName() == wxT("standard/triangle"))
5788 pts
[0].x
= x
; pts
[0].y
= y
;
5789 pts
[1].x
= x
+ bulletWidth
; pts
[1].y
= y
+ bulletHeight
/2;
5790 pts
[2].x
= x
; pts
[2].y
= y
+ bulletHeight
;
5792 dc
.DrawPolygon(3, pts
);
5794 else // "standard/circle", and catch-all
5796 dc
.DrawEllipse(x
, y
, bulletWidth
, bulletHeight
);
5802 bool wxRichTextStdRenderer::DrawTextBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
, const wxString
& text
)
5807 if ((attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_SYMBOL
) && !attr
.GetBulletFont().IsEmpty() && attr
.GetFont().Ok())
5809 font
= (*wxTheFontList
->FindOrCreateFont(attr
.GetFont().GetPointSize(), attr
.GetFont().GetFamily(),
5810 attr
.GetFont().GetStyle(), attr
.GetFont().GetWeight(), attr
.GetFont().GetUnderlined(),
5811 attr
.GetBulletFont()));
5813 else if (attr
.GetFont().Ok())
5814 font
= attr
.GetFont();
5816 font
= (*wxNORMAL_FONT
);
5820 if (attr
.GetTextColour().Ok())
5821 dc
.SetTextForeground(attr
.GetTextColour());
5823 dc
.SetBackgroundMode(wxTRANSPARENT
);
5825 int charHeight
= dc
.GetCharHeight();
5827 dc
.GetTextExtent(text
, & tw
, & th
);
5831 // Calculate the top position of the character (as opposed to the whole line height)
5832 int y
= rect
.y
+ (rect
.height
- charHeight
);
5834 // The margin between a bullet and text.
5835 int margin
= paragraph
->ConvertTenthsMMToPixels(dc
, wxRichTextBuffer::GetBulletRightMargin());
5837 if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT
)
5838 x
= (rect
.x
+ rect
.width
) - tw
- margin
;
5839 else if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE
)
5840 x
= x
+ (rect
.width
)/2 - tw
/2;
5842 dc
.DrawText(text
, x
, y
);
5850 bool wxRichTextStdRenderer::DrawBitmapBullet(wxRichTextParagraph
* WXUNUSED(paragraph
), wxDC
& WXUNUSED(dc
), const wxTextAttrEx
& WXUNUSED(attr
), const wxRect
& WXUNUSED(rect
))
5852 // Currently unimplemented. The intention is to store bitmaps by name in a media store associated
5853 // with the buffer. The store will allow retrieval from memory, disk or other means.
5857 /// Enumerate the standard bullet names currently supported
5858 bool wxRichTextStdRenderer::EnumerateStandardBulletNames(wxArrayString
& bulletNames
)
5860 bulletNames
.Add(wxT("standard/circle"));
5861 bulletNames
.Add(wxT("standard/square"));
5862 bulletNames
.Add(wxT("standard/diamond"));
5863 bulletNames
.Add(wxT("standard/triangle"));
5869 * Module to initialise and clean up handlers
5872 class wxRichTextModule
: public wxModule
5874 DECLARE_DYNAMIC_CLASS(wxRichTextModule
)
5876 wxRichTextModule() {}
5879 wxRichTextBuffer::SetRenderer(new wxRichTextStdRenderer
);
5880 wxRichTextBuffer::InitStandardHandlers();
5881 wxRichTextParagraph::InitDefaultTabs();
5886 wxRichTextBuffer::CleanUpHandlers();
5887 wxRichTextDecimalToRoman(-1);
5888 wxRichTextParagraph::ClearDefaultTabs();
5889 wxRichTextCtrl::ClearAvailableFontNames();
5890 wxRichTextBuffer::SetRenderer(NULL
);
5894 IMPLEMENT_DYNAMIC_CLASS(wxRichTextModule
, wxModule
)
5897 // If the richtext lib is dynamically loaded after the app has already started
5898 // (such as from wxPython) then the built-in module system will not init this
5899 // module. Provide this function to do it manually.
5900 void wxRichTextModuleInit()
5902 wxModule
* module = new wxRichTextModule
;
5904 wxModule::RegisterModule(module);
5909 * Commands for undo/redo
5913 wxRichTextCommand::wxRichTextCommand(const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
5914 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
): wxCommand(true, name
)
5916 /* wxRichTextAction* action = */ new wxRichTextAction(this, name
, id
, buffer
, ctrl
, ignoreFirstTime
);
5919 wxRichTextCommand::wxRichTextCommand(const wxString
& name
): wxCommand(true, name
)
5923 wxRichTextCommand::~wxRichTextCommand()
5928 void wxRichTextCommand::AddAction(wxRichTextAction
* action
)
5930 if (!m_actions
.Member(action
))
5931 m_actions
.Append(action
);
5934 bool wxRichTextCommand::Do()
5936 for (wxList::compatibility_iterator node
= m_actions
.GetFirst(); node
; node
= node
->GetNext())
5938 wxRichTextAction
* action
= (wxRichTextAction
*) node
->GetData();
5945 bool wxRichTextCommand::Undo()
5947 for (wxList::compatibility_iterator node
= m_actions
.GetLast(); node
; node
= node
->GetPrevious())
5949 wxRichTextAction
* action
= (wxRichTextAction
*) node
->GetData();
5956 void wxRichTextCommand::ClearActions()
5958 WX_CLEAR_LIST(wxList
, m_actions
);
5966 wxRichTextAction::wxRichTextAction(wxRichTextCommand
* cmd
, const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
5967 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
)
5970 m_ignoreThis
= ignoreFirstTime
;
5975 m_newParagraphs
.SetDefaultStyle(buffer
->GetDefaultStyle());
5976 m_newParagraphs
.SetBasicStyle(buffer
->GetBasicStyle());
5978 cmd
->AddAction(this);
5981 wxRichTextAction::~wxRichTextAction()
5985 bool wxRichTextAction::Do()
5987 m_buffer
->Modify(true);
5991 case wxRICHTEXT_INSERT
:
5993 // Store a list of line start character and y positions so we can figure out which area
5994 // we need to refresh
5995 wxArrayInt optimizationLineCharPositions
;
5996 wxArrayInt optimizationLineYPositions
;
5998 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
5999 // NOTE: we're assuming that the buffer is laid out correctly at this point.
6000 // If we had several actions, which only invalidate and leave layout until the
6001 // paint handler is called, then this might not be true. So we may need to switch
6002 // optimisation on only when we're simply adding text and not simultaneously
6003 // deleting a selection, for example. Or, we make sure the buffer is laid out correctly
6004 // first, but of course this means we'll be doing it twice.
6005 if (!m_buffer
->GetDirty() && m_ctrl
) // can only do optimisation if the buffer is already laid out correctly
6007 wxSize clientSize
= m_ctrl
->GetClientSize();
6008 wxPoint firstVisiblePt
= m_ctrl
->GetFirstVisiblePoint();
6009 int lastY
= firstVisiblePt
.y
+ clientSize
.y
;
6011 wxRichTextParagraph
* para
= m_buffer
->GetParagraphAtPosition(GetPosition());
6012 wxRichTextObjectList::compatibility_iterator node
= m_buffer
->GetChildren().Find(para
);
6015 wxRichTextParagraph
* child
= (wxRichTextParagraph
*) node
->GetData();
6016 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
6019 wxRichTextLine
* line
= node2
->GetData();
6020 wxPoint pt
= line
->GetAbsolutePosition();
6021 wxRichTextRange range
= line
->GetAbsoluteRange();
6025 node2
= wxRichTextLineList::compatibility_iterator();
6026 node
= wxRichTextObjectList::compatibility_iterator();
6028 else if (range
.GetStart() > GetPosition() && pt
.y
>= firstVisiblePt
.y
)
6030 optimizationLineCharPositions
.Add(range
.GetStart());
6031 optimizationLineYPositions
.Add(pt
.y
);
6035 node2
= node2
->GetNext();
6039 node
= node
->GetNext();
6044 m_buffer
->InsertFragment(GetPosition(), m_newParagraphs
);
6045 m_buffer
->UpdateRanges();
6046 m_buffer
->Invalidate(GetRange());
6048 long newCaretPosition
= GetPosition() + m_newParagraphs
.GetRange().GetLength();
6050 // Character position to caret position
6051 newCaretPosition
--;
6053 // Don't take into account the last newline
6054 if (m_newParagraphs
.GetPartialParagraph())
6055 newCaretPosition
--;
6057 newCaretPosition
= wxMin(newCaretPosition
, (m_buffer
->GetRange().GetEnd()-1));
6060 if (optimizationLineCharPositions
.GetCount() > 0)
6061 UpdateAppearance(newCaretPosition
, true /* send update event */, & optimizationLineCharPositions
, & optimizationLineYPositions
);
6063 UpdateAppearance(newCaretPosition
, true /* send update event */);
6067 case wxRICHTEXT_DELETE
:
6069 m_buffer
->DeleteRange(GetRange());
6070 m_buffer
->UpdateRanges();
6071 m_buffer
->Invalidate(wxRichTextRange(GetRange().GetStart(), GetRange().GetStart()));
6073 UpdateAppearance(GetRange().GetStart()-1, true /* send update event */);
6077 case wxRICHTEXT_CHANGE_STYLE
:
6079 ApplyParagraphs(GetNewParagraphs());
6080 m_buffer
->Invalidate(GetRange());
6082 UpdateAppearance(GetPosition());
6093 bool wxRichTextAction::Undo()
6095 m_buffer
->Modify(true);
6099 case wxRICHTEXT_INSERT
:
6101 m_buffer
->DeleteRange(GetRange());
6102 m_buffer
->UpdateRanges();
6103 m_buffer
->Invalidate(wxRichTextRange(GetRange().GetStart(), GetRange().GetStart()));
6105 long newCaretPosition
= GetPosition() - 1;
6106 // if (m_newParagraphs.GetPartialParagraph())
6107 // newCaretPosition --;
6109 UpdateAppearance(newCaretPosition
, true /* send update event */);
6113 case wxRICHTEXT_DELETE
:
6115 m_buffer
->InsertFragment(GetRange().GetStart(), m_oldParagraphs
);
6116 m_buffer
->UpdateRanges();
6117 m_buffer
->Invalidate(GetRange());
6119 UpdateAppearance(GetPosition(), true /* send update event */);
6123 case wxRICHTEXT_CHANGE_STYLE
:
6125 ApplyParagraphs(GetOldParagraphs());
6126 m_buffer
->Invalidate(GetRange());
6128 UpdateAppearance(GetPosition());
6139 /// Update the control appearance
6140 void wxRichTextAction::UpdateAppearance(long caretPosition
, bool sendUpdateEvent
, wxArrayInt
* optimizationLineCharPositions
, wxArrayInt
* optimizationLineYPositions
)
6144 m_ctrl
->SetCaretPosition(caretPosition
);
6145 if (!m_ctrl
->IsFrozen())
6147 m_ctrl
->LayoutContent();
6148 m_ctrl
->PositionCaret();
6150 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6151 // Find refresh rectangle if we are in a position to optimise refresh
6152 if (m_cmdId
== wxRICHTEXT_INSERT
&& optimizationLineCharPositions
&& optimizationLineCharPositions
->GetCount() > 0)
6156 wxSize clientSize
= m_ctrl
->GetClientSize();
6157 wxPoint firstVisiblePt
= m_ctrl
->GetFirstVisiblePoint();
6159 // Start/end positions
6161 int lastY
= firstVisiblePt
.y
+ clientSize
.y
;
6163 bool foundStart
= false;
6164 bool foundEnd
= false;
6166 // position offset - how many characters were inserted
6167 int positionOffset
= GetRange().GetLength();
6169 // find the first line which is being drawn at the same position as it was
6170 // before. Since we're talking about a simple insertion, we can assume
6171 // that the rest of the window does not need to be redrawn.
6173 wxRichTextParagraph
* para
= m_buffer
->GetParagraphAtPosition(GetPosition());
6174 wxRichTextObjectList::compatibility_iterator node
= m_buffer
->GetChildren().Find(para
);
6177 wxRichTextParagraph
* child
= (wxRichTextParagraph
*) node
->GetData();
6178 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
6181 wxRichTextLine
* line
= node2
->GetData();
6182 wxPoint pt
= line
->GetAbsolutePosition();
6183 wxRichTextRange range
= line
->GetAbsoluteRange();
6185 // we want to find the first line that is in the same position
6186 // as before. This will mean we're at the end of the changed text.
6188 if (pt
.y
> lastY
) // going past the end of the window, no more info
6190 node2
= wxRichTextLineList::compatibility_iterator();
6191 node
= wxRichTextObjectList::compatibility_iterator();
6197 firstY
= pt
.y
- firstVisiblePt
.y
;
6201 // search for this line being at the same position as before
6202 for (i
= 0; i
< optimizationLineCharPositions
->GetCount(); i
++)
6204 if (((*optimizationLineCharPositions
)[i
] + positionOffset
== range
.GetStart()) &&
6205 ((*optimizationLineYPositions
)[i
] == pt
.y
))
6207 // Stop, we're now the same as we were
6209 lastY
= pt
.y
- firstVisiblePt
.y
;
6211 node2
= wxRichTextLineList::compatibility_iterator();
6212 node
= wxRichTextObjectList::compatibility_iterator();
6220 node2
= node2
->GetNext();
6224 node
= node
->GetNext();
6228 firstY
= firstVisiblePt
.y
;
6230 lastY
= firstVisiblePt
.y
+ clientSize
.y
;
6232 wxRect
rect(firstVisiblePt
.x
, firstY
, firstVisiblePt
.x
+ clientSize
.x
, lastY
- firstY
);
6233 m_ctrl
->RefreshRect(rect
);
6235 // TODO: we need to make sure that lines are only drawn if in the update region. The rect
6236 // passed to Draw is currently used in different ways (to pass the position the content should
6237 // be drawn at as well as the relevant region).
6241 m_ctrl
->Refresh(false);
6243 if (sendUpdateEvent
)
6244 m_ctrl
->SendTextUpdatedEvent();
6249 /// Replace the buffer paragraphs with the new ones.
6250 void wxRichTextAction::ApplyParagraphs(const wxRichTextParagraphLayoutBox
& fragment
)
6252 wxRichTextObjectList::compatibility_iterator node
= fragment
.GetChildren().GetFirst();
6255 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
6256 wxASSERT (para
!= NULL
);
6258 // We'll replace the existing paragraph by finding the paragraph at this position,
6259 // delete its node data, and setting a copy as the new node data.
6260 // TODO: make more efficient by simply swapping old and new paragraph objects.
6262 wxRichTextParagraph
* existingPara
= m_buffer
->GetParagraphAtPosition(para
->GetRange().GetStart());
6265 wxRichTextObjectList::compatibility_iterator bufferParaNode
= m_buffer
->GetChildren().Find(existingPara
);
6268 wxRichTextParagraph
* newPara
= new wxRichTextParagraph(*para
);
6269 newPara
->SetParent(m_buffer
);
6271 bufferParaNode
->SetData(newPara
);
6273 delete existingPara
;
6277 node
= node
->GetNext();
6284 * This stores beginning and end positions for a range of data.
6287 /// Limit this range to be within 'range'
6288 bool wxRichTextRange::LimitTo(const wxRichTextRange
& range
)
6290 if (m_start
< range
.m_start
)
6291 m_start
= range
.m_start
;
6293 if (m_end
> range
.m_end
)
6294 m_end
= range
.m_end
;
6300 * wxRichTextImage implementation
6301 * This object represents an image.
6304 IMPLEMENT_DYNAMIC_CLASS(wxRichTextImage
, wxRichTextObject
)
6306 wxRichTextImage::wxRichTextImage(const wxImage
& image
, wxRichTextObject
* parent
, wxTextAttrEx
* charStyle
):
6307 wxRichTextObject(parent
)
6311 SetAttributes(*charStyle
);
6314 wxRichTextImage::wxRichTextImage(const wxRichTextImageBlock
& imageBlock
, wxRichTextObject
* parent
, wxTextAttrEx
* charStyle
):
6315 wxRichTextObject(parent
)
6317 m_imageBlock
= imageBlock
;
6318 m_imageBlock
.Load(m_image
);
6320 SetAttributes(*charStyle
);
6323 /// Load wxImage from the block
6324 bool wxRichTextImage::LoadFromBlock()
6326 m_imageBlock
.Load(m_image
);
6327 return m_imageBlock
.Ok();
6330 /// Make block from the wxImage
6331 bool wxRichTextImage::MakeBlock()
6333 if (m_imageBlock
.GetImageType() == wxBITMAP_TYPE_ANY
|| m_imageBlock
.GetImageType() == -1)
6334 m_imageBlock
.SetImageType(wxBITMAP_TYPE_PNG
);
6336 m_imageBlock
.MakeImageBlock(m_image
, m_imageBlock
.GetImageType());
6337 return m_imageBlock
.Ok();
6342 bool wxRichTextImage::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int WXUNUSED(descent
), int WXUNUSED(style
))
6344 if (!m_image
.Ok() && m_imageBlock
.Ok())
6350 if (m_image
.Ok() && !m_bitmap
.Ok())
6351 m_bitmap
= wxBitmap(m_image
);
6353 int y
= rect
.y
+ (rect
.height
- m_image
.GetHeight());
6356 dc
.DrawBitmap(m_bitmap
, rect
.x
, y
, true);
6358 if (selectionRange
.Contains(range
.GetStart()))
6360 dc
.SetBrush(*wxBLACK_BRUSH
);
6361 dc
.SetPen(*wxBLACK_PEN
);
6362 dc
.SetLogicalFunction(wxINVERT
);
6363 dc
.DrawRectangle(rect
);
6364 dc
.SetLogicalFunction(wxCOPY
);
6370 /// Lay the item out
6371 bool wxRichTextImage::Layout(wxDC
& WXUNUSED(dc
), const wxRect
& rect
, int WXUNUSED(style
))
6378 SetCachedSize(wxSize(m_image
.GetWidth(), m_image
.GetHeight()));
6379 SetPosition(rect
.GetPosition());
6385 /// Get/set the object size for the given range. Returns false if the range
6386 /// is invalid for this object.
6387 bool wxRichTextImage::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& WXUNUSED(descent
), wxDC
& WXUNUSED(dc
), int WXUNUSED(flags
), wxPoint
WXUNUSED(position
)) const
6389 if (!range
.IsWithin(GetRange()))
6395 size
.x
= m_image
.GetWidth();
6396 size
.y
= m_image
.GetHeight();
6402 void wxRichTextImage::Copy(const wxRichTextImage
& obj
)
6404 wxRichTextObject::Copy(obj
);
6406 m_image
= obj
.m_image
;
6407 m_imageBlock
= obj
.m_imageBlock
;
6415 /// Compare two attribute objects
6416 bool wxTextAttrEq(const wxTextAttrEx
& attr1
, const wxTextAttrEx
& attr2
)
6418 return (attr1
== attr2
);
6421 bool wxTextAttrEq(const wxTextAttrEx
& attr1
, const wxRichTextAttr
& attr2
)
6424 attr1
.GetTextColour() == attr2
.GetTextColour() &&
6425 attr1
.GetBackgroundColour() == attr2
.GetBackgroundColour() &&
6426 attr1
.GetFont().GetPointSize() == attr2
.GetFontSize() &&
6427 attr1
.GetFont().GetStyle() == attr2
.GetFontStyle() &&
6428 attr1
.GetFont().GetWeight() == attr2
.GetFontWeight() &&
6429 attr1
.GetFont().GetFaceName() == attr2
.GetFontFaceName() &&
6430 attr1
.GetFont().GetUnderlined() == attr2
.GetFontUnderlined() &&
6431 attr1
.GetTextEffects() == attr2
.GetTextEffects() &&
6432 attr1
.GetTextEffectFlags() == attr2
.GetTextEffectFlags() &&
6433 attr1
.GetAlignment() == attr2
.GetAlignment() &&
6434 attr1
.GetLeftIndent() == attr2
.GetLeftIndent() &&
6435 attr1
.GetRightIndent() == attr2
.GetRightIndent() &&
6436 attr1
.GetLeftSubIndent() == attr2
.GetLeftSubIndent() &&
6437 wxRichTextTabsEq(attr1
.GetTabs(), attr2
.GetTabs()) &&
6438 attr1
.GetLineSpacing() == attr2
.GetLineSpacing() &&
6439 attr1
.GetParagraphSpacingAfter() == attr2
.GetParagraphSpacingAfter() &&
6440 attr1
.GetParagraphSpacingBefore() == attr2
.GetParagraphSpacingBefore() &&
6441 attr1
.GetBulletStyle() == attr2
.GetBulletStyle() &&
6442 attr1
.GetBulletNumber() == attr2
.GetBulletNumber() &&
6443 attr1
.GetBulletText() == attr2
.GetBulletText() &&
6444 attr1
.GetBulletName() == attr2
.GetBulletName() &&
6445 attr1
.GetBulletFont() == attr2
.GetBulletFont() &&
6446 attr1
.GetOutlineLevel() == attr2
.GetOutlineLevel() &&
6447 attr1
.GetCharacterStyleName() == attr2
.GetCharacterStyleName() &&
6448 attr1
.GetParagraphStyleName() == attr2
.GetParagraphStyleName() &&
6449 attr1
.GetListStyleName() == attr2
.GetListStyleName() &&
6450 attr1
.HasPageBreak() == attr2
.HasPageBreak());
6453 /// Compare two attribute objects, but take into account the flags
6454 /// specifying attributes of interest.
6455 bool wxTextAttrEqPartial(const wxTextAttrEx
& attr1
, const wxTextAttrEx
& attr2
, int flags
)
6457 if ((flags
& wxTEXT_ATTR_TEXT_COLOUR
) && attr1
.GetTextColour() != attr2
.GetTextColour())
6460 if ((flags
& wxTEXT_ATTR_BACKGROUND_COLOUR
) && attr1
.GetBackgroundColour() != attr2
.GetBackgroundColour())
6463 if ((flags
& wxTEXT_ATTR_FONT_FACE
) && attr1
.GetFont().Ok() && attr2
.GetFont().Ok() &&
6464 attr1
.GetFont().GetFaceName() != attr2
.GetFont().GetFaceName())
6467 if ((flags
& wxTEXT_ATTR_FONT_SIZE
) && attr1
.GetFont().Ok() && attr2
.GetFont().Ok() &&
6468 attr1
.GetFont().GetPointSize() != attr2
.GetFont().GetPointSize())
6471 if ((flags
& wxTEXT_ATTR_FONT_WEIGHT
) && attr1
.GetFont().Ok() && attr2
.GetFont().Ok() &&
6472 attr1
.GetFont().GetWeight() != attr2
.GetFont().GetWeight())
6475 if ((flags
& wxTEXT_ATTR_FONT_ITALIC
) && attr1
.GetFont().Ok() && attr2
.GetFont().Ok() &&
6476 attr1
.GetFont().GetStyle() != attr2
.GetFont().GetStyle())
6479 if ((flags
& wxTEXT_ATTR_FONT_UNDERLINE
) && attr1
.GetFont().Ok() && attr2
.GetFont().Ok() &&
6480 attr1
.GetFont().GetUnderlined() != attr2
.GetFont().GetUnderlined())
6483 if ((flags
& wxTEXT_ATTR_ALIGNMENT
) && attr1
.GetAlignment() != attr2
.GetAlignment())
6486 if ((flags
& wxTEXT_ATTR_LEFT_INDENT
) &&
6487 ((attr1
.GetLeftIndent() != attr2
.GetLeftIndent()) || (attr1
.GetLeftSubIndent() != attr2
.GetLeftSubIndent())))
6490 if ((flags
& wxTEXT_ATTR_RIGHT_INDENT
) &&
6491 (attr1
.GetRightIndent() != attr2
.GetRightIndent()))
6494 if ((flags
& wxTEXT_ATTR_PARA_SPACING_AFTER
) &&
6495 (attr1
.GetParagraphSpacingAfter() != attr2
.GetParagraphSpacingAfter()))
6498 if ((flags
& wxTEXT_ATTR_PARA_SPACING_BEFORE
) &&
6499 (attr1
.GetParagraphSpacingBefore() != attr2
.GetParagraphSpacingBefore()))
6502 if ((flags
& wxTEXT_ATTR_LINE_SPACING
) &&
6503 (attr1
.GetLineSpacing() != attr2
.GetLineSpacing()))
6506 if ((flags
& wxTEXT_ATTR_CHARACTER_STYLE_NAME
) &&
6507 (attr1
.GetCharacterStyleName() != attr2
.GetCharacterStyleName()))
6510 if ((flags
& wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
) &&
6511 (attr1
.GetParagraphStyleName() != attr2
.GetParagraphStyleName()))
6514 if ((flags
& wxTEXT_ATTR_LIST_STYLE_NAME
) &&
6515 (attr1
.GetListStyleName() != attr2
.GetListStyleName()))
6518 if ((flags
& wxTEXT_ATTR_BULLET_STYLE
) &&
6519 (attr1
.GetBulletStyle() != attr2
.GetBulletStyle()))
6522 if ((flags
& wxTEXT_ATTR_BULLET_NUMBER
) &&
6523 (attr1
.GetBulletNumber() != attr2
.GetBulletNumber()))
6526 if ((flags
& wxTEXT_ATTR_BULLET_TEXT
) &&
6527 (attr1
.GetBulletText() != attr2
.GetBulletText()) &&
6528 (attr1
.GetBulletFont() != attr2
.GetBulletFont()))
6531 if ((flags
& wxTEXT_ATTR_BULLET_NAME
) &&
6532 (attr1
.GetBulletName() != attr2
.GetBulletName()))
6535 if ((flags
& wxTEXT_ATTR_TABS
) &&
6536 !wxRichTextTabsEq(attr1
.GetTabs(), attr2
.GetTabs()))
6539 if ((flags
& wxTEXT_ATTR_PAGE_BREAK
) &&
6540 (attr1
.HasPageBreak() != attr2
.HasPageBreak()))
6543 if (flags
& wxTEXT_ATTR_EFFECTS
)
6545 if (attr1
.HasTextEffects() != attr2
.HasTextEffects())
6547 if (!wxRichTextBitlistsEqPartial(attr1
.GetTextEffects(), attr2
.GetTextEffects(), attr2
.GetTextEffectFlags()))
6551 if ((flags
& wxTEXT_ATTR_OUTLINE_LEVEL
) &&
6552 (attr1
.GetOutlineLevel() != attr2
.GetOutlineLevel()))
6558 bool wxTextAttrEqPartial(const wxTextAttrEx
& attr1
, const wxRichTextAttr
& attr2
, int flags
)
6560 if ((flags
& wxTEXT_ATTR_TEXT_COLOUR
) && attr1
.GetTextColour() != attr2
.GetTextColour())
6563 if ((flags
& wxTEXT_ATTR_BACKGROUND_COLOUR
) && attr1
.GetBackgroundColour() != attr2
.GetBackgroundColour())
6566 if ((flags
& (wxTEXT_ATTR_FONT
)) && !attr1
.GetFont().Ok())
6569 if ((flags
& wxTEXT_ATTR_FONT_FACE
) && attr1
.GetFont().Ok() &&
6570 attr1
.GetFont().GetFaceName() != attr2
.GetFontFaceName())
6573 if ((flags
& wxTEXT_ATTR_FONT_SIZE
) && attr1
.GetFont().Ok() &&
6574 attr1
.GetFont().GetPointSize() != attr2
.GetFontSize())
6577 if ((flags
& wxTEXT_ATTR_FONT_WEIGHT
) && attr1
.GetFont().Ok() &&
6578 attr1
.GetFont().GetWeight() != attr2
.GetFontWeight())
6581 if ((flags
& wxTEXT_ATTR_FONT_ITALIC
) && attr1
.GetFont().Ok() &&
6582 attr1
.GetFont().GetStyle() != attr2
.GetFontStyle())
6585 if ((flags
& wxTEXT_ATTR_FONT_UNDERLINE
) && attr1
.GetFont().Ok() &&
6586 attr1
.GetFont().GetUnderlined() != attr2
.GetFontUnderlined())
6589 if ((flags
& wxTEXT_ATTR_ALIGNMENT
) && attr1
.GetAlignment() != attr2
.GetAlignment())
6592 if ((flags
& wxTEXT_ATTR_LEFT_INDENT
) &&
6593 ((attr1
.GetLeftIndent() != attr2
.GetLeftIndent()) || (attr1
.GetLeftSubIndent() != attr2
.GetLeftSubIndent())))
6596 if ((flags
& wxTEXT_ATTR_RIGHT_INDENT
) &&
6597 (attr1
.GetRightIndent() != attr2
.GetRightIndent()))
6600 if ((flags
& wxTEXT_ATTR_PARA_SPACING_AFTER
) &&
6601 (attr1
.GetParagraphSpacingAfter() != attr2
.GetParagraphSpacingAfter()))
6604 if ((flags
& wxTEXT_ATTR_PARA_SPACING_BEFORE
) &&
6605 (attr1
.GetParagraphSpacingBefore() != attr2
.GetParagraphSpacingBefore()))
6608 if ((flags
& wxTEXT_ATTR_LINE_SPACING
) &&
6609 (attr1
.GetLineSpacing() != attr2
.GetLineSpacing()))
6612 if ((flags
& wxTEXT_ATTR_CHARACTER_STYLE_NAME
) &&
6613 (attr1
.GetCharacterStyleName() != attr2
.GetCharacterStyleName()))
6616 if ((flags
& wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
) &&
6617 (attr1
.GetParagraphStyleName() != attr2
.GetParagraphStyleName()))
6620 if ((flags
& wxTEXT_ATTR_LIST_STYLE_NAME
) &&
6621 (attr1
.GetListStyleName() != attr2
.GetListStyleName()))
6624 if ((flags
& wxTEXT_ATTR_BULLET_STYLE
) &&
6625 (attr1
.GetBulletStyle() != attr2
.GetBulletStyle()))
6628 if ((flags
& wxTEXT_ATTR_BULLET_NUMBER
) &&
6629 (attr1
.GetBulletNumber() != attr2
.GetBulletNumber()))
6632 if ((flags
& wxTEXT_ATTR_BULLET_TEXT
) &&
6633 (attr1
.GetBulletText() != attr2
.GetBulletText()) &&
6634 (attr1
.GetBulletFont() != attr2
.GetBulletFont()))
6637 if ((flags
& wxTEXT_ATTR_BULLET_NAME
) &&
6638 (attr1
.GetBulletName() != attr2
.GetBulletName()))
6641 if ((flags
& wxTEXT_ATTR_TABS
) &&
6642 !wxRichTextTabsEq(attr1
.GetTabs(), attr2
.GetTabs()))
6645 if ((flags
& wxTEXT_ATTR_PAGE_BREAK
) &&
6646 (attr1
.HasPageBreak() != attr2
.HasPageBreak()))
6649 if (flags
& wxTEXT_ATTR_EFFECTS
)
6651 if (attr1
.HasTextEffects() != attr2
.HasTextEffects())
6653 if (!wxRichTextBitlistsEqPartial(attr1
.GetTextEffects(), attr2
.GetTextEffects(), attr2
.GetTextEffectFlags()))
6657 if ((flags
& wxTEXT_ATTR_OUTLINE_LEVEL
) &&
6658 (attr1
.GetOutlineLevel() != attr2
.GetOutlineLevel()))
6665 bool wxRichTextTabsEq(const wxArrayInt
& tabs1
, const wxArrayInt
& tabs2
)
6667 if (tabs1
.GetCount() != tabs2
.GetCount())
6671 for (i
= 0; i
< tabs1
.GetCount(); i
++)
6673 if (tabs1
[i
] != tabs2
[i
])
6679 /// Apply one style to another
6680 bool wxRichTextApplyStyle(wxTextAttrEx
& destStyle
, const wxTextAttrEx
& style
)
6683 if (style
.GetFont().Ok() && ((style
.GetFlags() & (wxTEXT_ATTR_FONT
)) == (wxTEXT_ATTR_FONT
)))
6684 destStyle
.SetFont(style
.GetFont());
6685 else if (style
.GetFont().Ok())
6687 wxFont font
= destStyle
.GetFont();
6689 if (style
.GetFlags() & wxTEXT_ATTR_FONT_FACE
)
6691 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_FACE
);
6692 font
.SetFaceName(style
.GetFont().GetFaceName());
6695 if (style
.GetFlags() & wxTEXT_ATTR_FONT_SIZE
)
6697 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_SIZE
);
6698 font
.SetPointSize(style
.GetFont().GetPointSize());
6701 if (style
.GetFlags() & wxTEXT_ATTR_FONT_ITALIC
)
6703 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_ITALIC
);
6704 font
.SetStyle(style
.GetFont().GetStyle());
6707 if (style
.GetFlags() & wxTEXT_ATTR_FONT_WEIGHT
)
6709 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_WEIGHT
);
6710 font
.SetWeight(style
.GetFont().GetWeight());
6713 if (style
.GetFlags() & wxTEXT_ATTR_FONT_UNDERLINE
)
6715 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_UNDERLINE
);
6716 font
.SetUnderlined(style
.GetFont().GetUnderlined());
6719 if (font
!= destStyle
.GetFont())
6721 int oldFlags
= destStyle
.GetFlags();
6723 destStyle
.SetFont(font
);
6725 destStyle
.SetFlags(oldFlags
);
6729 if ( style
.GetTextColour().Ok() && style
.HasTextColour())
6730 destStyle
.SetTextColour(style
.GetTextColour());
6732 if ( style
.GetBackgroundColour().Ok() && style
.HasBackgroundColour())
6733 destStyle
.SetBackgroundColour(style
.GetBackgroundColour());
6735 if (style
.HasAlignment())
6736 destStyle
.SetAlignment(style
.GetAlignment());
6738 if (style
.HasTabs())
6739 destStyle
.SetTabs(style
.GetTabs());
6741 if (style
.HasLeftIndent())
6742 destStyle
.SetLeftIndent(style
.GetLeftIndent(), style
.GetLeftSubIndent());
6744 if (style
.HasRightIndent())
6745 destStyle
.SetRightIndent(style
.GetRightIndent());
6747 if (style
.HasParagraphSpacingAfter())
6748 destStyle
.SetParagraphSpacingAfter(style
.GetParagraphSpacingAfter());
6750 if (style
.HasParagraphSpacingBefore())
6751 destStyle
.SetParagraphSpacingBefore(style
.GetParagraphSpacingBefore());
6753 if (style
.HasLineSpacing())
6754 destStyle
.SetLineSpacing(style
.GetLineSpacing());
6756 if (style
.HasCharacterStyleName())
6757 destStyle
.SetCharacterStyleName(style
.GetCharacterStyleName());
6759 if (style
.HasParagraphStyleName())
6760 destStyle
.SetParagraphStyleName(style
.GetParagraphStyleName());
6762 if (style
.HasListStyleName())
6763 destStyle
.SetListStyleName(style
.GetListStyleName());
6765 if (style
.HasBulletStyle())
6766 destStyle
.SetBulletStyle(style
.GetBulletStyle());
6768 if (style
.HasBulletText())
6770 destStyle
.SetBulletText(style
.GetBulletText());
6771 destStyle
.SetBulletFont(style
.GetBulletFont());
6774 if (style
.HasBulletName())
6775 destStyle
.SetBulletName(style
.GetBulletName());
6777 if (style
.HasBulletNumber())
6778 destStyle
.SetBulletNumber(style
.GetBulletNumber());
6781 destStyle
.SetURL(style
.GetURL());
6783 if (style
.HasPageBreak())
6784 destStyle
.SetPageBreak();
6786 if (style
.HasTextEffects())
6788 int destBits
= destStyle
.GetTextEffects();
6789 int destFlags
= destStyle
.GetTextEffectFlags();
6791 int srcBits
= style
.GetTextEffects();
6792 int srcFlags
= style
.GetTextEffectFlags();
6794 wxRichTextCombineBitlists(destBits
, srcBits
, destFlags
, srcFlags
);
6796 destStyle
.SetTextEffects(destBits
);
6797 destStyle
.SetTextEffectFlags(destFlags
);
6800 if (style
.HasOutlineLevel())
6801 destStyle
.SetOutlineLevel(style
.GetOutlineLevel());
6806 bool wxRichTextApplyStyle(wxRichTextAttr
& destStyle
, const wxTextAttrEx
& style
)
6808 wxTextAttrEx destStyle2
= destStyle
;
6809 wxRichTextApplyStyle(destStyle2
, style
);
6810 destStyle
= destStyle2
;
6814 bool wxRichTextApplyStyle(wxRichTextAttr
& destStyle
, const wxRichTextAttr
& style
, wxRichTextAttr
* compareWith
)
6816 wxTextAttrEx
attr(destStyle
);
6817 wxRichTextApplyStyle(attr
, style
, compareWith
);
6822 bool wxRichTextApplyStyle(wxTextAttrEx
& destStyle
, const wxRichTextAttr
& style
, wxRichTextAttr
* compareWith
)
6824 // Whole font. Avoiding setting individual attributes if possible, since
6825 // it recreates the font each time.
6826 if (((style
.GetFlags() & (wxTEXT_ATTR_FONT
)) == (wxTEXT_ATTR_FONT
)) && !compareWith
)
6828 destStyle
.SetFont(wxFont(style
.GetFontSize(), destStyle
.GetFont().Ok() ? destStyle
.GetFont().GetFamily() : wxDEFAULT
,
6829 style
.GetFontStyle(), style
.GetFontWeight(), style
.GetFontUnderlined(), style
.GetFontFaceName()));
6831 else if (style
.GetFlags() & (wxTEXT_ATTR_FONT
))
6833 wxFont font
= destStyle
.GetFont();
6835 if (style
.GetFlags() & wxTEXT_ATTR_FONT_FACE
)
6837 if (compareWith
&& compareWith
->HasFaceName() && compareWith
->GetFontFaceName() == style
.GetFontFaceName())
6839 // The same as currently displayed, so don't set
6843 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_FACE
);
6844 font
.SetFaceName(style
.GetFontFaceName());
6848 if (style
.GetFlags() & wxTEXT_ATTR_FONT_SIZE
)
6850 if (compareWith
&& compareWith
->HasSize() && compareWith
->GetFontSize() == style
.GetFontSize())
6852 // The same as currently displayed, so don't set
6856 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_SIZE
);
6857 font
.SetPointSize(style
.GetFontSize());
6861 if (style
.GetFlags() & wxTEXT_ATTR_FONT_ITALIC
)
6863 if (compareWith
&& compareWith
->HasItalic() && compareWith
->GetFontStyle() == style
.GetFontStyle())
6865 // The same as currently displayed, so don't set
6869 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_ITALIC
);
6870 font
.SetStyle(style
.GetFontStyle());
6874 if (style
.GetFlags() & wxTEXT_ATTR_FONT_WEIGHT
)
6876 if (compareWith
&& compareWith
->HasWeight() && compareWith
->GetFontWeight() == style
.GetFontWeight())
6878 // The same as currently displayed, so don't set
6882 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_WEIGHT
);
6883 font
.SetWeight(style
.GetFontWeight());
6887 if (style
.GetFlags() & wxTEXT_ATTR_FONT_UNDERLINE
)
6889 if (compareWith
&& compareWith
->HasUnderlined() && compareWith
->GetFontUnderlined() == style
.GetFontUnderlined())
6891 // The same as currently displayed, so don't set
6895 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_UNDERLINE
);
6896 font
.SetUnderlined(style
.GetFontUnderlined());
6900 if (font
!= destStyle
.GetFont())
6902 int oldFlags
= destStyle
.GetFlags();
6904 destStyle
.SetFont(font
);
6906 destStyle
.SetFlags(oldFlags
);
6910 if (style
.GetTextColour().Ok() && style
.HasTextColour())
6912 if (!(compareWith
&& compareWith
->HasTextColour() && compareWith
->GetTextColour() == style
.GetTextColour()))
6913 destStyle
.SetTextColour(style
.GetTextColour());
6916 if (style
.GetBackgroundColour().Ok() && style
.HasBackgroundColour())
6918 if (!(compareWith
&& compareWith
->HasBackgroundColour() && compareWith
->GetBackgroundColour() == style
.GetBackgroundColour()))
6919 destStyle
.SetBackgroundColour(style
.GetBackgroundColour());
6922 if (style
.HasAlignment())
6924 if (!(compareWith
&& compareWith
->HasAlignment() && compareWith
->GetAlignment() == style
.GetAlignment()))
6925 destStyle
.SetAlignment(style
.GetAlignment());
6928 if (style
.HasTabs())
6930 if (!(compareWith
&& compareWith
->HasTabs() && wxRichTextTabsEq(compareWith
->GetTabs(), style
.GetTabs())))
6931 destStyle
.SetTabs(style
.GetTabs());
6934 if (style
.HasLeftIndent())
6936 if (!(compareWith
&& compareWith
->HasLeftIndent() && compareWith
->GetLeftIndent() == style
.GetLeftIndent()
6937 && compareWith
->GetLeftSubIndent() == style
.GetLeftSubIndent()))
6938 destStyle
.SetLeftIndent(style
.GetLeftIndent(), style
.GetLeftSubIndent());
6941 if (style
.HasRightIndent())
6943 if (!(compareWith
&& compareWith
->HasRightIndent() && compareWith
->GetRightIndent() == style
.GetRightIndent()))
6944 destStyle
.SetRightIndent(style
.GetRightIndent());
6947 if (style
.HasParagraphSpacingAfter())
6949 if (!(compareWith
&& compareWith
->HasParagraphSpacingAfter() && compareWith
->GetParagraphSpacingAfter() == style
.GetParagraphSpacingAfter()))
6950 destStyle
.SetParagraphSpacingAfter(style
.GetParagraphSpacingAfter());
6953 if (style
.HasParagraphSpacingBefore())
6955 if (!(compareWith
&& compareWith
->HasParagraphSpacingBefore() && compareWith
->GetParagraphSpacingBefore() == style
.GetParagraphSpacingBefore()))
6956 destStyle
.SetParagraphSpacingBefore(style
.GetParagraphSpacingBefore());
6959 if (style
.HasLineSpacing())
6961 if (!(compareWith
&& compareWith
->HasLineSpacing() && compareWith
->GetLineSpacing() == style
.GetLineSpacing()))
6962 destStyle
.SetLineSpacing(style
.GetLineSpacing());
6965 if (style
.HasCharacterStyleName())
6967 if (!(compareWith
&& compareWith
->HasCharacterStyleName() && compareWith
->GetCharacterStyleName() == style
.GetCharacterStyleName()))
6968 destStyle
.SetCharacterStyleName(style
.GetCharacterStyleName());
6971 if (style
.HasParagraphStyleName())
6973 if (!(compareWith
&& compareWith
->HasParagraphStyleName() && compareWith
->GetParagraphStyleName() == style
.GetParagraphStyleName()))
6974 destStyle
.SetParagraphStyleName(style
.GetParagraphStyleName());
6977 if (style
.HasListStyleName())
6979 if (!(compareWith
&& compareWith
->HasListStyleName() && compareWith
->GetListStyleName() == style
.GetListStyleName()))
6980 destStyle
.SetListStyleName(style
.GetListStyleName());
6983 if (style
.HasBulletStyle())
6985 if (!(compareWith
&& compareWith
->HasBulletStyle() && compareWith
->GetBulletStyle() == style
.GetBulletStyle()))
6986 destStyle
.SetBulletStyle(style
.GetBulletStyle());
6989 if (style
.HasBulletText())
6991 if (!(compareWith
&& compareWith
->HasBulletText() && compareWith
->GetBulletText() == style
.GetBulletText()))
6993 destStyle
.SetBulletText(style
.GetBulletText());
6994 destStyle
.SetBulletFont(style
.GetBulletFont());
6998 if (style
.HasBulletNumber())
7000 if (!(compareWith
&& compareWith
->HasBulletNumber() && compareWith
->GetBulletNumber() == style
.GetBulletNumber()))
7001 destStyle
.SetBulletNumber(style
.GetBulletNumber());
7004 if (style
.HasBulletName())
7006 if (!(compareWith
&& compareWith
->HasBulletName() && compareWith
->GetBulletName() == style
.GetBulletName()))
7007 destStyle
.SetBulletName(style
.GetBulletName());
7012 if (!(compareWith
&& compareWith
->HasURL() && compareWith
->GetURL() == style
.GetURL()))
7013 destStyle
.SetURL(style
.GetURL());
7016 if (style
.HasPageBreak())
7018 if (!(compareWith
&& compareWith
->HasPageBreak()))
7019 destStyle
.SetPageBreak();
7022 if (style
.HasTextEffects())
7024 if (!(compareWith
&& compareWith
->HasTextEffects() && compareWith
->GetTextEffects() == style
.GetTextEffects()))
7026 int destBits
= destStyle
.GetTextEffects();
7027 int destFlags
= destStyle
.GetTextEffectFlags();
7029 int srcBits
= style
.GetTextEffects();
7030 int srcFlags
= style
.GetTextEffectFlags();
7032 wxRichTextCombineBitlists(destBits
, srcBits
, destFlags
, srcFlags
);
7034 destStyle
.SetTextEffects(destBits
);
7035 destStyle
.SetTextEffectFlags(destFlags
);
7039 if (style
.HasOutlineLevel())
7041 if (!(compareWith
&& compareWith
->HasOutlineLevel() && compareWith
->GetOutlineLevel() == style
.GetOutlineLevel()))
7042 destStyle
.SetOutlineLevel(style
.GetOutlineLevel());
7048 /// Combine two bitlists, specifying the bits of interest with separate flags.
7049 bool wxRichTextCombineBitlists(int& valueA
, int valueB
, int& flagsA
, int flagsB
)
7051 // We want to apply B's bits to A, taking into account each's flags which indicate which bits
7052 // are to be taken into account. A zero in B's bits should reset that bit in A but only if B's flags
7055 // First, reset the 0 bits from B. We make a mask so we're only dealing with B's zero
7056 // bits at this point, ignoring any 1 bits in B or 0 bits in B that are not relevant.
7057 int valueA2
= ~(~valueB
& flagsB
) & valueA
;
7059 // Now combine the 1 bits.
7060 int valueA3
= (valueB
& flagsB
) | valueA2
;
7063 flagsA
= (flagsA
| flagsB
);
7068 /// Compare two bitlists
7069 bool wxRichTextBitlistsEqPartial(int valueA
, int valueB
, int flags
)
7071 int relevantBitsA
= valueA
& flags
;
7072 int relevantBitsB
= valueB
& flags
;
7073 return (relevantBitsA
!= relevantBitsB
);
7076 /// Split into paragraph and character styles
7077 bool wxRichTextSplitParaCharStyles(const wxTextAttrEx
& style
, wxTextAttrEx
& parStyle
, wxTextAttrEx
& charStyle
)
7079 wxTextAttrEx
defaultCharStyle1(style
);
7080 wxTextAttrEx
defaultParaStyle1(style
);
7081 defaultCharStyle1
.SetFlags(defaultCharStyle1
.GetFlags()&wxTEXT_ATTR_CHARACTER
);
7082 defaultParaStyle1
.SetFlags(defaultParaStyle1
.GetFlags()&wxTEXT_ATTR_PARAGRAPH
);
7084 wxRichTextApplyStyle(charStyle
, defaultCharStyle1
);
7085 wxRichTextApplyStyle(parStyle
, defaultParaStyle1
);
7090 void wxSetFontPreservingStyles(wxTextAttr
& attr
, const wxFont
& font
)
7092 long flags
= attr
.GetFlags();
7094 attr
.SetFlags(flags
);
7097 /// Convert a decimal to Roman numerals
7098 wxString
wxRichTextDecimalToRoman(long n
)
7100 static wxArrayInt decimalNumbers
;
7101 static wxArrayString romanNumbers
;
7106 decimalNumbers
.Clear();
7107 romanNumbers
.Clear();
7108 return wxEmptyString
;
7111 if (decimalNumbers
.GetCount() == 0)
7113 #define wxRichTextAddDecRom(n, r) decimalNumbers.Add(n); romanNumbers.Add(r);
7115 wxRichTextAddDecRom(1000, wxT("M"));
7116 wxRichTextAddDecRom(900, wxT("CM"));
7117 wxRichTextAddDecRom(500, wxT("D"));
7118 wxRichTextAddDecRom(400, wxT("CD"));
7119 wxRichTextAddDecRom(100, wxT("C"));
7120 wxRichTextAddDecRom(90, wxT("XC"));
7121 wxRichTextAddDecRom(50, wxT("L"));
7122 wxRichTextAddDecRom(40, wxT("XL"));
7123 wxRichTextAddDecRom(10, wxT("X"));
7124 wxRichTextAddDecRom(9, wxT("IX"));
7125 wxRichTextAddDecRom(5, wxT("V"));
7126 wxRichTextAddDecRom(4, wxT("IV"));
7127 wxRichTextAddDecRom(1, wxT("I"));
7133 while (n
> 0 && i
< 13)
7135 if (n
>= decimalNumbers
[i
])
7137 n
-= decimalNumbers
[i
];
7138 roman
+= romanNumbers
[i
];
7145 if (roman
.IsEmpty())
7151 * wxRichTextAttr stores attributes without a wxFont object, so is a much more
7152 * efficient way to query styles.
7156 wxRichTextAttr::wxRichTextAttr(const wxColour
& colText
,
7157 const wxColour
& colBack
,
7158 wxTextAttrAlignment alignment
): m_textAlignment(alignment
), m_colText(colText
), m_colBack(colBack
)
7162 if (m_colText
.Ok()) m_flags
|= wxTEXT_ATTR_TEXT_COLOUR
;
7163 if (m_colBack
.Ok()) m_flags
|= wxTEXT_ATTR_BACKGROUND_COLOUR
;
7164 if (alignment
!= wxTEXT_ALIGNMENT_DEFAULT
)
7165 m_flags
|= wxTEXT_ATTR_ALIGNMENT
;
7168 wxRichTextAttr::wxRichTextAttr(const wxTextAttrEx
& attr
)
7175 wxRichTextAttr::wxRichTextAttr(const wxRichTextAttr
& attr
)
7181 void wxRichTextAttr::Init()
7183 m_textAlignment
= wxTEXT_ALIGNMENT_DEFAULT
;
7186 m_leftSubIndent
= 0;
7190 m_fontStyle
= wxNORMAL
;
7191 m_fontWeight
= wxNORMAL
;
7192 m_fontUnderlined
= false;
7194 m_paragraphSpacingAfter
= 0;
7195 m_paragraphSpacingBefore
= 0;
7197 m_bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_NONE
;
7198 m_textEffects
= wxTEXT_ATTR_EFFECT_NONE
;
7199 m_textEffectFlags
= wxTEXT_ATTR_EFFECT_NONE
;
7205 void wxRichTextAttr::Copy(const wxRichTextAttr
& attr
)
7207 m_colText
= attr
.m_colText
;
7208 m_colBack
= attr
.m_colBack
;
7209 m_textAlignment
= attr
.m_textAlignment
;
7210 m_leftIndent
= attr
.m_leftIndent
;
7211 m_leftSubIndent
= attr
.m_leftSubIndent
;
7212 m_rightIndent
= attr
.m_rightIndent
;
7213 m_tabs
= attr
.m_tabs
;
7214 m_flags
= attr
.m_flags
;
7216 m_fontSize
= attr
.m_fontSize
;
7217 m_fontStyle
= attr
.m_fontStyle
;
7218 m_fontWeight
= attr
.m_fontWeight
;
7219 m_fontUnderlined
= attr
.m_fontUnderlined
;
7220 m_fontFaceName
= attr
.m_fontFaceName
;
7221 m_textEffects
= attr
.m_textEffects
;
7222 m_textEffectFlags
= attr
.m_textEffectFlags
;
7224 m_paragraphSpacingAfter
= attr
.m_paragraphSpacingAfter
;
7225 m_paragraphSpacingBefore
= attr
.m_paragraphSpacingBefore
;
7226 m_lineSpacing
= attr
.m_lineSpacing
;
7227 m_characterStyleName
= attr
.m_characterStyleName
;
7228 m_paragraphStyleName
= attr
.m_paragraphStyleName
;
7229 m_listStyleName
= attr
.m_listStyleName
;
7230 m_bulletStyle
= attr
.m_bulletStyle
;
7231 m_bulletNumber
= attr
.m_bulletNumber
;
7232 m_bulletText
= attr
.m_bulletText
;
7233 m_bulletFont
= attr
.m_bulletFont
;
7234 m_bulletName
= attr
.m_bulletName
;
7235 m_outlineLevel
= attr
.m_outlineLevel
;
7237 m_urlTarget
= attr
.m_urlTarget
;
7241 void wxRichTextAttr::operator= (const wxRichTextAttr
& attr
)
7247 void wxRichTextAttr::operator= (const wxTextAttrEx
& attr
)
7249 m_flags
= attr
.GetFlags();
7251 m_colText
= attr
.GetTextColour();
7252 m_colBack
= attr
.GetBackgroundColour();
7253 m_textAlignment
= attr
.GetAlignment();
7254 m_leftIndent
= attr
.GetLeftIndent();
7255 m_leftSubIndent
= attr
.GetLeftSubIndent();
7256 m_rightIndent
= attr
.GetRightIndent();
7257 m_tabs
= attr
.GetTabs();
7258 m_textEffects
= attr
.GetTextEffects();
7259 m_textEffectFlags
= attr
.GetTextEffectFlags();
7261 m_paragraphSpacingAfter
= attr
.GetParagraphSpacingAfter();
7262 m_paragraphSpacingBefore
= attr
.GetParagraphSpacingBefore();
7263 m_lineSpacing
= attr
.GetLineSpacing();
7264 m_characterStyleName
= attr
.GetCharacterStyleName();
7265 m_paragraphStyleName
= attr
.GetParagraphStyleName();
7266 m_listStyleName
= attr
.GetListStyleName();
7267 m_bulletStyle
= attr
.GetBulletStyle();
7268 m_bulletNumber
= attr
.GetBulletNumber();
7269 m_bulletText
= attr
.GetBulletText();
7270 m_bulletName
= attr
.GetBulletName();
7271 m_bulletFont
= attr
.GetBulletFont();
7272 m_outlineLevel
= attr
.GetOutlineLevel();
7274 m_urlTarget
= attr
.GetURL();
7276 if (attr
.GetFont().Ok())
7277 GetFontAttributes(attr
.GetFont());
7280 // Making a wxTextAttrEx object.
7281 wxRichTextAttr::operator wxTextAttrEx () const
7284 attr
.SetTextColour(GetTextColour());
7285 attr
.SetBackgroundColour(GetBackgroundColour());
7286 attr
.SetAlignment(GetAlignment());
7287 attr
.SetTabs(GetTabs());
7288 attr
.SetLeftIndent(GetLeftIndent(), GetLeftSubIndent());
7289 attr
.SetRightIndent(GetRightIndent());
7290 attr
.SetFont(CreateFont());
7292 attr
.SetParagraphSpacingAfter(m_paragraphSpacingAfter
);
7293 attr
.SetParagraphSpacingBefore(m_paragraphSpacingBefore
);
7294 attr
.SetLineSpacing(m_lineSpacing
);
7295 attr
.SetBulletStyle(m_bulletStyle
);
7296 attr
.SetBulletNumber(m_bulletNumber
);
7297 attr
.SetBulletText(m_bulletText
);
7298 attr
.SetBulletName(m_bulletName
);
7299 attr
.SetBulletFont(m_bulletFont
);
7300 attr
.SetCharacterStyleName(m_characterStyleName
);
7301 attr
.SetParagraphStyleName(m_paragraphStyleName
);
7302 attr
.SetListStyleName(m_listStyleName
);
7303 attr
.SetTextEffects(m_textEffects
);
7304 attr
.SetTextEffectFlags(m_textEffectFlags
);
7305 attr
.SetOutlineLevel(m_outlineLevel
);
7307 attr
.SetURL(m_urlTarget
);
7309 attr
.SetFlags(GetFlags()); // Important: set after SetFont and others, since they set flags
7314 bool wxRichTextAttr::operator== (const wxRichTextAttr
& attr
) const
7316 return GetFlags() == attr
.GetFlags() &&
7318 GetTextColour() == attr
.GetTextColour() &&
7319 GetBackgroundColour() == attr
.GetBackgroundColour() &&
7321 GetAlignment() == attr
.GetAlignment() &&
7322 GetLeftIndent() == attr
.GetLeftIndent() &&
7323 GetLeftSubIndent() == attr
.GetLeftSubIndent() &&
7324 GetRightIndent() == attr
.GetRightIndent() &&
7325 wxRichTextTabsEq(GetTabs(), attr
.GetTabs()) &&
7327 GetParagraphSpacingAfter() == attr
.GetParagraphSpacingAfter() &&
7328 GetParagraphSpacingBefore() == attr
.GetParagraphSpacingBefore() &&
7329 GetLineSpacing() == attr
.GetLineSpacing() &&
7330 GetCharacterStyleName() == attr
.GetCharacterStyleName() &&
7331 GetParagraphStyleName() == attr
.GetParagraphStyleName() &&
7332 GetListStyleName() == attr
.GetListStyleName() &&
7334 GetBulletStyle() == attr
.GetBulletStyle() &&
7335 GetBulletText() == attr
.GetBulletText() &&
7336 GetBulletNumber() == attr
.GetBulletNumber() &&
7337 GetBulletFont() == attr
.GetBulletFont() &&
7338 GetBulletName() == attr
.GetBulletName() &&
7340 GetTextEffects() == attr
.GetTextEffects() &&
7341 GetTextEffectFlags() == attr
.GetTextEffectFlags() &&
7343 GetOutlineLevel() == attr
.GetOutlineLevel() &&
7345 GetFontSize() == attr
.GetFontSize() &&
7346 GetFontStyle() == attr
.GetFontStyle() &&
7347 GetFontWeight() == attr
.GetFontWeight() &&
7348 GetFontUnderlined() == attr
.GetFontUnderlined() &&
7349 GetFontFaceName() == attr
.GetFontFaceName() &&
7351 GetURL() == attr
.GetURL();
7354 // Create font from font attributes.
7355 wxFont
wxRichTextAttr::CreateFont() const
7357 wxFont
font(m_fontSize
, wxDEFAULT
, m_fontStyle
, m_fontWeight
, m_fontUnderlined
, m_fontFaceName
);
7359 font
.SetNoAntiAliasing(true);
7364 // Get attributes from font.
7365 bool wxRichTextAttr::GetFontAttributes(const wxFont
& font
)
7370 m_fontSize
= font
.GetPointSize();
7371 m_fontStyle
= font
.GetStyle();
7372 m_fontWeight
= font
.GetWeight();
7373 m_fontUnderlined
= font
.GetUnderlined();
7374 m_fontFaceName
= font
.GetFaceName();
7379 wxRichTextAttr
wxRichTextAttr::Combine(const wxRichTextAttr
& attr
,
7380 const wxRichTextAttr
& attrDef
,
7381 const wxTextCtrlBase
*text
)
7383 wxColour colFg
= attr
.GetTextColour();
7386 colFg
= attrDef
.GetTextColour();
7388 if ( text
&& !colFg
.Ok() )
7389 colFg
= text
->GetForegroundColour();
7392 wxColour colBg
= attr
.GetBackgroundColour();
7395 colBg
= attrDef
.GetBackgroundColour();
7397 if ( text
&& !colBg
.Ok() )
7398 colBg
= text
->GetBackgroundColour();
7401 wxRichTextAttr
newAttr(colFg
, colBg
);
7403 if (attr
.HasWeight())
7404 newAttr
.SetFontWeight(attr
.GetFontWeight());
7407 newAttr
.SetFontSize(attr
.GetFontSize());
7409 if (attr
.HasItalic())
7410 newAttr
.SetFontStyle(attr
.GetFontStyle());
7412 if (attr
.HasUnderlined())
7413 newAttr
.SetFontUnderlined(attr
.GetFontUnderlined());
7415 if (attr
.HasFaceName())
7416 newAttr
.SetFontFaceName(attr
.GetFontFaceName());
7418 if (attr
.HasAlignment())
7419 newAttr
.SetAlignment(attr
.GetAlignment());
7420 else if (attrDef
.HasAlignment())
7421 newAttr
.SetAlignment(attrDef
.GetAlignment());
7424 newAttr
.SetTabs(attr
.GetTabs());
7425 else if (attrDef
.HasTabs())
7426 newAttr
.SetTabs(attrDef
.GetTabs());
7428 if (attr
.HasLeftIndent())
7429 newAttr
.SetLeftIndent(attr
.GetLeftIndent(), attr
.GetLeftSubIndent());
7430 else if (attrDef
.HasLeftIndent())
7431 newAttr
.SetLeftIndent(attrDef
.GetLeftIndent(), attr
.GetLeftSubIndent());
7433 if (attr
.HasRightIndent())
7434 newAttr
.SetRightIndent(attr
.GetRightIndent());
7435 else if (attrDef
.HasRightIndent())
7436 newAttr
.SetRightIndent(attrDef
.GetRightIndent());
7440 if (attr
.HasParagraphSpacingAfter())
7441 newAttr
.SetParagraphSpacingAfter(attr
.GetParagraphSpacingAfter());
7443 if (attr
.HasParagraphSpacingBefore())
7444 newAttr
.SetParagraphSpacingBefore(attr
.GetParagraphSpacingBefore());
7446 if (attr
.HasLineSpacing())
7447 newAttr
.SetLineSpacing(attr
.GetLineSpacing());
7449 if (attr
.HasCharacterStyleName())
7450 newAttr
.SetCharacterStyleName(attr
.GetCharacterStyleName());
7452 if (attr
.HasParagraphStyleName())
7453 newAttr
.SetParagraphStyleName(attr
.GetParagraphStyleName());
7455 if (attr
.HasListStyleName())
7456 newAttr
.SetListStyleName(attr
.GetListStyleName());
7458 if (attr
.HasBulletStyle())
7459 newAttr
.SetBulletStyle(attr
.GetBulletStyle());
7461 if (attr
.HasBulletNumber())
7462 newAttr
.SetBulletNumber(attr
.GetBulletNumber());
7464 if (attr
.HasBulletName())
7465 newAttr
.SetBulletName(attr
.GetBulletName());
7467 if (attr
.HasBulletText())
7469 newAttr
.SetBulletText(attr
.GetBulletText());
7470 newAttr
.SetBulletFont(attr
.GetBulletFont());
7474 newAttr
.SetURL(attr
.GetURL());
7476 if (attr
.HasPageBreak())
7477 newAttr
.SetPageBreak();
7479 if (attr
.HasTextEffects())
7481 newAttr
.SetTextEffects(attr
.GetTextEffects());
7482 newAttr
.SetTextEffectFlags(attr
.GetTextEffectFlags());
7485 if (attr
.HasOutlineLevel())
7486 newAttr
.SetOutlineLevel(attr
.GetOutlineLevel());
7492 * wxTextAttrEx is an extended version of wxTextAttr with more paragraph attributes.
7495 wxTextAttrEx::wxTextAttrEx(const wxTextAttrEx
& attr
): wxTextAttr()
7500 // Initialise this object.
7501 void wxTextAttrEx::Init()
7503 m_paragraphSpacingAfter
= 0;
7504 m_paragraphSpacingBefore
= 0;
7506 m_bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_NONE
;
7507 m_textEffects
= wxTEXT_ATTR_EFFECT_NONE
;
7508 m_textEffectFlags
= wxTEXT_ATTR_EFFECT_NONE
;
7514 void wxTextAttrEx::Copy(const wxTextAttrEx
& attr
)
7516 wxTextAttr::operator= (attr
);
7518 m_paragraphSpacingAfter
= attr
.m_paragraphSpacingAfter
;
7519 m_paragraphSpacingBefore
= attr
.m_paragraphSpacingBefore
;
7520 m_lineSpacing
= attr
.m_lineSpacing
;
7521 m_characterStyleName
= attr
.m_characterStyleName
;
7522 m_paragraphStyleName
= attr
.m_paragraphStyleName
;
7523 m_listStyleName
= attr
.m_listStyleName
;
7524 m_bulletStyle
= attr
.m_bulletStyle
;
7525 m_bulletNumber
= attr
.m_bulletNumber
;
7526 m_bulletText
= attr
.m_bulletText
;
7527 m_bulletFont
= attr
.m_bulletFont
;
7528 m_bulletName
= attr
.m_bulletName
;
7529 m_urlTarget
= attr
.m_urlTarget
;
7530 m_textEffects
= attr
.m_textEffects
;
7531 m_textEffectFlags
= attr
.m_textEffectFlags
;
7532 m_outlineLevel
= attr
.m_outlineLevel
;
7535 // Assignment from a wxTextAttrEx object
7536 void wxTextAttrEx::operator= (const wxTextAttrEx
& attr
)
7541 // Assignment from a wxTextAttr object.
7542 void wxTextAttrEx::operator= (const wxTextAttr
& attr
)
7544 wxTextAttr::operator= (attr
);
7548 bool wxTextAttrEx::operator== (const wxTextAttrEx
& attr
) const
7551 GetFlags() == attr
.GetFlags() &&
7552 GetTextColour() == attr
.GetTextColour() &&
7553 GetBackgroundColour() == attr
.GetBackgroundColour() &&
7554 GetFont() == attr
.GetFont() &&
7555 GetTextEffects() == attr
.GetTextEffects() &&
7556 GetTextEffectFlags() == attr
.GetTextEffectFlags() &&
7557 GetAlignment() == attr
.GetAlignment() &&
7558 GetLeftIndent() == attr
.GetLeftIndent() &&
7559 GetRightIndent() == attr
.GetRightIndent() &&
7560 GetLeftSubIndent() == attr
.GetLeftSubIndent() &&
7561 wxRichTextTabsEq(GetTabs(), attr
.GetTabs()) &&
7562 GetLineSpacing() == attr
.GetLineSpacing() &&
7563 GetParagraphSpacingAfter() == attr
.GetParagraphSpacingAfter() &&
7564 GetParagraphSpacingBefore() == attr
.GetParagraphSpacingBefore() &&
7565 GetBulletStyle() == attr
.GetBulletStyle() &&
7566 GetBulletNumber() == attr
.GetBulletNumber() &&
7567 GetBulletText() == attr
.GetBulletText() &&
7568 GetBulletName() == attr
.GetBulletName() &&
7569 GetBulletFont() == attr
.GetBulletFont() &&
7570 GetCharacterStyleName() == attr
.GetCharacterStyleName() &&
7571 GetParagraphStyleName() == attr
.GetParagraphStyleName() &&
7572 GetListStyleName() == attr
.GetListStyleName() &&
7573 GetOutlineLevel() == attr
.GetOutlineLevel() &&
7574 GetURL() == attr
.GetURL());
7577 wxTextAttrEx
wxTextAttrEx::CombineEx(const wxTextAttrEx
& attr
,
7578 const wxTextAttrEx
& attrDef
,
7579 const wxTextCtrlBase
*text
)
7581 wxTextAttrEx newAttr
;
7583 // If attr specifies the complete font, just use that font, overriding all
7584 // default font attributes.
7585 if ((attr
.GetFlags() & wxTEXT_ATTR_FONT
) == wxTEXT_ATTR_FONT
)
7586 newAttr
.SetFont(attr
.GetFont());
7589 // First find the basic, default font
7593 if (attrDef
.HasFont())
7595 flags
= (attrDef
.GetFlags() & wxTEXT_ATTR_FONT
);
7596 font
= attrDef
.GetFont();
7601 font
= text
->GetFont();
7603 // We leave flags at 0 because no font attributes have been specified yet
7606 font
= *wxNORMAL_FONT
;
7608 // Otherwise, if there are font attributes in attr, apply them
7609 if (attr
.GetFlags() & wxTEXT_ATTR_FONT
)
7613 flags
|= wxTEXT_ATTR_FONT_SIZE
;
7614 font
.SetPointSize(attr
.GetFont().GetPointSize());
7616 if (attr
.HasItalic())
7618 flags
|= wxTEXT_ATTR_FONT_ITALIC
;;
7619 font
.SetStyle(attr
.GetFont().GetStyle());
7621 if (attr
.HasWeight())
7623 flags
|= wxTEXT_ATTR_FONT_WEIGHT
;
7624 font
.SetWeight(attr
.GetFont().GetWeight());
7626 if (attr
.HasFaceName())
7628 flags
|= wxTEXT_ATTR_FONT_FACE
;
7629 font
.SetFaceName(attr
.GetFont().GetFaceName());
7631 if (attr
.HasUnderlined())
7633 flags
|= wxTEXT_ATTR_FONT_UNDERLINE
;
7634 font
.SetUnderlined(attr
.GetFont().GetUnderlined());
7636 newAttr
.SetFont(font
);
7637 newAttr
.SetFlags(newAttr
.GetFlags()|flags
);
7641 // TODO: should really check we are specifying these in the flags,
7642 // before setting them, as per above; or we will set them willy-nilly.
7643 // However, we should also check whether this is the intention
7644 // as per wxTextAttr::Combine, i.e. always to have valid colours
7646 wxColour colFg
= attr
.GetTextColour();
7649 colFg
= attrDef
.GetTextColour();
7651 if ( text
&& !colFg
.Ok() )
7652 colFg
= text
->GetForegroundColour();
7655 wxColour colBg
= attr
.GetBackgroundColour();
7658 colBg
= attrDef
.GetBackgroundColour();
7660 if ( text
&& !colBg
.Ok() )
7661 colBg
= text
->GetBackgroundColour();
7664 newAttr
.SetTextColour(colFg
);
7665 newAttr
.SetBackgroundColour(colBg
);
7667 if (attr
.HasAlignment())
7668 newAttr
.SetAlignment(attr
.GetAlignment());
7669 else if (attrDef
.HasAlignment())
7670 newAttr
.SetAlignment(attrDef
.GetAlignment());
7673 newAttr
.SetTabs(attr
.GetTabs());
7674 else if (attrDef
.HasTabs())
7675 newAttr
.SetTabs(attrDef
.GetTabs());
7677 if (attr
.HasLeftIndent())
7678 newAttr
.SetLeftIndent(attr
.GetLeftIndent(), attr
.GetLeftSubIndent());
7679 else if (attrDef
.HasLeftIndent())
7680 newAttr
.SetLeftIndent(attrDef
.GetLeftIndent(), attr
.GetLeftSubIndent());
7682 if (attr
.HasRightIndent())
7683 newAttr
.SetRightIndent(attr
.GetRightIndent());
7684 else if (attrDef
.HasRightIndent())
7685 newAttr
.SetRightIndent(attrDef
.GetRightIndent());
7689 if (attr
.HasParagraphSpacingAfter())
7690 newAttr
.SetParagraphSpacingAfter(attr
.GetParagraphSpacingAfter());
7692 if (attr
.HasParagraphSpacingBefore())
7693 newAttr
.SetParagraphSpacingBefore(attr
.GetParagraphSpacingBefore());
7695 if (attr
.HasLineSpacing())
7696 newAttr
.SetLineSpacing(attr
.GetLineSpacing());
7698 if (attr
.HasCharacterStyleName())
7699 newAttr
.SetCharacterStyleName(attr
.GetCharacterStyleName());
7701 if (attr
.HasParagraphStyleName())
7702 newAttr
.SetParagraphStyleName(attr
.GetParagraphStyleName());
7704 if (attr
.HasListStyleName())
7705 newAttr
.SetListStyleName(attr
.GetListStyleName());
7707 if (attr
.HasBulletStyle())
7708 newAttr
.SetBulletStyle(attr
.GetBulletStyle());
7710 if (attr
.HasBulletNumber())
7711 newAttr
.SetBulletNumber(attr
.GetBulletNumber());
7713 if (attr
.HasBulletName())
7714 newAttr
.SetBulletName(attr
.GetBulletName());
7716 if (attr
.HasBulletText())
7718 newAttr
.SetBulletText(attr
.GetBulletText());
7719 newAttr
.SetBulletFont(attr
.GetBulletFont());
7723 newAttr
.SetURL(attr
.GetURL());
7725 if (attr
.HasTextEffects())
7727 newAttr
.SetTextEffects(attr
.GetTextEffects());
7728 newAttr
.SetTextEffectFlags(attr
.GetTextEffectFlags());
7731 if (attr
.HasOutlineLevel())
7732 newAttr
.SetOutlineLevel(attr
.GetOutlineLevel());
7739 * wxRichTextFileHandler
7740 * Base class for file handlers
7743 IMPLEMENT_CLASS(wxRichTextFileHandler
, wxObject
)
7746 bool wxRichTextFileHandler::LoadFile(wxRichTextBuffer
*buffer
, const wxString
& filename
)
7748 wxFFileInputStream
stream(filename
);
7750 return LoadFile(buffer
, stream
);
7755 bool wxRichTextFileHandler::SaveFile(wxRichTextBuffer
*buffer
, const wxString
& filename
)
7757 wxFFileOutputStream
stream(filename
);
7759 return SaveFile(buffer
, stream
);
7763 #endif // wxUSE_STREAMS
7765 /// Can we handle this filename (if using files)? By default, checks the extension.
7766 bool wxRichTextFileHandler::CanHandle(const wxString
& filename
) const
7768 wxString path
, file
, ext
;
7769 wxSplitPath(filename
, & path
, & file
, & ext
);
7771 return (ext
.Lower() == GetExtension());
7775 * wxRichTextTextHandler
7776 * Plain text handler
7779 IMPLEMENT_CLASS(wxRichTextPlainTextHandler
, wxRichTextFileHandler
)
7782 bool wxRichTextPlainTextHandler::DoLoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
)
7790 while (!stream
.Eof())
7792 int ch
= stream
.GetC();
7796 if (ch
== 10 && lastCh
!= 13)
7799 if (ch
> 0 && ch
!= 10)
7806 buffer
->ResetAndClearCommands();
7808 buffer
->AddParagraphs(str
);
7809 buffer
->UpdateRanges();
7814 bool wxRichTextPlainTextHandler::DoSaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
)
7819 wxString text
= buffer
->GetText();
7820 wxCharBuffer buf
= text
.ToAscii();
7822 stream
.Write((const char*) buf
, text
.length());
7825 #endif // wxUSE_STREAMS
7828 * Stores information about an image, in binary in-memory form
7831 wxRichTextImageBlock::wxRichTextImageBlock()
7836 wxRichTextImageBlock::wxRichTextImageBlock(const wxRichTextImageBlock
& block
):wxObject()
7842 wxRichTextImageBlock::~wxRichTextImageBlock()
7851 void wxRichTextImageBlock::Init()
7858 void wxRichTextImageBlock::Clear()
7867 // Load the original image into a memory block.
7868 // If the image is not a JPEG, we must convert it into a JPEG
7869 // to conserve space.
7870 // If it's not a JPEG we can make use of 'image', already scaled, so we don't have to
7871 // load the image a 2nd time.
7873 bool wxRichTextImageBlock::MakeImageBlock(const wxString
& filename
, int imageType
, wxImage
& image
, bool convertToJPEG
)
7875 m_imageType
= imageType
;
7877 wxString
filenameToRead(filename
);
7878 bool removeFile
= false;
7880 if (imageType
== -1)
7881 return false; // Could not determine image type
7883 if ((imageType
!= wxBITMAP_TYPE_JPEG
) && convertToJPEG
)
7886 bool success
= wxGetTempFileName(_("image"), tempFile
) ;
7890 wxUnusedVar(success
);
7892 image
.SaveFile(tempFile
, wxBITMAP_TYPE_JPEG
);
7893 filenameToRead
= tempFile
;
7896 m_imageType
= wxBITMAP_TYPE_JPEG
;
7899 if (!file
.Open(filenameToRead
))
7902 m_dataSize
= (size_t) file
.Length();
7907 m_data
= ReadBlock(filenameToRead
, m_dataSize
);
7910 wxRemoveFile(filenameToRead
);
7912 return (m_data
!= NULL
);
7915 // Make an image block from the wxImage in the given
7917 bool wxRichTextImageBlock::MakeImageBlock(wxImage
& image
, int imageType
, int quality
)
7919 m_imageType
= imageType
;
7920 image
.SetOption(wxT("quality"), quality
);
7922 if (imageType
== -1)
7923 return false; // Could not determine image type
7926 bool success
= wxGetTempFileName(_("image"), tempFile
) ;
7929 wxUnusedVar(success
);
7931 if (!image
.SaveFile(tempFile
, m_imageType
))
7933 if (wxFileExists(tempFile
))
7934 wxRemoveFile(tempFile
);
7939 if (!file
.Open(tempFile
))
7942 m_dataSize
= (size_t) file
.Length();
7947 m_data
= ReadBlock(tempFile
, m_dataSize
);
7949 wxRemoveFile(tempFile
);
7951 return (m_data
!= NULL
);
7956 bool wxRichTextImageBlock::Write(const wxString
& filename
)
7958 return WriteBlock(filename
, m_data
, m_dataSize
);
7961 void wxRichTextImageBlock::Copy(const wxRichTextImageBlock
& block
)
7963 m_imageType
= block
.m_imageType
;
7969 m_dataSize
= block
.m_dataSize
;
7970 if (m_dataSize
== 0)
7973 m_data
= new unsigned char[m_dataSize
];
7975 for (i
= 0; i
< m_dataSize
; i
++)
7976 m_data
[i
] = block
.m_data
[i
];
7980 void wxRichTextImageBlock::operator=(const wxRichTextImageBlock
& block
)
7985 // Load a wxImage from the block
7986 bool wxRichTextImageBlock::Load(wxImage
& image
)
7991 // Read in the image.
7993 wxMemoryInputStream
mstream(m_data
, m_dataSize
);
7994 bool success
= image
.LoadFile(mstream
, GetImageType());
7997 bool success
= wxGetTempFileName(_("image"), tempFile
) ;
8000 if (!WriteBlock(tempFile
, m_data
, m_dataSize
))
8004 success
= image
.LoadFile(tempFile
, GetImageType());
8005 wxRemoveFile(tempFile
);
8011 // Write data in hex to a stream
8012 bool wxRichTextImageBlock::WriteHex(wxOutputStream
& stream
)
8016 for (i
= 0; i
< (int) m_dataSize
; i
++)
8018 hex
= wxDecToHex(m_data
[i
]);
8019 wxCharBuffer buf
= hex
.ToAscii();
8021 stream
.Write((const char*) buf
, hex
.length());
8027 // Read data in hex from a stream
8028 bool wxRichTextImageBlock::ReadHex(wxInputStream
& stream
, int length
, int imageType
)
8030 int dataSize
= length
/2;
8035 wxString
str(wxT(" "));
8036 m_data
= new unsigned char[dataSize
];
8038 for (i
= 0; i
< dataSize
; i
++)
8040 str
[0] = stream
.GetC();
8041 str
[1] = stream
.GetC();
8043 m_data
[i
] = (unsigned char)wxHexToDec(str
);
8046 m_dataSize
= dataSize
;
8047 m_imageType
= imageType
;
8052 // Allocate and read from stream as a block of memory
8053 unsigned char* wxRichTextImageBlock::ReadBlock(wxInputStream
& stream
, size_t size
)
8055 unsigned char* block
= new unsigned char[size
];
8059 stream
.Read(block
, size
);
8064 unsigned char* wxRichTextImageBlock::ReadBlock(const wxString
& filename
, size_t size
)
8066 wxFileInputStream
stream(filename
);
8070 return ReadBlock(stream
, size
);
8073 // Write memory block to stream
8074 bool wxRichTextImageBlock::WriteBlock(wxOutputStream
& stream
, unsigned char* block
, size_t size
)
8076 stream
.Write((void*) block
, size
);
8077 return stream
.IsOk();
8081 // Write memory block to file
8082 bool wxRichTextImageBlock::WriteBlock(const wxString
& filename
, unsigned char* block
, size_t size
)
8084 wxFileOutputStream
outStream(filename
);
8085 if (!outStream
.Ok())
8088 return WriteBlock(outStream
, block
, size
);
8091 // Gets the extension for the block's type
8092 wxString
wxRichTextImageBlock::GetExtension() const
8094 wxImageHandler
* handler
= wxImage::FindHandler(GetImageType());
8096 return handler
->GetExtension();
8098 return wxEmptyString
;
8104 * The data object for a wxRichTextBuffer
8107 const wxChar
*wxRichTextBufferDataObject::ms_richTextBufferFormatId
= wxT("wxShape");
8109 wxRichTextBufferDataObject::wxRichTextBufferDataObject(wxRichTextBuffer
* richTextBuffer
)
8111 m_richTextBuffer
= richTextBuffer
;
8113 // this string should uniquely identify our format, but is otherwise
8115 m_formatRichTextBuffer
.SetId(GetRichTextBufferFormatId());
8117 SetFormat(m_formatRichTextBuffer
);
8120 wxRichTextBufferDataObject::~wxRichTextBufferDataObject()
8122 delete m_richTextBuffer
;
8125 // after a call to this function, the richTextBuffer is owned by the caller and it
8126 // is responsible for deleting it!
8127 wxRichTextBuffer
* wxRichTextBufferDataObject::GetRichTextBuffer()
8129 wxRichTextBuffer
* richTextBuffer
= m_richTextBuffer
;
8130 m_richTextBuffer
= NULL
;
8132 return richTextBuffer
;
8135 wxDataFormat
wxRichTextBufferDataObject::GetPreferredFormat(Direction
WXUNUSED(dir
)) const
8137 return m_formatRichTextBuffer
;
8140 size_t wxRichTextBufferDataObject::GetDataSize() const
8142 if (!m_richTextBuffer
)
8148 wxStringOutputStream
stream(& bufXML
);
8149 if (!m_richTextBuffer
->SaveFile(stream
, wxRICHTEXT_TYPE_XML
))
8151 wxLogError(wxT("Could not write the buffer to an XML stream.\nYou may have forgotten to add the XML file handler."));
8157 wxCharBuffer buffer
= bufXML
.mb_str(wxConvUTF8
);
8158 return strlen(buffer
) + 1;
8160 return bufXML
.Length()+1;
8164 bool wxRichTextBufferDataObject::GetDataHere(void *pBuf
) const
8166 if (!pBuf
|| !m_richTextBuffer
)
8172 wxStringOutputStream
stream(& bufXML
);
8173 if (!m_richTextBuffer
->SaveFile(stream
, wxRICHTEXT_TYPE_XML
))
8175 wxLogError(wxT("Could not write the buffer to an XML stream.\nYou may have forgotten to add the XML file handler."));
8181 wxCharBuffer buffer
= bufXML
.mb_str(wxConvUTF8
);
8182 size_t len
= strlen(buffer
);
8183 memcpy((char*) pBuf
, (const char*) buffer
, len
);
8184 ((char*) pBuf
)[len
] = 0;
8186 size_t len
= bufXML
.Length();
8187 memcpy((char*) pBuf
, (const char*) bufXML
.c_str(), len
);
8188 ((char*) pBuf
)[len
] = 0;
8194 bool wxRichTextBufferDataObject::SetData(size_t WXUNUSED(len
), const void *buf
)
8196 delete m_richTextBuffer
;
8197 m_richTextBuffer
= NULL
;
8199 wxString
bufXML((const char*) buf
, wxConvUTF8
);
8201 m_richTextBuffer
= new wxRichTextBuffer
;
8203 wxStringInputStream
stream(bufXML
);
8204 if (!m_richTextBuffer
->LoadFile(stream
, wxRICHTEXT_TYPE_XML
))
8206 wxLogError(wxT("Could not read the buffer from an XML stream.\nYou may have forgotten to add the XML file handler."));
8208 delete m_richTextBuffer
;
8209 m_richTextBuffer
= NULL
;