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 wxTextAttrEx
style(GetDefaultStyle());
915 wxTextAttrEx
style(GetAttributes());
917 // Apply default style. If the style has no attributes set,
918 // then the attributes will remain the 'basic style' (i.e. the
919 // layout box's style).
920 wxRichTextApplyStyle(style
, GetDefaultStyle());
922 wxRichTextParagraph
* para
= new wxRichTextParagraph(text
, this, & style
);
924 para
->SetAttributes(*paraStyle
);
931 return para
->GetRange();
934 /// Adds multiple paragraphs, based on newlines.
935 wxRichTextRange
wxRichTextParagraphLayoutBox::AddParagraphs(const wxString
& text
, wxTextAttrEx
* paraStyle
)
937 #if wxRICHTEXT_USE_DYNAMIC_STYLES
938 // Don't use the base style, just the default style, and the base style will
939 // be combined at display time
940 wxTextAttrEx
style(GetDefaultStyle());
942 wxTextAttrEx
style(GetAttributes());
944 //wxLogDebug("Initial style = %s", style.GetFont().GetFaceName());
945 //wxLogDebug("Initial size = %d", style.GetFont().GetPointSize());
947 // Apply default style. If the style has no attributes set,
948 // then the attributes will remain the 'basic style' (i.e. the
949 // layout box's style).
950 wxRichTextApplyStyle(style
, GetDefaultStyle());
952 //wxLogDebug("Style after applying default style = %s", style.GetFont().GetFaceName());
953 //wxLogDebug("Size after applying default style = %d", style.GetFont().GetPointSize());
956 wxRichTextParagraph
* firstPara
= NULL
;
957 wxRichTextParagraph
* lastPara
= NULL
;
959 wxRichTextRange
range(-1, -1);
962 size_t len
= text
.length();
964 wxRichTextParagraph
* para
= new wxRichTextParagraph(wxEmptyString
, this, & style
);
966 para
->SetAttributes(*paraStyle
);
976 if (ch
== wxT('\n') || ch
== wxT('\r'))
978 wxRichTextPlainText
* plainText
= (wxRichTextPlainText
*) para
->GetChildren().GetFirst()->GetData();
979 plainText
->SetText(line
);
981 para
= new wxRichTextParagraph(wxEmptyString
, this, & style
);
983 para
->SetAttributes(*paraStyle
);
991 line
= wxEmptyString
;
1001 wxRichTextPlainText
* plainText
= (wxRichTextPlainText
*) para
->GetChildren().GetFirst()->GetData();
1002 plainText
->SetText(line
);
1007 range.SetStart(firstPara->GetRange().GetStart());
1009 range.SetStart(lastPara->GetRange().GetStart());
1012 range.SetEnd(lastPara->GetRange().GetEnd());
1014 range.SetEnd(firstPara->GetRange().GetEnd());
1021 return wxRichTextRange(firstPara
->GetRange().GetStart(), lastPara
->GetRange().GetEnd());
1024 /// Convenience function to add an image
1025 wxRichTextRange
wxRichTextParagraphLayoutBox::AddImage(const wxImage
& image
, wxTextAttrEx
* paraStyle
)
1027 #if wxRICHTEXT_USE_DYNAMIC_STYLES
1028 // Don't use the base style, just the default style, and the base style will
1029 // be combined at display time
1030 wxTextAttrEx
style(GetDefaultStyle());
1032 wxTextAttrEx
style(GetAttributes());
1034 // Apply default style. If the style has no attributes set,
1035 // then the attributes will remain the 'basic style' (i.e. the
1036 // layout box's style).
1037 wxRichTextApplyStyle(style
, GetDefaultStyle());
1040 wxRichTextParagraph
* para
= new wxRichTextParagraph(this, & style
);
1042 para
->AppendChild(new wxRichTextImage(image
, this));
1045 para
->SetAttributes(*paraStyle
);
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
1057 /// TODO: if fragment is inserted inside styled fragment, must apply that style to
1058 /// to the data (if it has a default style, anyway).
1060 bool wxRichTextParagraphLayoutBox::InsertFragment(long position
, wxRichTextParagraphLayoutBox
& fragment
)
1064 // First, find the first paragraph whose starting position is within the range.
1065 wxRichTextParagraph
* para
= GetParagraphAtPosition(position
);
1068 wxRichTextObjectList::compatibility_iterator node
= m_children
.Find(para
);
1070 // Now split at this position, returning the object to insert the new
1071 // ones in front of.
1072 wxRichTextObject
* nextObject
= para
->SplitAt(position
);
1074 // Special case: partial paragraph, just one paragraph. Might be a small amount of
1075 // text, for example, so let's optimize.
1077 if (fragment
.GetPartialParagraph() && fragment
.GetChildren().GetCount() == 1)
1079 // Add the first para to this para...
1080 wxRichTextObjectList::compatibility_iterator firstParaNode
= fragment
.GetChildren().GetFirst();
1084 // Iterate through the fragment paragraph inserting the content into this paragraph.
1085 wxRichTextParagraph
* firstPara
= wxDynamicCast(firstParaNode
->GetData(), wxRichTextParagraph
);
1086 wxASSERT (firstPara
!= NULL
);
1088 wxRichTextObjectList::compatibility_iterator objectNode
= firstPara
->GetChildren().GetFirst();
1091 wxRichTextObject
* newObj
= objectNode
->GetData()->Clone();
1096 para
->AppendChild(newObj
);
1100 // Insert before nextObject
1101 para
->InsertChild(newObj
, nextObject
);
1104 objectNode
= objectNode
->GetNext();
1111 // Procedure for inserting a fragment consisting of a number of
1114 // 1. Remove and save the content that's after the insertion point, for adding
1115 // back once we've added the fragment.
1116 // 2. Add the content from the first fragment paragraph to the current
1118 // 3. Add remaining fragment paragraphs after the current paragraph.
1119 // 4. Add back the saved content from the first paragraph. If partialParagraph
1120 // is true, add it to the last paragraph added and not a new one.
1122 // 1. Remove and save objects after split point.
1123 wxList savedObjects
;
1125 para
->MoveToList(nextObject
, savedObjects
);
1127 // 2. Add the content from the 1st fragment paragraph.
1128 wxRichTextObjectList::compatibility_iterator firstParaNode
= fragment
.GetChildren().GetFirst();
1132 wxRichTextParagraph
* firstPara
= wxDynamicCast(firstParaNode
->GetData(), wxRichTextParagraph
);
1133 wxASSERT(firstPara
!= NULL
);
1135 wxRichTextObjectList::compatibility_iterator objectNode
= firstPara
->GetChildren().GetFirst();
1138 wxRichTextObject
* newObj
= objectNode
->GetData()->Clone();
1141 para
->AppendChild(newObj
);
1143 objectNode
= objectNode
->GetNext();
1146 // 3. Add remaining fragment paragraphs after the current paragraph.
1147 wxRichTextObjectList::compatibility_iterator nextParagraphNode
= node
->GetNext();
1148 wxRichTextObject
* nextParagraph
= NULL
;
1149 if (nextParagraphNode
)
1150 nextParagraph
= nextParagraphNode
->GetData();
1152 wxRichTextObjectList::compatibility_iterator i
= fragment
.GetChildren().GetFirst()->GetNext();
1153 wxRichTextParagraph
* finalPara
= para
;
1155 // If there was only one paragraph, we need to insert a new one.
1158 finalPara
= new wxRichTextParagraph
;
1160 // TODO: These attributes should come from the subsequent paragraph
1161 // when originally deleted, since the subsequent para takes on
1162 // the previous para's attributes.
1163 finalPara
->SetAttributes(firstPara
->GetAttributes());
1166 InsertChild(finalPara
, nextParagraph
);
1168 AppendChild(finalPara
);
1172 wxRichTextParagraph
* para
= wxDynamicCast(i
->GetData(), wxRichTextParagraph
);
1173 wxASSERT( para
!= NULL
);
1175 finalPara
= (wxRichTextParagraph
*) para
->Clone();
1178 InsertChild(finalPara
, nextParagraph
);
1180 AppendChild(finalPara
);
1185 // 4. Add back the remaining content.
1188 finalPara
->MoveFromList(savedObjects
);
1190 // Ensure there's at least one object
1191 if (finalPara
->GetChildCount() == 0)
1193 wxRichTextPlainText
* text
= new wxRichTextPlainText(wxEmptyString
);
1194 #if !wxRICHTEXT_USE_DYNAMIC_STYLES
1195 text
->SetAttributes(finalPara
->GetAttributes());
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);
1603 // Limit the attributes to be set to the content to only character attributes.
1604 wxRichTextAttr
characterAttributes(style
);
1605 characterAttributes
.SetFlags(characterAttributes
.GetFlags() & (wxTEXT_ATTR_CHARACTER
));
1607 // If we are associated with a control, make undoable; otherwise, apply immediately
1610 bool haveControl
= (GetRichTextCtrl() != NULL
);
1612 wxRichTextAction
* action
= NULL
;
1614 if (haveControl
&& withUndo
)
1616 action
= new wxRichTextAction(NULL
, _("Change Style"), wxRICHTEXT_CHANGE_STYLE
, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
1617 action
->SetRange(range
);
1618 action
->SetPosition(GetRichTextCtrl()->GetCaretPosition());
1621 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1624 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
1625 wxASSERT (para
!= NULL
);
1627 if (para
&& para
->GetChildCount() > 0)
1629 // Stop searching if we're beyond the range of interest
1630 if (para
->GetRange().GetStart() > range
.GetEnd())
1633 if (!para
->GetRange().IsOutside(range
))
1635 // We'll be using a copy of the paragraph to make style changes,
1636 // not updating the buffer directly.
1637 wxRichTextParagraph
* newPara
wxDUMMY_INITIALIZE(NULL
);
1639 if (haveControl
&& withUndo
)
1641 newPara
= new wxRichTextParagraph(*para
);
1642 action
->GetNewParagraphs().AppendChild(newPara
);
1644 // Also store the old ones for Undo
1645 action
->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para
));
1650 if (paragraphStyle
&& !charactersOnly
)
1654 // Only apply attributes that will make a difference to the combined
1655 // style as seen on the display
1656 wxRichTextAttr
combinedAttr(para
->GetCombinedAttributes());
1657 wxRichTextApplyStyle(newPara
->GetAttributes(), style
, & combinedAttr
);
1660 wxRichTextApplyStyle(newPara
->GetAttributes(), style
);
1663 #if wxRICHTEXT_USE_DYNAMIC_STYLES
1664 // If applying paragraph styles dynamically, don't change the text objects' attributes
1665 // since they will computed as needed. Only apply the character styling if it's _only_
1666 // character styling. This policy is subject to change and might be put under user control.
1668 // Hm. we might well be applying a mix of paragraph and character styles, in which
1669 // case we _do_ want to apply character styles regardless of what para styles are set.
1670 // But if we're applying a paragraph style, which has some character attributes, but
1671 // we only want the paragraphs to hold this character style, then we _don't_ want to
1672 // apply the character style. So we need to be able to choose.
1674 // if (!paragraphStyle && characterStyle && range.GetStart() != newPara->GetRange().GetEnd())
1675 if (!parasOnly
&& characterStyle
&& range
.GetStart() != newPara
->GetRange().GetEnd())
1677 if (characterStyle
&& range
.GetStart() != newPara
->GetRange().GetEnd())
1680 wxRichTextRange
childRange(range
);
1681 childRange
.LimitTo(newPara
->GetRange());
1683 // Find the starting position and if necessary split it so
1684 // we can start applying a different style.
1685 // TODO: check that the style actually changes or is different
1686 // from style outside of range
1687 wxRichTextObject
* firstObject
wxDUMMY_INITIALIZE(NULL
);
1688 wxRichTextObject
* lastObject
wxDUMMY_INITIALIZE(NULL
);
1690 if (childRange
.GetStart() == newPara
->GetRange().GetStart())
1691 firstObject
= newPara
->GetChildren().GetFirst()->GetData();
1693 firstObject
= newPara
->SplitAt(range
.GetStart());
1695 // Increment by 1 because we're apply the style one _after_ the split point
1696 long splitPoint
= childRange
.GetEnd();
1697 if (splitPoint
!= newPara
->GetRange().GetEnd())
1701 if (splitPoint
== newPara
->GetRange().GetEnd() || splitPoint
== (newPara
->GetRange().GetEnd() - 1))
1702 lastObject
= newPara
->GetChildren().GetLast()->GetData();
1704 // lastObject is set as a side-effect of splitting. It's
1705 // returned as the object before the new object.
1706 (void) newPara
->SplitAt(splitPoint
, & lastObject
);
1708 wxASSERT(firstObject
!= NULL
);
1709 wxASSERT(lastObject
!= NULL
);
1711 if (!firstObject
|| !lastObject
)
1714 wxRichTextObjectList::compatibility_iterator firstNode
= newPara
->GetChildren().Find(firstObject
);
1715 wxRichTextObjectList::compatibility_iterator lastNode
= newPara
->GetChildren().Find(lastObject
);
1717 wxASSERT(firstNode
);
1720 wxRichTextObjectList::compatibility_iterator node2
= firstNode
;
1724 wxRichTextObject
* child
= node2
->GetData();
1728 // Only apply attributes that will make a difference to the combined
1729 // style as seen on the display
1730 wxRichTextAttr
combinedAttr(newPara
->GetCombinedAttributes(child
->GetAttributes()));
1731 wxRichTextApplyStyle(child
->GetAttributes(), characterAttributes
, & combinedAttr
);
1734 wxRichTextApplyStyle(child
->GetAttributes(), characterAttributes
);
1736 if (node2
== lastNode
)
1739 node2
= node2
->GetNext();
1745 node
= node
->GetNext();
1748 // Do action, or delay it until end of batch.
1749 if (haveControl
&& withUndo
)
1750 GetRichTextCtrl()->GetBuffer().SubmitAction(action
);
1755 /// Set text attributes
1756 bool wxRichTextParagraphLayoutBox::SetStyle(const wxRichTextRange
& range
, const wxTextAttrEx
& style
, int flags
)
1758 wxRichTextAttr richStyle
= style
;
1759 return SetStyle(range
, richStyle
, flags
);
1762 /// Get the text attributes for this position.
1763 bool wxRichTextParagraphLayoutBox::GetStyle(long position
, wxTextAttrEx
& style
)
1765 return DoGetStyle(position
, style
, true);
1768 /// Get the text attributes for this position.
1769 bool wxRichTextParagraphLayoutBox::GetStyle(long position
, wxRichTextAttr
& style
)
1771 wxTextAttrEx
textAttrEx(style
);
1772 if (GetStyle(position
, textAttrEx
))
1781 /// Get the content (uncombined) attributes for this position.
1782 bool wxRichTextParagraphLayoutBox::GetUncombinedStyle(long position
, wxTextAttrEx
& style
)
1784 return DoGetStyle(position
, style
, false);
1787 bool wxRichTextParagraphLayoutBox::GetUncombinedStyle(long position
, wxRichTextAttr
& style
)
1789 wxTextAttrEx
textAttrEx(style
);
1790 if (GetUncombinedStyle(position
, textAttrEx
))
1799 /// Implementation helper for GetStyle. If combineStyles is true, combine base, paragraph and
1800 /// context attributes.
1801 bool wxRichTextParagraphLayoutBox::DoGetStyle(long position
, wxTextAttrEx
& style
, bool combineStyles
)
1803 wxRichTextObject
* obj
wxDUMMY_INITIALIZE(NULL
);
1805 if (style
.IsParagraphStyle())
1807 obj
= GetParagraphAtPosition(position
);
1810 #if wxRICHTEXT_USE_DYNAMIC_STYLES
1813 // Start with the base style
1814 style
= GetAttributes();
1816 // Apply the paragraph style
1817 wxRichTextApplyStyle(style
, obj
->GetAttributes());
1820 style
= obj
->GetAttributes();
1822 style
= obj
->GetAttributes();
1829 obj
= GetLeafObjectAtPosition(position
);
1832 #if wxRICHTEXT_USE_DYNAMIC_STYLES
1835 wxRichTextParagraph
* para
= wxDynamicCast(obj
->GetParent(), wxRichTextParagraph
);
1836 style
= para
? para
->GetCombinedAttributes(obj
->GetAttributes()) : obj
->GetAttributes();
1839 style
= obj
->GetAttributes();
1841 style
= obj
->GetAttributes();
1849 static bool wxHasStyle(long flags
, long style
)
1851 return (flags
& style
) != 0;
1854 /// Combines 'style' with 'currentStyle' for the purpose of summarising the attributes of a range of
1856 bool wxRichTextParagraphLayoutBox::CollectStyle(wxTextAttrEx
& currentStyle
, const wxTextAttrEx
& style
, long& multipleStyleAttributes
)
1858 if (style
.HasFont())
1860 if (style
.HasSize() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_FONT_SIZE
))
1862 if (currentStyle
.GetFont().Ok() && currentStyle
.HasSize())
1864 if (currentStyle
.GetFont().GetPointSize() != style
.GetFont().GetPointSize())
1866 // Clash of style - mark as such
1867 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_SIZE
;
1868 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_SIZE
);
1873 if (!currentStyle
.GetFont().Ok())
1874 wxSetFontPreservingStyles(currentStyle
, *wxNORMAL_FONT
);
1875 wxFont
font(currentStyle
.GetFont());
1876 font
.SetPointSize(style
.GetFont().GetPointSize());
1878 wxSetFontPreservingStyles(currentStyle
, font
);
1879 currentStyle
.SetFlags(currentStyle
.GetFlags() | wxTEXT_ATTR_FONT_SIZE
);
1883 if (style
.HasItalic() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_FONT_ITALIC
))
1885 if (currentStyle
.GetFont().Ok() && currentStyle
.HasItalic())
1887 if (currentStyle
.GetFont().GetStyle() != style
.GetFont().GetStyle())
1889 // Clash of style - mark as such
1890 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_ITALIC
;
1891 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_ITALIC
);
1896 if (!currentStyle
.GetFont().Ok())
1897 wxSetFontPreservingStyles(currentStyle
, *wxNORMAL_FONT
);
1898 wxFont
font(currentStyle
.GetFont());
1899 font
.SetStyle(style
.GetFont().GetStyle());
1900 wxSetFontPreservingStyles(currentStyle
, font
);
1901 currentStyle
.SetFlags(currentStyle
.GetFlags() | wxTEXT_ATTR_FONT_ITALIC
);
1905 if (style
.HasWeight() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_FONT_WEIGHT
))
1907 if (currentStyle
.GetFont().Ok() && currentStyle
.HasWeight())
1909 if (currentStyle
.GetFont().GetWeight() != style
.GetFont().GetWeight())
1911 // Clash of style - mark as such
1912 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_WEIGHT
;
1913 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_WEIGHT
);
1918 if (!currentStyle
.GetFont().Ok())
1919 wxSetFontPreservingStyles(currentStyle
, *wxNORMAL_FONT
);
1920 wxFont
font(currentStyle
.GetFont());
1921 font
.SetWeight(style
.GetFont().GetWeight());
1922 wxSetFontPreservingStyles(currentStyle
, font
);
1923 currentStyle
.SetFlags(currentStyle
.GetFlags() | wxTEXT_ATTR_FONT_WEIGHT
);
1927 if (style
.HasFaceName() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_FONT_FACE
))
1929 if (currentStyle
.GetFont().Ok() && currentStyle
.HasFaceName())
1931 wxString
faceName1(currentStyle
.GetFont().GetFaceName());
1932 wxString
faceName2(style
.GetFont().GetFaceName());
1934 if (faceName1
!= faceName2
)
1936 // Clash of style - mark as such
1937 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_FACE
;
1938 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_FACE
);
1943 if (!currentStyle
.GetFont().Ok())
1944 wxSetFontPreservingStyles(currentStyle
, *wxNORMAL_FONT
);
1945 wxFont
font(currentStyle
.GetFont());
1946 font
.SetFaceName(style
.GetFont().GetFaceName());
1947 wxSetFontPreservingStyles(currentStyle
, font
);
1948 currentStyle
.SetFlags(currentStyle
.GetFlags() | wxTEXT_ATTR_FONT_FACE
);
1952 if (style
.HasUnderlined() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_FONT_UNDERLINE
))
1954 if (currentStyle
.GetFont().Ok() && currentStyle
.HasUnderlined())
1956 if (currentStyle
.GetFont().GetUnderlined() != style
.GetFont().GetUnderlined())
1958 // Clash of style - mark as such
1959 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_UNDERLINE
;
1960 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_UNDERLINE
);
1965 if (!currentStyle
.GetFont().Ok())
1966 wxSetFontPreservingStyles(currentStyle
, *wxNORMAL_FONT
);
1967 wxFont
font(currentStyle
.GetFont());
1968 font
.SetUnderlined(style
.GetFont().GetUnderlined());
1969 wxSetFontPreservingStyles(currentStyle
, font
);
1970 currentStyle
.SetFlags(currentStyle
.GetFlags() | wxTEXT_ATTR_FONT_UNDERLINE
);
1975 if (style
.HasTextColour() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_TEXT_COLOUR
))
1977 if (currentStyle
.HasTextColour())
1979 if (currentStyle
.GetTextColour() != style
.GetTextColour())
1981 // Clash of style - mark as such
1982 multipleStyleAttributes
|= wxTEXT_ATTR_TEXT_COLOUR
;
1983 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_TEXT_COLOUR
);
1987 currentStyle
.SetTextColour(style
.GetTextColour());
1990 if (style
.HasBackgroundColour() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_BACKGROUND_COLOUR
))
1992 if (currentStyle
.HasBackgroundColour())
1994 if (currentStyle
.GetBackgroundColour() != style
.GetBackgroundColour())
1996 // Clash of style - mark as such
1997 multipleStyleAttributes
|= wxTEXT_ATTR_BACKGROUND_COLOUR
;
1998 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BACKGROUND_COLOUR
);
2002 currentStyle
.SetBackgroundColour(style
.GetBackgroundColour());
2005 if (style
.HasAlignment() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_ALIGNMENT
))
2007 if (currentStyle
.HasAlignment())
2009 if (currentStyle
.GetAlignment() != style
.GetAlignment())
2011 // Clash of style - mark as such
2012 multipleStyleAttributes
|= wxTEXT_ATTR_ALIGNMENT
;
2013 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_ALIGNMENT
);
2017 currentStyle
.SetAlignment(style
.GetAlignment());
2020 if (style
.HasTabs() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_TABS
))
2022 if (currentStyle
.HasTabs())
2024 if (!wxRichTextTabsEq(currentStyle
.GetTabs(), style
.GetTabs()))
2026 // Clash of style - mark as such
2027 multipleStyleAttributes
|= wxTEXT_ATTR_TABS
;
2028 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_TABS
);
2032 currentStyle
.SetTabs(style
.GetTabs());
2035 if (style
.HasLeftIndent() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_LEFT_INDENT
))
2037 if (currentStyle
.HasLeftIndent())
2039 if (currentStyle
.GetLeftIndent() != style
.GetLeftIndent() || currentStyle
.GetLeftSubIndent() != style
.GetLeftSubIndent())
2041 // Clash of style - mark as such
2042 multipleStyleAttributes
|= wxTEXT_ATTR_LEFT_INDENT
;
2043 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_LEFT_INDENT
);
2047 currentStyle
.SetLeftIndent(style
.GetLeftIndent(), style
.GetLeftSubIndent());
2050 if (style
.HasRightIndent() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_RIGHT_INDENT
))
2052 if (currentStyle
.HasRightIndent())
2054 if (currentStyle
.GetRightIndent() != style
.GetRightIndent())
2056 // Clash of style - mark as such
2057 multipleStyleAttributes
|= wxTEXT_ATTR_RIGHT_INDENT
;
2058 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_RIGHT_INDENT
);
2062 currentStyle
.SetRightIndent(style
.GetRightIndent());
2065 if (style
.HasParagraphSpacingAfter() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_PARA_SPACING_AFTER
))
2067 if (currentStyle
.HasParagraphSpacingAfter())
2069 if (currentStyle
.HasParagraphSpacingAfter() != style
.HasParagraphSpacingAfter())
2071 // Clash of style - mark as such
2072 multipleStyleAttributes
|= wxTEXT_ATTR_PARA_SPACING_AFTER
;
2073 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_PARA_SPACING_AFTER
);
2077 currentStyle
.SetParagraphSpacingAfter(style
.GetParagraphSpacingAfter());
2080 if (style
.HasParagraphSpacingBefore() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_PARA_SPACING_BEFORE
))
2082 if (currentStyle
.HasParagraphSpacingBefore())
2084 if (currentStyle
.HasParagraphSpacingBefore() != style
.HasParagraphSpacingBefore())
2086 // Clash of style - mark as such
2087 multipleStyleAttributes
|= wxTEXT_ATTR_PARA_SPACING_BEFORE
;
2088 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_PARA_SPACING_BEFORE
);
2092 currentStyle
.SetParagraphSpacingBefore(style
.GetParagraphSpacingBefore());
2095 if (style
.HasLineSpacing() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_LINE_SPACING
))
2097 if (currentStyle
.HasLineSpacing())
2099 if (currentStyle
.HasLineSpacing() != style
.HasLineSpacing())
2101 // Clash of style - mark as such
2102 multipleStyleAttributes
|= wxTEXT_ATTR_LINE_SPACING
;
2103 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_LINE_SPACING
);
2107 currentStyle
.SetLineSpacing(style
.GetLineSpacing());
2110 if (style
.HasCharacterStyleName() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_CHARACTER_STYLE_NAME
))
2112 if (currentStyle
.HasCharacterStyleName())
2114 if (currentStyle
.HasCharacterStyleName() != style
.HasCharacterStyleName())
2116 // Clash of style - mark as such
2117 multipleStyleAttributes
|= wxTEXT_ATTR_CHARACTER_STYLE_NAME
;
2118 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_CHARACTER_STYLE_NAME
);
2122 currentStyle
.SetCharacterStyleName(style
.GetCharacterStyleName());
2125 if (style
.HasParagraphStyleName() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
))
2127 if (currentStyle
.HasParagraphStyleName())
2129 if (currentStyle
.HasParagraphStyleName() != style
.HasParagraphStyleName())
2131 // Clash of style - mark as such
2132 multipleStyleAttributes
|= wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
;
2133 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
);
2137 currentStyle
.SetParagraphStyleName(style
.GetParagraphStyleName());
2140 if (style
.HasListStyleName() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_LIST_STYLE_NAME
))
2142 if (currentStyle
.HasListStyleName())
2144 if (currentStyle
.HasListStyleName() != style
.HasListStyleName())
2146 // Clash of style - mark as such
2147 multipleStyleAttributes
|= wxTEXT_ATTR_LIST_STYLE_NAME
;
2148 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_LIST_STYLE_NAME
);
2152 currentStyle
.SetListStyleName(style
.GetListStyleName());
2155 if (style
.HasBulletStyle() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_BULLET_STYLE
))
2157 if (currentStyle
.HasBulletStyle())
2159 if (currentStyle
.HasBulletStyle() != style
.HasBulletStyle())
2161 // Clash of style - mark as such
2162 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_STYLE
;
2163 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_STYLE
);
2167 currentStyle
.SetBulletStyle(style
.GetBulletStyle());
2170 if (style
.HasBulletNumber() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_BULLET_NUMBER
))
2172 if (currentStyle
.HasBulletNumber())
2174 if (currentStyle
.HasBulletNumber() != style
.HasBulletNumber())
2176 // Clash of style - mark as such
2177 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_NUMBER
;
2178 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_NUMBER
);
2182 currentStyle
.SetBulletNumber(style
.GetBulletNumber());
2185 if (style
.HasBulletText() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_BULLET_TEXT
))
2187 if (currentStyle
.HasBulletText())
2189 if (currentStyle
.HasBulletText() != style
.HasBulletText())
2191 // Clash of style - mark as such
2192 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_TEXT
;
2193 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_TEXT
);
2198 currentStyle
.SetBulletText(style
.GetBulletText());
2199 currentStyle
.SetBulletFont(style
.GetBulletFont());
2203 if (style
.HasBulletName() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_BULLET_NAME
))
2205 if (currentStyle
.HasBulletName())
2207 if (currentStyle
.HasBulletName() != style
.HasBulletName())
2209 // Clash of style - mark as such
2210 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_NAME
;
2211 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_NAME
);
2216 currentStyle
.SetBulletName(style
.GetBulletName());
2220 if (style
.HasURL() && !wxHasStyle(multipleStyleAttributes
, wxTEXT_ATTR_URL
))
2222 if (currentStyle
.HasURL())
2224 if (currentStyle
.HasURL() != style
.HasURL())
2226 // Clash of style - mark as such
2227 multipleStyleAttributes
|= wxTEXT_ATTR_URL
;
2228 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_URL
);
2233 currentStyle
.SetURL(style
.GetURL());
2240 /// Get the combined style for a range - if any attribute is different within the range,
2241 /// that attribute is not present within the flags.
2242 /// *** Note that this is not recursive, and so assumes that content inside a paragraph is not itself
2244 bool wxRichTextParagraphLayoutBox::GetStyleForRange(const wxRichTextRange
& range
, wxTextAttrEx
& style
)
2246 style
= wxTextAttrEx();
2248 // The attributes that aren't valid because of multiple styles within the range
2249 long multipleStyleAttributes
= 0;
2251 wxRichTextObjectList::compatibility_iterator node
= GetChildren().GetFirst();
2254 wxRichTextParagraph
* para
= (wxRichTextParagraph
*) node
->GetData();
2255 if (!(para
->GetRange().GetStart() > range
.GetEnd() || para
->GetRange().GetEnd() < range
.GetStart()))
2257 if (para
->GetChildren().GetCount() == 0)
2259 wxTextAttrEx paraStyle
= para
->GetCombinedAttributes();
2261 CollectStyle(style
, paraStyle
, multipleStyleAttributes
);
2265 wxRichTextRange
paraRange(para
->GetRange());
2266 paraRange
.LimitTo(range
);
2268 // First collect paragraph attributes only
2269 wxTextAttrEx paraStyle
= para
->GetCombinedAttributes();
2270 paraStyle
.SetFlags(paraStyle
.GetFlags() & wxTEXT_ATTR_PARAGRAPH
);
2271 CollectStyle(style
, paraStyle
, multipleStyleAttributes
);
2273 wxRichTextObjectList::compatibility_iterator childNode
= para
->GetChildren().GetFirst();
2277 wxRichTextObject
* child
= childNode
->GetData();
2278 if (!(child
->GetRange().GetStart() > range
.GetEnd() || child
->GetRange().GetEnd() < range
.GetStart()))
2280 wxTextAttrEx childStyle
= para
->GetCombinedAttributes(child
->GetAttributes());
2282 // Now collect character attributes only
2283 childStyle
.SetFlags(childStyle
.GetFlags() & wxTEXT_ATTR_CHARACTER
);
2285 CollectStyle(style
, childStyle
, multipleStyleAttributes
);
2288 childNode
= childNode
->GetNext();
2292 node
= node
->GetNext();
2297 /// Set default style
2298 bool wxRichTextParagraphLayoutBox::SetDefaultStyle(const wxTextAttrEx
& style
)
2300 // I don't think the default style should be combined with the previous
2302 m_defaultAttributes
= style
;
2305 // keep the old attributes if the new style doesn't specify them unless the
2306 // new style is empty - then reset m_defaultStyle (as there is no other way
2308 if ( style
.IsDefault() )
2309 m_defaultAttributes
= style
;
2311 m_defaultAttributes
= wxTextAttrEx::CombineEx(style
, m_defaultAttributes
, NULL
);
2316 /// Test if this whole range has character attributes of the specified kind. If any
2317 /// of the attributes are different within the range, the test fails. You
2318 /// can use this to implement, for example, bold button updating. style must have
2319 /// flags indicating which attributes are of interest.
2320 bool wxRichTextParagraphLayoutBox::HasCharacterAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
2323 int matchingCount
= 0;
2325 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2328 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2329 wxASSERT (para
!= NULL
);
2333 // Stop searching if we're beyond the range of interest
2334 if (para
->GetRange().GetStart() > range
.GetEnd())
2335 return foundCount
== matchingCount
;
2337 if (!para
->GetRange().IsOutside(range
))
2339 wxRichTextObjectList::compatibility_iterator node2
= para
->GetChildren().GetFirst();
2343 wxRichTextObject
* child
= node2
->GetData();
2344 if (!child
->GetRange().IsOutside(range
) && child
->IsKindOf(CLASSINFO(wxRichTextPlainText
)))
2347 #if wxRICHTEXT_USE_DYNAMIC_STYLES
2348 wxTextAttrEx textAttr
= para
->GetCombinedAttributes(child
->GetAttributes());
2350 const wxTextAttrEx
& textAttr
= child
->GetAttributes();
2352 if (wxTextAttrEqPartial(textAttr
, style
, style
.GetFlags()))
2356 node2
= node2
->GetNext();
2361 node
= node
->GetNext();
2364 return foundCount
== matchingCount
;
2367 bool wxRichTextParagraphLayoutBox::HasCharacterAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const
2369 wxRichTextAttr richStyle
= style
;
2370 return HasCharacterAttributes(range
, richStyle
);
2373 /// Test if this whole range has paragraph attributes of the specified kind. If any
2374 /// of the attributes are different within the range, the test fails. You
2375 /// can use this to implement, for example, centering button updating. style must have
2376 /// flags indicating which attributes are of interest.
2377 bool wxRichTextParagraphLayoutBox::HasParagraphAttributes(const wxRichTextRange
& range
, const wxRichTextAttr
& style
) const
2380 int matchingCount
= 0;
2382 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2385 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2386 wxASSERT (para
!= NULL
);
2390 // Stop searching if we're beyond the range of interest
2391 if (para
->GetRange().GetStart() > range
.GetEnd())
2392 return foundCount
== matchingCount
;
2394 if (!para
->GetRange().IsOutside(range
))
2396 #if wxRICHTEXT_USE_DYNAMIC_STYLES
2397 wxTextAttrEx textAttr
= GetAttributes();
2398 // Apply the paragraph style
2399 wxRichTextApplyStyle(textAttr
, para
->GetAttributes());
2402 const wxTextAttrEx
& textAttr
= para
->GetAttributes();
2405 if (wxTextAttrEqPartial(textAttr
, style
, style
.GetFlags()))
2410 node
= node
->GetNext();
2412 return foundCount
== matchingCount
;
2415 bool wxRichTextParagraphLayoutBox::HasParagraphAttributes(const wxRichTextRange
& range
, const wxTextAttrEx
& style
) const
2417 wxRichTextAttr richStyle
= style
;
2418 return HasParagraphAttributes(range
, richStyle
);
2421 void wxRichTextParagraphLayoutBox::Clear()
2426 void wxRichTextParagraphLayoutBox::Reset()
2430 AddParagraph(wxEmptyString
);
2432 Invalidate(wxRICHTEXT_ALL
);
2435 /// Invalidate the buffer. With no argument, invalidates whole buffer.
2436 void wxRichTextParagraphLayoutBox::Invalidate(const wxRichTextRange
& invalidRange
)
2440 if (invalidRange
== wxRICHTEXT_ALL
)
2442 m_invalidRange
= wxRICHTEXT_ALL
;
2446 // Already invalidating everything
2447 if (m_invalidRange
== wxRICHTEXT_ALL
)
2450 if ((invalidRange
.GetStart() < m_invalidRange
.GetStart()) || m_invalidRange
.GetStart() == -1)
2451 m_invalidRange
.SetStart(invalidRange
.GetStart());
2452 if (invalidRange
.GetEnd() > m_invalidRange
.GetEnd())
2453 m_invalidRange
.SetEnd(invalidRange
.GetEnd());
2456 /// Get invalid range, rounding to entire paragraphs if argument is true.
2457 wxRichTextRange
wxRichTextParagraphLayoutBox::GetInvalidRange(bool wholeParagraphs
) const
2459 if (m_invalidRange
== wxRICHTEXT_ALL
|| m_invalidRange
== wxRICHTEXT_NONE
)
2460 return m_invalidRange
;
2462 wxRichTextRange range
= m_invalidRange
;
2464 if (wholeParagraphs
)
2466 wxRichTextParagraph
* para1
= GetParagraphAtPosition(range
.GetStart());
2467 wxRichTextParagraph
* para2
= GetParagraphAtPosition(range
.GetEnd());
2469 range
.SetStart(para1
->GetRange().GetStart());
2471 range
.SetEnd(para2
->GetRange().GetEnd());
2476 /// Apply the style sheet to the buffer, for example if the styles have changed.
2477 bool wxRichTextParagraphLayoutBox::ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
)
2479 wxASSERT(styleSheet
!= NULL
);
2485 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2488 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2489 wxASSERT (para
!= NULL
);
2493 // Combine paragraph and list styles. If there is a list style in the original attributes,
2494 // the current indentation overrides anything else and is used to find the item indentation.
2495 // Also, for applying paragraph styles, consider having 2 modes: (1) we merge with what we have,
2496 // thereby taking into account all user changes, (2) reset the style completely (except for indentation/list
2497 // exception as above).
2498 // Problem: when changing from one list style to another, there's a danger that the level info will get lost.
2499 // So when changing a list style interactively, could retrieve level based on current style, then
2500 // set appropriate indent and apply new style.
2502 if (!para
->GetAttributes().GetParagraphStyleName().IsEmpty() && !para
->GetAttributes().GetListStyleName().IsEmpty())
2504 int currentIndent
= para
->GetAttributes().GetLeftIndent();
2506 wxRichTextParagraphStyleDefinition
* paraDef
= styleSheet
->FindParagraphStyle(para
->GetAttributes().GetParagraphStyleName());
2507 wxRichTextListStyleDefinition
* listDef
= styleSheet
->FindListStyle(para
->GetAttributes().GetListStyleName());
2508 if (paraDef
&& !listDef
)
2510 para
->GetAttributes() = paraDef
->GetStyle();
2513 else if (listDef
&& !paraDef
)
2515 // Set overall style defined for the list style definition
2516 para
->GetAttributes() = listDef
->GetStyle();
2518 // Apply the style for this level
2519 wxRichTextApplyStyle(para
->GetAttributes(), * listDef
->GetLevelAttributes(listDef
->FindLevelForIndent(currentIndent
)));
2522 else if (listDef
&& paraDef
)
2524 // Combines overall list style, style for level, and paragraph style
2525 para
->GetAttributes() = listDef
->CombineWithParagraphStyle(currentIndent
, paraDef
->GetStyle());
2529 else if (para
->GetAttributes().GetParagraphStyleName().IsEmpty() && !para
->GetAttributes().GetListStyleName().IsEmpty())
2531 int currentIndent
= para
->GetAttributes().GetLeftIndent();
2533 wxRichTextListStyleDefinition
* listDef
= styleSheet
->FindListStyle(para
->GetAttributes().GetListStyleName());
2535 // Overall list definition style
2536 para
->GetAttributes() = listDef
->GetStyle();
2538 // Style for this level
2539 wxRichTextApplyStyle(para
->GetAttributes(), * listDef
->GetLevelAttributes(listDef
->FindLevelForIndent(currentIndent
)));
2543 else if (!para
->GetAttributes().GetParagraphStyleName().IsEmpty() && para
->GetAttributes().GetListStyleName().IsEmpty())
2545 wxRichTextParagraphStyleDefinition
* def
= styleSheet
->FindParagraphStyle(para
->GetAttributes().GetParagraphStyleName());
2548 para
->GetAttributes() = def
->GetStyle();
2554 node
= node
->GetNext();
2556 return foundCount
!= 0;
2560 bool wxRichTextParagraphLayoutBox::SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
2562 bool withUndo
= ((flags
& wxRICHTEXT_SETSTYLE_WITH_UNDO
) != 0);
2563 // bool applyMinimal = ((flags & wxRICHTEXT_SETSTYLE_OPTIMIZE) != 0);
2564 bool specifyLevel
= ((flags
& wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL
) != 0);
2565 bool renumber
= ((flags
& wxRICHTEXT_SETSTYLE_RENUMBER
) != 0);
2567 // Current number, if numbering
2570 wxASSERT (!specifyLevel
|| (specifyLevel
&& (specifiedLevel
>= 0)));
2572 // If we are associated with a control, make undoable; otherwise, apply immediately
2575 bool haveControl
= (GetRichTextCtrl() != NULL
);
2577 wxRichTextAction
* action
= NULL
;
2579 if (haveControl
&& withUndo
)
2581 action
= new wxRichTextAction(NULL
, _("Change List Style"), wxRICHTEXT_CHANGE_STYLE
, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
2582 action
->SetRange(range
);
2583 action
->SetPosition(GetRichTextCtrl()->GetCaretPosition());
2586 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2589 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2590 wxASSERT (para
!= NULL
);
2592 if (para
&& para
->GetChildCount() > 0)
2594 // Stop searching if we're beyond the range of interest
2595 if (para
->GetRange().GetStart() > range
.GetEnd())
2598 if (!para
->GetRange().IsOutside(range
))
2600 // We'll be using a copy of the paragraph to make style changes,
2601 // not updating the buffer directly.
2602 wxRichTextParagraph
* newPara
wxDUMMY_INITIALIZE(NULL
);
2604 if (haveControl
&& withUndo
)
2606 newPara
= new wxRichTextParagraph(*para
);
2607 action
->GetNewParagraphs().AppendChild(newPara
);
2609 // Also store the old ones for Undo
2610 action
->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para
));
2617 int thisIndent
= newPara
->GetAttributes().GetLeftIndent();
2618 int thisLevel
= specifyLevel
? specifiedLevel
: def
->FindLevelForIndent(thisIndent
);
2620 // How is numbering going to work?
2621 // If we are renumbering, or numbering for the first time, we need to keep
2622 // track of the number for each level. But we might be simply applying a different
2624 // In Word, applying a style to several paragraphs, even if at different levels,
2625 // reverts the level back to the same one. So we could do the same here.
2626 // Renumbering will need to be done when we promote/demote a paragraph.
2628 // Apply the overall list style, and item style for this level
2629 wxTextAttrEx
listStyle(def
->GetCombinedStyleForLevel(thisLevel
));
2630 wxRichTextApplyStyle(newPara
->GetAttributes(), listStyle
);
2632 // Now we need to do numbering
2635 newPara
->GetAttributes().SetBulletNumber(n
);
2640 else if (!newPara
->GetAttributes().GetListStyleName().IsEmpty())
2642 // if def is NULL, remove list style, applying any associated paragraph style
2643 // to restore the attributes
2645 newPara
->GetAttributes().SetListStyleName(wxEmptyString
);
2646 newPara
->GetAttributes().SetLeftIndent(0, 0);
2647 newPara
->GetAttributes().SetBulletText(wxEmptyString
);
2649 // Eliminate the main list-related attributes
2650 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
);
2652 wxRichTextStyleSheet
* styleSheet
= GetStyleSheet();
2653 if (styleSheet
&& !newPara
->GetAttributes().GetParagraphStyleName().IsEmpty())
2655 wxRichTextParagraphStyleDefinition
* def
= styleSheet
->FindParagraphStyle(newPara
->GetAttributes().GetParagraphStyleName());
2658 newPara
->GetAttributes() = def
->GetStyle();
2665 node
= node
->GetNext();
2668 // Do action, or delay it until end of batch.
2669 if (haveControl
&& withUndo
)
2670 GetRichTextCtrl()->GetBuffer().SubmitAction(action
);
2675 bool wxRichTextParagraphLayoutBox::SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
2677 if (GetStyleSheet())
2679 wxRichTextListStyleDefinition
* def
= GetStyleSheet()->FindListStyle(defName
);
2681 return SetListStyle(range
, def
, flags
, startFrom
, specifiedLevel
);
2686 /// Clear list for given range
2687 bool wxRichTextParagraphLayoutBox::ClearListStyle(const wxRichTextRange
& range
, int flags
)
2689 return SetListStyle(range
, NULL
, flags
);
2692 /// Number/renumber any list elements in the given range
2693 bool wxRichTextParagraphLayoutBox::NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
2695 return DoNumberList(range
, range
, 0, def
, flags
, startFrom
, specifiedLevel
);
2698 /// Number/renumber any list elements in the given range. Also do promotion or demotion of items, if specified
2699 bool wxRichTextParagraphLayoutBox::DoNumberList(const wxRichTextRange
& range
, const wxRichTextRange
& promotionRange
, int promoteBy
,
2700 wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
2702 bool withUndo
= ((flags
& wxRICHTEXT_SETSTYLE_WITH_UNDO
) != 0);
2703 // bool applyMinimal = ((flags & wxRICHTEXT_SETSTYLE_OPTIMIZE) != 0);
2704 bool specifyLevel
= ((flags
& wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL
) != 0);
2706 bool renumber
= ((flags
& wxRICHTEXT_SETSTYLE_RENUMBER
) != 0);
2708 // Max number of levels
2709 const int maxLevels
= 10;
2711 // The level we're looking at now
2712 int currentLevel
= -1;
2714 // The item number for each level
2715 int levels
[maxLevels
];
2718 // Reset all numbering
2719 for (i
= 0; i
< maxLevels
; i
++)
2721 if (startFrom
!= -1)
2722 levels
[i
] = startFrom
-1;
2723 else if (renumber
) // start again
2726 levels
[i
] = -1; // start from the number we found, if any
2729 wxASSERT(!specifyLevel
|| (specifyLevel
&& (specifiedLevel
>= 0)));
2731 // If we are associated with a control, make undoable; otherwise, apply immediately
2734 bool haveControl
= (GetRichTextCtrl() != NULL
);
2736 wxRichTextAction
* action
= NULL
;
2738 if (haveControl
&& withUndo
)
2740 action
= new wxRichTextAction(NULL
, _("Renumber List"), wxRICHTEXT_CHANGE_STYLE
, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
2741 action
->SetRange(range
);
2742 action
->SetPosition(GetRichTextCtrl()->GetCaretPosition());
2745 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2748 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2749 wxASSERT (para
!= NULL
);
2751 if (para
&& para
->GetChildCount() > 0)
2753 // Stop searching if we're beyond the range of interest
2754 if (para
->GetRange().GetStart() > range
.GetEnd())
2757 if (!para
->GetRange().IsOutside(range
))
2759 // We'll be using a copy of the paragraph to make style changes,
2760 // not updating the buffer directly.
2761 wxRichTextParagraph
* newPara
wxDUMMY_INITIALIZE(NULL
);
2763 if (haveControl
&& withUndo
)
2765 newPara
= new wxRichTextParagraph(*para
);
2766 action
->GetNewParagraphs().AppendChild(newPara
);
2768 // Also store the old ones for Undo
2769 action
->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para
));
2774 wxRichTextListStyleDefinition
* defToUse
= def
;
2777 wxRichTextStyleSheet
* sheet
= GetStyleSheet();
2779 if (sheet
&& !newPara
->GetAttributes().GetListStyleName().IsEmpty())
2780 defToUse
= sheet
->FindListStyle(newPara
->GetAttributes().GetListStyleName());
2785 int thisIndent
= newPara
->GetAttributes().GetLeftIndent();
2786 int thisLevel
= defToUse
->FindLevelForIndent(thisIndent
);
2788 // If we've specified a level to apply to all, change the level.
2789 if (specifiedLevel
!= -1)
2790 thisLevel
= specifiedLevel
;
2792 // Do promotion if specified
2793 if ((promoteBy
!= 0) && !para
->GetRange().IsOutside(promotionRange
))
2795 thisLevel
= thisLevel
- promoteBy
;
2802 // Apply the overall list style, and item style for this level
2803 wxTextAttrEx
listStyle(defToUse
->GetCombinedStyleForLevel(thisLevel
));
2804 wxRichTextApplyStyle(newPara
->GetAttributes(), listStyle
);
2806 // OK, we've (re)applied the style, now let's get the numbering right.
2808 if (currentLevel
== -1)
2809 currentLevel
= thisLevel
;
2811 // Same level as before, do nothing except increment level's number afterwards
2812 if (currentLevel
== thisLevel
)
2815 // A deeper level: start renumbering all levels after current level
2816 else if (thisLevel
> currentLevel
)
2818 for (i
= currentLevel
+1; i
<= thisLevel
; i
++)
2822 currentLevel
= thisLevel
;
2824 else if (thisLevel
< currentLevel
)
2826 currentLevel
= thisLevel
;
2829 // Use the current numbering if -1 and we have a bullet number already
2830 if (levels
[currentLevel
] == -1)
2832 if (newPara
->GetAttributes().HasBulletNumber())
2833 levels
[currentLevel
] = newPara
->GetAttributes().GetBulletNumber();
2835 levels
[currentLevel
] = 1;
2839 levels
[currentLevel
] ++;
2842 newPara
->GetAttributes().SetBulletNumber(levels
[currentLevel
]);
2844 // Create the bullet text if an outline list
2845 if (listStyle
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
)
2848 for (i
= 0; i
<= currentLevel
; i
++)
2850 if (!text
.IsEmpty())
2852 text
+= wxString::Format(wxT("%d"), levels
[i
]);
2854 newPara
->GetAttributes().SetBulletText(text
);
2860 node
= node
->GetNext();
2863 // Do action, or delay it until end of batch.
2864 if (haveControl
&& withUndo
)
2865 GetRichTextCtrl()->GetBuffer().SubmitAction(action
);
2870 bool wxRichTextParagraphLayoutBox::NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
2872 if (GetStyleSheet())
2874 wxRichTextListStyleDefinition
* def
= NULL
;
2875 if (!defName
.IsEmpty())
2876 def
= GetStyleSheet()->FindListStyle(defName
);
2877 return NumberList(range
, def
, flags
, startFrom
, specifiedLevel
);
2882 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
2883 bool wxRichTextParagraphLayoutBox::PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int specifiedLevel
)
2886 // One strategy is to first work out the range within which renumbering must occur. Then could pass these two ranges
2887 // to NumberList with a flag indicating promotion is required within one of the ranges.
2888 // Find first and last paragraphs in range. Then for first, calculate new indentation and look back until we find
2889 // a paragraph that either has no list style, or has one that is different or whose indentation is less.
2890 // We start renumbering from the para after that different para we found. We specify that the numbering of that
2891 // list position will start from 1.
2892 // Similarly, we look after the last para in the promote range for an indentation that is less (or no list style).
2893 // We can end the renumbering at this point.
2895 // For now, only renumber within the promotion range.
2897 return DoNumberList(range
, range
, promoteBy
, def
, flags
, 1, specifiedLevel
);
2900 bool wxRichTextParagraphLayoutBox::PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int specifiedLevel
)
2902 if (GetStyleSheet())
2904 wxRichTextListStyleDefinition
* def
= NULL
;
2905 if (!defName
.IsEmpty())
2906 def
= GetStyleSheet()->FindListStyle(defName
);
2907 return PromoteList(promoteBy
, range
, def
, flags
, specifiedLevel
);
2912 /// Fills in the attributes for numbering a paragraph after previousParagraph. It also finds the
2913 /// position of the paragraph that it had to start looking from.
2914 bool wxRichTextParagraphLayoutBox::FindNextParagraphNumber(wxRichTextParagraph
* previousParagraph
, wxRichTextAttr
& attr
) const
2917 wxRichTextObjectList::compatibility_iterator node
= m_children
.Find(previousParagraph
);
2923 if (!previousParagraph
->GetAttributes().HasFlag(wxTEXT_ATTR_BULLET_STYLE
) || previousParagraph
->GetAttributes().GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_NONE
)
2926 wxRichTextStyleSheet
* sheet
= GetStyleSheet();
2927 if (sheet
&& !previousParagraph
->GetAttributes().GetListStyleName().IsEmpty())
2929 wxRichTextListStyleDefinition
* def
= sheet
->FindListStyle(previousParagraph
->GetAttributes().GetListStyleName());
2932 // int thisIndent = previousParagraph->GetAttributes().GetLeftIndent();
2933 // int thisLevel = def->FindLevelForIndent(thisIndent);
2935 bool isOutline
= (previousParagraph
->GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
) != 0;
2937 attr
.SetFlags(previousParagraph
->GetAttributes().GetFlags() & (wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_BULLET_NUMBER
|wxTEXT_ATTR_BULLET_TEXT
|wxTEXT_ATTR_BULLET_NAME
));
2938 if (previousParagraph
->GetAttributes().HasBulletName())
2939 attr
.SetBulletName(previousParagraph
->GetAttributes().GetBulletName());
2940 attr
.SetBulletStyle(previousParagraph
->GetAttributes().GetBulletStyle());
2941 attr
.SetListStyleName(previousParagraph
->GetAttributes().GetListStyleName());
2943 int nextNumber
= previousParagraph
->GetAttributes().GetBulletNumber() + 1;
2944 attr
.SetBulletNumber(nextNumber
);
2948 wxString text
= previousParagraph
->GetAttributes().GetBulletText();
2949 if (!text
.IsEmpty())
2951 int pos
= text
.Find(wxT('.'), true);
2952 if (pos
!= wxNOT_FOUND
)
2954 text
= text
.Mid(0, text
.Length() - pos
- 1);
2957 text
= wxEmptyString
;
2958 if (!text
.IsEmpty())
2960 text
+= wxString::Format(wxT("%d"), nextNumber
);
2961 attr
.SetBulletText(text
);
2975 * wxRichTextParagraph
2976 * This object represents a single paragraph (or in a straight text editor, a line).
2979 IMPLEMENT_DYNAMIC_CLASS(wxRichTextParagraph
, wxRichTextBox
)
2981 wxArrayInt
wxRichTextParagraph::sm_defaultTabs
;
2983 wxRichTextParagraph::wxRichTextParagraph(wxRichTextObject
* parent
, wxTextAttrEx
* style
):
2984 wxRichTextBox(parent
)
2986 if (parent
&& !style
)
2987 SetAttributes(parent
->GetAttributes());
2989 SetAttributes(*style
);
2992 wxRichTextParagraph::wxRichTextParagraph(const wxString
& text
, wxRichTextObject
* parent
, wxTextAttrEx
* style
):
2993 wxRichTextBox(parent
)
2995 if (parent
&& !style
)
2996 SetAttributes(parent
->GetAttributes());
2998 SetAttributes(*style
);
3000 AppendChild(new wxRichTextPlainText(text
, this));
3003 wxRichTextParagraph::~wxRichTextParagraph()
3009 bool wxRichTextParagraph::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& WXUNUSED(rect
), int WXUNUSED(descent
), int style
)
3011 #if wxRICHTEXT_USE_DYNAMIC_STYLES
3012 wxTextAttrEx attr
= GetCombinedAttributes();
3014 const wxTextAttrEx
& attr
= GetAttributes();
3017 // Draw the bullet, if any
3018 if (attr
.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE
)
3020 if (attr
.GetLeftSubIndent() != 0)
3022 int spaceBeforePara
= ConvertTenthsMMToPixels(dc
, attr
.GetParagraphSpacingBefore());
3023 int leftIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetLeftIndent());
3025 wxTextAttrEx
bulletAttr(GetCombinedAttributes());
3027 // Get line height from first line, if any
3028 wxRichTextLine
* line
= m_cachedLines
.GetFirst() ? (wxRichTextLine
* ) m_cachedLines
.GetFirst()->GetData() : (wxRichTextLine
*) NULL
;
3031 int lineHeight
wxDUMMY_INITIALIZE(0);
3034 lineHeight
= line
->GetSize().y
;
3035 linePos
= line
->GetPosition() + GetPosition();
3040 if (bulletAttr
.GetFont().Ok())
3041 font
= bulletAttr
.GetFont();
3043 font
= (*wxNORMAL_FONT
);
3047 lineHeight
= dc
.GetCharHeight();
3048 linePos
= GetPosition();
3049 linePos
.y
+= spaceBeforePara
;
3052 wxRect
bulletRect(GetPosition().x
+ leftIndent
, linePos
.y
, linePos
.x
- (GetPosition().x
+ leftIndent
), lineHeight
);
3054 if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_BITMAP
)
3056 if (wxRichTextBuffer::GetRenderer())
3057 wxRichTextBuffer::GetRenderer()->DrawBitmapBullet(this, dc
, bulletAttr
, bulletRect
);
3059 else if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_STANDARD
)
3061 if (wxRichTextBuffer::GetRenderer())
3062 wxRichTextBuffer::GetRenderer()->DrawStandardBullet(this, dc
, bulletAttr
, bulletRect
);
3066 wxString bulletText
= GetBulletText();
3068 if (!bulletText
.empty() && wxRichTextBuffer::GetRenderer())
3069 wxRichTextBuffer::GetRenderer()->DrawTextBullet(this, dc
, bulletAttr
, bulletRect
, bulletText
);
3074 // Draw the range for each line, one object at a time.
3076 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3079 wxRichTextLine
* line
= node
->GetData();
3080 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3082 int maxDescent
= line
->GetDescent();
3084 // Lines are specified relative to the paragraph
3086 wxPoint linePosition
= line
->GetPosition() + GetPosition();
3087 wxPoint objectPosition
= linePosition
;
3089 // Loop through objects until we get to the one within range
3090 wxRichTextObjectList::compatibility_iterator node2
= m_children
.GetFirst();
3093 wxRichTextObject
* child
= node2
->GetData();
3095 if (!child
->GetRange().IsOutside(lineRange
) && !lineRange
.IsOutside(range
))
3097 // Draw this part of the line at the correct position
3098 wxRichTextRange
objectRange(child
->GetRange());
3099 objectRange
.LimitTo(lineRange
);
3103 child
->GetRangeSize(objectRange
, objectSize
, descent
, dc
, wxRICHTEXT_UNFORMATTED
, objectPosition
);
3105 // Use the child object's width, but the whole line's height
3106 wxRect
childRect(objectPosition
, wxSize(objectSize
.x
, line
->GetSize().y
));
3107 child
->Draw(dc
, objectRange
, selectionRange
, childRect
, maxDescent
, style
);
3109 objectPosition
.x
+= objectSize
.x
;
3111 else if (child
->GetRange().GetStart() > lineRange
.GetEnd())
3112 // Can break out of inner loop now since we've passed this line's range
3115 node2
= node2
->GetNext();
3118 node
= node
->GetNext();
3124 /// Lay the item out
3125 bool wxRichTextParagraph::Layout(wxDC
& dc
, const wxRect
& rect
, int style
)
3127 #if wxRICHTEXT_USE_DYNAMIC_STYLES
3128 wxTextAttrEx attr
= GetCombinedAttributes();
3130 const wxTextAttrEx
& attr
= GetAttributes();
3135 // Increase the size of the paragraph due to spacing
3136 int spaceBeforePara
= ConvertTenthsMMToPixels(dc
, attr
.GetParagraphSpacingBefore());
3137 int spaceAfterPara
= ConvertTenthsMMToPixels(dc
, attr
.GetParagraphSpacingAfter());
3138 int leftIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetLeftIndent());
3139 int leftSubIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetLeftSubIndent());
3140 int rightIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetRightIndent());
3142 int lineSpacing
= 0;
3144 // Let's assume line spacing of 10 is normal, 15 is 1.5, 20 is 2, etc.
3145 if (attr
.GetLineSpacing() > 10 && attr
.GetFont().Ok())
3147 dc
.SetFont(attr
.GetFont());
3148 lineSpacing
= (ConvertTenthsMMToPixels(dc
, dc
.GetCharHeight()) * attr
.GetLineSpacing())/10;
3151 // Available space for text on each line differs.
3152 int availableTextSpaceFirstLine
= rect
.GetWidth() - leftIndent
- rightIndent
;
3154 // Bullets start the text at the same position as subsequent lines
3155 if (attr
.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE
)
3156 availableTextSpaceFirstLine
-= leftSubIndent
;
3158 int availableTextSpaceSubsequentLines
= rect
.GetWidth() - leftIndent
- rightIndent
- leftSubIndent
;
3160 // Start position for each line relative to the paragraph
3161 int startPositionFirstLine
= leftIndent
;
3162 int startPositionSubsequentLines
= leftIndent
+ leftSubIndent
;
3164 // If we have a bullet in this paragraph, the start position for the first line's text
3165 // is actually leftIndent + leftSubIndent.
3166 if (attr
.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE
)
3167 startPositionFirstLine
= startPositionSubsequentLines
;
3169 long lastEndPos
= GetRange().GetStart()-1;
3170 long lastCompletedEndPos
= lastEndPos
;
3172 int currentWidth
= 0;
3173 SetPosition(rect
.GetPosition());
3175 wxPoint
currentPosition(0, spaceBeforePara
); // We will calculate lines relative to paragraph
3184 // We may need to go back to a previous child, in which case create the new line,
3185 // find the child corresponding to the start position of the string, and
3188 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3191 wxRichTextObject
* child
= node
->GetData();
3193 // If this is e.g. a composite text box, it will need to be laid out itself.
3194 // But if just a text fragment or image, for example, this will
3195 // do nothing. NB: won't we need to set the position after layout?
3196 // since for example if position is dependent on vertical line size, we
3197 // can't tell the position until the size is determined. So possibly introduce
3198 // another layout phase.
3200 child
->Layout(dc
, rect
, style
);
3202 // Available width depends on whether we're on the first or subsequent lines
3203 int availableSpaceForText
= (lineCount
== 0 ? availableTextSpaceFirstLine
: availableTextSpaceSubsequentLines
);
3205 currentPosition
.x
= (lineCount
== 0 ? startPositionFirstLine
: startPositionSubsequentLines
);
3207 // We may only be looking at part of a child, if we searched back for wrapping
3208 // and found a suitable point some way into the child. So get the size for the fragment
3212 int childDescent
= 0;
3213 if (lastEndPos
== child
->GetRange().GetStart() - 1)
3215 childSize
= child
->GetCachedSize();
3216 childDescent
= child
->GetDescent();
3219 GetRangeSize(wxRichTextRange(lastEndPos
+1, child
->GetRange().GetEnd()), childSize
, childDescent
, dc
, wxRICHTEXT_UNFORMATTED
,rect
.GetPosition());
3221 if (childSize
.x
+ currentWidth
> availableSpaceForText
)
3223 long wrapPosition
= 0;
3225 // Find a place to wrap. This may walk back to previous children,
3226 // for example if a word spans several objects.
3227 if (!FindWrapPosition(wxRichTextRange(lastCompletedEndPos
+1, child
->GetRange().GetEnd()), dc
, availableSpaceForText
, wrapPosition
))
3229 // If the function failed, just cut it off at the end of this child.
3230 wrapPosition
= child
->GetRange().GetEnd();
3233 // FindWrapPosition can still return a value that will put us in an endless wrapping loop
3234 if (wrapPosition
<= lastCompletedEndPos
)
3235 wrapPosition
= wxMax(lastCompletedEndPos
+1,child
->GetRange().GetEnd());
3237 // wxLogDebug(wxT("Split at %ld"), wrapPosition);
3239 // Let's find the actual size of the current line now
3241 wxRichTextRange
actualRange(lastCompletedEndPos
+1, wrapPosition
);
3242 GetRangeSize(actualRange
, actualSize
, childDescent
, dc
, wxRICHTEXT_UNFORMATTED
);
3243 currentWidth
= actualSize
.x
;
3244 lineHeight
= wxMax(lineHeight
, actualSize
.y
);
3245 maxDescent
= wxMax(childDescent
, maxDescent
);
3248 wxRichTextLine
* line
= AllocateLine(lineCount
);
3250 // Set relative range so we won't have to change line ranges when paragraphs are moved
3251 line
->SetRange(wxRichTextRange(actualRange
.GetStart() - GetRange().GetStart(), actualRange
.GetEnd() - GetRange().GetStart()));
3252 line
->SetPosition(currentPosition
);
3253 line
->SetSize(wxSize(currentWidth
, lineHeight
));
3254 line
->SetDescent(maxDescent
);
3256 // Now move down a line. TODO: add margins, spacing
3257 currentPosition
.y
+= lineHeight
;
3258 currentPosition
.y
+= lineSpacing
;
3261 maxWidth
= wxMax(maxWidth
, currentWidth
);
3265 // TODO: account for zero-length objects, such as fields
3266 wxASSERT(wrapPosition
> lastCompletedEndPos
);
3268 lastEndPos
= wrapPosition
;
3269 lastCompletedEndPos
= lastEndPos
;
3273 // May need to set the node back to a previous one, due to searching back in wrapping
3274 wxRichTextObject
* childAfterWrapPosition
= FindObjectAtPosition(wrapPosition
+1);
3275 if (childAfterWrapPosition
)
3276 node
= m_children
.Find(childAfterWrapPosition
);
3278 node
= node
->GetNext();
3282 // We still fit, so don't add a line, and keep going
3283 currentWidth
+= childSize
.x
;
3284 lineHeight
= wxMax(lineHeight
, childSize
.y
);
3285 maxDescent
= wxMax(childDescent
, maxDescent
);
3287 maxWidth
= wxMax(maxWidth
, currentWidth
);
3288 lastEndPos
= child
->GetRange().GetEnd();
3290 node
= node
->GetNext();
3294 // Add the last line - it's the current pos -> last para pos
3295 // Substract -1 because the last position is always the end-paragraph position.
3296 if (lastCompletedEndPos
<= GetRange().GetEnd()-1)
3298 currentPosition
.x
= (lineCount
== 0 ? startPositionFirstLine
: startPositionSubsequentLines
);
3300 wxRichTextLine
* line
= AllocateLine(lineCount
);
3302 wxRichTextRange
actualRange(lastCompletedEndPos
+1, GetRange().GetEnd()-1);
3304 // Set relative range so we won't have to change line ranges when paragraphs are moved
3305 line
->SetRange(wxRichTextRange(actualRange
.GetStart() - GetRange().GetStart(), actualRange
.GetEnd() - GetRange().GetStart()));
3307 line
->SetPosition(currentPosition
);
3309 if (lineHeight
== 0)
3311 if (attr
.GetFont().Ok())
3312 dc
.SetFont(attr
.GetFont());
3313 lineHeight
= dc
.GetCharHeight();
3315 if (maxDescent
== 0)
3318 dc
.GetTextExtent(wxT("X"), & w
, &h
, & maxDescent
);
3321 line
->SetSize(wxSize(currentWidth
, lineHeight
));
3322 line
->SetDescent(maxDescent
);
3323 currentPosition
.y
+= lineHeight
;
3324 currentPosition
.y
+= lineSpacing
;
3328 // Remove remaining unused line objects, if any
3329 ClearUnusedLines(lineCount
);
3331 // Apply styles to wrapped lines
3332 ApplyParagraphStyle(attr
, rect
);
3334 SetCachedSize(wxSize(maxWidth
, currentPosition
.y
+ spaceBeforePara
+ spaceAfterPara
));
3341 /// Apply paragraph styles, such as centering, to wrapped lines
3342 void wxRichTextParagraph::ApplyParagraphStyle(const wxTextAttrEx
& attr
, const wxRect
& rect
)
3344 if (!attr
.HasAlignment())
3347 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3350 wxRichTextLine
* line
= node
->GetData();
3352 wxPoint pos
= line
->GetPosition();
3353 wxSize size
= line
->GetSize();
3355 // centering, right-justification
3356 if (attr
.HasAlignment() && GetAttributes().GetAlignment() == wxTEXT_ALIGNMENT_CENTRE
)
3358 pos
.x
= (rect
.GetWidth() - size
.x
)/2 + pos
.x
;
3359 line
->SetPosition(pos
);
3361 else if (attr
.HasAlignment() && GetAttributes().GetAlignment() == wxTEXT_ALIGNMENT_RIGHT
)
3363 pos
.x
= pos
.x
+ rect
.GetWidth() - size
.x
;
3364 line
->SetPosition(pos
);
3367 node
= node
->GetNext();
3371 /// Insert text at the given position
3372 bool wxRichTextParagraph::InsertText(long pos
, const wxString
& text
)
3374 wxRichTextObject
* childToUse
= NULL
;
3375 wxRichTextObjectList::compatibility_iterator nodeToUse
= wxRichTextObjectList::compatibility_iterator();
3377 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3380 wxRichTextObject
* child
= node
->GetData();
3381 if (child
->GetRange().Contains(pos
) && child
->GetRange().GetLength() > 0)
3388 node
= node
->GetNext();
3393 wxRichTextPlainText
* textObject
= wxDynamicCast(childToUse
, wxRichTextPlainText
);
3396 int posInString
= pos
- textObject
->GetRange().GetStart();
3398 wxString newText
= textObject
->GetText().Mid(0, posInString
) +
3399 text
+ textObject
->GetText().Mid(posInString
);
3400 textObject
->SetText(newText
);
3402 int textLength
= text
.length();
3404 textObject
->SetRange(wxRichTextRange(textObject
->GetRange().GetStart(),
3405 textObject
->GetRange().GetEnd() + textLength
));
3407 // Increment the end range of subsequent fragments in this paragraph.
3408 // We'll set the paragraph range itself at a higher level.
3410 wxRichTextObjectList::compatibility_iterator node
= nodeToUse
->GetNext();
3413 wxRichTextObject
* child
= node
->GetData();
3414 child
->SetRange(wxRichTextRange(textObject
->GetRange().GetStart() + textLength
,
3415 textObject
->GetRange().GetEnd() + textLength
));
3417 node
= node
->GetNext();
3424 // TODO: if not a text object, insert at closest position, e.g. in front of it
3430 // Don't pass parent initially to suppress auto-setting of parent range.
3431 // We'll do that at a higher level.
3432 wxRichTextPlainText
* textObject
= new wxRichTextPlainText(text
, this);
3434 AppendChild(textObject
);
3441 void wxRichTextParagraph::Copy(const wxRichTextParagraph
& obj
)
3443 wxRichTextBox::Copy(obj
);
3446 /// Clear the cached lines
3447 void wxRichTextParagraph::ClearLines()
3449 WX_CLEAR_LIST(wxRichTextLineList
, m_cachedLines
);
3452 /// Get/set the object size for the given range. Returns false if the range
3453 /// is invalid for this object.
3454 bool wxRichTextParagraph::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
) const
3456 if (!range
.IsWithin(GetRange()))
3459 if (flags
& wxRICHTEXT_UNFORMATTED
)
3461 // Just use unformatted data, assume no line breaks
3462 // TODO: take into account line breaks
3466 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3469 wxRichTextObject
* child
= node
->GetData();
3470 if (!child
->GetRange().IsOutside(range
))
3474 wxRichTextRange rangeToUse
= range
;
3475 rangeToUse
.LimitTo(child
->GetRange());
3476 int childDescent
= 0;
3478 if (child
->GetRangeSize(rangeToUse
, childSize
, childDescent
, dc
, flags
, position
))
3480 sz
.y
= wxMax(sz
.y
, childSize
.y
);
3481 sz
.x
+= childSize
.x
;
3482 descent
= wxMax(descent
, childDescent
);
3486 node
= node
->GetNext();
3492 // Use formatted data, with line breaks
3495 // We're going to loop through each line, and then for each line,
3496 // call GetRangeSize for the fragment that comprises that line.
3497 // Only we have to do that multiple times within the line, because
3498 // the line may be broken into pieces. For now ignore line break commands
3499 // (so we can assume that getting the unformatted size for a fragment
3500 // within a line is the actual size)
3502 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3505 wxRichTextLine
* line
= node
->GetData();
3506 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3507 if (!lineRange
.IsOutside(range
))
3511 wxRichTextObjectList::compatibility_iterator node2
= m_children
.GetFirst();
3514 wxRichTextObject
* child
= node2
->GetData();
3516 if (!child
->GetRange().IsOutside(lineRange
))
3518 wxRichTextRange rangeToUse
= lineRange
;
3519 rangeToUse
.LimitTo(child
->GetRange());
3522 int childDescent
= 0;
3523 if (child
->GetRangeSize(rangeToUse
, childSize
, childDescent
, dc
, flags
, position
))
3525 lineSize
.y
= wxMax(lineSize
.y
, childSize
.y
);
3526 lineSize
.x
+= childSize
.x
;
3528 descent
= wxMax(descent
, childDescent
);
3531 node2
= node2
->GetNext();
3534 // Increase size by a line (TODO: paragraph spacing)
3536 sz
.x
= wxMax(sz
.x
, lineSize
.x
);
3538 node
= node
->GetNext();
3545 /// Finds the absolute position and row height for the given character position
3546 bool wxRichTextParagraph::FindPosition(wxDC
& dc
, long index
, wxPoint
& pt
, int* height
, bool forceLineStart
)
3550 wxRichTextLine
* line
= ((wxRichTextParagraphLayoutBox
*)GetParent())->GetLineAtPosition(0);
3552 *height
= line
->GetSize().y
;
3554 *height
= dc
.GetCharHeight();
3556 // -1 means 'the start of the buffer'.
3559 pt
= pt
+ line
->GetPosition();
3564 // The final position in a paragraph is taken to mean the position
3565 // at the start of the next paragraph.
3566 if (index
== GetRange().GetEnd())
3568 wxRichTextParagraphLayoutBox
* parent
= wxDynamicCast(GetParent(), wxRichTextParagraphLayoutBox
);
3569 wxASSERT( parent
!= NULL
);
3571 // Find the height at the next paragraph, if any
3572 wxRichTextLine
* line
= parent
->GetLineAtPosition(index
+ 1);
3575 *height
= line
->GetSize().y
;
3576 pt
= line
->GetAbsolutePosition();
3580 *height
= dc
.GetCharHeight();
3581 int indent
= ConvertTenthsMMToPixels(dc
, m_attributes
.GetLeftIndent());
3582 pt
= wxPoint(indent
, GetCachedSize().y
);
3588 if (index
< GetRange().GetStart() || index
> GetRange().GetEnd())
3591 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3594 wxRichTextLine
* line
= node
->GetData();
3595 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3596 if (index
>= lineRange
.GetStart() && index
<= lineRange
.GetEnd())
3598 // If this is the last point in the line, and we're forcing the
3599 // returned value to be the start of the next line, do the required
3601 if (index
== lineRange
.GetEnd() && forceLineStart
)
3603 if (node
->GetNext())
3605 wxRichTextLine
* nextLine
= node
->GetNext()->GetData();
3606 *height
= nextLine
->GetSize().y
;
3607 pt
= nextLine
->GetAbsolutePosition();
3612 pt
.y
= line
->GetPosition().y
+ GetPosition().y
;
3614 wxRichTextRange
r(lineRange
.GetStart(), index
);
3618 // We find the size of the line up to this point,
3619 // then we can add this size to the line start position and
3620 // paragraph start position to find the actual position.
3622 if (GetRangeSize(r
, rangeSize
, descent
, dc
, wxRICHTEXT_UNFORMATTED
, line
->GetPosition()+ GetPosition()))
3624 pt
.x
= line
->GetPosition().x
+ GetPosition().x
+ rangeSize
.x
;
3625 *height
= line
->GetSize().y
;
3632 node
= node
->GetNext();
3638 /// Hit-testing: returns a flag indicating hit test details, plus
3639 /// information about position
3640 int wxRichTextParagraph::HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
)
3642 wxPoint paraPos
= GetPosition();
3644 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3647 wxRichTextLine
* line
= node
->GetData();
3648 wxPoint linePos
= paraPos
+ line
->GetPosition();
3649 wxSize lineSize
= line
->GetSize();
3650 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3652 if (pt
.y
>= linePos
.y
&& pt
.y
<= linePos
.y
+ lineSize
.y
)
3654 if (pt
.x
< linePos
.x
)
3656 textPosition
= lineRange
.GetStart();
3657 return wxRICHTEXT_HITTEST_BEFORE
;
3659 else if (pt
.x
>= (linePos
.x
+ lineSize
.x
))
3661 textPosition
= lineRange
.GetEnd();
3662 return wxRICHTEXT_HITTEST_AFTER
;
3667 int lastX
= linePos
.x
;
3668 for (i
= lineRange
.GetStart(); i
<= lineRange
.GetEnd(); i
++)
3673 wxRichTextRange
rangeToUse(lineRange
.GetStart(), i
);
3675 GetRangeSize(rangeToUse
, childSize
, descent
, dc
, wxRICHTEXT_UNFORMATTED
, linePos
);
3677 int nextX
= childSize
.x
+ linePos
.x
;
3679 if (pt
.x
>= lastX
&& pt
.x
<= nextX
)
3683 // So now we know it's between i-1 and i.
3684 // Let's see if we can be more precise about
3685 // which side of the position it's on.
3687 int midPoint
= (nextX
- lastX
)/2 + lastX
;
3688 if (pt
.x
>= midPoint
)
3689 return wxRICHTEXT_HITTEST_AFTER
;
3691 return wxRICHTEXT_HITTEST_BEFORE
;
3701 node
= node
->GetNext();
3704 return wxRICHTEXT_HITTEST_NONE
;
3707 /// Split an object at this position if necessary, and return
3708 /// the previous object, or NULL if inserting at beginning.
3709 wxRichTextObject
* wxRichTextParagraph::SplitAt(long pos
, wxRichTextObject
** previousObject
)
3711 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3714 wxRichTextObject
* child
= node
->GetData();
3716 if (pos
== child
->GetRange().GetStart())
3720 if (node
->GetPrevious())
3721 *previousObject
= node
->GetPrevious()->GetData();
3723 *previousObject
= NULL
;
3729 if (child
->GetRange().Contains(pos
))
3731 // This should create a new object, transferring part of
3732 // the content to the old object and the rest to the new object.
3733 wxRichTextObject
* newObject
= child
->DoSplit(pos
);
3735 // If we couldn't split this object, just insert in front of it.
3738 // Maybe this is an empty string, try the next one
3743 // Insert the new object after 'child'
3744 if (node
->GetNext())
3745 m_children
.Insert(node
->GetNext(), newObject
);
3747 m_children
.Append(newObject
);
3748 newObject
->SetParent(this);
3751 *previousObject
= child
;
3757 node
= node
->GetNext();
3760 *previousObject
= NULL
;
3764 /// Move content to a list from obj on
3765 void wxRichTextParagraph::MoveToList(wxRichTextObject
* obj
, wxList
& list
)
3767 wxRichTextObjectList::compatibility_iterator node
= m_children
.Find(obj
);
3770 wxRichTextObject
* child
= node
->GetData();
3773 wxRichTextObjectList::compatibility_iterator oldNode
= node
;
3775 node
= node
->GetNext();
3777 m_children
.DeleteNode(oldNode
);
3781 /// Add content back from list
3782 void wxRichTextParagraph::MoveFromList(wxList
& list
)
3784 for (wxList::compatibility_iterator node
= list
.GetFirst(); node
; node
= node
->GetNext())
3786 AppendChild((wxRichTextObject
*) node
->GetData());
3791 void wxRichTextParagraph::CalculateRange(long start
, long& end
)
3793 wxRichTextCompositeObject::CalculateRange(start
, end
);
3795 // Add one for end of paragraph
3798 m_range
.SetRange(start
, end
);
3801 /// Find the object at the given position
3802 wxRichTextObject
* wxRichTextParagraph::FindObjectAtPosition(long position
)
3804 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3807 wxRichTextObject
* obj
= node
->GetData();
3808 if (obj
->GetRange().Contains(position
))
3811 node
= node
->GetNext();
3816 /// Get the plain text searching from the start or end of the range.
3817 /// The resulting string may be shorter than the range given.
3818 bool wxRichTextParagraph::GetContiguousPlainText(wxString
& text
, const wxRichTextRange
& range
, bool fromStart
)
3820 text
= wxEmptyString
;
3824 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3827 wxRichTextObject
* obj
= node
->GetData();
3828 if (!obj
->GetRange().IsOutside(range
))
3830 wxRichTextPlainText
* textObj
= wxDynamicCast(obj
, wxRichTextPlainText
);
3833 text
+= textObj
->GetTextForRange(range
);
3839 node
= node
->GetNext();
3844 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetLast();
3847 wxRichTextObject
* obj
= node
->GetData();
3848 if (!obj
->GetRange().IsOutside(range
))
3850 wxRichTextPlainText
* textObj
= wxDynamicCast(obj
, wxRichTextPlainText
);
3853 text
= textObj
->GetTextForRange(range
) + text
;
3859 node
= node
->GetPrevious();
3866 /// Find a suitable wrap position.
3867 bool wxRichTextParagraph::FindWrapPosition(const wxRichTextRange
& range
, wxDC
& dc
, int availableSpace
, long& wrapPosition
)
3869 // Find the first position where the line exceeds the available space.
3872 long breakPosition
= range
.GetEnd();
3873 for (i
= range
.GetStart(); i
<= range
.GetEnd(); i
++)
3876 GetRangeSize(wxRichTextRange(range
.GetStart(), i
), sz
, descent
, dc
, wxRICHTEXT_UNFORMATTED
);
3878 if (sz
.x
> availableSpace
)
3880 breakPosition
= i
-1;
3885 // Now we know the last position on the line.
3886 // Let's try to find a word break.
3889 if (GetContiguousPlainText(plainText
, wxRichTextRange(range
.GetStart(), breakPosition
), false))
3891 int spacePos
= plainText
.Find(wxT(' '), true);
3892 if (spacePos
!= wxNOT_FOUND
)
3894 int positionsFromEndOfString
= plainText
.length() - spacePos
- 1;
3895 breakPosition
= breakPosition
- positionsFromEndOfString
;
3899 wrapPosition
= breakPosition
;
3904 /// Get the bullet text for this paragraph.
3905 wxString
wxRichTextParagraph::GetBulletText()
3907 if (GetAttributes().GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_NONE
||
3908 (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_BITMAP
))
3909 return wxEmptyString
;
3911 int number
= GetAttributes().GetBulletNumber();
3914 if ((GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ARABIC
) || (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
))
3916 text
.Printf(wxT("%d"), number
);
3918 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER
)
3920 // TODO: Unicode, and also check if number > 26
3921 text
.Printf(wxT("%c"), (wxChar
) (number
+64));
3923 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER
)
3925 // TODO: Unicode, and also check if number > 26
3926 text
.Printf(wxT("%c"), (wxChar
) (number
+96));
3928 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER
)
3930 text
= wxRichTextDecimalToRoman(number
);
3932 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER
)
3934 text
= wxRichTextDecimalToRoman(number
);
3937 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_SYMBOL
)
3939 text
= GetAttributes().GetBulletText();
3942 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
)
3944 // The outline style relies on the text being computed statically,
3945 // since it depends on other levels points (e.g. 1.2.1.1). So normally the bullet text
3946 // should be stored in the attributes; if not, just use the number for this
3947 // level, as previously computed.
3948 if (!GetAttributes().GetBulletText().IsEmpty())
3949 text
= GetAttributes().GetBulletText();
3952 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_PARENTHESES
)
3954 text
= wxT("(") + text
+ wxT(")");
3956 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_RIGHT_PARENTHESIS
)
3958 text
= text
+ wxT(")");
3961 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_PERIOD
)
3969 /// Allocate or reuse a line object
3970 wxRichTextLine
* wxRichTextParagraph::AllocateLine(int pos
)
3972 if (pos
< (int) m_cachedLines
.GetCount())
3974 wxRichTextLine
* line
= m_cachedLines
.Item(pos
)->GetData();
3980 wxRichTextLine
* line
= new wxRichTextLine(this);
3981 m_cachedLines
.Append(line
);
3986 /// Clear remaining unused line objects, if any
3987 bool wxRichTextParagraph::ClearUnusedLines(int lineCount
)
3989 int cachedLineCount
= m_cachedLines
.GetCount();
3990 if ((int) cachedLineCount
> lineCount
)
3992 for (int i
= 0; i
< (int) (cachedLineCount
- lineCount
); i
++)
3994 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetLast();
3995 wxRichTextLine
* line
= node
->GetData();
3996 m_cachedLines
.Erase(node
);
4003 /// Get combined attributes of the base style, paragraph style and character style. We use this to dynamically
4004 /// retrieve the actual style.
4005 wxTextAttrEx
wxRichTextParagraph::GetCombinedAttributes(const wxTextAttrEx
& contentStyle
) const
4008 wxRichTextBuffer
* buf
= wxDynamicCast(GetParent(), wxRichTextBuffer
);
4011 attr
= buf
->GetBasicStyle();
4012 wxRichTextApplyStyle(attr
, GetAttributes());
4015 attr
= GetAttributes();
4017 wxRichTextApplyStyle(attr
, contentStyle
);
4021 /// Get combined attributes of the base style and paragraph style.
4022 wxTextAttrEx
wxRichTextParagraph::GetCombinedAttributes() const
4025 wxRichTextBuffer
* buf
= wxDynamicCast(GetParent(), wxRichTextBuffer
);
4028 attr
= buf
->GetBasicStyle();
4029 wxRichTextApplyStyle(attr
, GetAttributes());
4032 attr
= GetAttributes();
4037 /// Create default tabstop array
4038 void wxRichTextParagraph::InitDefaultTabs()
4040 // create a default tab list at 10 mm each.
4041 for (int i
= 0; i
< 20; ++i
)
4043 sm_defaultTabs
.Add(i
*100);
4047 /// Clear default tabstop array
4048 void wxRichTextParagraph::ClearDefaultTabs()
4050 sm_defaultTabs
.Clear();
4056 * This object represents a line in a paragraph, and stores
4057 * offsets from the start of the paragraph representing the
4058 * start and end positions of the line.
4061 wxRichTextLine::wxRichTextLine(wxRichTextParagraph
* parent
)
4067 void wxRichTextLine::Init(wxRichTextParagraph
* parent
)
4070 m_range
.SetRange(-1, -1);
4071 m_pos
= wxPoint(0, 0);
4072 m_size
= wxSize(0, 0);
4077 void wxRichTextLine::Copy(const wxRichTextLine
& obj
)
4079 m_range
= obj
.m_range
;
4082 /// Get the absolute object position
4083 wxPoint
wxRichTextLine::GetAbsolutePosition() const
4085 return m_parent
->GetPosition() + m_pos
;
4088 /// Get the absolute range
4089 wxRichTextRange
wxRichTextLine::GetAbsoluteRange() const
4091 wxRichTextRange
range(m_range
.GetStart() + m_parent
->GetRange().GetStart(), 0);
4092 range
.SetEnd(range
.GetStart() + m_range
.GetLength()-1);
4097 * wxRichTextPlainText
4098 * This object represents a single piece of text.
4101 IMPLEMENT_DYNAMIC_CLASS(wxRichTextPlainText
, wxRichTextObject
)
4103 wxRichTextPlainText::wxRichTextPlainText(const wxString
& text
, wxRichTextObject
* parent
, wxTextAttrEx
* style
):
4104 wxRichTextObject(parent
)
4106 if (parent
&& !style
)
4107 SetAttributes(parent
->GetAttributes());
4109 SetAttributes(*style
);
4114 #define USE_KERNING_FIX 1
4117 bool wxRichTextPlainText::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int WXUNUSED(style
))
4119 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4120 wxRichTextParagraph
* para
= wxDynamicCast(GetParent(), wxRichTextParagraph
);
4121 wxASSERT (para
!= NULL
);
4123 wxTextAttrEx
textAttr(para
? para
->GetCombinedAttributes(GetAttributes()) : GetAttributes());
4125 wxTextAttrEx
textAttr(GetAttributes());
4128 int offset
= GetRange().GetStart();
4130 long len
= range
.GetLength();
4131 wxString stringChunk
= m_text
.Mid(range
.GetStart() - offset
, (size_t) len
);
4133 int charHeight
= dc
.GetCharHeight();
4136 int y
= rect
.y
+ (rect
.height
- charHeight
- (descent
- m_descent
));
4138 // Test for the optimized situations where all is selected, or none
4141 if (textAttr
.GetFont().Ok())
4142 dc
.SetFont(textAttr
.GetFont());
4144 // (a) All selected.
4145 if (selectionRange
.GetStart() <= range
.GetStart() && selectionRange
.GetEnd() >= range
.GetEnd())
4147 DrawTabbedString(dc
, textAttr
, rect
, stringChunk
, x
, y
, true);
4149 // (b) None selected.
4150 else if (selectionRange
.GetEnd() < range
.GetStart() || selectionRange
.GetStart() > range
.GetEnd())
4152 // Draw all unselected
4153 DrawTabbedString(dc
, textAttr
, rect
, stringChunk
, x
, y
, false);
4157 // (c) Part selected, part not
4158 // Let's draw unselected chunk, selected chunk, then unselected chunk.
4160 dc
.SetBackgroundMode(wxTRANSPARENT
);
4162 // 1. Initial unselected chunk, if any, up until start of selection.
4163 if (selectionRange
.GetStart() > range
.GetStart() && selectionRange
.GetStart() <= range
.GetEnd())
4165 int r1
= range
.GetStart();
4166 int s1
= selectionRange
.GetStart()-1;
4167 int fragmentLen
= s1
- r1
+ 1;
4168 if (fragmentLen
< 0)
4169 wxLogDebug(wxT("Mid(%d, %d"), (int)(r1
- offset
), (int)fragmentLen
);
4170 wxString stringFragment
= m_text
.Mid(r1
- offset
, fragmentLen
);
4172 DrawTabbedString(dc
, textAttr
, rect
, stringFragment
, x
, y
, false);
4175 if (stringChunk
.Find(wxT("\t")) == wxNOT_FOUND
)
4177 // Compensate for kerning difference
4178 wxString
stringFragment2(m_text
.Mid(r1
- offset
, fragmentLen
+1));
4179 wxString
stringFragment3(m_text
.Mid(r1
- offset
+ fragmentLen
, 1));
4181 wxCoord w1
, h1
, w2
, h2
, w3
, h3
;
4182 dc
.GetTextExtent(stringFragment
, & w1
, & h1
);
4183 dc
.GetTextExtent(stringFragment2
, & w2
, & h2
);
4184 dc
.GetTextExtent(stringFragment3
, & w3
, & h3
);
4186 int kerningDiff
= (w1
+ w3
) - w2
;
4187 x
= x
- kerningDiff
;
4192 // 2. Selected chunk, if any.
4193 if (selectionRange
.GetEnd() >= range
.GetStart())
4195 int s1
= wxMax(selectionRange
.GetStart(), range
.GetStart());
4196 int s2
= wxMin(selectionRange
.GetEnd(), range
.GetEnd());
4198 int fragmentLen
= s2
- s1
+ 1;
4199 if (fragmentLen
< 0)
4200 wxLogDebug(wxT("Mid(%d, %d"), (int)(s1
- offset
), (int)fragmentLen
);
4201 wxString stringFragment
= m_text
.Mid(s1
- offset
, fragmentLen
);
4203 DrawTabbedString(dc
, textAttr
, rect
, stringFragment
, x
, y
, true);
4206 if (stringChunk
.Find(wxT("\t")) == wxNOT_FOUND
)
4208 // Compensate for kerning difference
4209 wxString
stringFragment2(m_text
.Mid(s1
- offset
, fragmentLen
+1));
4210 wxString
stringFragment3(m_text
.Mid(s1
- offset
+ fragmentLen
, 1));
4212 wxCoord w1
, h1
, w2
, h2
, w3
, h3
;
4213 dc
.GetTextExtent(stringFragment
, & w1
, & h1
);
4214 dc
.GetTextExtent(stringFragment2
, & w2
, & h2
);
4215 dc
.GetTextExtent(stringFragment3
, & w3
, & h3
);
4217 int kerningDiff
= (w1
+ w3
) - w2
;
4218 x
= x
- kerningDiff
;
4223 // 3. Remaining unselected chunk, if any
4224 if (selectionRange
.GetEnd() < range
.GetEnd())
4226 int s2
= wxMin(selectionRange
.GetEnd()+1, range
.GetEnd());
4227 int r2
= range
.GetEnd();
4229 int fragmentLen
= r2
- s2
+ 1;
4230 if (fragmentLen
< 0)
4231 wxLogDebug(wxT("Mid(%d, %d"), (int)(s2
- offset
), (int)fragmentLen
);
4232 wxString stringFragment
= m_text
.Mid(s2
- offset
, fragmentLen
);
4234 DrawTabbedString(dc
, textAttr
, rect
, stringFragment
, x
, y
, false);
4241 bool wxRichTextPlainText::DrawTabbedString(wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
,wxString
& str
, wxCoord
& x
, wxCoord
& y
, bool selected
)
4243 bool hasTabs
= (str
.Find(wxT('\t')) != wxNOT_FOUND
);
4245 wxArrayInt tabArray
;
4249 if (attr
.GetTabs().IsEmpty())
4250 tabArray
= wxRichTextParagraph::GetDefaultTabs();
4252 tabArray
= attr
.GetTabs();
4253 tabCount
= tabArray
.GetCount();
4255 for (int i
= 0; i
< tabCount
; ++i
)
4257 int pos
= tabArray
[i
];
4258 pos
= ConvertTenthsMMToPixels(dc
, pos
);
4265 int nextTabPos
= -1;
4271 dc
.SetBrush(*wxBLACK_BRUSH
);
4272 dc
.SetPen(*wxBLACK_PEN
);
4273 dc
.SetTextForeground(*wxWHITE
);
4274 dc
.SetBackgroundMode(wxTRANSPARENT
);
4278 dc
.SetTextForeground(attr
.GetTextColour());
4279 dc
.SetBackgroundMode(wxTRANSPARENT
);
4284 // the string has a tab
4285 // break up the string at the Tab
4286 wxString stringChunk
= str
.BeforeFirst(wxT('\t'));
4287 str
= str
.AfterFirst(wxT('\t'));
4288 dc
.GetTextExtent(stringChunk
, & w
, & h
);
4290 bool not_found
= true;
4291 for (int i
= 0; i
< tabCount
&& not_found
; ++i
)
4293 nextTabPos
= tabArray
.Item(i
);
4294 if (nextTabPos
> tabPos
)
4300 wxRect
selRect(x
, rect
.y
, w
, rect
.GetHeight());
4301 dc
.DrawRectangle(selRect
);
4303 dc
.DrawText(stringChunk
, x
, y
);
4307 hasTabs
= (str
.Find(wxT('\t')) != wxNOT_FOUND
);
4312 dc
.GetTextExtent(str
, & w
, & h
);
4315 wxRect
selRect(x
, rect
.y
, w
, rect
.GetHeight());
4316 dc
.DrawRectangle(selRect
);
4318 dc
.DrawText(str
, x
, y
);
4325 /// Lay the item out
4326 bool wxRichTextPlainText::Layout(wxDC
& dc
, const wxRect
& WXUNUSED(rect
), int WXUNUSED(style
))
4328 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4329 wxRichTextParagraph
* para
= wxDynamicCast(GetParent(), wxRichTextParagraph
);
4330 wxASSERT (para
!= NULL
);
4332 wxTextAttrEx
textAttr(para
? para
->GetCombinedAttributes(GetAttributes()) : GetAttributes());
4334 wxTextAttrEx
textAttr(GetAttributes());
4337 if (textAttr
.GetFont().Ok())
4338 dc
.SetFont(textAttr
.GetFont());
4341 dc
.GetTextExtent(m_text
, & w
, & h
, & m_descent
);
4342 m_size
= wxSize(w
, dc
.GetCharHeight());
4348 void wxRichTextPlainText::Copy(const wxRichTextPlainText
& obj
)
4350 wxRichTextObject::Copy(obj
);
4352 m_text
= obj
.m_text
;
4355 /// Get/set the object size for the given range. Returns false if the range
4356 /// is invalid for this object.
4357 bool wxRichTextPlainText::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int WXUNUSED(flags
), wxPoint position
) const
4359 if (!range
.IsWithin(GetRange()))
4362 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4363 wxRichTextParagraph
* para
= wxDynamicCast(GetParent(), wxRichTextParagraph
);
4364 wxASSERT (para
!= NULL
);
4366 wxTextAttrEx
textAttr(para
? para
->GetCombinedAttributes(GetAttributes()) : GetAttributes());
4368 wxTextAttrEx
textAttr(GetAttributes());
4371 // Always assume unformatted text, since at this level we have no knowledge
4372 // of line breaks - and we don't need it, since we'll calculate size within
4373 // formatted text by doing it in chunks according to the line ranges
4375 if (textAttr
.GetFont().Ok())
4376 dc
.SetFont(textAttr
.GetFont());
4378 int startPos
= range
.GetStart() - GetRange().GetStart();
4379 long len
= range
.GetLength();
4380 wxString stringChunk
= m_text
.Mid(startPos
, (size_t) len
);
4383 if (stringChunk
.Find(wxT('\t')) != wxNOT_FOUND
)
4385 // the string has a tab
4386 wxArrayInt tabArray
;
4387 if (textAttr
.GetTabs().IsEmpty())
4388 tabArray
= wxRichTextParagraph::GetDefaultTabs();
4390 tabArray
= textAttr
.GetTabs();
4392 int tabCount
= tabArray
.GetCount();
4394 for (int i
= 0; i
< tabCount
; ++i
)
4396 int pos
= tabArray
[i
];
4397 pos
= ((wxRichTextPlainText
*) this)->ConvertTenthsMMToPixels(dc
, pos
);
4401 int nextTabPos
= -1;
4403 while (stringChunk
.Find(wxT('\t')) >= 0)
4405 // the string has a tab
4406 // break up the string at the Tab
4407 wxString stringFragment
= stringChunk
.BeforeFirst(wxT('\t'));
4408 stringChunk
= stringChunk
.AfterFirst(wxT('\t'));
4409 dc
.GetTextExtent(stringFragment
, & w
, & h
);
4411 int absoluteWidth
= width
+ position
.x
;
4412 bool notFound
= true;
4413 for (int i
= 0; i
< tabCount
&& notFound
; ++i
)
4415 nextTabPos
= tabArray
.Item(i
);
4416 if (nextTabPos
> absoluteWidth
)
4419 width
= nextTabPos
- position
.x
;
4424 dc
.GetTextExtent(stringChunk
, & w
, & h
, & descent
);
4426 size
= wxSize(width
, dc
.GetCharHeight());
4431 /// Do a split, returning an object containing the second part, and setting
4432 /// the first part in 'this'.
4433 wxRichTextObject
* wxRichTextPlainText::DoSplit(long pos
)
4435 int index
= pos
- GetRange().GetStart();
4436 if (index
< 0 || index
>= (int) m_text
.length())
4439 wxString firstPart
= m_text
.Mid(0, index
);
4440 wxString secondPart
= m_text
.Mid(index
);
4444 wxRichTextPlainText
* newObject
= new wxRichTextPlainText(secondPart
);
4445 newObject
->SetAttributes(GetAttributes());
4447 newObject
->SetRange(wxRichTextRange(pos
, GetRange().GetEnd()));
4448 GetRange().SetEnd(pos
-1);
4454 void wxRichTextPlainText::CalculateRange(long start
, long& end
)
4456 end
= start
+ m_text
.length() - 1;
4457 m_range
.SetRange(start
, end
);
4461 bool wxRichTextPlainText::DeleteRange(const wxRichTextRange
& range
)
4463 wxRichTextRange r
= range
;
4465 r
.LimitTo(GetRange());
4467 if (r
.GetStart() == GetRange().GetStart() && r
.GetEnd() == GetRange().GetEnd())
4473 long startIndex
= r
.GetStart() - GetRange().GetStart();
4474 long len
= r
.GetLength();
4476 m_text
= m_text
.Mid(0, startIndex
) + m_text
.Mid(startIndex
+len
);
4480 /// Get text for the given range.
4481 wxString
wxRichTextPlainText::GetTextForRange(const wxRichTextRange
& range
) const
4483 wxRichTextRange r
= range
;
4485 r
.LimitTo(GetRange());
4487 long startIndex
= r
.GetStart() - GetRange().GetStart();
4488 long len
= r
.GetLength();
4490 return m_text
.Mid(startIndex
, len
);
4493 /// Returns true if this object can merge itself with the given one.
4494 bool wxRichTextPlainText::CanMerge(wxRichTextObject
* object
) const
4496 return object
->GetClassInfo() == CLASSINFO(wxRichTextPlainText
) &&
4497 (m_text
.empty() || wxTextAttrEq(GetAttributes(), object
->GetAttributes()));
4500 /// Returns true if this object merged itself with the given one.
4501 /// The calling code will then delete the given object.
4502 bool wxRichTextPlainText::Merge(wxRichTextObject
* object
)
4504 wxRichTextPlainText
* textObject
= wxDynamicCast(object
, wxRichTextPlainText
);
4505 wxASSERT( textObject
!= NULL
);
4509 m_text
+= textObject
->GetText();
4516 /// Dump to output stream for debugging
4517 void wxRichTextPlainText::Dump(wxTextOutputStream
& stream
)
4519 wxRichTextObject::Dump(stream
);
4520 stream
<< m_text
<< wxT("\n");
4525 * This is a kind of box, used to represent the whole buffer
4528 IMPLEMENT_DYNAMIC_CLASS(wxRichTextBuffer
, wxRichTextParagraphLayoutBox
)
4530 wxList
wxRichTextBuffer::sm_handlers
;
4531 wxRichTextRenderer
* wxRichTextBuffer::sm_renderer
= NULL
;
4532 int wxRichTextBuffer::sm_bulletRightMargin
= 20;
4533 float wxRichTextBuffer::sm_bulletProportion
= (float) 0.3;
4536 void wxRichTextBuffer::Init()
4538 m_commandProcessor
= new wxCommandProcessor
;
4539 m_styleSheet
= NULL
;
4541 m_batchedCommandDepth
= 0;
4542 m_batchedCommand
= NULL
;
4549 wxRichTextBuffer::~wxRichTextBuffer()
4551 delete m_commandProcessor
;
4552 delete m_batchedCommand
;
4555 ClearEventHandlers();
4558 void wxRichTextBuffer::ResetAndClearCommands()
4562 GetCommandProcessor()->ClearCommands();
4565 Invalidate(wxRICHTEXT_ALL
);
4568 void wxRichTextBuffer::Copy(const wxRichTextBuffer
& obj
)
4570 wxRichTextParagraphLayoutBox::Copy(obj
);
4572 m_styleSheet
= obj
.m_styleSheet
;
4573 m_modified
= obj
.m_modified
;
4574 m_batchedCommandDepth
= obj
.m_batchedCommandDepth
;
4575 m_batchedCommand
= obj
.m_batchedCommand
;
4576 m_suppressUndo
= obj
.m_suppressUndo
;
4579 /// Push style sheet to top of stack
4580 bool wxRichTextBuffer::PushStyleSheet(wxRichTextStyleSheet
* styleSheet
)
4583 styleSheet
->InsertSheet(m_styleSheet
);
4585 SetStyleSheet(styleSheet
);
4590 /// Pop style sheet from top of stack
4591 wxRichTextStyleSheet
* wxRichTextBuffer::PopStyleSheet()
4595 wxRichTextStyleSheet
* oldSheet
= m_styleSheet
;
4596 m_styleSheet
= oldSheet
->GetNextSheet();
4605 /// Submit command to insert paragraphs
4606 bool wxRichTextBuffer::InsertParagraphsWithUndo(long pos
, const wxRichTextParagraphLayoutBox
& paragraphs
, wxRichTextCtrl
* ctrl
, int flags
)
4608 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Text"), wxRICHTEXT_INSERT
, this, ctrl
, false);
4610 wxTextAttrEx
* p
= NULL
;
4611 wxTextAttrEx paraAttr
;
4612 if (flags
& wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
)
4614 paraAttr
= GetStyleForNewParagraph(pos
);
4615 if (!paraAttr
.IsDefault())
4619 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4620 wxTextAttrEx
attr(GetDefaultStyle());
4622 wxTextAttrEx
attr(GetBasicStyle());
4623 wxRichTextApplyStyle(attr
, GetDefaultStyle());
4626 action
->GetNewParagraphs() = paragraphs
;
4630 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetLast();
4633 wxRichTextParagraph
* obj
= (wxRichTextParagraph
*) node
->GetData();
4634 obj
->SetAttributes(*p
);
4635 node
= node
->GetPrevious();
4639 action
->SetPosition(pos
);
4641 // Set the range we'll need to delete in Undo
4642 action
->SetRange(wxRichTextRange(pos
, pos
+ paragraphs
.GetRange().GetEnd() - 1));
4644 SubmitAction(action
);
4649 /// Submit command to insert the given text
4650 bool wxRichTextBuffer::InsertTextWithUndo(long pos
, const wxString
& text
, wxRichTextCtrl
* ctrl
, int flags
)
4652 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Text"), wxRICHTEXT_INSERT
, this, ctrl
, false);
4654 wxTextAttrEx
* p
= NULL
;
4655 wxTextAttrEx paraAttr
;
4656 if (flags
& wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
)
4658 paraAttr
= GetStyleForNewParagraph(pos
);
4659 if (!paraAttr
.IsDefault())
4663 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4664 wxTextAttrEx
attr(GetDefaultStyle());
4666 wxTextAttrEx
attr(GetBasicStyle());
4667 wxRichTextApplyStyle(attr
, GetDefaultStyle());
4670 action
->GetNewParagraphs().AddParagraphs(text
, p
);
4672 int length
= action
->GetNewParagraphs().GetRange().GetLength();
4674 if (text
.length() > 0 && text
.Last() != wxT('\n'))
4676 // Don't count the newline when undoing
4678 action
->GetNewParagraphs().SetPartialParagraph(true);
4681 action
->SetPosition(pos
);
4683 // Set the range we'll need to delete in Undo
4684 action
->SetRange(wxRichTextRange(pos
, pos
+ length
- 1));
4686 SubmitAction(action
);
4691 /// Submit command to insert the given text
4692 bool wxRichTextBuffer::InsertNewlineWithUndo(long pos
, wxRichTextCtrl
* ctrl
, int flags
)
4694 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Text"), wxRICHTEXT_INSERT
, this, ctrl
, false);
4696 wxTextAttrEx
* p
= NULL
;
4697 wxTextAttrEx paraAttr
;
4698 if (flags
& wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
)
4700 paraAttr
= GetStyleForNewParagraph(pos
);
4701 if (!paraAttr
.IsDefault())
4705 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4706 wxTextAttrEx
attr(GetDefaultStyle());
4708 wxTextAttrEx
attr(GetBasicStyle());
4709 wxRichTextApplyStyle(attr
, GetDefaultStyle());
4712 wxRichTextParagraph
* newPara
= new wxRichTextParagraph(wxEmptyString
, this, & attr
);
4713 action
->GetNewParagraphs().AppendChild(newPara
);
4714 action
->GetNewParagraphs().UpdateRanges();
4715 action
->GetNewParagraphs().SetPartialParagraph(false);
4716 action
->SetPosition(pos
);
4719 newPara
->SetAttributes(*p
);
4721 // Set the range we'll need to delete in Undo
4722 action
->SetRange(wxRichTextRange(pos
, pos
));
4724 SubmitAction(action
);
4729 /// Submit command to insert the given image
4730 bool wxRichTextBuffer::InsertImageWithUndo(long pos
, const wxRichTextImageBlock
& imageBlock
, wxRichTextCtrl
* ctrl
, int flags
)
4732 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Image"), 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 #if wxRICHTEXT_USE_DYNAMIC_STYLES
4744 wxTextAttrEx
attr(GetDefaultStyle());
4746 wxTextAttrEx
attr(GetBasicStyle());
4747 wxRichTextApplyStyle(attr
, GetDefaultStyle());
4750 wxRichTextParagraph
* newPara
= new wxRichTextParagraph(this, & attr
);
4752 newPara
->SetAttributes(*p
);
4754 wxRichTextImage
* imageObject
= new wxRichTextImage(imageBlock
, newPara
);
4755 newPara
->AppendChild(imageObject
);
4756 action
->GetNewParagraphs().AppendChild(newPara
);
4757 action
->GetNewParagraphs().UpdateRanges();
4759 action
->GetNewParagraphs().SetPartialParagraph(true);
4761 action
->SetPosition(pos
);
4763 // Set the range we'll need to delete in Undo
4764 action
->SetRange(wxRichTextRange(pos
, pos
));
4766 SubmitAction(action
);
4771 /// Get the style that is appropriate for a new paragraph at this position.
4772 /// If the previous paragraph has a paragraph style name, look up the next-paragraph
4774 wxRichTextAttr
wxRichTextBuffer::GetStyleForNewParagraph(long pos
, bool caretPosition
) const
4776 wxRichTextParagraph
* para
= GetParagraphAtPosition(pos
, caretPosition
);
4779 wxRichTextAttr attr
;
4780 bool foundAttributes
= false;
4782 // Look for a matching paragraph style
4783 if (!para
->GetAttributes().GetParagraphStyleName().IsEmpty() && GetStyleSheet())
4785 wxRichTextParagraphStyleDefinition
* paraDef
= GetStyleSheet()->FindParagraphStyle(para
->GetAttributes().GetParagraphStyleName());
4788 if (!paraDef
->GetNextStyle().IsEmpty())
4790 wxRichTextParagraphStyleDefinition
* nextParaDef
= GetStyleSheet()->FindParagraphStyle(paraDef
->GetNextStyle());
4793 foundAttributes
= true;
4794 attr
= nextParaDef
->GetStyle();
4798 // If we didn't find the 'next style', use this style instead.
4799 if (!foundAttributes
)
4801 foundAttributes
= true;
4802 attr
= paraDef
->GetStyle();
4806 if (!foundAttributes
)
4808 attr
= para
->GetAttributes();
4809 int flags
= attr
.GetFlags();
4811 // Eliminate character styles
4812 flags
&= ( (~ wxTEXT_ATTR_FONT
) |
4813 (~ wxTEXT_ATTR_TEXT_COLOUR
) |
4814 (~ wxTEXT_ATTR_BACKGROUND_COLOUR
) );
4815 attr
.SetFlags(flags
);
4818 // Now see if we need to number the paragraph.
4819 if (attr
.HasBulletStyle())
4821 wxRichTextAttr numberingAttr
;
4822 if (FindNextParagraphNumber(para
, numberingAttr
))
4823 wxRichTextApplyStyle(attr
, (const wxRichTextAttr
&) numberingAttr
);
4829 return wxRichTextAttr();
4832 /// Submit command to delete this range
4833 bool wxRichTextBuffer::DeleteRangeWithUndo(const wxRichTextRange
& range
, long initialCaretPosition
, long WXUNUSED(newCaretPositon
), wxRichTextCtrl
* ctrl
)
4835 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Delete"), wxRICHTEXT_DELETE
, this, ctrl
);
4837 action
->SetPosition(initialCaretPosition
);
4839 // Set the range to delete
4840 action
->SetRange(range
);
4842 // Copy the fragment that we'll need to restore in Undo
4843 CopyFragment(range
, action
->GetOldParagraphs());
4845 // Special case: if there is only one (non-partial) paragraph,
4846 // we must save the *next* paragraph's style, because that
4847 // is the style we must apply when inserting the content back
4848 // when undoing the delete. (This is because we're merging the
4849 // paragraph with the previous paragraph and throwing away
4850 // the style, and we need to restore it.)
4851 if (!action
->GetOldParagraphs().GetPartialParagraph() && action
->GetOldParagraphs().GetChildCount() == 1)
4853 wxRichTextParagraph
* lastPara
= GetParagraphAtPosition(range
.GetStart());
4856 wxRichTextParagraph
* nextPara
= GetParagraphAtPosition(range
.GetEnd()+1);
4859 wxRichTextParagraph
* para
= (wxRichTextParagraph
*) action
->GetOldParagraphs().GetChild(0);
4860 para
->SetAttributes(nextPara
->GetAttributes());
4865 SubmitAction(action
);
4870 /// Collapse undo/redo commands
4871 bool wxRichTextBuffer::BeginBatchUndo(const wxString
& cmdName
)
4873 if (m_batchedCommandDepth
== 0)
4875 wxASSERT(m_batchedCommand
== NULL
);
4876 if (m_batchedCommand
)
4878 GetCommandProcessor()->Submit(m_batchedCommand
);
4880 m_batchedCommand
= new wxRichTextCommand(cmdName
);
4883 m_batchedCommandDepth
++;
4888 /// Collapse undo/redo commands
4889 bool wxRichTextBuffer::EndBatchUndo()
4891 m_batchedCommandDepth
--;
4893 wxASSERT(m_batchedCommandDepth
>= 0);
4894 wxASSERT(m_batchedCommand
!= NULL
);
4896 if (m_batchedCommandDepth
== 0)
4898 GetCommandProcessor()->Submit(m_batchedCommand
);
4899 m_batchedCommand
= NULL
;
4905 /// Submit immediately, or delay according to whether collapsing is on
4906 bool wxRichTextBuffer::SubmitAction(wxRichTextAction
* action
)
4908 if (BatchingUndo() && m_batchedCommand
&& !SuppressingUndo())
4909 m_batchedCommand
->AddAction(action
);
4912 wxRichTextCommand
* cmd
= new wxRichTextCommand(action
->GetName());
4913 cmd
->AddAction(action
);
4915 // Only store it if we're not suppressing undo.
4916 return GetCommandProcessor()->Submit(cmd
, !SuppressingUndo());
4922 /// Begin suppressing undo/redo commands.
4923 bool wxRichTextBuffer::BeginSuppressUndo()
4930 /// End suppressing undo/redo commands.
4931 bool wxRichTextBuffer::EndSuppressUndo()
4938 /// Begin using a style
4939 bool wxRichTextBuffer::BeginStyle(const wxTextAttrEx
& style
)
4941 wxTextAttrEx
newStyle(GetDefaultStyle());
4943 // Save the old default style
4944 m_attributeStack
.Append((wxObject
*) new wxTextAttrEx(GetDefaultStyle()));
4946 wxRichTextApplyStyle(newStyle
, style
);
4947 newStyle
.SetFlags(style
.GetFlags()|newStyle
.GetFlags());
4949 SetDefaultStyle(newStyle
);
4951 // wxLogDebug("Default style size = %d", GetDefaultStyle().GetFont().GetPointSize());
4957 bool wxRichTextBuffer::EndStyle()
4959 if (!m_attributeStack
.GetFirst())
4961 wxLogDebug(_("Too many EndStyle calls!"));
4965 wxList::compatibility_iterator node
= m_attributeStack
.GetLast();
4966 wxTextAttrEx
* attr
= (wxTextAttrEx
*)node
->GetData();
4967 m_attributeStack
.Erase(node
);
4969 SetDefaultStyle(*attr
);
4976 bool wxRichTextBuffer::EndAllStyles()
4978 while (m_attributeStack
.GetCount() != 0)
4983 /// Clear the style stack
4984 void wxRichTextBuffer::ClearStyleStack()
4986 for (wxList::compatibility_iterator node
= m_attributeStack
.GetFirst(); node
; node
= node
->GetNext())
4987 delete (wxTextAttrEx
*) node
->GetData();
4988 m_attributeStack
.Clear();
4991 /// Begin using bold
4992 bool wxRichTextBuffer::BeginBold()
4994 wxFont
font(GetBasicStyle().GetFont());
4995 font
.SetWeight(wxBOLD
);
4998 attr
.SetFont(font
,wxTEXT_ATTR_FONT_WEIGHT
);
5000 return BeginStyle(attr
);
5003 /// Begin using italic
5004 bool wxRichTextBuffer::BeginItalic()
5006 wxFont
font(GetBasicStyle().GetFont());
5007 font
.SetStyle(wxITALIC
);
5010 attr
.SetFont(font
, wxTEXT_ATTR_FONT_ITALIC
);
5012 return BeginStyle(attr
);
5015 /// Begin using underline
5016 bool wxRichTextBuffer::BeginUnderline()
5018 wxFont
font(GetBasicStyle().GetFont());
5019 font
.SetUnderlined(true);
5022 attr
.SetFont(font
, wxTEXT_ATTR_FONT_UNDERLINE
);
5024 return BeginStyle(attr
);
5027 /// Begin using point size
5028 bool wxRichTextBuffer::BeginFontSize(int pointSize
)
5030 wxFont
font(GetBasicStyle().GetFont());
5031 font
.SetPointSize(pointSize
);
5034 attr
.SetFont(font
, wxTEXT_ATTR_FONT_SIZE
);
5036 return BeginStyle(attr
);
5039 /// Begin using this font
5040 bool wxRichTextBuffer::BeginFont(const wxFont
& font
)
5043 attr
.SetFlags(wxTEXT_ATTR_FONT
);
5046 return BeginStyle(attr
);
5049 /// Begin using this colour
5050 bool wxRichTextBuffer::BeginTextColour(const wxColour
& colour
)
5053 attr
.SetFlags(wxTEXT_ATTR_TEXT_COLOUR
);
5054 attr
.SetTextColour(colour
);
5056 return BeginStyle(attr
);
5059 /// Begin using alignment
5060 bool wxRichTextBuffer::BeginAlignment(wxTextAttrAlignment alignment
)
5063 attr
.SetFlags(wxTEXT_ATTR_ALIGNMENT
);
5064 attr
.SetAlignment(alignment
);
5066 return BeginStyle(attr
);
5069 /// Begin left indent
5070 bool wxRichTextBuffer::BeginLeftIndent(int leftIndent
, int leftSubIndent
)
5073 attr
.SetFlags(wxTEXT_ATTR_LEFT_INDENT
);
5074 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5076 return BeginStyle(attr
);
5079 /// Begin right indent
5080 bool wxRichTextBuffer::BeginRightIndent(int rightIndent
)
5083 attr
.SetFlags(wxTEXT_ATTR_RIGHT_INDENT
);
5084 attr
.SetRightIndent(rightIndent
);
5086 return BeginStyle(attr
);
5089 /// Begin paragraph spacing
5090 bool wxRichTextBuffer::BeginParagraphSpacing(int before
, int after
)
5094 flags
|= wxTEXT_ATTR_PARA_SPACING_BEFORE
;
5096 flags
|= wxTEXT_ATTR_PARA_SPACING_AFTER
;
5099 attr
.SetFlags(flags
);
5100 attr
.SetParagraphSpacingBefore(before
);
5101 attr
.SetParagraphSpacingAfter(after
);
5103 return BeginStyle(attr
);
5106 /// Begin line spacing
5107 bool wxRichTextBuffer::BeginLineSpacing(int lineSpacing
)
5110 attr
.SetFlags(wxTEXT_ATTR_LINE_SPACING
);
5111 attr
.SetLineSpacing(lineSpacing
);
5113 return BeginStyle(attr
);
5116 /// Begin numbered bullet
5117 bool wxRichTextBuffer::BeginNumberedBullet(int bulletNumber
, int leftIndent
, int leftSubIndent
, int bulletStyle
)
5120 attr
.SetFlags(wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_LEFT_INDENT
);
5121 attr
.SetBulletStyle(bulletStyle
);
5122 attr
.SetBulletNumber(bulletNumber
);
5123 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5125 return BeginStyle(attr
);
5128 /// Begin symbol bullet
5129 bool wxRichTextBuffer::BeginSymbolBullet(const wxString
& symbol
, int leftIndent
, int leftSubIndent
, int bulletStyle
)
5132 attr
.SetFlags(wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_LEFT_INDENT
);
5133 attr
.SetBulletStyle(bulletStyle
);
5134 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5135 attr
.SetBulletText(symbol
);
5137 return BeginStyle(attr
);
5140 /// Begin standard bullet
5141 bool wxRichTextBuffer::BeginStandardBullet(const wxString
& bulletName
, int leftIndent
, int leftSubIndent
, int bulletStyle
)
5144 attr
.SetFlags(wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_LEFT_INDENT
);
5145 attr
.SetBulletStyle(bulletStyle
);
5146 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5147 attr
.SetBulletName(bulletName
);
5149 return BeginStyle(attr
);
5152 /// Begin named character style
5153 bool wxRichTextBuffer::BeginCharacterStyle(const wxString
& characterStyle
)
5155 if (GetStyleSheet())
5157 wxRichTextCharacterStyleDefinition
* def
= GetStyleSheet()->FindCharacterStyle(characterStyle
);
5161 def
->GetStyle().CopyTo(attr
);
5162 return BeginStyle(attr
);
5168 /// Begin named paragraph style
5169 bool wxRichTextBuffer::BeginParagraphStyle(const wxString
& paragraphStyle
)
5171 if (GetStyleSheet())
5173 wxRichTextParagraphStyleDefinition
* def
= GetStyleSheet()->FindParagraphStyle(paragraphStyle
);
5177 def
->GetStyle().CopyTo(attr
);
5178 return BeginStyle(attr
);
5184 /// Begin named list style
5185 bool wxRichTextBuffer::BeginListStyle(const wxString
& listStyle
, int level
, int number
)
5187 if (GetStyleSheet())
5189 wxRichTextListStyleDefinition
* def
= GetStyleSheet()->FindListStyle(listStyle
);
5192 wxTextAttrEx
attr(def
->GetCombinedStyleForLevel(level
));
5194 attr
.SetBulletNumber(number
);
5196 return BeginStyle(attr
);
5203 bool wxRichTextBuffer::BeginURL(const wxString
& url
, const wxString
& characterStyle
)
5207 if (!characterStyle
.IsEmpty() && GetStyleSheet())
5209 wxRichTextCharacterStyleDefinition
* def
= GetStyleSheet()->FindCharacterStyle(characterStyle
);
5212 def
->GetStyle().CopyTo(attr
);
5217 return BeginStyle(attr
);
5220 /// Adds a handler to the end
5221 void wxRichTextBuffer::AddHandler(wxRichTextFileHandler
*handler
)
5223 sm_handlers
.Append(handler
);
5226 /// Inserts a handler at the front
5227 void wxRichTextBuffer::InsertHandler(wxRichTextFileHandler
*handler
)
5229 sm_handlers
.Insert( handler
);
5232 /// Removes a handler
5233 bool wxRichTextBuffer::RemoveHandler(const wxString
& name
)
5235 wxRichTextFileHandler
*handler
= FindHandler(name
);
5238 sm_handlers
.DeleteObject(handler
);
5246 /// Finds a handler by filename or, if supplied, type
5247 wxRichTextFileHandler
*wxRichTextBuffer::FindHandlerFilenameOrType(const wxString
& filename
, int imageType
)
5249 if (imageType
!= wxRICHTEXT_TYPE_ANY
)
5250 return FindHandler(imageType
);
5251 else if (!filename
.IsEmpty())
5253 wxString path
, file
, ext
;
5254 wxSplitPath(filename
, & path
, & file
, & ext
);
5255 return FindHandler(ext
, imageType
);
5262 /// Finds a handler by name
5263 wxRichTextFileHandler
* wxRichTextBuffer::FindHandler(const wxString
& name
)
5265 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5268 wxRichTextFileHandler
*handler
= (wxRichTextFileHandler
*)node
->GetData();
5269 if (handler
->GetName().Lower() == name
.Lower()) return handler
;
5271 node
= node
->GetNext();
5276 /// Finds a handler by extension and type
5277 wxRichTextFileHandler
* wxRichTextBuffer::FindHandler(const wxString
& extension
, int type
)
5279 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5282 wxRichTextFileHandler
*handler
= (wxRichTextFileHandler
*)node
->GetData();
5283 if ( handler
->GetExtension().Lower() == extension
.Lower() &&
5284 (type
== wxRICHTEXT_TYPE_ANY
|| handler
->GetType() == type
) )
5286 node
= node
->GetNext();
5291 /// Finds a handler by type
5292 wxRichTextFileHandler
* wxRichTextBuffer::FindHandler(int type
)
5294 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5297 wxRichTextFileHandler
*handler
= (wxRichTextFileHandler
*)node
->GetData();
5298 if (handler
->GetType() == type
) return handler
;
5299 node
= node
->GetNext();
5304 void wxRichTextBuffer::InitStandardHandlers()
5306 if (!FindHandler(wxRICHTEXT_TYPE_TEXT
))
5307 AddHandler(new wxRichTextPlainTextHandler
);
5310 void wxRichTextBuffer::CleanUpHandlers()
5312 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5315 wxRichTextFileHandler
* handler
= (wxRichTextFileHandler
*)node
->GetData();
5316 wxList::compatibility_iterator next
= node
->GetNext();
5321 sm_handlers
.Clear();
5324 wxString
wxRichTextBuffer::GetExtWildcard(bool combine
, bool save
, wxArrayInt
* types
)
5331 wxList::compatibility_iterator node
= GetHandlers().GetFirst();
5335 wxRichTextFileHandler
* handler
= (wxRichTextFileHandler
*) node
->GetData();
5336 if (handler
->IsVisible() && ((save
&& handler
->CanSave()) || !save
&& handler
->CanLoad()))
5341 wildcard
+= wxT(";");
5342 wildcard
+= wxT("*.") + handler
->GetExtension();
5347 wildcard
+= wxT("|");
5348 wildcard
+= handler
->GetName();
5349 wildcard
+= wxT(" ");
5350 wildcard
+= _("files");
5351 wildcard
+= wxT(" (*.");
5352 wildcard
+= handler
->GetExtension();
5353 wildcard
+= wxT(")|*.");
5354 wildcard
+= handler
->GetExtension();
5356 types
->Add(handler
->GetType());
5361 node
= node
->GetNext();
5365 wildcard
= wxT("(") + wildcard
+ wxT(")|") + wildcard
;
5370 bool wxRichTextBuffer::LoadFile(const wxString
& filename
, int type
)
5372 wxRichTextFileHandler
* handler
= FindHandlerFilenameOrType(filename
, type
);
5375 SetDefaultStyle(wxTextAttrEx());
5376 handler
->SetFlags(GetHandlerFlags());
5377 bool success
= handler
->LoadFile(this, filename
);
5378 Invalidate(wxRICHTEXT_ALL
);
5386 bool wxRichTextBuffer::SaveFile(const wxString
& filename
, int type
)
5388 wxRichTextFileHandler
* handler
= FindHandlerFilenameOrType(filename
, type
);
5391 handler
->SetFlags(GetHandlerFlags());
5392 return handler
->SaveFile(this, filename
);
5398 /// Load from a stream
5399 bool wxRichTextBuffer::LoadFile(wxInputStream
& stream
, int type
)
5401 wxRichTextFileHandler
* handler
= FindHandler(type
);
5404 SetDefaultStyle(wxTextAttrEx());
5405 handler
->SetFlags(GetHandlerFlags());
5406 bool success
= handler
->LoadFile(this, stream
);
5407 Invalidate(wxRICHTEXT_ALL
);
5414 /// Save to a stream
5415 bool wxRichTextBuffer::SaveFile(wxOutputStream
& stream
, int type
)
5417 wxRichTextFileHandler
* handler
= FindHandler(type
);
5420 handler
->SetFlags(GetHandlerFlags());
5421 return handler
->SaveFile(this, stream
);
5427 /// Copy the range to the clipboard
5428 bool wxRichTextBuffer::CopyToClipboard(const wxRichTextRange
& range
)
5430 bool success
= false;
5431 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
5433 if (!wxTheClipboard
->IsOpened() && wxTheClipboard
->Open())
5435 wxTheClipboard
->Clear();
5437 // Add composite object
5439 wxDataObjectComposite
* compositeObject
= new wxDataObjectComposite();
5442 wxString text
= GetTextForRange(range
);
5445 text
= wxTextFile::Translate(text
, wxTextFileType_Dos
);
5448 compositeObject
->Add(new wxTextDataObject(text
), false /* not preferred */);
5451 // Add rich text buffer data object. This needs the XML handler to be present.
5453 if (FindHandler(wxRICHTEXT_TYPE_XML
))
5455 wxRichTextBuffer
* richTextBuf
= new wxRichTextBuffer
;
5456 CopyFragment(range
, *richTextBuf
);
5458 compositeObject
->Add(new wxRichTextBufferDataObject(richTextBuf
), true /* preferred */);
5461 if (wxTheClipboard
->SetData(compositeObject
))
5464 wxTheClipboard
->Close();
5473 /// Paste the clipboard content to the buffer
5474 bool wxRichTextBuffer::PasteFromClipboard(long position
)
5476 bool success
= false;
5477 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
5478 if (CanPasteFromClipboard())
5480 if (wxTheClipboard
->Open())
5482 if (wxTheClipboard
->IsSupported(wxDataFormat(wxRichTextBufferDataObject::GetRichTextBufferFormatId())))
5484 wxRichTextBufferDataObject data
;
5485 wxTheClipboard
->GetData(data
);
5486 wxRichTextBuffer
* richTextBuffer
= data
.GetRichTextBuffer();
5489 InsertParagraphsWithUndo(position
+1, *richTextBuffer
, GetRichTextCtrl(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
5490 delete richTextBuffer
;
5493 else if (wxTheClipboard
->IsSupported(wxDF_TEXT
) || wxTheClipboard
->IsSupported(wxDF_UNICODETEXT
))
5495 wxTextDataObject data
;
5496 wxTheClipboard
->GetData(data
);
5497 wxString
text(data
.GetText());
5498 text
.Replace(_T("\r\n"), _T("\n"));
5500 InsertTextWithUndo(position
+1, text
, GetRichTextCtrl());
5504 else if (wxTheClipboard
->IsSupported(wxDF_BITMAP
))
5506 wxBitmapDataObject data
;
5507 wxTheClipboard
->GetData(data
);
5508 wxBitmap
bitmap(data
.GetBitmap());
5509 wxImage
image(bitmap
.ConvertToImage());
5511 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Image"), wxRICHTEXT_INSERT
, this, GetRichTextCtrl(), false);
5513 action
->GetNewParagraphs().AddImage(image
);
5515 if (action
->GetNewParagraphs().GetChildCount() == 1)
5516 action
->GetNewParagraphs().SetPartialParagraph(true);
5518 action
->SetPosition(position
);
5520 // Set the range we'll need to delete in Undo
5521 action
->SetRange(wxRichTextRange(position
, position
));
5523 SubmitAction(action
);
5527 wxTheClipboard
->Close();
5531 wxUnusedVar(position
);
5536 /// Can we paste from the clipboard?
5537 bool wxRichTextBuffer::CanPasteFromClipboard() const
5539 bool canPaste
= false;
5540 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
5541 if (!wxTheClipboard
->IsOpened() && wxTheClipboard
->Open())
5543 if (wxTheClipboard
->IsSupported(wxDF_TEXT
) || wxTheClipboard
->IsSupported(wxDF_UNICODETEXT
) ||
5544 wxTheClipboard
->IsSupported(wxDataFormat(wxRichTextBufferDataObject::GetRichTextBufferFormatId())) ||
5545 wxTheClipboard
->IsSupported(wxDF_BITMAP
))
5549 wxTheClipboard
->Close();
5555 /// Dumps contents of buffer for debugging purposes
5556 void wxRichTextBuffer::Dump()
5560 wxStringOutputStream
stream(& text
);
5561 wxTextOutputStream
textStream(stream
);
5568 /// Add an event handler
5569 bool wxRichTextBuffer::AddEventHandler(wxEvtHandler
* handler
)
5571 m_eventHandlers
.Append(handler
);
5575 /// Remove an event handler
5576 bool wxRichTextBuffer::RemoveEventHandler(wxEvtHandler
* handler
, bool deleteHandler
)
5578 wxList::compatibility_iterator node
= m_eventHandlers
.Find(handler
);
5581 m_eventHandlers
.Erase(node
);
5591 /// Clear event handlers
5592 void wxRichTextBuffer::ClearEventHandlers()
5594 m_eventHandlers
.Clear();
5597 /// Send event to event handlers. If sendToAll is true, will send to all event handlers,
5598 /// otherwise will stop at the first successful one.
5599 bool wxRichTextBuffer::SendEvent(wxEvent
& event
, bool sendToAll
)
5601 bool success
= false;
5602 for (wxList::compatibility_iterator node
= m_eventHandlers
.GetFirst(); node
; node
= node
->GetNext())
5604 wxEvtHandler
* handler
= (wxEvtHandler
*) node
->GetData();
5605 if (handler
->ProcessEvent(event
))
5615 /// Set style sheet and notify of the change
5616 bool wxRichTextBuffer::SetStyleSheetAndNotify(wxRichTextStyleSheet
* sheet
)
5618 wxRichTextStyleSheet
* oldSheet
= GetStyleSheet();
5620 wxWindowID id
= wxID_ANY
;
5621 if (GetRichTextCtrl())
5622 id
= GetRichTextCtrl()->GetId();
5624 wxRichTextEvent
event(wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING
, id
);
5625 event
.SetEventObject(GetRichTextCtrl());
5626 event
.SetOldStyleSheet(oldSheet
);
5627 event
.SetNewStyleSheet(sheet
);
5630 if (SendEvent(event
) && !event
.IsAllowed())
5632 if (sheet
!= oldSheet
)
5638 if (oldSheet
&& oldSheet
!= sheet
)
5641 SetStyleSheet(sheet
);
5643 event
.SetEventType(wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED
);
5644 event
.SetOldStyleSheet(NULL
);
5647 return SendEvent(event
);
5650 /// Set renderer, deleting old one
5651 void wxRichTextBuffer::SetRenderer(wxRichTextRenderer
* renderer
)
5655 sm_renderer
= renderer
;
5658 bool wxRichTextStdRenderer::DrawStandardBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttrEx
& bulletAttr
, const wxRect
& rect
)
5660 if (bulletAttr
.GetTextColour().Ok())
5662 dc
.SetPen(wxPen(bulletAttr
.GetTextColour()));
5663 dc
.SetBrush(wxBrush(bulletAttr
.GetTextColour()));
5667 dc
.SetPen(*wxBLACK_PEN
);
5668 dc
.SetBrush(*wxBLACK_BRUSH
);
5672 if (bulletAttr
.GetFont().Ok())
5673 font
= bulletAttr
.GetFont();
5675 font
= (*wxNORMAL_FONT
);
5679 int charHeight
= dc
.GetCharHeight();
5681 int bulletWidth
= (int) (((float) charHeight
) * wxRichTextBuffer::GetBulletProportion());
5682 int bulletHeight
= bulletWidth
;
5686 // Calculate the top position of the character (as opposed to the whole line height)
5687 int y
= rect
.y
+ (rect
.height
- charHeight
);
5689 // Calculate where the bullet should be positioned
5690 y
= y
+ (charHeight
+1)/2 - (bulletHeight
+1)/2;
5692 // The margin between a bullet and text.
5693 int margin
= paragraph
->ConvertTenthsMMToPixels(dc
, wxRichTextBuffer::GetBulletRightMargin());
5695 if (bulletAttr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT
)
5696 x
= rect
.x
+ rect
.width
- bulletWidth
- margin
;
5697 else if (bulletAttr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE
)
5698 x
= x
+ (rect
.width
)/2 - bulletWidth
/2;
5700 if (bulletAttr
.GetBulletName() == wxT("standard/square"))
5702 dc
.DrawRectangle(x
, y
, bulletWidth
, bulletHeight
);
5704 else if (bulletAttr
.GetBulletName() == wxT("standard/diamond"))
5707 pts
[0].x
= x
; pts
[0].y
= y
+ bulletHeight
/2;
5708 pts
[1].x
= x
+ bulletWidth
/2; pts
[1].y
= y
;
5709 pts
[2].x
= x
+ bulletWidth
; pts
[2].y
= y
+ bulletHeight
/2;
5710 pts
[3].x
= x
+ bulletWidth
/2; pts
[3].y
= y
+ bulletHeight
;
5712 dc
.DrawPolygon(4, pts
);
5714 else if (bulletAttr
.GetBulletName() == wxT("standard/triangle"))
5717 pts
[0].x
= x
; pts
[0].y
= y
;
5718 pts
[1].x
= x
+ bulletWidth
; pts
[1].y
= y
+ bulletHeight
/2;
5719 pts
[2].x
= x
; pts
[2].y
= y
+ bulletHeight
;
5721 dc
.DrawPolygon(3, pts
);
5723 else // "standard/circle", and catch-all
5725 dc
.DrawEllipse(x
, y
, bulletWidth
, bulletHeight
);
5731 bool wxRichTextStdRenderer::DrawTextBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttrEx
& attr
, const wxRect
& rect
, const wxString
& text
)
5736 if ((attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_SYMBOL
) && !attr
.GetBulletFont().IsEmpty() && attr
.GetFont().Ok())
5738 font
= (*wxTheFontList
->FindOrCreateFont(attr
.GetFont().GetPointSize(), attr
.GetFont().GetFamily(),
5739 attr
.GetFont().GetStyle(), attr
.GetFont().GetWeight(), attr
.GetFont().GetUnderlined(),
5740 attr
.GetBulletFont()));
5742 else if (attr
.GetFont().Ok())
5743 font
= attr
.GetFont();
5745 font
= (*wxNORMAL_FONT
);
5749 if (attr
.GetTextColour().Ok())
5750 dc
.SetTextForeground(attr
.GetTextColour());
5752 dc
.SetBackgroundMode(wxTRANSPARENT
);
5754 int charHeight
= dc
.GetCharHeight();
5756 dc
.GetTextExtent(text
, & tw
, & th
);
5760 // Calculate the top position of the character (as opposed to the whole line height)
5761 int y
= rect
.y
+ (rect
.height
- charHeight
);
5763 // The margin between a bullet and text.
5764 int margin
= paragraph
->ConvertTenthsMMToPixels(dc
, wxRichTextBuffer::GetBulletRightMargin());
5766 if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT
)
5767 x
= (rect
.x
+ rect
.width
) - tw
- margin
;
5768 else if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE
)
5769 x
= x
+ (rect
.width
)/2 - tw
/2;
5771 dc
.DrawText(text
, x
, y
);
5779 bool wxRichTextStdRenderer::DrawBitmapBullet(wxRichTextParagraph
* WXUNUSED(paragraph
), wxDC
& WXUNUSED(dc
), const wxTextAttrEx
& WXUNUSED(attr
), const wxRect
& WXUNUSED(rect
))
5781 // Currently unimplemented. The intention is to store bitmaps by name in a media store associated
5782 // with the buffer. The store will allow retrieval from memory, disk or other means.
5786 /// Enumerate the standard bullet names currently supported
5787 bool wxRichTextStdRenderer::EnumerateStandardBulletNames(wxArrayString
& bulletNames
)
5789 bulletNames
.Add(wxT("standard/circle"));
5790 bulletNames
.Add(wxT("standard/square"));
5791 bulletNames
.Add(wxT("standard/diamond"));
5792 bulletNames
.Add(wxT("standard/triangle"));
5798 * Module to initialise and clean up handlers
5801 class wxRichTextModule
: public wxModule
5803 DECLARE_DYNAMIC_CLASS(wxRichTextModule
)
5805 wxRichTextModule() {}
5808 wxRichTextBuffer::SetRenderer(new wxRichTextStdRenderer
);
5809 wxRichTextBuffer::InitStandardHandlers();
5810 wxRichTextParagraph::InitDefaultTabs();
5815 wxRichTextBuffer::CleanUpHandlers();
5816 wxRichTextDecimalToRoman(-1);
5817 wxRichTextParagraph::ClearDefaultTabs();
5818 wxRichTextCtrl::ClearAvailableFontNames();
5819 wxRichTextBuffer::SetRenderer(NULL
);
5823 IMPLEMENT_DYNAMIC_CLASS(wxRichTextModule
, wxModule
)
5826 // If the richtext lib is dynamically loaded after the app has already started
5827 // (such as from wxPython) then the built-in module system will not init this
5828 // module. Provide this function to do it manually.
5829 void wxRichTextModuleInit()
5831 wxModule
* module = new wxRichTextModule
;
5833 wxModule::RegisterModule(module);
5838 * Commands for undo/redo
5842 wxRichTextCommand::wxRichTextCommand(const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
5843 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
): wxCommand(true, name
)
5845 /* wxRichTextAction* action = */ new wxRichTextAction(this, name
, id
, buffer
, ctrl
, ignoreFirstTime
);
5848 wxRichTextCommand::wxRichTextCommand(const wxString
& name
): wxCommand(true, name
)
5852 wxRichTextCommand::~wxRichTextCommand()
5857 void wxRichTextCommand::AddAction(wxRichTextAction
* action
)
5859 if (!m_actions
.Member(action
))
5860 m_actions
.Append(action
);
5863 bool wxRichTextCommand::Do()
5865 for (wxList::compatibility_iterator node
= m_actions
.GetFirst(); node
; node
= node
->GetNext())
5867 wxRichTextAction
* action
= (wxRichTextAction
*) node
->GetData();
5874 bool wxRichTextCommand::Undo()
5876 for (wxList::compatibility_iterator node
= m_actions
.GetLast(); node
; node
= node
->GetPrevious())
5878 wxRichTextAction
* action
= (wxRichTextAction
*) node
->GetData();
5885 void wxRichTextCommand::ClearActions()
5887 WX_CLEAR_LIST(wxList
, m_actions
);
5895 wxRichTextAction::wxRichTextAction(wxRichTextCommand
* cmd
, const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
5896 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
)
5899 m_ignoreThis
= ignoreFirstTime
;
5904 m_newParagraphs
.SetDefaultStyle(buffer
->GetDefaultStyle());
5905 m_newParagraphs
.SetBasicStyle(buffer
->GetBasicStyle());
5907 cmd
->AddAction(this);
5910 wxRichTextAction::~wxRichTextAction()
5914 bool wxRichTextAction::Do()
5916 m_buffer
->Modify(true);
5920 case wxRICHTEXT_INSERT
:
5922 // Store a list of line start character and y positions so we can figure out which area
5923 // we need to refresh
5924 wxArrayInt optimizationLineCharPositions
;
5925 wxArrayInt optimizationLineYPositions
;
5927 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
5928 // NOTE: we're assuming that the buffer is laid out correctly at this point.
5929 // If we had several actions, which only invalidate and leave layout until the
5930 // paint handler is called, then this might not be true. So we may need to switch
5931 // optimisation on only when we're simply adding text and not simultaneously
5932 // deleting a selection, for example. Or, we make sure the buffer is laid out correctly
5933 // first, but of course this means we'll be doing it twice.
5934 if (!m_buffer
->GetDirty() && m_ctrl
) // can only do optimisation if the buffer is already laid out correctly
5936 wxSize clientSize
= m_ctrl
->GetClientSize();
5937 wxPoint firstVisiblePt
= m_ctrl
->GetFirstVisiblePoint();
5938 int lastY
= firstVisiblePt
.y
+ clientSize
.y
;
5940 wxRichTextParagraph
* para
= m_buffer
->GetParagraphAtPosition(GetPosition());
5941 wxRichTextObjectList::compatibility_iterator node
= m_buffer
->GetChildren().Find(para
);
5944 wxRichTextParagraph
* child
= (wxRichTextParagraph
*) node
->GetData();
5945 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
5948 wxRichTextLine
* line
= node2
->GetData();
5949 wxPoint pt
= line
->GetAbsolutePosition();
5950 wxRichTextRange range
= line
->GetAbsoluteRange();
5957 else if (range
.GetStart() > GetPosition() && pt
.y
>= firstVisiblePt
.y
)
5959 optimizationLineCharPositions
.Add(range
.GetStart());
5960 optimizationLineYPositions
.Add(pt
.y
);
5964 node2
= node2
->GetNext();
5968 node
= node
->GetNext();
5973 m_buffer
->InsertFragment(GetPosition(), m_newParagraphs
);
5974 m_buffer
->UpdateRanges();
5975 m_buffer
->Invalidate(GetRange());
5977 long newCaretPosition
= GetPosition() + m_newParagraphs
.GetRange().GetLength();
5979 // Character position to caret position
5980 newCaretPosition
--;
5982 // Don't take into account the last newline
5983 if (m_newParagraphs
.GetPartialParagraph())
5984 newCaretPosition
--;
5986 newCaretPosition
= wxMin(newCaretPosition
, (m_buffer
->GetRange().GetEnd()-1));
5989 if (optimizationLineCharPositions
.GetCount() > 0)
5990 UpdateAppearance(newCaretPosition
, true /* send update event */, & optimizationLineCharPositions
, & optimizationLineYPositions
);
5992 UpdateAppearance(newCaretPosition
, true /* send update event */);
5996 case wxRICHTEXT_DELETE
:
5998 m_buffer
->DeleteRange(GetRange());
5999 m_buffer
->UpdateRanges();
6000 m_buffer
->Invalidate(wxRichTextRange(GetRange().GetStart(), GetRange().GetStart()));
6002 UpdateAppearance(GetRange().GetStart()-1, true /* send update event */);
6006 case wxRICHTEXT_CHANGE_STYLE
:
6008 ApplyParagraphs(GetNewParagraphs());
6009 m_buffer
->Invalidate(GetRange());
6011 UpdateAppearance(GetPosition());
6022 bool wxRichTextAction::Undo()
6024 m_buffer
->Modify(true);
6028 case wxRICHTEXT_INSERT
:
6030 m_buffer
->DeleteRange(GetRange());
6031 m_buffer
->UpdateRanges();
6032 m_buffer
->Invalidate(wxRichTextRange(GetRange().GetStart(), GetRange().GetStart()));
6034 long newCaretPosition
= GetPosition() - 1;
6035 // if (m_newParagraphs.GetPartialParagraph())
6036 // newCaretPosition --;
6038 UpdateAppearance(newCaretPosition
, true /* send update event */);
6042 case wxRICHTEXT_DELETE
:
6044 m_buffer
->InsertFragment(GetRange().GetStart(), m_oldParagraphs
);
6045 m_buffer
->UpdateRanges();
6046 m_buffer
->Invalidate(GetRange());
6048 UpdateAppearance(GetPosition(), true /* send update event */);
6052 case wxRICHTEXT_CHANGE_STYLE
:
6054 ApplyParagraphs(GetOldParagraphs());
6055 m_buffer
->Invalidate(GetRange());
6057 UpdateAppearance(GetPosition());
6068 /// Update the control appearance
6069 void wxRichTextAction::UpdateAppearance(long caretPosition
, bool sendUpdateEvent
, wxArrayInt
* optimizationLineCharPositions
, wxArrayInt
* optimizationLineYPositions
)
6073 m_ctrl
->SetCaretPosition(caretPosition
);
6074 if (!m_ctrl
->IsFrozen())
6076 m_ctrl
->LayoutContent();
6077 m_ctrl
->PositionCaret();
6079 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6080 // Find refresh rectangle if we are in a position to optimise refresh
6081 if (m_cmdId
== wxRICHTEXT_INSERT
&& optimizationLineCharPositions
&& optimizationLineCharPositions
->GetCount() > 0)
6085 wxSize clientSize
= m_ctrl
->GetClientSize();
6086 wxPoint firstVisiblePt
= m_ctrl
->GetFirstVisiblePoint();
6088 // Start/end positions
6090 int lastY
= firstVisiblePt
.y
+ clientSize
.y
;
6092 bool foundStart
= false;
6093 bool foundEnd
= false;
6095 // position offset - how many characters were inserted
6096 int positionOffset
= GetRange().GetLength();
6098 // find the first line which is being drawn at the same position as it was
6099 // before. Since we're talking about a simple insertion, we can assume
6100 // that the rest of the window does not need to be redrawn.
6102 wxRichTextParagraph
* para
= m_buffer
->GetParagraphAtPosition(GetPosition());
6103 wxRichTextObjectList::compatibility_iterator node
= m_buffer
->GetChildren().Find(para
);
6106 wxRichTextParagraph
* child
= (wxRichTextParagraph
*) node
->GetData();
6107 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
6110 wxRichTextLine
* line
= node2
->GetData();
6111 wxPoint pt
= line
->GetAbsolutePosition();
6112 wxRichTextRange range
= line
->GetAbsoluteRange();
6114 // we want to find the first line that is in the same position
6115 // as before. This will mean we're at the end of the changed text.
6117 if (pt
.y
> lastY
) // going past the end of the window, no more info
6126 firstY
= pt
.y
- firstVisiblePt
.y
;
6130 // search for this line being at the same position as before
6131 for (i
= 0; i
< optimizationLineCharPositions
->GetCount(); i
++)
6133 if (((*optimizationLineCharPositions
)[i
] + positionOffset
== range
.GetStart()) &&
6134 ((*optimizationLineYPositions
)[i
] == pt
.y
))
6136 // Stop, we're now the same as we were
6138 lastY
= pt
.y
- firstVisiblePt
.y
;
6148 node2
= node2
->GetNext();
6152 node
= node
->GetNext();
6156 firstY
= firstVisiblePt
.y
;
6158 lastY
= firstVisiblePt
.y
+ clientSize
.y
;
6160 wxRect
rect(firstVisiblePt
.x
, firstY
, firstVisiblePt
.x
+ clientSize
.x
, lastY
- firstY
);
6161 m_ctrl
->RefreshRect(rect
);
6163 // TODO: we need to make sure that lines are only drawn if in the update region. The rect
6164 // passed to Draw is currently used in different ways (to pass the position the content should
6165 // be drawn at as well as the relevant region).
6169 m_ctrl
->Refresh(false);
6171 if (sendUpdateEvent
)
6172 m_ctrl
->SendTextUpdatedEvent();
6177 /// Replace the buffer paragraphs with the new ones.
6178 void wxRichTextAction::ApplyParagraphs(const wxRichTextParagraphLayoutBox
& fragment
)
6180 wxRichTextObjectList::compatibility_iterator node
= fragment
.GetChildren().GetFirst();
6183 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
6184 wxASSERT (para
!= NULL
);
6186 // We'll replace the existing paragraph by finding the paragraph at this position,
6187 // delete its node data, and setting a copy as the new node data.
6188 // TODO: make more efficient by simply swapping old and new paragraph objects.
6190 wxRichTextParagraph
* existingPara
= m_buffer
->GetParagraphAtPosition(para
->GetRange().GetStart());
6193 wxRichTextObjectList::compatibility_iterator bufferParaNode
= m_buffer
->GetChildren().Find(existingPara
);
6196 wxRichTextParagraph
* newPara
= new wxRichTextParagraph(*para
);
6197 newPara
->SetParent(m_buffer
);
6199 bufferParaNode
->SetData(newPara
);
6201 delete existingPara
;
6205 node
= node
->GetNext();
6212 * This stores beginning and end positions for a range of data.
6215 /// Limit this range to be within 'range'
6216 bool wxRichTextRange::LimitTo(const wxRichTextRange
& range
)
6218 if (m_start
< range
.m_start
)
6219 m_start
= range
.m_start
;
6221 if (m_end
> range
.m_end
)
6222 m_end
= range
.m_end
;
6228 * wxRichTextImage implementation
6229 * This object represents an image.
6232 IMPLEMENT_DYNAMIC_CLASS(wxRichTextImage
, wxRichTextObject
)
6234 wxRichTextImage::wxRichTextImage(const wxImage
& image
, wxRichTextObject
* parent
):
6235 wxRichTextObject(parent
)
6240 wxRichTextImage::wxRichTextImage(const wxRichTextImageBlock
& imageBlock
, wxRichTextObject
* parent
):
6241 wxRichTextObject(parent
)
6243 m_imageBlock
= imageBlock
;
6244 m_imageBlock
.Load(m_image
);
6247 /// Load wxImage from the block
6248 bool wxRichTextImage::LoadFromBlock()
6250 m_imageBlock
.Load(m_image
);
6251 return m_imageBlock
.Ok();
6254 /// Make block from the wxImage
6255 bool wxRichTextImage::MakeBlock()
6257 if (m_imageBlock
.GetImageType() == wxBITMAP_TYPE_ANY
|| m_imageBlock
.GetImageType() == -1)
6258 m_imageBlock
.SetImageType(wxBITMAP_TYPE_PNG
);
6260 m_imageBlock
.MakeImageBlock(m_image
, m_imageBlock
.GetImageType());
6261 return m_imageBlock
.Ok();
6266 bool wxRichTextImage::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int WXUNUSED(descent
), int WXUNUSED(style
))
6268 if (!m_image
.Ok() && m_imageBlock
.Ok())
6274 if (m_image
.Ok() && !m_bitmap
.Ok())
6275 m_bitmap
= wxBitmap(m_image
);
6277 int y
= rect
.y
+ (rect
.height
- m_image
.GetHeight());
6280 dc
.DrawBitmap(m_bitmap
, rect
.x
, y
, true);
6282 if (selectionRange
.Contains(range
.GetStart()))
6284 dc
.SetBrush(*wxBLACK_BRUSH
);
6285 dc
.SetPen(*wxBLACK_PEN
);
6286 dc
.SetLogicalFunction(wxINVERT
);
6287 dc
.DrawRectangle(rect
);
6288 dc
.SetLogicalFunction(wxCOPY
);
6294 /// Lay the item out
6295 bool wxRichTextImage::Layout(wxDC
& WXUNUSED(dc
), const wxRect
& rect
, int WXUNUSED(style
))
6302 SetCachedSize(wxSize(m_image
.GetWidth(), m_image
.GetHeight()));
6303 SetPosition(rect
.GetPosition());
6309 /// Get/set the object size for the given range. Returns false if the range
6310 /// is invalid for this object.
6311 bool wxRichTextImage::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& WXUNUSED(descent
), wxDC
& WXUNUSED(dc
), int WXUNUSED(flags
), wxPoint
WXUNUSED(position
)) const
6313 if (!range
.IsWithin(GetRange()))
6319 size
.x
= m_image
.GetWidth();
6320 size
.y
= m_image
.GetHeight();
6326 void wxRichTextImage::Copy(const wxRichTextImage
& obj
)
6328 wxRichTextObject::Copy(obj
);
6330 m_image
= obj
.m_image
;
6331 m_imageBlock
= obj
.m_imageBlock
;
6339 /// Compare two attribute objects
6340 bool wxTextAttrEq(const wxTextAttrEx
& attr1
, const wxTextAttrEx
& attr2
)
6342 return (attr1
== attr2
);
6345 bool wxTextAttrEq(const wxTextAttrEx
& attr1
, const wxRichTextAttr
& attr2
)
6348 attr1
.GetTextColour() == attr2
.GetTextColour() &&
6349 attr1
.GetBackgroundColour() == attr2
.GetBackgroundColour() &&
6350 attr1
.GetFont().GetPointSize() == attr2
.GetFontSize() &&
6351 attr1
.GetFont().GetStyle() == attr2
.GetFontStyle() &&
6352 attr1
.GetFont().GetWeight() == attr2
.GetFontWeight() &&
6353 attr1
.GetFont().GetFaceName() == attr2
.GetFontFaceName() &&
6354 attr1
.GetFont().GetUnderlined() == attr2
.GetFontUnderlined() &&
6355 attr1
.GetAlignment() == attr2
.GetAlignment() &&
6356 attr1
.GetLeftIndent() == attr2
.GetLeftIndent() &&
6357 attr1
.GetRightIndent() == attr2
.GetRightIndent() &&
6358 attr1
.GetLeftSubIndent() == attr2
.GetLeftSubIndent() &&
6359 wxRichTextTabsEq(attr1
.GetTabs(), attr2
.GetTabs()) &&
6360 attr1
.GetLineSpacing() == attr2
.GetLineSpacing() &&
6361 attr1
.GetParagraphSpacingAfter() == attr2
.GetParagraphSpacingAfter() &&
6362 attr1
.GetParagraphSpacingBefore() == attr2
.GetParagraphSpacingBefore() &&
6363 attr1
.GetBulletStyle() == attr2
.GetBulletStyle() &&
6364 attr1
.GetBulletNumber() == attr2
.GetBulletNumber() &&
6365 attr1
.GetBulletText() == attr2
.GetBulletText() &&
6366 attr1
.GetBulletName() == attr2
.GetBulletName() &&
6367 attr1
.GetBulletFont() == attr2
.GetBulletFont() &&
6368 attr1
.GetCharacterStyleName() == attr2
.GetCharacterStyleName() &&
6369 attr1
.GetParagraphStyleName() == attr2
.GetParagraphStyleName() &&
6370 attr1
.GetListStyleName() == attr2
.GetListStyleName() &&
6371 attr1
.HasPageBreak() == attr2
.HasPageBreak());
6374 /// Compare two attribute objects, but take into account the flags
6375 /// specifying attributes of interest.
6376 bool wxTextAttrEqPartial(const wxTextAttrEx
& attr1
, const wxTextAttrEx
& attr2
, int flags
)
6378 if ((flags
& wxTEXT_ATTR_TEXT_COLOUR
) && attr1
.GetTextColour() != attr2
.GetTextColour())
6381 if ((flags
& wxTEXT_ATTR_BACKGROUND_COLOUR
) && attr1
.GetBackgroundColour() != attr2
.GetBackgroundColour())
6384 if ((flags
& wxTEXT_ATTR_FONT_FACE
) && attr1
.GetFont().Ok() && attr2
.GetFont().Ok() &&
6385 attr1
.GetFont().GetFaceName() != attr2
.GetFont().GetFaceName())
6388 if ((flags
& wxTEXT_ATTR_FONT_SIZE
) && attr1
.GetFont().Ok() && attr2
.GetFont().Ok() &&
6389 attr1
.GetFont().GetPointSize() != attr2
.GetFont().GetPointSize())
6392 if ((flags
& wxTEXT_ATTR_FONT_WEIGHT
) && attr1
.GetFont().Ok() && attr2
.GetFont().Ok() &&
6393 attr1
.GetFont().GetWeight() != attr2
.GetFont().GetWeight())
6396 if ((flags
& wxTEXT_ATTR_FONT_ITALIC
) && attr1
.GetFont().Ok() && attr2
.GetFont().Ok() &&
6397 attr1
.GetFont().GetStyle() != attr2
.GetFont().GetStyle())
6400 if ((flags
& wxTEXT_ATTR_FONT_UNDERLINE
) && attr1
.GetFont().Ok() && attr2
.GetFont().Ok() &&
6401 attr1
.GetFont().GetUnderlined() != attr2
.GetFont().GetUnderlined())
6404 if ((flags
& wxTEXT_ATTR_ALIGNMENT
) && attr1
.GetAlignment() != attr2
.GetAlignment())
6407 if ((flags
& wxTEXT_ATTR_LEFT_INDENT
) &&
6408 ((attr1
.GetLeftIndent() != attr2
.GetLeftIndent()) || (attr1
.GetLeftSubIndent() != attr2
.GetLeftSubIndent())))
6411 if ((flags
& wxTEXT_ATTR_RIGHT_INDENT
) &&
6412 (attr1
.GetRightIndent() != attr2
.GetRightIndent()))
6415 if ((flags
& wxTEXT_ATTR_PARA_SPACING_AFTER
) &&
6416 (attr1
.GetParagraphSpacingAfter() != attr2
.GetParagraphSpacingAfter()))
6419 if ((flags
& wxTEXT_ATTR_PARA_SPACING_BEFORE
) &&
6420 (attr1
.GetParagraphSpacingBefore() != attr2
.GetParagraphSpacingBefore()))
6423 if ((flags
& wxTEXT_ATTR_LINE_SPACING
) &&
6424 (attr1
.GetLineSpacing() != attr2
.GetLineSpacing()))
6427 if ((flags
& wxTEXT_ATTR_CHARACTER_STYLE_NAME
) &&
6428 (attr1
.GetCharacterStyleName() != attr2
.GetCharacterStyleName()))
6431 if ((flags
& wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
) &&
6432 (attr1
.GetParagraphStyleName() != attr2
.GetParagraphStyleName()))
6435 if ((flags
& wxTEXT_ATTR_LIST_STYLE_NAME
) &&
6436 (attr1
.GetListStyleName() != attr2
.GetListStyleName()))
6439 if ((flags
& wxTEXT_ATTR_BULLET_STYLE
) &&
6440 (attr1
.GetBulletStyle() != attr2
.GetBulletStyle()))
6443 if ((flags
& wxTEXT_ATTR_BULLET_NUMBER
) &&
6444 (attr1
.GetBulletNumber() != attr2
.GetBulletNumber()))
6447 if ((flags
& wxTEXT_ATTR_BULLET_TEXT
) &&
6448 (attr1
.GetBulletText() != attr2
.GetBulletText()) &&
6449 (attr1
.GetBulletFont() != attr2
.GetBulletFont()))
6452 if ((flags
& wxTEXT_ATTR_BULLET_NAME
) &&
6453 (attr1
.GetBulletName() != attr2
.GetBulletName()))
6456 if ((flags
& wxTEXT_ATTR_TABS
) &&
6457 !wxRichTextTabsEq(attr1
.GetTabs(), attr2
.GetTabs()))
6460 if ((flags
& wxTEXT_ATTR_PAGE_BREAK
) &&
6461 (attr1
.HasPageBreak() != attr2
.HasPageBreak()))
6467 bool wxTextAttrEqPartial(const wxTextAttrEx
& attr1
, const wxRichTextAttr
& attr2
, int flags
)
6469 if ((flags
& wxTEXT_ATTR_TEXT_COLOUR
) && attr1
.GetTextColour() != attr2
.GetTextColour())
6472 if ((flags
& wxTEXT_ATTR_BACKGROUND_COLOUR
) && attr1
.GetBackgroundColour() != attr2
.GetBackgroundColour())
6475 if ((flags
& (wxTEXT_ATTR_FONT
)) && !attr1
.GetFont().Ok())
6478 if ((flags
& wxTEXT_ATTR_FONT_FACE
) && attr1
.GetFont().Ok() &&
6479 attr1
.GetFont().GetFaceName() != attr2
.GetFontFaceName())
6482 if ((flags
& wxTEXT_ATTR_FONT_SIZE
) && attr1
.GetFont().Ok() &&
6483 attr1
.GetFont().GetPointSize() != attr2
.GetFontSize())
6486 if ((flags
& wxTEXT_ATTR_FONT_WEIGHT
) && attr1
.GetFont().Ok() &&
6487 attr1
.GetFont().GetWeight() != attr2
.GetFontWeight())
6490 if ((flags
& wxTEXT_ATTR_FONT_ITALIC
) && attr1
.GetFont().Ok() &&
6491 attr1
.GetFont().GetStyle() != attr2
.GetFontStyle())
6494 if ((flags
& wxTEXT_ATTR_FONT_UNDERLINE
) && attr1
.GetFont().Ok() &&
6495 attr1
.GetFont().GetUnderlined() != attr2
.GetFontUnderlined())
6498 if ((flags
& wxTEXT_ATTR_ALIGNMENT
) && attr1
.GetAlignment() != attr2
.GetAlignment())
6501 if ((flags
& wxTEXT_ATTR_LEFT_INDENT
) &&
6502 ((attr1
.GetLeftIndent() != attr2
.GetLeftIndent()) || (attr1
.GetLeftSubIndent() != attr2
.GetLeftSubIndent())))
6505 if ((flags
& wxTEXT_ATTR_RIGHT_INDENT
) &&
6506 (attr1
.GetRightIndent() != attr2
.GetRightIndent()))
6509 if ((flags
& wxTEXT_ATTR_PARA_SPACING_AFTER
) &&
6510 (attr1
.GetParagraphSpacingAfter() != attr2
.GetParagraphSpacingAfter()))
6513 if ((flags
& wxTEXT_ATTR_PARA_SPACING_BEFORE
) &&
6514 (attr1
.GetParagraphSpacingBefore() != attr2
.GetParagraphSpacingBefore()))
6517 if ((flags
& wxTEXT_ATTR_LINE_SPACING
) &&
6518 (attr1
.GetLineSpacing() != attr2
.GetLineSpacing()))
6521 if ((flags
& wxTEXT_ATTR_CHARACTER_STYLE_NAME
) &&
6522 (attr1
.GetCharacterStyleName() != attr2
.GetCharacterStyleName()))
6525 if ((flags
& wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
) &&
6526 (attr1
.GetParagraphStyleName() != attr2
.GetParagraphStyleName()))
6529 if ((flags
& wxTEXT_ATTR_LIST_STYLE_NAME
) &&
6530 (attr1
.GetListStyleName() != attr2
.GetListStyleName()))
6533 if ((flags
& wxTEXT_ATTR_BULLET_STYLE
) &&
6534 (attr1
.GetBulletStyle() != attr2
.GetBulletStyle()))
6537 if ((flags
& wxTEXT_ATTR_BULLET_NUMBER
) &&
6538 (attr1
.GetBulletNumber() != attr2
.GetBulletNumber()))
6541 if ((flags
& wxTEXT_ATTR_BULLET_TEXT
) &&
6542 (attr1
.GetBulletText() != attr2
.GetBulletText()) &&
6543 (attr1
.GetBulletFont() != attr2
.GetBulletFont()))
6546 if ((flags
& wxTEXT_ATTR_BULLET_NAME
) &&
6547 (attr1
.GetBulletName() != attr2
.GetBulletName()))
6550 if ((flags
& wxTEXT_ATTR_TABS
) &&
6551 !wxRichTextTabsEq(attr1
.GetTabs(), attr2
.GetTabs()))
6554 if ((flags
& wxTEXT_ATTR_PAGE_BREAK
) &&
6555 (attr1
.HasPageBreak() != attr2
.HasPageBreak()))
6562 bool wxRichTextTabsEq(const wxArrayInt
& tabs1
, const wxArrayInt
& tabs2
)
6564 if (tabs1
.GetCount() != tabs2
.GetCount())
6568 for (i
= 0; i
< tabs1
.GetCount(); i
++)
6570 if (tabs1
[i
] != tabs2
[i
])
6577 /// Apply one style to another
6578 bool wxRichTextApplyStyle(wxTextAttrEx
& destStyle
, const wxTextAttrEx
& style
)
6581 if (style
.GetFont().Ok() && ((style
.GetFlags() & (wxTEXT_ATTR_FONT
)) == (wxTEXT_ATTR_FONT
)))
6582 destStyle
.SetFont(style
.GetFont());
6583 else if (style
.GetFont().Ok())
6585 wxFont font
= destStyle
.GetFont();
6587 if (style
.GetFlags() & wxTEXT_ATTR_FONT_FACE
)
6589 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_FACE
);
6590 font
.SetFaceName(style
.GetFont().GetFaceName());
6593 if (style
.GetFlags() & wxTEXT_ATTR_FONT_SIZE
)
6595 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_SIZE
);
6596 font
.SetPointSize(style
.GetFont().GetPointSize());
6599 if (style
.GetFlags() & wxTEXT_ATTR_FONT_ITALIC
)
6601 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_ITALIC
);
6602 font
.SetStyle(style
.GetFont().GetStyle());
6605 if (style
.GetFlags() & wxTEXT_ATTR_FONT_WEIGHT
)
6607 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_WEIGHT
);
6608 font
.SetWeight(style
.GetFont().GetWeight());
6611 if (style
.GetFlags() & wxTEXT_ATTR_FONT_UNDERLINE
)
6613 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_UNDERLINE
);
6614 font
.SetUnderlined(style
.GetFont().GetUnderlined());
6617 if (font
!= destStyle
.GetFont())
6619 int oldFlags
= destStyle
.GetFlags();
6621 destStyle
.SetFont(font
);
6623 destStyle
.SetFlags(oldFlags
);
6627 if ( style
.GetTextColour().Ok() && style
.HasTextColour())
6628 destStyle
.SetTextColour(style
.GetTextColour());
6630 if ( style
.GetBackgroundColour().Ok() && style
.HasBackgroundColour())
6631 destStyle
.SetBackgroundColour(style
.GetBackgroundColour());
6633 if (style
.HasAlignment())
6634 destStyle
.SetAlignment(style
.GetAlignment());
6636 if (style
.HasTabs())
6637 destStyle
.SetTabs(style
.GetTabs());
6639 if (style
.HasLeftIndent())
6640 destStyle
.SetLeftIndent(style
.GetLeftIndent(), style
.GetLeftSubIndent());
6642 if (style
.HasRightIndent())
6643 destStyle
.SetRightIndent(style
.GetRightIndent());
6645 if (style
.HasParagraphSpacingAfter())
6646 destStyle
.SetParagraphSpacingAfter(style
.GetParagraphSpacingAfter());
6648 if (style
.HasParagraphSpacingBefore())
6649 destStyle
.SetParagraphSpacingBefore(style
.GetParagraphSpacingBefore());
6651 if (style
.HasLineSpacing())
6652 destStyle
.SetLineSpacing(style
.GetLineSpacing());
6654 if (style
.HasCharacterStyleName())
6655 destStyle
.SetCharacterStyleName(style
.GetCharacterStyleName());
6657 if (style
.HasParagraphStyleName())
6658 destStyle
.SetParagraphStyleName(style
.GetParagraphStyleName());
6660 if (style
.HasListStyleName())
6661 destStyle
.SetListStyleName(style
.GetListStyleName());
6663 if (style
.HasBulletStyle())
6664 destStyle
.SetBulletStyle(style
.GetBulletStyle());
6666 if (style
.HasBulletText())
6668 destStyle
.SetBulletText(style
.GetBulletText());
6669 destStyle
.SetBulletFont(style
.GetBulletFont());
6672 if (style
.HasBulletName())
6673 destStyle
.SetBulletName(style
.GetBulletName());
6675 if (style
.HasBulletNumber())
6676 destStyle
.SetBulletNumber(style
.GetBulletNumber());
6679 destStyle
.SetURL(style
.GetURL());
6681 if (style
.HasPageBreak())
6682 destStyle
.SetPageBreak();
6687 bool wxRichTextApplyStyle(wxRichTextAttr
& destStyle
, const wxTextAttrEx
& style
)
6689 wxTextAttrEx destStyle2
;
6690 destStyle
.CopyTo(destStyle2
);
6691 wxRichTextApplyStyle(destStyle2
, style
);
6692 destStyle
= destStyle2
;
6696 bool wxRichTextApplyStyle(wxRichTextAttr
& destStyle
, const wxRichTextAttr
& style
, wxRichTextAttr
* compareWith
)
6698 wxTextAttrEx
attr(destStyle
);
6699 wxRichTextApplyStyle(attr
, style
, compareWith
);
6704 bool wxRichTextApplyStyle(wxTextAttrEx
& destStyle
, const wxRichTextAttr
& style
, wxRichTextAttr
* compareWith
)
6706 // Whole font. Avoiding setting individual attributes if possible, since
6707 // it recreates the font each time.
6708 if (((style
.GetFlags() & (wxTEXT_ATTR_FONT
)) == (wxTEXT_ATTR_FONT
)) && !compareWith
)
6710 destStyle
.SetFont(wxFont(style
.GetFontSize(), destStyle
.GetFont().Ok() ? destStyle
.GetFont().GetFamily() : wxDEFAULT
,
6711 style
.GetFontStyle(), style
.GetFontWeight(), style
.GetFontUnderlined(), style
.GetFontFaceName()));
6713 else if (style
.GetFlags() & (wxTEXT_ATTR_FONT
))
6715 wxFont font
= destStyle
.GetFont();
6717 if (style
.GetFlags() & wxTEXT_ATTR_FONT_FACE
)
6719 if (compareWith
&& compareWith
->HasFaceName() && compareWith
->GetFontFaceName() == style
.GetFontFaceName())
6721 // The same as currently displayed, so don't set
6725 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_FACE
);
6726 font
.SetFaceName(style
.GetFontFaceName());
6730 if (style
.GetFlags() & wxTEXT_ATTR_FONT_SIZE
)
6732 if (compareWith
&& compareWith
->HasSize() && compareWith
->GetFontSize() == style
.GetFontSize())
6734 // The same as currently displayed, so don't set
6738 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_SIZE
);
6739 font
.SetPointSize(style
.GetFontSize());
6743 if (style
.GetFlags() & wxTEXT_ATTR_FONT_ITALIC
)
6745 if (compareWith
&& compareWith
->HasItalic() && compareWith
->GetFontStyle() == style
.GetFontStyle())
6747 // The same as currently displayed, so don't set
6751 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_ITALIC
);
6752 font
.SetStyle(style
.GetFontStyle());
6756 if (style
.GetFlags() & wxTEXT_ATTR_FONT_WEIGHT
)
6758 if (compareWith
&& compareWith
->HasWeight() && compareWith
->GetFontWeight() == style
.GetFontWeight())
6760 // The same as currently displayed, so don't set
6764 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_WEIGHT
);
6765 font
.SetWeight(style
.GetFontWeight());
6769 if (style
.GetFlags() & wxTEXT_ATTR_FONT_UNDERLINE
)
6771 if (compareWith
&& compareWith
->HasUnderlined() && compareWith
->GetFontUnderlined() == style
.GetFontUnderlined())
6773 // The same as currently displayed, so don't set
6777 destStyle
.SetFlags(destStyle
.GetFlags() | wxTEXT_ATTR_FONT_UNDERLINE
);
6778 font
.SetUnderlined(style
.GetFontUnderlined());
6782 if (font
!= destStyle
.GetFont())
6784 int oldFlags
= destStyle
.GetFlags();
6786 destStyle
.SetFont(font
);
6788 destStyle
.SetFlags(oldFlags
);
6792 if (style
.GetTextColour().Ok() && style
.HasTextColour())
6794 if (!(compareWith
&& compareWith
->HasTextColour() && compareWith
->GetTextColour() == style
.GetTextColour()))
6795 destStyle
.SetTextColour(style
.GetTextColour());
6798 if (style
.GetBackgroundColour().Ok() && style
.HasBackgroundColour())
6800 if (!(compareWith
&& compareWith
->HasBackgroundColour() && compareWith
->GetBackgroundColour() == style
.GetBackgroundColour()))
6801 destStyle
.SetBackgroundColour(style
.GetBackgroundColour());
6804 if (style
.HasAlignment())
6806 if (!(compareWith
&& compareWith
->HasAlignment() && compareWith
->GetAlignment() == style
.GetAlignment()))
6807 destStyle
.SetAlignment(style
.GetAlignment());
6810 if (style
.HasTabs())
6812 if (!(compareWith
&& compareWith
->HasTabs() && wxRichTextTabsEq(compareWith
->GetTabs(), style
.GetTabs())))
6813 destStyle
.SetTabs(style
.GetTabs());
6816 if (style
.HasLeftIndent())
6818 if (!(compareWith
&& compareWith
->HasLeftIndent() && compareWith
->GetLeftIndent() == style
.GetLeftIndent()
6819 && compareWith
->GetLeftSubIndent() == style
.GetLeftSubIndent()))
6820 destStyle
.SetLeftIndent(style
.GetLeftIndent(), style
.GetLeftSubIndent());
6823 if (style
.HasRightIndent())
6825 if (!(compareWith
&& compareWith
->HasRightIndent() && compareWith
->GetRightIndent() == style
.GetRightIndent()))
6826 destStyle
.SetRightIndent(style
.GetRightIndent());
6829 if (style
.HasParagraphSpacingAfter())
6831 if (!(compareWith
&& compareWith
->HasParagraphSpacingAfter() && compareWith
->GetParagraphSpacingAfter() == style
.GetParagraphSpacingAfter()))
6832 destStyle
.SetParagraphSpacingAfter(style
.GetParagraphSpacingAfter());
6835 if (style
.HasParagraphSpacingBefore())
6837 if (!(compareWith
&& compareWith
->HasParagraphSpacingBefore() && compareWith
->GetParagraphSpacingBefore() == style
.GetParagraphSpacingBefore()))
6838 destStyle
.SetParagraphSpacingBefore(style
.GetParagraphSpacingBefore());
6841 if (style
.HasLineSpacing())
6843 if (!(compareWith
&& compareWith
->HasLineSpacing() && compareWith
->GetLineSpacing() == style
.GetLineSpacing()))
6844 destStyle
.SetLineSpacing(style
.GetLineSpacing());
6847 if (style
.HasCharacterStyleName())
6849 if (!(compareWith
&& compareWith
->HasCharacterStyleName() && compareWith
->GetCharacterStyleName() == style
.GetCharacterStyleName()))
6850 destStyle
.SetCharacterStyleName(style
.GetCharacterStyleName());
6853 if (style
.HasParagraphStyleName())
6855 if (!(compareWith
&& compareWith
->HasParagraphStyleName() && compareWith
->GetParagraphStyleName() == style
.GetParagraphStyleName()))
6856 destStyle
.SetParagraphStyleName(style
.GetParagraphStyleName());
6859 if (style
.HasListStyleName())
6861 if (!(compareWith
&& compareWith
->HasListStyleName() && compareWith
->GetListStyleName() == style
.GetListStyleName()))
6862 destStyle
.SetListStyleName(style
.GetListStyleName());
6865 if (style
.HasBulletStyle())
6867 if (!(compareWith
&& compareWith
->HasBulletStyle() && compareWith
->GetBulletStyle() == style
.GetBulletStyle()))
6868 destStyle
.SetBulletStyle(style
.GetBulletStyle());
6871 if (style
.HasBulletText())
6873 if (!(compareWith
&& compareWith
->HasBulletText() && compareWith
->GetBulletText() == style
.GetBulletText()))
6875 destStyle
.SetBulletText(style
.GetBulletText());
6876 destStyle
.SetBulletFont(style
.GetBulletFont());
6880 if (style
.HasBulletNumber())
6882 if (!(compareWith
&& compareWith
->HasBulletNumber() && compareWith
->GetBulletNumber() == style
.GetBulletNumber()))
6883 destStyle
.SetBulletNumber(style
.GetBulletNumber());
6886 if (style
.HasBulletName())
6888 if (!(compareWith
&& compareWith
->HasBulletName() && compareWith
->GetBulletName() == style
.GetBulletName()))
6889 destStyle
.SetBulletName(style
.GetBulletName());
6894 if (!(compareWith
&& compareWith
->HasURL() && compareWith
->GetURL() == style
.GetURL()))
6895 destStyle
.SetURL(style
.GetURL());
6898 if (style
.HasPageBreak())
6900 if (!(compareWith
&& compareWith
->HasPageBreak()))
6901 destStyle
.SetPageBreak();
6907 void wxSetFontPreservingStyles(wxTextAttr
& attr
, const wxFont
& font
)
6909 long flags
= attr
.GetFlags();
6911 attr
.SetFlags(flags
);
6914 /// Convert a decimal to Roman numerals
6915 wxString
wxRichTextDecimalToRoman(long n
)
6917 static wxArrayInt decimalNumbers
;
6918 static wxArrayString romanNumbers
;
6923 decimalNumbers
.Clear();
6924 romanNumbers
.Clear();
6925 return wxEmptyString
;
6928 if (decimalNumbers
.GetCount() == 0)
6930 #define wxRichTextAddDecRom(n, r) decimalNumbers.Add(n); romanNumbers.Add(r);
6932 wxRichTextAddDecRom(1000, wxT("M"));
6933 wxRichTextAddDecRom(900, wxT("CM"));
6934 wxRichTextAddDecRom(500, wxT("D"));
6935 wxRichTextAddDecRom(400, wxT("CD"));
6936 wxRichTextAddDecRom(100, wxT("C"));
6937 wxRichTextAddDecRom(90, wxT("XC"));
6938 wxRichTextAddDecRom(50, wxT("L"));
6939 wxRichTextAddDecRom(40, wxT("XL"));
6940 wxRichTextAddDecRom(10, wxT("X"));
6941 wxRichTextAddDecRom(9, wxT("IX"));
6942 wxRichTextAddDecRom(5, wxT("V"));
6943 wxRichTextAddDecRom(4, wxT("IV"));
6944 wxRichTextAddDecRom(1, wxT("I"));
6950 while (n
> 0 && i
< 13)
6952 if (n
>= decimalNumbers
[i
])
6954 n
-= decimalNumbers
[i
];
6955 roman
+= romanNumbers
[i
];
6962 if (roman
.IsEmpty())
6968 * wxRichTextAttr stores attributes without a wxFont object, so is a much more
6969 * efficient way to query styles.
6973 wxRichTextAttr::wxRichTextAttr(const wxColour
& colText
,
6974 const wxColour
& colBack
,
6975 wxTextAttrAlignment alignment
): m_textAlignment(alignment
), m_colText(colText
), m_colBack(colBack
)
6979 if (m_colText
.Ok()) m_flags
|= wxTEXT_ATTR_TEXT_COLOUR
;
6980 if (m_colBack
.Ok()) m_flags
|= wxTEXT_ATTR_BACKGROUND_COLOUR
;
6981 if (alignment
!= wxTEXT_ALIGNMENT_DEFAULT
)
6982 m_flags
|= wxTEXT_ATTR_ALIGNMENT
;
6985 wxRichTextAttr::wxRichTextAttr(const wxTextAttrEx
& attr
)
6992 wxRichTextAttr::wxRichTextAttr(const wxRichTextAttr
& attr
)
6998 void wxRichTextAttr::Init()
7000 m_textAlignment
= wxTEXT_ALIGNMENT_DEFAULT
;
7003 m_leftSubIndent
= 0;
7007 m_fontStyle
= wxNORMAL
;
7008 m_fontWeight
= wxNORMAL
;
7009 m_fontUnderlined
= false;
7011 m_paragraphSpacingAfter
= 0;
7012 m_paragraphSpacingBefore
= 0;
7014 m_bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_NONE
;
7019 void wxRichTextAttr::Copy(const wxRichTextAttr
& attr
)
7021 m_colText
= attr
.m_colText
;
7022 m_colBack
= attr
.m_colBack
;
7023 m_textAlignment
= attr
.m_textAlignment
;
7024 m_leftIndent
= attr
.m_leftIndent
;
7025 m_leftSubIndent
= attr
.m_leftSubIndent
;
7026 m_rightIndent
= attr
.m_rightIndent
;
7027 m_tabs
= attr
.m_tabs
;
7028 m_flags
= attr
.m_flags
;
7030 m_fontSize
= attr
.m_fontSize
;
7031 m_fontStyle
= attr
.m_fontStyle
;
7032 m_fontWeight
= attr
.m_fontWeight
;
7033 m_fontUnderlined
= attr
.m_fontUnderlined
;
7034 m_fontFaceName
= attr
.m_fontFaceName
;
7036 m_paragraphSpacingAfter
= attr
.m_paragraphSpacingAfter
;
7037 m_paragraphSpacingBefore
= attr
.m_paragraphSpacingBefore
;
7038 m_lineSpacing
= attr
.m_lineSpacing
;
7039 m_characterStyleName
= attr
.m_characterStyleName
;
7040 m_paragraphStyleName
= attr
.m_paragraphStyleName
;
7041 m_listStyleName
= attr
.m_listStyleName
;
7042 m_bulletStyle
= attr
.m_bulletStyle
;
7043 m_bulletNumber
= attr
.m_bulletNumber
;
7044 m_bulletText
= attr
.m_bulletText
;
7045 m_bulletFont
= attr
.m_bulletFont
;
7046 m_bulletName
= attr
.m_bulletName
;
7048 m_urlTarget
= attr
.m_urlTarget
;
7052 void wxRichTextAttr::operator= (const wxRichTextAttr
& attr
)
7058 void wxRichTextAttr::operator= (const wxTextAttrEx
& attr
)
7060 m_colText
= attr
.GetTextColour();
7061 m_colBack
= attr
.GetBackgroundColour();
7062 m_textAlignment
= attr
.GetAlignment();
7063 m_leftIndent
= attr
.GetLeftIndent();
7064 m_leftSubIndent
= attr
.GetLeftSubIndent();
7065 m_rightIndent
= attr
.GetRightIndent();
7066 m_tabs
= attr
.GetTabs();
7067 m_flags
= attr
.GetFlags();
7069 m_paragraphSpacingAfter
= attr
.GetParagraphSpacingAfter();
7070 m_paragraphSpacingBefore
= attr
.GetParagraphSpacingBefore();
7071 m_lineSpacing
= attr
.GetLineSpacing();
7072 m_characterStyleName
= attr
.GetCharacterStyleName();
7073 m_paragraphStyleName
= attr
.GetParagraphStyleName();
7074 m_listStyleName
= attr
.GetListStyleName();
7075 m_bulletStyle
= attr
.GetBulletStyle();
7076 m_bulletNumber
= attr
.GetBulletNumber();
7077 m_bulletText
= attr
.GetBulletText();
7078 m_bulletName
= attr
.GetBulletName();
7079 m_bulletFont
= attr
.GetBulletFont();
7081 m_urlTarget
= attr
.GetURL();
7083 if (attr
.GetFont().Ok())
7084 GetFontAttributes(attr
.GetFont());
7087 // Making a wxTextAttrEx object.
7088 wxRichTextAttr::operator wxTextAttrEx () const
7096 bool wxRichTextAttr::operator== (const wxRichTextAttr
& attr
) const
7098 return GetFlags() == attr
.GetFlags() &&
7100 GetTextColour() == attr
.GetTextColour() &&
7101 GetBackgroundColour() == attr
.GetBackgroundColour() &&
7103 GetAlignment() == attr
.GetAlignment() &&
7104 GetLeftIndent() == attr
.GetLeftIndent() &&
7105 GetLeftSubIndent() == attr
.GetLeftSubIndent() &&
7106 GetRightIndent() == attr
.GetRightIndent() &&
7107 wxRichTextTabsEq(GetTabs(), attr
.GetTabs()) &&
7109 GetParagraphSpacingAfter() == attr
.GetParagraphSpacingAfter() &&
7110 GetParagraphSpacingBefore() == attr
.GetParagraphSpacingBefore() &&
7111 GetLineSpacing() == attr
.GetLineSpacing() &&
7112 GetCharacterStyleName() == attr
.GetCharacterStyleName() &&
7113 GetParagraphStyleName() == attr
.GetParagraphStyleName() &&
7114 GetListStyleName() == attr
.GetListStyleName() &&
7116 GetBulletStyle() == attr
.GetBulletStyle() &&
7117 GetBulletText() == attr
.GetBulletText() &&
7118 GetBulletNumber() == attr
.GetBulletNumber() &&
7119 GetBulletFont() == attr
.GetBulletFont() &&
7120 GetBulletName() == attr
.GetBulletName() &&
7122 m_fontSize
== attr
.m_fontSize
&&
7123 m_fontStyle
== attr
.m_fontStyle
&&
7124 m_fontWeight
== attr
.m_fontWeight
&&
7125 m_fontUnderlined
== attr
.m_fontUnderlined
&&
7126 m_fontFaceName
== attr
.m_fontFaceName
&&
7128 m_urlTarget
== attr
.m_urlTarget
;
7131 // Copy to a wxTextAttr
7132 void wxRichTextAttr::CopyTo(wxTextAttrEx
& attr
) const
7134 attr
.SetTextColour(GetTextColour());
7135 attr
.SetBackgroundColour(GetBackgroundColour());
7136 attr
.SetAlignment(GetAlignment());
7137 attr
.SetTabs(GetTabs());
7138 attr
.SetLeftIndent(GetLeftIndent(), GetLeftSubIndent());
7139 attr
.SetRightIndent(GetRightIndent());
7140 attr
.SetFont(CreateFont());
7142 attr
.SetParagraphSpacingAfter(m_paragraphSpacingAfter
);
7143 attr
.SetParagraphSpacingBefore(m_paragraphSpacingBefore
);
7144 attr
.SetLineSpacing(m_lineSpacing
);
7145 attr
.SetBulletStyle(m_bulletStyle
);
7146 attr
.SetBulletNumber(m_bulletNumber
);
7147 attr
.SetBulletText(m_bulletText
);
7148 attr
.SetBulletName(m_bulletName
);
7149 attr
.SetBulletFont(m_bulletFont
);
7150 attr
.SetCharacterStyleName(m_characterStyleName
);
7151 attr
.SetParagraphStyleName(m_paragraphStyleName
);
7152 attr
.SetListStyleName(m_listStyleName
);
7154 attr
.SetURL(m_urlTarget
);
7156 attr
.SetFlags(GetFlags()); // Important: set after SetFont and others, since they set flags
7159 // Create font from font attributes.
7160 wxFont
wxRichTextAttr::CreateFont() const
7162 wxFont
font(m_fontSize
, wxDEFAULT
, m_fontStyle
, m_fontWeight
, m_fontUnderlined
, m_fontFaceName
);
7164 font
.SetNoAntiAliasing(true);
7169 // Get attributes from font.
7170 bool wxRichTextAttr::GetFontAttributes(const wxFont
& font
)
7175 m_fontSize
= font
.GetPointSize();
7176 m_fontStyle
= font
.GetStyle();
7177 m_fontWeight
= font
.GetWeight();
7178 m_fontUnderlined
= font
.GetUnderlined();
7179 m_fontFaceName
= font
.GetFaceName();
7184 wxRichTextAttr
wxRichTextAttr::Combine(const wxRichTextAttr
& attr
,
7185 const wxRichTextAttr
& attrDef
,
7186 const wxTextCtrlBase
*text
)
7188 wxColour colFg
= attr
.GetTextColour();
7191 colFg
= attrDef
.GetTextColour();
7193 if ( text
&& !colFg
.Ok() )
7194 colFg
= text
->GetForegroundColour();
7197 wxColour colBg
= attr
.GetBackgroundColour();
7200 colBg
= attrDef
.GetBackgroundColour();
7202 if ( text
&& !colBg
.Ok() )
7203 colBg
= text
->GetBackgroundColour();
7206 wxRichTextAttr
newAttr(colFg
, colBg
);
7208 if (attr
.HasWeight())
7209 newAttr
.SetFontWeight(attr
.GetFontWeight());
7212 newAttr
.SetFontSize(attr
.GetFontSize());
7214 if (attr
.HasItalic())
7215 newAttr
.SetFontStyle(attr
.GetFontStyle());
7217 if (attr
.HasUnderlined())
7218 newAttr
.SetFontUnderlined(attr
.GetFontUnderlined());
7220 if (attr
.HasFaceName())
7221 newAttr
.SetFontFaceName(attr
.GetFontFaceName());
7223 if (attr
.HasAlignment())
7224 newAttr
.SetAlignment(attr
.GetAlignment());
7225 else if (attrDef
.HasAlignment())
7226 newAttr
.SetAlignment(attrDef
.GetAlignment());
7229 newAttr
.SetTabs(attr
.GetTabs());
7230 else if (attrDef
.HasTabs())
7231 newAttr
.SetTabs(attrDef
.GetTabs());
7233 if (attr
.HasLeftIndent())
7234 newAttr
.SetLeftIndent(attr
.GetLeftIndent(), attr
.GetLeftSubIndent());
7235 else if (attrDef
.HasLeftIndent())
7236 newAttr
.SetLeftIndent(attrDef
.GetLeftIndent(), attr
.GetLeftSubIndent());
7238 if (attr
.HasRightIndent())
7239 newAttr
.SetRightIndent(attr
.GetRightIndent());
7240 else if (attrDef
.HasRightIndent())
7241 newAttr
.SetRightIndent(attrDef
.GetRightIndent());
7245 if (attr
.HasParagraphSpacingAfter())
7246 newAttr
.SetParagraphSpacingAfter(attr
.GetParagraphSpacingAfter());
7248 if (attr
.HasParagraphSpacingBefore())
7249 newAttr
.SetParagraphSpacingBefore(attr
.GetParagraphSpacingBefore());
7251 if (attr
.HasLineSpacing())
7252 newAttr
.SetLineSpacing(attr
.GetLineSpacing());
7254 if (attr
.HasCharacterStyleName())
7255 newAttr
.SetCharacterStyleName(attr
.GetCharacterStyleName());
7257 if (attr
.HasParagraphStyleName())
7258 newAttr
.SetParagraphStyleName(attr
.GetParagraphStyleName());
7260 if (attr
.HasListStyleName())
7261 newAttr
.SetListStyleName(attr
.GetListStyleName());
7263 if (attr
.HasBulletStyle())
7264 newAttr
.SetBulletStyle(attr
.GetBulletStyle());
7266 if (attr
.HasBulletNumber())
7267 newAttr
.SetBulletNumber(attr
.GetBulletNumber());
7269 if (attr
.HasBulletName())
7270 newAttr
.SetBulletName(attr
.GetBulletName());
7272 if (attr
.HasBulletText())
7274 newAttr
.SetBulletText(attr
.GetBulletText());
7275 newAttr
.SetBulletFont(attr
.GetBulletFont());
7279 newAttr
.SetURL(attr
.GetURL());
7281 if (attr
.HasPageBreak())
7282 newAttr
.SetPageBreak();
7288 * wxTextAttrEx is an extended version of wxTextAttr with more paragraph attributes.
7291 wxTextAttrEx::wxTextAttrEx(const wxTextAttrEx
& attr
)
7296 // Initialise this object.
7297 void wxTextAttrEx::Init()
7299 m_paragraphSpacingAfter
= 0;
7300 m_paragraphSpacingBefore
= 0;
7302 m_bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_NONE
;
7307 void wxTextAttrEx::Copy(const wxTextAttrEx
& attr
)
7309 wxTextAttr::operator= (attr
);
7311 m_paragraphSpacingAfter
= attr
.m_paragraphSpacingAfter
;
7312 m_paragraphSpacingBefore
= attr
.m_paragraphSpacingBefore
;
7313 m_lineSpacing
= attr
.m_lineSpacing
;
7314 m_characterStyleName
= attr
.m_characterStyleName
;
7315 m_paragraphStyleName
= attr
.m_paragraphStyleName
;
7316 m_listStyleName
= attr
.m_listStyleName
;
7317 m_bulletStyle
= attr
.m_bulletStyle
;
7318 m_bulletNumber
= attr
.m_bulletNumber
;
7319 m_bulletText
= attr
.m_bulletText
;
7320 m_bulletFont
= attr
.m_bulletFont
;
7321 m_bulletName
= attr
.m_bulletName
;
7322 m_urlTarget
= attr
.m_urlTarget
;
7325 // Assignment from a wxTextAttrEx object
7326 void wxTextAttrEx::operator= (const wxTextAttrEx
& attr
)
7331 // Assignment from a wxTextAttr object.
7332 void wxTextAttrEx::operator= (const wxTextAttr
& attr
)
7334 wxTextAttr::operator= (attr
);
7338 bool wxTextAttrEx::operator== (const wxTextAttrEx
& attr
) const
7341 GetTextColour() == attr
.GetTextColour() &&
7342 GetBackgroundColour() == attr
.GetBackgroundColour() &&
7343 GetFont() == attr
.GetFont() &&
7344 GetAlignment() == attr
.GetAlignment() &&
7345 GetLeftIndent() == attr
.GetLeftIndent() &&
7346 GetRightIndent() == attr
.GetRightIndent() &&
7347 GetLeftSubIndent() == attr
.GetLeftSubIndent() &&
7348 wxRichTextTabsEq(GetTabs(), attr
.GetTabs()) &&
7349 GetLineSpacing() == attr
.GetLineSpacing() &&
7350 GetParagraphSpacingAfter() == attr
.GetParagraphSpacingAfter() &&
7351 GetParagraphSpacingBefore() == attr
.GetParagraphSpacingBefore() &&
7352 GetBulletStyle() == attr
.GetBulletStyle() &&
7353 GetBulletNumber() == attr
.GetBulletNumber() &&
7354 GetBulletText() == attr
.GetBulletText() &&
7355 GetBulletName() == attr
.GetBulletName() &&
7356 GetBulletFont() == attr
.GetBulletFont() &&
7357 GetCharacterStyleName() == attr
.GetCharacterStyleName() &&
7358 GetParagraphStyleName() == attr
.GetParagraphStyleName() &&
7359 GetListStyleName() == attr
.GetListStyleName() &&
7360 GetURL() == attr
.GetURL());
7363 wxTextAttrEx
wxTextAttrEx::CombineEx(const wxTextAttrEx
& attr
,
7364 const wxTextAttrEx
& attrDef
,
7365 const wxTextCtrlBase
*text
)
7367 wxTextAttrEx newAttr
;
7369 // If attr specifies the complete font, just use that font, overriding all
7370 // default font attributes.
7371 if ((attr
.GetFlags() & wxTEXT_ATTR_FONT
) == wxTEXT_ATTR_FONT
)
7372 newAttr
.SetFont(attr
.GetFont());
7375 // First find the basic, default font
7379 if (attrDef
.HasFont())
7381 flags
= (attrDef
.GetFlags() & wxTEXT_ATTR_FONT
);
7382 font
= attrDef
.GetFont();
7387 font
= text
->GetFont();
7389 // We leave flags at 0 because no font attributes have been specified yet
7392 font
= *wxNORMAL_FONT
;
7394 // Otherwise, if there are font attributes in attr, apply them
7395 if (attr
.GetFlags() & wxTEXT_ATTR_FONT
)
7399 flags
|= wxTEXT_ATTR_FONT_SIZE
;
7400 font
.SetPointSize(attr
.GetFont().GetPointSize());
7402 if (attr
.HasItalic())
7404 flags
|= wxTEXT_ATTR_FONT_ITALIC
;;
7405 font
.SetStyle(attr
.GetFont().GetStyle());
7407 if (attr
.HasWeight())
7409 flags
|= wxTEXT_ATTR_FONT_WEIGHT
;
7410 font
.SetWeight(attr
.GetFont().GetWeight());
7412 if (attr
.HasFaceName())
7414 flags
|= wxTEXT_ATTR_FONT_FACE
;
7415 font
.SetFaceName(attr
.GetFont().GetFaceName());
7417 if (attr
.HasUnderlined())
7419 flags
|= wxTEXT_ATTR_FONT_UNDERLINE
;
7420 font
.SetUnderlined(attr
.GetFont().GetUnderlined());
7422 newAttr
.SetFont(font
);
7423 newAttr
.SetFlags(newAttr
.GetFlags()|flags
);
7427 // TODO: should really check we are specifying these in the flags,
7428 // before setting them, as per above; or we will set them willy-nilly.
7429 // However, we should also check whether this is the intention
7430 // as per wxTextAttr::Combine, i.e. always to have valid colours
7432 wxColour colFg
= attr
.GetTextColour();
7435 colFg
= attrDef
.GetTextColour();
7437 if ( text
&& !colFg
.Ok() )
7438 colFg
= text
->GetForegroundColour();
7441 wxColour colBg
= attr
.GetBackgroundColour();
7444 colBg
= attrDef
.GetBackgroundColour();
7446 if ( text
&& !colBg
.Ok() )
7447 colBg
= text
->GetBackgroundColour();
7450 newAttr
.SetTextColour(colFg
);
7451 newAttr
.SetBackgroundColour(colBg
);
7453 if (attr
.HasAlignment())
7454 newAttr
.SetAlignment(attr
.GetAlignment());
7455 else if (attrDef
.HasAlignment())
7456 newAttr
.SetAlignment(attrDef
.GetAlignment());
7459 newAttr
.SetTabs(attr
.GetTabs());
7460 else if (attrDef
.HasTabs())
7461 newAttr
.SetTabs(attrDef
.GetTabs());
7463 if (attr
.HasLeftIndent())
7464 newAttr
.SetLeftIndent(attr
.GetLeftIndent(), attr
.GetLeftSubIndent());
7465 else if (attrDef
.HasLeftIndent())
7466 newAttr
.SetLeftIndent(attrDef
.GetLeftIndent(), attr
.GetLeftSubIndent());
7468 if (attr
.HasRightIndent())
7469 newAttr
.SetRightIndent(attr
.GetRightIndent());
7470 else if (attrDef
.HasRightIndent())
7471 newAttr
.SetRightIndent(attrDef
.GetRightIndent());
7475 if (attr
.HasParagraphSpacingAfter())
7476 newAttr
.SetParagraphSpacingAfter(attr
.GetParagraphSpacingAfter());
7478 if (attr
.HasParagraphSpacingBefore())
7479 newAttr
.SetParagraphSpacingBefore(attr
.GetParagraphSpacingBefore());
7481 if (attr
.HasLineSpacing())
7482 newAttr
.SetLineSpacing(attr
.GetLineSpacing());
7484 if (attr
.HasCharacterStyleName())
7485 newAttr
.SetCharacterStyleName(attr
.GetCharacterStyleName());
7487 if (attr
.HasParagraphStyleName())
7488 newAttr
.SetParagraphStyleName(attr
.GetParagraphStyleName());
7490 if (attr
.HasListStyleName())
7491 newAttr
.SetListStyleName(attr
.GetListStyleName());
7493 if (attr
.HasBulletStyle())
7494 newAttr
.SetBulletStyle(attr
.GetBulletStyle());
7496 if (attr
.HasBulletNumber())
7497 newAttr
.SetBulletNumber(attr
.GetBulletNumber());
7499 if (attr
.HasBulletName())
7500 newAttr
.SetBulletName(attr
.GetBulletName());
7502 if (attr
.HasBulletText())
7504 newAttr
.SetBulletText(attr
.GetBulletText());
7505 newAttr
.SetBulletFont(attr
.GetBulletFont());
7509 newAttr
.SetURL(attr
.GetURL());
7516 * wxRichTextFileHandler
7517 * Base class for file handlers
7520 IMPLEMENT_CLASS(wxRichTextFileHandler
, wxObject
)
7523 bool wxRichTextFileHandler::LoadFile(wxRichTextBuffer
*buffer
, const wxString
& filename
)
7525 wxFFileInputStream
stream(filename
);
7527 return LoadFile(buffer
, stream
);
7532 bool wxRichTextFileHandler::SaveFile(wxRichTextBuffer
*buffer
, const wxString
& filename
)
7534 wxFFileOutputStream
stream(filename
);
7536 return SaveFile(buffer
, stream
);
7540 #endif // wxUSE_STREAMS
7542 /// Can we handle this filename (if using files)? By default, checks the extension.
7543 bool wxRichTextFileHandler::CanHandle(const wxString
& filename
) const
7545 wxString path
, file
, ext
;
7546 wxSplitPath(filename
, & path
, & file
, & ext
);
7548 return (ext
.Lower() == GetExtension());
7552 * wxRichTextTextHandler
7553 * Plain text handler
7556 IMPLEMENT_CLASS(wxRichTextPlainTextHandler
, wxRichTextFileHandler
)
7559 bool wxRichTextPlainTextHandler::DoLoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
)
7567 while (!stream
.Eof())
7569 int ch
= stream
.GetC();
7573 if (ch
== 10 && lastCh
!= 13)
7576 if (ch
> 0 && ch
!= 10)
7584 buffer
->AddParagraphs(str
);
7585 buffer
->UpdateRanges();
7591 bool wxRichTextPlainTextHandler::DoSaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
)
7596 wxString text
= buffer
->GetText();
7597 wxCharBuffer buf
= text
.ToAscii();
7599 stream
.Write((const char*) buf
, text
.length());
7602 #endif // wxUSE_STREAMS
7605 * Stores information about an image, in binary in-memory form
7608 wxRichTextImageBlock::wxRichTextImageBlock()
7613 wxRichTextImageBlock::wxRichTextImageBlock(const wxRichTextImageBlock
& block
):wxObject()
7619 wxRichTextImageBlock::~wxRichTextImageBlock()
7628 void wxRichTextImageBlock::Init()
7635 void wxRichTextImageBlock::Clear()
7644 // Load the original image into a memory block.
7645 // If the image is not a JPEG, we must convert it into a JPEG
7646 // to conserve space.
7647 // If it's not a JPEG we can make use of 'image', already scaled, so we don't have to
7648 // load the image a 2nd time.
7650 bool wxRichTextImageBlock::MakeImageBlock(const wxString
& filename
, int imageType
, wxImage
& image
, bool convertToJPEG
)
7652 m_imageType
= imageType
;
7654 wxString
filenameToRead(filename
);
7655 bool removeFile
= false;
7657 if (imageType
== -1)
7658 return false; // Could not determine image type
7660 if ((imageType
!= wxBITMAP_TYPE_JPEG
) && convertToJPEG
)
7663 bool success
= wxGetTempFileName(_("image"), tempFile
) ;
7667 wxUnusedVar(success
);
7669 image
.SaveFile(tempFile
, wxBITMAP_TYPE_JPEG
);
7670 filenameToRead
= tempFile
;
7673 m_imageType
= wxBITMAP_TYPE_JPEG
;
7676 if (!file
.Open(filenameToRead
))
7679 m_dataSize
= (size_t) file
.Length();
7684 m_data
= ReadBlock(filenameToRead
, m_dataSize
);
7687 wxRemoveFile(filenameToRead
);
7689 return (m_data
!= NULL
);
7692 // Make an image block from the wxImage in the given
7694 bool wxRichTextImageBlock::MakeImageBlock(wxImage
& image
, int imageType
, int quality
)
7696 m_imageType
= imageType
;
7697 image
.SetOption(wxT("quality"), quality
);
7699 if (imageType
== -1)
7700 return false; // Could not determine image type
7703 bool success
= wxGetTempFileName(_("image"), tempFile
) ;
7706 wxUnusedVar(success
);
7708 if (!image
.SaveFile(tempFile
, m_imageType
))
7710 if (wxFileExists(tempFile
))
7711 wxRemoveFile(tempFile
);
7716 if (!file
.Open(tempFile
))
7719 m_dataSize
= (size_t) file
.Length();
7724 m_data
= ReadBlock(tempFile
, m_dataSize
);
7726 wxRemoveFile(tempFile
);
7728 return (m_data
!= NULL
);
7733 bool wxRichTextImageBlock::Write(const wxString
& filename
)
7735 return WriteBlock(filename
, m_data
, m_dataSize
);
7738 void wxRichTextImageBlock::Copy(const wxRichTextImageBlock
& block
)
7740 m_imageType
= block
.m_imageType
;
7746 m_dataSize
= block
.m_dataSize
;
7747 if (m_dataSize
== 0)
7750 m_data
= new unsigned char[m_dataSize
];
7752 for (i
= 0; i
< m_dataSize
; i
++)
7753 m_data
[i
] = block
.m_data
[i
];
7757 void wxRichTextImageBlock::operator=(const wxRichTextImageBlock
& block
)
7762 // Load a wxImage from the block
7763 bool wxRichTextImageBlock::Load(wxImage
& image
)
7768 // Read in the image.
7770 wxMemoryInputStream
mstream(m_data
, m_dataSize
);
7771 bool success
= image
.LoadFile(mstream
, GetImageType());
7774 bool success
= wxGetTempFileName(_("image"), tempFile
) ;
7777 if (!WriteBlock(tempFile
, m_data
, m_dataSize
))
7781 success
= image
.LoadFile(tempFile
, GetImageType());
7782 wxRemoveFile(tempFile
);
7788 // Write data in hex to a stream
7789 bool wxRichTextImageBlock::WriteHex(wxOutputStream
& stream
)
7793 for (i
= 0; i
< (int) m_dataSize
; i
++)
7795 hex
= wxDecToHex(m_data
[i
]);
7796 wxCharBuffer buf
= hex
.ToAscii();
7798 stream
.Write((const char*) buf
, hex
.length());
7804 // Read data in hex from a stream
7805 bool wxRichTextImageBlock::ReadHex(wxInputStream
& stream
, int length
, int imageType
)
7807 int dataSize
= length
/2;
7812 wxString
str(wxT(" "));
7813 m_data
= new unsigned char[dataSize
];
7815 for (i
= 0; i
< dataSize
; i
++)
7817 str
[0] = stream
.GetC();
7818 str
[1] = stream
.GetC();
7820 m_data
[i
] = (unsigned char)wxHexToDec(str
);
7823 m_dataSize
= dataSize
;
7824 m_imageType
= imageType
;
7829 // Allocate and read from stream as a block of memory
7830 unsigned char* wxRichTextImageBlock::ReadBlock(wxInputStream
& stream
, size_t size
)
7832 unsigned char* block
= new unsigned char[size
];
7836 stream
.Read(block
, size
);
7841 unsigned char* wxRichTextImageBlock::ReadBlock(const wxString
& filename
, size_t size
)
7843 wxFileInputStream
stream(filename
);
7847 return ReadBlock(stream
, size
);
7850 // Write memory block to stream
7851 bool wxRichTextImageBlock::WriteBlock(wxOutputStream
& stream
, unsigned char* block
, size_t size
)
7853 stream
.Write((void*) block
, size
);
7854 return stream
.IsOk();
7858 // Write memory block to file
7859 bool wxRichTextImageBlock::WriteBlock(const wxString
& filename
, unsigned char* block
, size_t size
)
7861 wxFileOutputStream
outStream(filename
);
7862 if (!outStream
.Ok())
7865 return WriteBlock(outStream
, block
, size
);
7868 // Gets the extension for the block's type
7869 wxString
wxRichTextImageBlock::GetExtension() const
7871 wxImageHandler
* handler
= wxImage::FindHandler(GetImageType());
7873 return handler
->GetExtension();
7875 return wxEmptyString
;
7881 * The data object for a wxRichTextBuffer
7884 const wxChar
*wxRichTextBufferDataObject::ms_richTextBufferFormatId
= wxT("wxShape");
7886 wxRichTextBufferDataObject::wxRichTextBufferDataObject(wxRichTextBuffer
* richTextBuffer
)
7888 m_richTextBuffer
= richTextBuffer
;
7890 // this string should uniquely identify our format, but is otherwise
7892 m_formatRichTextBuffer
.SetId(GetRichTextBufferFormatId());
7894 SetFormat(m_formatRichTextBuffer
);
7897 wxRichTextBufferDataObject::~wxRichTextBufferDataObject()
7899 delete m_richTextBuffer
;
7902 // after a call to this function, the richTextBuffer is owned by the caller and it
7903 // is responsible for deleting it!
7904 wxRichTextBuffer
* wxRichTextBufferDataObject::GetRichTextBuffer()
7906 wxRichTextBuffer
* richTextBuffer
= m_richTextBuffer
;
7907 m_richTextBuffer
= NULL
;
7909 return richTextBuffer
;
7912 wxDataFormat
wxRichTextBufferDataObject::GetPreferredFormat(Direction
WXUNUSED(dir
)) const
7914 return m_formatRichTextBuffer
;
7917 size_t wxRichTextBufferDataObject::GetDataSize() const
7919 if (!m_richTextBuffer
)
7925 wxStringOutputStream
stream(& bufXML
);
7926 if (!m_richTextBuffer
->SaveFile(stream
, wxRICHTEXT_TYPE_XML
))
7928 wxLogError(wxT("Could not write the buffer to an XML stream.\nYou may have forgotten to add the XML file handler."));
7934 wxCharBuffer buffer
= bufXML
.mb_str(wxConvUTF8
);
7935 return strlen(buffer
) + 1;
7937 return bufXML
.Length()+1;
7941 bool wxRichTextBufferDataObject::GetDataHere(void *pBuf
) const
7943 if (!pBuf
|| !m_richTextBuffer
)
7949 wxStringOutputStream
stream(& bufXML
);
7950 if (!m_richTextBuffer
->SaveFile(stream
, wxRICHTEXT_TYPE_XML
))
7952 wxLogError(wxT("Could not write the buffer to an XML stream.\nYou may have forgotten to add the XML file handler."));
7958 wxCharBuffer buffer
= bufXML
.mb_str(wxConvUTF8
);
7959 size_t len
= strlen(buffer
);
7960 memcpy((char*) pBuf
, (const char*) buffer
, len
);
7961 ((char*) pBuf
)[len
] = 0;
7963 size_t len
= bufXML
.Length();
7964 memcpy((char*) pBuf
, (const char*) bufXML
.c_str(), len
);
7965 ((char*) pBuf
)[len
] = 0;
7971 bool wxRichTextBufferDataObject::SetData(size_t WXUNUSED(len
), const void *buf
)
7973 delete m_richTextBuffer
;
7974 m_richTextBuffer
= NULL
;
7976 wxString
bufXML((const char*) buf
, wxConvUTF8
);
7978 m_richTextBuffer
= new wxRichTextBuffer
;
7980 wxStringInputStream
stream(bufXML
);
7981 if (!m_richTextBuffer
->LoadFile(stream
, wxRICHTEXT_TYPE_XML
))
7983 wxLogError(wxT("Could not read the buffer from an XML stream.\nYou may have forgotten to add the XML file handler."));
7985 delete m_richTextBuffer
;
7986 m_richTextBuffer
= NULL
;