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/settings.h"
32 #include "wx/filename.h"
33 #include "wx/clipbrd.h"
34 #include "wx/wfstream.h"
35 #include "wx/mstream.h"
36 #include "wx/sstream.h"
37 #include "wx/textfile.h"
38 #include "wx/hashmap.h"
40 #include "wx/richtext/richtextctrl.h"
41 #include "wx/richtext/richtextstyles.h"
43 #include "wx/listimpl.cpp"
45 WX_DEFINE_LIST(wxRichTextObjectList
)
46 WX_DEFINE_LIST(wxRichTextLineList
)
48 // Switch off if the platform doesn't like it for some reason
49 #define wxRICHTEXT_USE_OPTIMIZED_DRAWING 1
51 // Use GetPartialTextExtents for platforms that support it natively
52 #define wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS 1
54 const wxChar wxRichTextLineBreakChar
= (wxChar
) 29;
56 // Helpers for efficiency
58 inline void wxCheckSetFont(wxDC
& dc
, const wxFont
& font
)
60 const wxFont
& font1
= dc
.GetFont();
61 if (font1
.IsOk() && font
.IsOk())
63 if (font1
.GetPointSize() == font
.GetPointSize() &&
64 font1
.GetFamily() == font
.GetFamily() &&
65 font1
.GetStyle() == font
.GetStyle() &&
66 font1
.GetWeight() == font
.GetWeight() &&
67 font1
.GetUnderlined() == font
.GetUnderlined() &&
68 font1
.GetFaceName() == font
.GetFaceName())
74 inline void wxCheckSetPen(wxDC
& dc
, const wxPen
& pen
)
76 const wxPen
& pen1
= dc
.GetPen();
77 if (pen1
.IsOk() && pen
.IsOk())
79 if (pen1
.GetWidth() == pen
.GetWidth() &&
80 pen1
.GetStyle() == pen
.GetStyle() &&
81 pen1
.GetColour() == pen
.GetColour())
87 inline void wxCheckSetBrush(wxDC
& dc
, const wxBrush
& brush
)
89 const wxBrush
& brush1
= dc
.GetBrush();
90 if (brush1
.IsOk() && brush
.IsOk())
92 if (brush1
.GetStyle() == brush
.GetStyle() &&
93 brush1
.GetColour() == brush
.GetColour())
101 * This is the base for drawable objects.
104 IMPLEMENT_CLASS(wxRichTextObject
, wxObject
)
106 wxRichTextObject::wxRichTextObject(wxRichTextObject
* parent
)
118 wxRichTextObject::~wxRichTextObject()
122 void wxRichTextObject::Dereference()
130 void wxRichTextObject::Copy(const wxRichTextObject
& obj
)
134 m_dirty
= obj
.m_dirty
;
135 m_range
= obj
.m_range
;
136 m_attributes
= obj
.m_attributes
;
137 m_descent
= obj
.m_descent
;
140 void wxRichTextObject::SetMargins(int margin
)
142 m_leftMargin
= m_rightMargin
= m_topMargin
= m_bottomMargin
= margin
;
145 void wxRichTextObject::SetMargins(int leftMargin
, int rightMargin
, int topMargin
, int bottomMargin
)
147 m_leftMargin
= leftMargin
;
148 m_rightMargin
= rightMargin
;
149 m_topMargin
= topMargin
;
150 m_bottomMargin
= bottomMargin
;
153 // Convert units in tenths of a millimetre to device units
154 int wxRichTextObject::ConvertTenthsMMToPixels(wxDC
& dc
, int units
)
156 int p
= ConvertTenthsMMToPixels(dc
.GetPPI().x
, units
);
159 wxRichTextBuffer
* buffer
= GetBuffer();
161 p
= (int) ((double)p
/ buffer
->GetScale());
165 // Convert units in tenths of a millimetre to device units
166 int wxRichTextObject::ConvertTenthsMMToPixels(int ppi
, int units
)
168 // There are ppi pixels in 254.1 "1/10 mm"
170 double pixels
= ((double) units
* (double)ppi
) / 254.1;
175 /// Dump to output stream for debugging
176 void wxRichTextObject::Dump(wxTextOutputStream
& stream
)
178 stream
<< GetClassInfo()->GetClassName() << wxT("\n");
179 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");
180 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");
183 /// Gets the containing buffer
184 wxRichTextBuffer
* wxRichTextObject::GetBuffer() const
186 const wxRichTextObject
* obj
= this;
187 while (obj
&& !obj
->IsKindOf(CLASSINFO(wxRichTextBuffer
)))
188 obj
= obj
->GetParent();
189 return wxDynamicCast(obj
, wxRichTextBuffer
);
193 * wxRichTextCompositeObject
194 * This is the base for drawable objects.
197 IMPLEMENT_CLASS(wxRichTextCompositeObject
, wxRichTextObject
)
199 wxRichTextCompositeObject::wxRichTextCompositeObject(wxRichTextObject
* parent
):
200 wxRichTextObject(parent
)
204 wxRichTextCompositeObject::~wxRichTextCompositeObject()
209 /// Get the nth child
210 wxRichTextObject
* wxRichTextCompositeObject::GetChild(size_t n
) const
212 wxASSERT ( n
< m_children
.GetCount() );
214 return m_children
.Item(n
)->GetData();
217 /// Append a child, returning the position
218 size_t wxRichTextCompositeObject::AppendChild(wxRichTextObject
* child
)
220 m_children
.Append(child
);
221 child
->SetParent(this);
222 return m_children
.GetCount() - 1;
225 /// Insert the child in front of the given object, or at the beginning
226 bool wxRichTextCompositeObject::InsertChild(wxRichTextObject
* child
, wxRichTextObject
* inFrontOf
)
230 wxRichTextObjectList::compatibility_iterator node
= m_children
.Find(inFrontOf
);
231 m_children
.Insert(node
, child
);
234 m_children
.Insert(child
);
235 child
->SetParent(this);
241 bool wxRichTextCompositeObject::RemoveChild(wxRichTextObject
* child
, bool deleteChild
)
243 wxRichTextObjectList::compatibility_iterator node
= m_children
.Find(child
);
246 wxRichTextObject
* obj
= node
->GetData();
247 m_children
.Erase(node
);
256 /// Delete all children
257 bool wxRichTextCompositeObject::DeleteChildren()
259 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
262 wxRichTextObjectList::compatibility_iterator oldNode
= node
;
264 wxRichTextObject
* child
= node
->GetData();
265 child
->Dereference(); // Only delete if reference count is zero
267 node
= node
->GetNext();
268 m_children
.Erase(oldNode
);
274 /// Get the child count
275 size_t wxRichTextCompositeObject::GetChildCount() const
277 return m_children
.GetCount();
281 void wxRichTextCompositeObject::Copy(const wxRichTextCompositeObject
& obj
)
283 wxRichTextObject::Copy(obj
);
287 wxRichTextObjectList::compatibility_iterator node
= obj
.m_children
.GetFirst();
290 wxRichTextObject
* child
= node
->GetData();
291 wxRichTextObject
* newChild
= child
->Clone();
292 newChild
->SetParent(this);
293 m_children
.Append(newChild
);
295 node
= node
->GetNext();
299 /// Hit-testing: returns a flag indicating hit test details, plus
300 /// information about position
301 int wxRichTextCompositeObject::HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
)
303 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
306 wxRichTextObject
* child
= node
->GetData();
308 int ret
= child
->HitTest(dc
, pt
, textPosition
);
309 if (ret
!= wxRICHTEXT_HITTEST_NONE
)
312 node
= node
->GetNext();
315 textPosition
= GetRange().GetEnd()-1;
316 return wxRICHTEXT_HITTEST_AFTER
|wxRICHTEXT_HITTEST_OUTSIDE
;
319 /// Finds the absolute position and row height for the given character position
320 bool wxRichTextCompositeObject::FindPosition(wxDC
& dc
, long index
, wxPoint
& pt
, int* height
, bool forceLineStart
)
322 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
325 wxRichTextObject
* child
= node
->GetData();
327 if (child
->FindPosition(dc
, index
, pt
, height
, forceLineStart
))
330 node
= node
->GetNext();
337 void wxRichTextCompositeObject::CalculateRange(long start
, long& end
)
339 long current
= start
;
340 long lastEnd
= current
;
342 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
345 wxRichTextObject
* child
= node
->GetData();
348 child
->CalculateRange(current
, childEnd
);
351 current
= childEnd
+ 1;
353 node
= node
->GetNext();
358 // An object with no children has zero length
359 if (m_children
.GetCount() == 0)
362 m_range
.SetRange(start
, end
);
365 /// Delete range from layout.
366 bool wxRichTextCompositeObject::DeleteRange(const wxRichTextRange
& range
)
368 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
372 wxRichTextObject
* obj
= (wxRichTextObject
*) node
->GetData();
373 wxRichTextObjectList::compatibility_iterator next
= node
->GetNext();
375 // Delete the range in each paragraph
377 // When a chunk has been deleted, internally the content does not
378 // now match the ranges.
379 // However, so long as deletion is not done on the same object twice this is OK.
380 // If you may delete content from the same object twice, recalculate
381 // the ranges inbetween DeleteRange calls by calling CalculateRanges, and
382 // adjust the range you're deleting accordingly.
384 if (!obj
->GetRange().IsOutside(range
))
386 obj
->DeleteRange(range
);
388 // Delete an empty object, or paragraph within this range.
389 if (obj
->IsEmpty() ||
390 (range
.GetStart() <= obj
->GetRange().GetStart() && range
.GetEnd() >= obj
->GetRange().GetEnd()))
392 // An empty paragraph has length 1, so won't be deleted unless the
393 // whole range is deleted.
394 RemoveChild(obj
, true);
404 /// Get any text in this object for the given range
405 wxString
wxRichTextCompositeObject::GetTextForRange(const wxRichTextRange
& range
) const
408 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
411 wxRichTextObject
* child
= node
->GetData();
412 wxRichTextRange childRange
= range
;
413 if (!child
->GetRange().IsOutside(range
))
415 childRange
.LimitTo(child
->GetRange());
417 wxString childText
= child
->GetTextForRange(childRange
);
421 node
= node
->GetNext();
427 /// Recursively merge all pieces that can be merged.
428 bool wxRichTextCompositeObject::Defragment(const wxRichTextRange
& range
)
430 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
433 wxRichTextObject
* child
= node
->GetData();
434 if (!child
->GetRange().IsOutside(range
))
436 wxRichTextCompositeObject
* composite
= wxDynamicCast(child
, wxRichTextCompositeObject
);
438 composite
->Defragment();
442 wxRichTextObject
* nextChild
= node
->GetNext()->GetData();
443 if (child
->CanMerge(nextChild
) && child
->Merge(nextChild
))
445 nextChild
->Dereference();
446 m_children
.Erase(node
->GetNext());
448 // Don't set node -- we'll see if we can merge again with the next
452 node
= node
->GetNext();
455 node
= node
->GetNext();
458 node
= node
->GetNext();
464 /// Dump to output stream for debugging
465 void wxRichTextCompositeObject::Dump(wxTextOutputStream
& stream
)
467 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
470 wxRichTextObject
* child
= node
->GetData();
472 node
= node
->GetNext();
479 * This defines a 2D space to lay out objects
482 IMPLEMENT_DYNAMIC_CLASS(wxRichTextBox
, wxRichTextCompositeObject
)
484 wxRichTextBox::wxRichTextBox(wxRichTextObject
* parent
):
485 wxRichTextCompositeObject(parent
)
490 bool wxRichTextBox::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& WXUNUSED(rect
), int descent
, int style
)
492 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
495 wxRichTextObject
* child
= node
->GetData();
497 wxRect childRect
= wxRect(child
->GetPosition(), child
->GetCachedSize());
498 child
->Draw(dc
, range
, selectionRange
, childRect
, descent
, style
);
500 node
= node
->GetNext();
506 bool wxRichTextBox::Layout(wxDC
& dc
, const wxRect
& rect
, int style
)
508 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
511 wxRichTextObject
* child
= node
->GetData();
512 child
->Layout(dc
, rect
, style
);
514 node
= node
->GetNext();
520 /// Get/set the size for the given range. Assume only has one child.
521 bool wxRichTextBox::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
, wxArrayInt
* partialExtents
) const
523 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
526 wxRichTextObject
* child
= node
->GetData();
527 return child
->GetRangeSize(range
, size
, descent
, dc
, flags
, position
, partialExtents
);
534 void wxRichTextBox::Copy(const wxRichTextBox
& obj
)
536 wxRichTextCompositeObject::Copy(obj
);
541 * wxRichTextParagraphLayoutBox
542 * This box knows how to lay out paragraphs.
545 IMPLEMENT_DYNAMIC_CLASS(wxRichTextParagraphLayoutBox
, wxRichTextBox
)
547 wxRichTextParagraphLayoutBox::wxRichTextParagraphLayoutBox(wxRichTextObject
* parent
):
548 wxRichTextBox(parent
)
553 /// Initialize the object.
554 void wxRichTextParagraphLayoutBox::Init()
558 // For now, assume is the only box and has no initial size.
559 m_range
= wxRichTextRange(0, -1);
561 m_invalidRange
.SetRange(-1, -1);
566 m_partialParagraph
= false;
570 bool wxRichTextParagraphLayoutBox::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int style
)
572 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
575 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
576 wxASSERT (child
!= NULL
);
578 if (child
&& !child
->GetRange().IsOutside(range
))
580 wxRect
childRect(child
->GetPosition(), child
->GetCachedSize());
582 if (((style
& wxRICHTEXT_DRAW_IGNORE_CACHE
) == 0) && childRect
.GetTop() > rect
.GetBottom())
587 else if (((style
& wxRICHTEXT_DRAW_IGNORE_CACHE
) == 0) && childRect
.GetBottom() < rect
.GetTop())
592 child
->Draw(dc
, range
, selectionRange
, rect
, descent
, style
);
595 node
= node
->GetNext();
601 bool wxRichTextParagraphLayoutBox::Layout(wxDC
& dc
, const wxRect
& rect
, int style
)
603 wxRect availableSpace
;
604 bool formatRect
= (style
& wxRICHTEXT_LAYOUT_SPECIFIED_RECT
) == wxRICHTEXT_LAYOUT_SPECIFIED_RECT
;
606 // If only laying out a specific area, the passed rect has a different meaning:
607 // the visible part of the buffer. This is used in wxRichTextCtrl::OnSize,
608 // so that during a size, only the visible part will be relaid out, or
609 // it would take too long causing flicker. As an approximation, we assume that
610 // everything up to the start of the visible area is laid out correctly.
613 availableSpace
= wxRect(0 + m_leftMargin
,
615 rect
.width
- m_leftMargin
- m_rightMargin
,
618 // Invalidate the part of the buffer from the first visible line
619 // to the end. If other parts of the buffer are currently invalid,
620 // then they too will be taken into account if they are above
621 // the visible point.
623 wxRichTextLine
* line
= GetLineAtYPosition(rect
.y
);
625 startPos
= line
->GetAbsoluteRange().GetStart();
627 Invalidate(wxRichTextRange(startPos
, GetRange().GetEnd()));
630 availableSpace
= wxRect(rect
.x
+ m_leftMargin
,
631 rect
.y
+ m_topMargin
,
632 rect
.width
- m_leftMargin
- m_rightMargin
,
633 rect
.height
- m_topMargin
- m_bottomMargin
);
637 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
639 bool layoutAll
= true;
641 // Get invalid range, rounding to paragraph start/end.
642 wxRichTextRange invalidRange
= GetInvalidRange(true);
644 if (invalidRange
== wxRICHTEXT_NONE
&& !formatRect
)
647 if (invalidRange
== wxRICHTEXT_ALL
)
649 else // If we know what range is affected, start laying out from that point on.
650 if (invalidRange
.GetStart() >= GetRange().GetStart())
652 wxRichTextParagraph
* firstParagraph
= GetParagraphAtPosition(invalidRange
.GetStart());
655 wxRichTextObjectList::compatibility_iterator firstNode
= m_children
.Find(firstParagraph
);
656 wxRichTextObjectList::compatibility_iterator previousNode
;
658 previousNode
= firstNode
->GetPrevious();
663 wxRichTextParagraph
* previousParagraph
= wxDynamicCast(previousNode
->GetData(), wxRichTextParagraph
);
664 availableSpace
.y
= previousParagraph
->GetPosition().y
+ previousParagraph
->GetCachedSize().y
;
667 // Now we're going to start iterating from the first affected paragraph.
675 // A way to force speedy rest-of-buffer layout (the 'else' below)
676 bool forceQuickLayout
= false;
680 // Assume this box only contains paragraphs
682 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
683 wxCHECK_MSG( child
, false, _T("Unknown object in layout") );
685 // TODO: what if the child hasn't been laid out (e.g. involved in Undo) but still has 'old' lines
686 if ( !forceQuickLayout
&&
688 child
->GetLines().IsEmpty() ||
689 !child
->GetRange().IsOutside(invalidRange
)) )
691 child
->Layout(dc
, availableSpace
, style
);
693 // Layout must set the cached size
694 availableSpace
.y
+= child
->GetCachedSize().y
;
695 maxWidth
= wxMax(maxWidth
, child
->GetCachedSize().x
);
697 // If we're just formatting the visible part of the buffer,
698 // and we're now past the bottom of the window, start quick
700 if (formatRect
&& child
->GetPosition().y
> rect
.GetBottom())
701 forceQuickLayout
= true;
705 // We're outside the immediately affected range, so now let's just
706 // move everything up or down. This assumes that all the children have previously
707 // been laid out and have wrapped line lists associated with them.
708 // TODO: check all paragraphs before the affected range.
710 int inc
= availableSpace
.y
- child
->GetPosition().y
;
714 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
717 if (child
->GetLines().GetCount() == 0)
718 child
->Layout(dc
, availableSpace
, style
);
720 child
->SetPosition(wxPoint(child
->GetPosition().x
, child
->GetPosition().y
+ inc
));
722 availableSpace
.y
+= child
->GetCachedSize().y
;
723 maxWidth
= wxMax(maxWidth
, child
->GetCachedSize().x
);
726 node
= node
->GetNext();
731 node
= node
->GetNext();
734 SetCachedSize(wxSize(maxWidth
, availableSpace
.y
));
737 m_invalidRange
= wxRICHTEXT_NONE
;
743 void wxRichTextParagraphLayoutBox::Copy(const wxRichTextParagraphLayoutBox
& obj
)
745 wxRichTextBox::Copy(obj
);
747 m_partialParagraph
= obj
.m_partialParagraph
;
748 m_defaultAttributes
= obj
.m_defaultAttributes
;
751 /// Get/set the size for the given range.
752 bool wxRichTextParagraphLayoutBox::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
, wxArrayInt
* WXUNUSED(partialExtents
)) const
756 wxRichTextObjectList::compatibility_iterator startPara
= wxRichTextObjectList::compatibility_iterator();
757 wxRichTextObjectList::compatibility_iterator endPara
= wxRichTextObjectList::compatibility_iterator();
759 // First find the first paragraph whose starting position is within the range.
760 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
763 // child is a paragraph
764 wxRichTextObject
* child
= node
->GetData();
765 const wxRichTextRange
& r
= child
->GetRange();
767 if (r
.GetStart() <= range
.GetStart() && r
.GetEnd() >= range
.GetStart())
773 node
= node
->GetNext();
776 // Next find the last paragraph containing part of the range
777 node
= m_children
.GetFirst();
780 // child is a paragraph
781 wxRichTextObject
* child
= node
->GetData();
782 const wxRichTextRange
& r
= child
->GetRange();
784 if (r
.GetStart() <= range
.GetEnd() && r
.GetEnd() >= range
.GetEnd())
790 node
= node
->GetNext();
793 if (!startPara
|| !endPara
)
796 // Now we can add up the sizes
797 for (node
= startPara
; node
; node
= node
->GetNext())
799 // child is a paragraph
800 wxRichTextObject
* child
= node
->GetData();
801 const wxRichTextRange
& childRange
= child
->GetRange();
802 wxRichTextRange rangeToFind
= range
;
803 rangeToFind
.LimitTo(childRange
);
807 int childDescent
= 0;
808 child
->GetRangeSize(rangeToFind
, childSize
, childDescent
, dc
, flags
, position
);
810 descent
= wxMax(childDescent
, descent
);
812 sz
.x
= wxMax(sz
.x
, childSize
.x
);
824 /// Get the paragraph at the given position
825 wxRichTextParagraph
* wxRichTextParagraphLayoutBox::GetParagraphAtPosition(long pos
, bool caretPosition
) const
830 // First find the first paragraph whose starting position is within the range.
831 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
834 // child is a paragraph
835 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
836 wxASSERT (child
!= NULL
);
838 // Return first child in buffer if position is -1
842 if (child
->GetRange().Contains(pos
))
845 node
= node
->GetNext();
850 /// Get the line at the given position
851 wxRichTextLine
* wxRichTextParagraphLayoutBox::GetLineAtPosition(long pos
, bool caretPosition
) const
856 // First find the first paragraph whose starting position is within the range.
857 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
860 wxRichTextObject
* obj
= (wxRichTextObject
*) node
->GetData();
861 if (obj
->GetRange().Contains(pos
))
863 // child is a paragraph
864 wxRichTextParagraph
* child
= wxDynamicCast(obj
, wxRichTextParagraph
);
865 wxASSERT (child
!= NULL
);
867 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
870 wxRichTextLine
* line
= node2
->GetData();
872 wxRichTextRange range
= line
->GetAbsoluteRange();
874 if (range
.Contains(pos
) ||
876 // If the position is end-of-paragraph, then return the last line of
878 ((range
.GetEnd() == child
->GetRange().GetEnd()-1) && (pos
== child
->GetRange().GetEnd())))
881 node2
= node2
->GetNext();
885 node
= node
->GetNext();
888 int lineCount
= GetLineCount();
890 return GetLineForVisibleLineNumber(lineCount
-1);
895 /// Get the line at the given y pixel position, or the last line.
896 wxRichTextLine
* wxRichTextParagraphLayoutBox::GetLineAtYPosition(int y
) const
898 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
901 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
902 wxASSERT (child
!= NULL
);
904 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
907 wxRichTextLine
* line
= node2
->GetData();
909 wxRect
rect(line
->GetRect());
911 if (y
<= rect
.GetBottom())
914 node2
= node2
->GetNext();
917 node
= node
->GetNext();
921 int lineCount
= GetLineCount();
923 return GetLineForVisibleLineNumber(lineCount
-1);
928 /// Get the number of visible lines
929 int wxRichTextParagraphLayoutBox::GetLineCount() const
933 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
936 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
937 wxASSERT (child
!= NULL
);
939 count
+= child
->GetLines().GetCount();
940 node
= node
->GetNext();
946 /// Get the paragraph for a given line
947 wxRichTextParagraph
* wxRichTextParagraphLayoutBox::GetParagraphForLine(wxRichTextLine
* line
) const
949 return GetParagraphAtPosition(line
->GetAbsoluteRange().GetStart());
952 /// Get the line size at the given position
953 wxSize
wxRichTextParagraphLayoutBox::GetLineSizeAtPosition(long pos
, bool caretPosition
) const
955 wxRichTextLine
* line
= GetLineAtPosition(pos
, caretPosition
);
958 return line
->GetSize();
965 /// Convenience function to add a paragraph of text
966 wxRichTextRange
wxRichTextParagraphLayoutBox::AddParagraph(const wxString
& text
, wxTextAttr
* paraStyle
)
968 // Don't use the base style, just the default style, and the base style will
969 // be combined at display time.
970 // Divide into paragraph and character styles.
972 wxTextAttr defaultCharStyle
;
973 wxTextAttr defaultParaStyle
;
975 // If the default style is a named paragraph style, don't apply any character formatting
976 // to the initial text string.
977 if (GetDefaultStyle().HasParagraphStyleName() && GetStyleSheet())
979 wxRichTextParagraphStyleDefinition
* def
= GetStyleSheet()->FindParagraphStyle(GetDefaultStyle().GetParagraphStyleName());
981 defaultParaStyle
= def
->GetStyleMergedWithBase(GetStyleSheet());
984 wxRichTextSplitParaCharStyles(GetDefaultStyle(), defaultParaStyle
, defaultCharStyle
);
986 wxTextAttr
* pStyle
= paraStyle
? paraStyle
: (wxTextAttr
*) & defaultParaStyle
;
987 wxTextAttr
* cStyle
= & defaultCharStyle
;
989 wxRichTextParagraph
* para
= new wxRichTextParagraph(text
, this, pStyle
, cStyle
);
996 return para
->GetRange();
999 /// Adds multiple paragraphs, based on newlines.
1000 wxRichTextRange
wxRichTextParagraphLayoutBox::AddParagraphs(const wxString
& text
, wxTextAttr
* paraStyle
)
1002 // Don't use the base style, just the default style, and the base style will
1003 // be combined at display time.
1004 // Divide into paragraph and character styles.
1006 wxTextAttr defaultCharStyle
;
1007 wxTextAttr defaultParaStyle
;
1009 // If the default style is a named paragraph style, don't apply any character formatting
1010 // to the initial text string.
1011 if (GetDefaultStyle().HasParagraphStyleName() && GetStyleSheet())
1013 wxRichTextParagraphStyleDefinition
* def
= GetStyleSheet()->FindParagraphStyle(GetDefaultStyle().GetParagraphStyleName());
1015 defaultParaStyle
= def
->GetStyleMergedWithBase(GetStyleSheet());
1018 wxRichTextSplitParaCharStyles(GetDefaultStyle(), defaultParaStyle
, defaultCharStyle
);
1020 wxTextAttr
* pStyle
= paraStyle
? paraStyle
: (wxTextAttr
*) & defaultParaStyle
;
1021 wxTextAttr
* cStyle
= & defaultCharStyle
;
1023 wxRichTextParagraph
* firstPara
= NULL
;
1024 wxRichTextParagraph
* lastPara
= NULL
;
1026 wxRichTextRange
range(-1, -1);
1029 size_t len
= text
.length();
1031 wxRichTextParagraph
* para
= new wxRichTextParagraph(wxEmptyString
, this, pStyle
, cStyle
);
1040 wxChar ch
= text
[i
];
1041 if (ch
== wxT('\n') || ch
== wxT('\r'))
1045 wxRichTextPlainText
* plainText
= (wxRichTextPlainText
*) para
->GetChildren().GetFirst()->GetData();
1046 plainText
->SetText(line
);
1048 para
= new wxRichTextParagraph(wxEmptyString
, this, pStyle
, cStyle
);
1053 line
= wxEmptyString
;
1064 wxRichTextPlainText
* plainText
= (wxRichTextPlainText
*) para
->GetChildren().GetFirst()->GetData();
1065 plainText
->SetText(line
);
1072 return wxRichTextRange(firstPara
->GetRange().GetStart(), lastPara
->GetRange().GetEnd());
1075 /// Convenience function to add an image
1076 wxRichTextRange
wxRichTextParagraphLayoutBox::AddImage(const wxImage
& image
, wxTextAttr
* paraStyle
)
1078 // Don't use the base style, just the default style, and the base style will
1079 // be combined at display time.
1080 // Divide into paragraph and character styles.
1082 wxTextAttr defaultCharStyle
;
1083 wxTextAttr defaultParaStyle
;
1085 // If the default style is a named paragraph style, don't apply any character formatting
1086 // to the initial text string.
1087 if (GetDefaultStyle().HasParagraphStyleName() && GetStyleSheet())
1089 wxRichTextParagraphStyleDefinition
* def
= GetStyleSheet()->FindParagraphStyle(GetDefaultStyle().GetParagraphStyleName());
1091 defaultParaStyle
= def
->GetStyleMergedWithBase(GetStyleSheet());
1094 wxRichTextSplitParaCharStyles(GetDefaultStyle(), defaultParaStyle
, defaultCharStyle
);
1096 wxTextAttr
* pStyle
= paraStyle
? paraStyle
: (wxTextAttr
*) & defaultParaStyle
;
1097 wxTextAttr
* cStyle
= & defaultCharStyle
;
1099 wxRichTextParagraph
* para
= new wxRichTextParagraph(this, pStyle
);
1101 para
->AppendChild(new wxRichTextImage(image
, this, cStyle
));
1106 return para
->GetRange();
1110 /// Insert fragment into this box at the given position. If partialParagraph is true,
1111 /// it is assumed that the last (or only) paragraph is just a piece of data with no paragraph
1114 bool wxRichTextParagraphLayoutBox::InsertFragment(long position
, wxRichTextParagraphLayoutBox
& fragment
)
1118 // First, find the first paragraph whose starting position is within the range.
1119 wxRichTextParagraph
* para
= GetParagraphAtPosition(position
);
1122 wxTextAttrEx originalAttr
= para
->GetAttributes();
1124 wxRichTextObjectList::compatibility_iterator node
= m_children
.Find(para
);
1126 // Now split at this position, returning the object to insert the new
1127 // ones in front of.
1128 wxRichTextObject
* nextObject
= para
->SplitAt(position
);
1130 // Special case: partial paragraph, just one paragraph. Might be a small amount of
1131 // text, for example, so let's optimize.
1133 if (fragment
.GetPartialParagraph() && fragment
.GetChildren().GetCount() == 1)
1135 // Add the first para to this para...
1136 wxRichTextObjectList::compatibility_iterator firstParaNode
= fragment
.GetChildren().GetFirst();
1140 // Iterate through the fragment paragraph inserting the content into this paragraph.
1141 wxRichTextParagraph
* firstPara
= wxDynamicCast(firstParaNode
->GetData(), wxRichTextParagraph
);
1142 wxASSERT (firstPara
!= NULL
);
1144 wxRichTextObjectList::compatibility_iterator objectNode
= firstPara
->GetChildren().GetFirst();
1147 wxRichTextObject
* newObj
= objectNode
->GetData()->Clone();
1152 para
->AppendChild(newObj
);
1156 // Insert before nextObject
1157 para
->InsertChild(newObj
, nextObject
);
1160 objectNode
= objectNode
->GetNext();
1167 // Procedure for inserting a fragment consisting of a number of
1170 // 1. Remove and save the content that's after the insertion point, for adding
1171 // back once we've added the fragment.
1172 // 2. Add the content from the first fragment paragraph to the current
1174 // 3. Add remaining fragment paragraphs after the current paragraph.
1175 // 4. Add back the saved content from the first paragraph. If partialParagraph
1176 // is true, add it to the last paragraph added and not a new one.
1178 // 1. Remove and save objects after split point.
1179 wxList savedObjects
;
1181 para
->MoveToList(nextObject
, savedObjects
);
1183 // 2. Add the content from the 1st fragment paragraph.
1184 wxRichTextObjectList::compatibility_iterator firstParaNode
= fragment
.GetChildren().GetFirst();
1188 wxRichTextParagraph
* firstPara
= wxDynamicCast(firstParaNode
->GetData(), wxRichTextParagraph
);
1189 wxASSERT(firstPara
!= NULL
);
1191 if (!(fragment
.GetAttributes().GetFlags() & wxTEXT_ATTR_KEEP_FIRST_PARA_STYLE
))
1192 para
->SetAttributes(firstPara
->GetAttributes());
1194 // Save empty paragraph attributes for appending later
1195 // These are character attributes deliberately set for a new paragraph. Without this,
1196 // we couldn't pass default attributes when appending a new paragraph.
1197 wxTextAttrEx emptyParagraphAttributes
;
1199 wxRichTextObjectList::compatibility_iterator objectNode
= firstPara
->GetChildren().GetFirst();
1201 if (objectNode
&& firstPara
->GetChildren().GetCount() == 1 && objectNode
->GetData()->IsEmpty())
1202 emptyParagraphAttributes
= objectNode
->GetData()->GetAttributes();
1206 wxRichTextObject
* newObj
= objectNode
->GetData()->Clone();
1209 para
->AppendChild(newObj
);
1211 objectNode
= objectNode
->GetNext();
1214 // 3. Add remaining fragment paragraphs after the current paragraph.
1215 wxRichTextObjectList::compatibility_iterator nextParagraphNode
= node
->GetNext();
1216 wxRichTextObject
* nextParagraph
= NULL
;
1217 if (nextParagraphNode
)
1218 nextParagraph
= nextParagraphNode
->GetData();
1220 wxRichTextObjectList::compatibility_iterator i
= fragment
.GetChildren().GetFirst()->GetNext();
1221 wxRichTextParagraph
* finalPara
= para
;
1223 bool needExtraPara
= (!i
|| !fragment
.GetPartialParagraph());
1225 // If there was only one paragraph, we need to insert a new one.
1228 wxRichTextParagraph
* para
= wxDynamicCast(i
->GetData(), wxRichTextParagraph
);
1229 wxASSERT( para
!= NULL
);
1231 finalPara
= (wxRichTextParagraph
*) para
->Clone();
1234 InsertChild(finalPara
, nextParagraph
);
1236 AppendChild(finalPara
);
1241 // If there was only one paragraph, or we have full paragraphs in our fragment,
1242 // we need to insert a new one.
1245 finalPara
= new wxRichTextParagraph
;
1248 InsertChild(finalPara
, nextParagraph
);
1250 AppendChild(finalPara
);
1253 // 4. Add back the remaining content.
1257 finalPara
->MoveFromList(savedObjects
);
1259 // Ensure there's at least one object
1260 if (finalPara
->GetChildCount() == 0)
1262 wxRichTextPlainText
* text
= new wxRichTextPlainText(wxEmptyString
);
1263 text
->SetAttributes(emptyParagraphAttributes
);
1265 finalPara
->AppendChild(text
);
1269 if ((fragment
.GetAttributes().GetFlags() & wxTEXT_ATTR_KEEP_FIRST_PARA_STYLE
) && firstPara
)
1270 finalPara
->SetAttributes(firstPara
->GetAttributes());
1271 else if (finalPara
&& finalPara
!= para
)
1272 finalPara
->SetAttributes(originalAttr
);
1280 wxRichTextObjectList::compatibility_iterator i
= fragment
.GetChildren().GetFirst();
1283 wxRichTextParagraph
* para
= wxDynamicCast(i
->GetData(), wxRichTextParagraph
);
1284 wxASSERT( para
!= NULL
);
1286 AppendChild(para
->Clone());
1295 /// Make a copy of the fragment corresponding to the given range, putting it in 'fragment'.
1296 /// If there was an incomplete paragraph at the end, partialParagraph is set to true.
1297 bool wxRichTextParagraphLayoutBox::CopyFragment(const wxRichTextRange
& range
, wxRichTextParagraphLayoutBox
& fragment
)
1299 wxRichTextObjectList::compatibility_iterator i
= GetChildren().GetFirst();
1302 wxRichTextParagraph
* para
= wxDynamicCast(i
->GetData(), wxRichTextParagraph
);
1303 wxASSERT( para
!= NULL
);
1305 if (!para
->GetRange().IsOutside(range
))
1307 fragment
.AppendChild(para
->Clone());
1312 // Now top and tail the first and last paragraphs in our new fragment (which might be the same).
1313 if (!fragment
.IsEmpty())
1315 wxRichTextRange
topTailRange(range
);
1317 wxRichTextParagraph
* firstPara
= wxDynamicCast(fragment
.GetChildren().GetFirst()->GetData(), wxRichTextParagraph
);
1318 wxASSERT( firstPara
!= NULL
);
1320 // Chop off the start of the paragraph
1321 if (topTailRange
.GetStart() > firstPara
->GetRange().GetStart())
1323 wxRichTextRange
r(firstPara
->GetRange().GetStart(), topTailRange
.GetStart()-1);
1324 firstPara
->DeleteRange(r
);
1326 // Make sure the numbering is correct
1328 fragment
.CalculateRange(firstPara
->GetRange().GetStart(), end
);
1330 // Now, we've deleted some positions, so adjust the range
1332 topTailRange
.SetEnd(topTailRange
.GetEnd() - r
.GetLength());
1335 wxRichTextParagraph
* lastPara
= wxDynamicCast(fragment
.GetChildren().GetLast()->GetData(), wxRichTextParagraph
);
1336 wxASSERT( lastPara
!= NULL
);
1338 if (topTailRange
.GetEnd() < (lastPara
->GetRange().GetEnd()-1))
1340 wxRichTextRange
r(topTailRange
.GetEnd()+1, lastPara
->GetRange().GetEnd()-1); /* -1 since actual text ends 1 position before end of para marker */
1341 lastPara
->DeleteRange(r
);
1343 // Make sure the numbering is correct
1345 fragment
.CalculateRange(firstPara
->GetRange().GetStart(), end
);
1347 // We only have part of a paragraph at the end
1348 fragment
.SetPartialParagraph(true);
1352 if (topTailRange
.GetEnd() == (lastPara
->GetRange().GetEnd() - 1))
1353 // We have a partial paragraph (don't save last new paragraph marker)
1354 fragment
.SetPartialParagraph(true);
1356 // We have a complete paragraph
1357 fragment
.SetPartialParagraph(false);
1364 /// Given a position, get the number of the visible line (potentially many to a paragraph),
1365 /// starting from zero at the start of the buffer.
1366 long wxRichTextParagraphLayoutBox::GetVisibleLineNumber(long pos
, bool caretPosition
, bool startOfLine
) const
1373 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1376 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
1377 wxASSERT( child
!= NULL
);
1379 if (child
->GetRange().Contains(pos
))
1381 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
1384 wxRichTextLine
* line
= node2
->GetData();
1385 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
1387 if (lineRange
.Contains(pos
))
1389 // If the caret is displayed at the end of the previous wrapped line,
1390 // we want to return the line it's _displayed_ at (not the actual line
1391 // containing the position).
1392 if (lineRange
.GetStart() == pos
&& !startOfLine
&& child
->GetRange().GetStart() != pos
)
1393 return lineCount
- 1;
1400 node2
= node2
->GetNext();
1402 // If we didn't find it in the lines, it must be
1403 // the last position of the paragraph. So return the last line.
1407 lineCount
+= child
->GetLines().GetCount();
1409 node
= node
->GetNext();
1416 /// Given a line number, get the corresponding wxRichTextLine object.
1417 wxRichTextLine
* wxRichTextParagraphLayoutBox::GetLineForVisibleLineNumber(long lineNumber
) const
1421 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1424 wxRichTextParagraph
* child
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
1425 wxASSERT(child
!= NULL
);
1427 if (lineNumber
< (int) (child
->GetLines().GetCount() + lineCount
))
1429 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
1432 wxRichTextLine
* line
= node2
->GetData();
1434 if (lineCount
== lineNumber
)
1439 node2
= node2
->GetNext();
1443 lineCount
+= child
->GetLines().GetCount();
1445 node
= node
->GetNext();
1452 /// Delete range from layout.
1453 bool wxRichTextParagraphLayoutBox::DeleteRange(const wxRichTextRange
& range
)
1455 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1457 wxRichTextParagraph
* firstPara
= NULL
;
1460 wxRichTextParagraph
* obj
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
1461 wxASSERT (obj
!= NULL
);
1463 wxRichTextObjectList::compatibility_iterator next
= node
->GetNext();
1465 // Delete the range in each paragraph
1467 if (!obj
->GetRange().IsOutside(range
))
1469 // Deletes the content of this object within the given range
1470 obj
->DeleteRange(range
);
1472 wxRichTextRange thisRange
= obj
->GetRange();
1473 wxTextAttrEx thisAttr
= obj
->GetAttributes();
1475 // If the whole paragraph is within the range to delete,
1476 // delete the whole thing.
1477 if (range
.GetStart() <= thisRange
.GetStart() && range
.GetEnd() >= thisRange
.GetEnd())
1479 // Delete the whole object
1480 RemoveChild(obj
, true);
1483 else if (!firstPara
)
1486 // If the range includes the paragraph end, we need to join this
1487 // and the next paragraph.
1488 if (range
.GetEnd() <= thisRange
.GetEnd())
1490 // We need to move the objects from the next paragraph
1491 // to this paragraph
1493 wxRichTextParagraph
* nextParagraph
= NULL
;
1494 if ((range
.GetEnd() < thisRange
.GetEnd()) && obj
)
1495 nextParagraph
= obj
;
1498 // We're ending at the end of the paragraph, so merge the _next_ paragraph.
1500 nextParagraph
= wxDynamicCast(next
->GetData(), wxRichTextParagraph
);
1503 bool applyFinalParagraphStyle
= firstPara
&& nextParagraph
&& nextParagraph
!= firstPara
;
1505 wxTextAttrEx nextParaAttr
;
1506 if (applyFinalParagraphStyle
)
1508 // Special case when deleting the end of a paragraph - use _this_ paragraph's style,
1509 // not the next one.
1510 if (range
.GetStart() == range
.GetEnd() && range
.GetStart() == thisRange
.GetEnd())
1511 nextParaAttr
= thisAttr
;
1513 nextParaAttr
= nextParagraph
->GetAttributes();
1516 if (firstPara
&& nextParagraph
&& firstPara
!= nextParagraph
)
1518 // Move the objects to the previous para
1519 wxRichTextObjectList::compatibility_iterator node1
= nextParagraph
->GetChildren().GetFirst();
1523 wxRichTextObject
* obj1
= node1
->GetData();
1525 firstPara
->AppendChild(obj1
);
1527 wxRichTextObjectList::compatibility_iterator next1
= node1
->GetNext();
1528 nextParagraph
->GetChildren().Erase(node1
);
1533 // Delete the paragraph
1534 RemoveChild(nextParagraph
, true);
1537 // Avoid empty paragraphs
1538 if (firstPara
&& firstPara
->GetChildren().GetCount() == 0)
1540 wxRichTextPlainText
* text
= new wxRichTextPlainText(wxEmptyString
);
1541 firstPara
->AppendChild(text
);
1544 if (applyFinalParagraphStyle
)
1545 firstPara
->SetAttributes(nextParaAttr
);
1557 /// Get any text in this object for the given range
1558 wxString
wxRichTextParagraphLayoutBox::GetTextForRange(const wxRichTextRange
& range
) const
1562 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1565 wxRichTextObject
* child
= node
->GetData();
1566 if (!child
->GetRange().IsOutside(range
))
1568 wxRichTextRange childRange
= range
;
1569 childRange
.LimitTo(child
->GetRange());
1571 wxString childText
= child
->GetTextForRange(childRange
);
1575 if ((childRange
.GetEnd() == child
->GetRange().GetEnd()) && node
->GetNext())
1580 node
= node
->GetNext();
1586 /// Get all the text
1587 wxString
wxRichTextParagraphLayoutBox::GetText() const
1589 return GetTextForRange(GetRange());
1592 /// Get the paragraph by number
1593 wxRichTextParagraph
* wxRichTextParagraphLayoutBox::GetParagraphAtLine(long paragraphNumber
) const
1595 if ((size_t) paragraphNumber
>= GetChildCount())
1598 return (wxRichTextParagraph
*) GetChild((size_t) paragraphNumber
);
1601 /// Get the length of the paragraph
1602 int wxRichTextParagraphLayoutBox::GetParagraphLength(long paragraphNumber
) const
1604 wxRichTextParagraph
* para
= GetParagraphAtLine(paragraphNumber
);
1606 return para
->GetRange().GetLength() - 1; // don't include newline
1611 /// Get the text of the paragraph
1612 wxString
wxRichTextParagraphLayoutBox::GetParagraphText(long paragraphNumber
) const
1614 wxRichTextParagraph
* para
= GetParagraphAtLine(paragraphNumber
);
1616 return para
->GetTextForRange(para
->GetRange());
1618 return wxEmptyString
;
1621 /// Convert zero-based line column and paragraph number to a position.
1622 long wxRichTextParagraphLayoutBox::XYToPosition(long x
, long y
) const
1624 wxRichTextParagraph
* para
= GetParagraphAtLine(y
);
1627 return para
->GetRange().GetStart() + x
;
1633 /// Convert zero-based position to line column and paragraph number
1634 bool wxRichTextParagraphLayoutBox::PositionToXY(long pos
, long* x
, long* y
) const
1636 wxRichTextParagraph
* para
= GetParagraphAtPosition(pos
);
1640 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1643 wxRichTextObject
* child
= node
->GetData();
1647 node
= node
->GetNext();
1651 *x
= pos
- para
->GetRange().GetStart();
1659 /// Get the leaf object in a paragraph at this position.
1660 /// Given a line number, get the corresponding wxRichTextLine object.
1661 wxRichTextObject
* wxRichTextParagraphLayoutBox::GetLeafObjectAtPosition(long position
) const
1663 wxRichTextParagraph
* para
= GetParagraphAtPosition(position
);
1666 wxRichTextObjectList::compatibility_iterator node
= para
->GetChildren().GetFirst();
1670 wxRichTextObject
* child
= node
->GetData();
1671 if (child
->GetRange().Contains(position
))
1674 node
= node
->GetNext();
1676 if (position
== para
->GetRange().GetEnd() && para
->GetChildCount() > 0)
1677 return para
->GetChildren().GetLast()->GetData();
1682 /// Set character or paragraph text attributes: apply character styles only to immediate text nodes
1683 bool wxRichTextParagraphLayoutBox::SetStyle(const wxRichTextRange
& range
, const wxTextAttr
& style
, int flags
)
1685 bool characterStyle
= false;
1686 bool paragraphStyle
= false;
1688 if (style
.IsCharacterStyle())
1689 characterStyle
= true;
1690 if (style
.IsParagraphStyle())
1691 paragraphStyle
= true;
1693 bool withUndo
= ((flags
& wxRICHTEXT_SETSTYLE_WITH_UNDO
) != 0);
1694 bool applyMinimal
= ((flags
& wxRICHTEXT_SETSTYLE_OPTIMIZE
) != 0);
1695 bool parasOnly
= ((flags
& wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY
) != 0);
1696 bool charactersOnly
= ((flags
& wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
) != 0);
1697 bool resetExistingStyle
= ((flags
& wxRICHTEXT_SETSTYLE_RESET
) != 0);
1698 bool removeStyle
= ((flags
& wxRICHTEXT_SETSTYLE_REMOVE
) != 0);
1700 // Apply paragraph style first, if any
1701 wxTextAttr
wholeStyle(style
);
1703 if (!removeStyle
&& wholeStyle
.HasParagraphStyleName() && GetStyleSheet())
1705 wxRichTextParagraphStyleDefinition
* def
= GetStyleSheet()->FindParagraphStyle(wholeStyle
.GetParagraphStyleName());
1707 wxRichTextApplyStyle(wholeStyle
, def
->GetStyleMergedWithBase(GetStyleSheet()));
1710 // Limit the attributes to be set to the content to only character attributes.
1711 wxTextAttr
characterAttributes(wholeStyle
);
1712 characterAttributes
.SetFlags(characterAttributes
.GetFlags() & (wxTEXT_ATTR_CHARACTER
));
1714 if (!removeStyle
&& characterAttributes
.HasCharacterStyleName() && GetStyleSheet())
1716 wxRichTextCharacterStyleDefinition
* def
= GetStyleSheet()->FindCharacterStyle(characterAttributes
.GetCharacterStyleName());
1718 wxRichTextApplyStyle(characterAttributes
, def
->GetStyleMergedWithBase(GetStyleSheet()));
1721 // If we are associated with a control, make undoable; otherwise, apply immediately
1724 bool haveControl
= (GetRichTextCtrl() != NULL
);
1726 wxRichTextAction
* action
= NULL
;
1728 if (haveControl
&& withUndo
)
1730 action
= new wxRichTextAction(NULL
, _("Change Style"), wxRICHTEXT_CHANGE_STYLE
, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
1731 action
->SetRange(range
);
1732 action
->SetPosition(GetRichTextCtrl()->GetCaretPosition());
1735 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
1738 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
1739 wxASSERT (para
!= NULL
);
1741 if (para
&& para
->GetChildCount() > 0)
1743 // Stop searching if we're beyond the range of interest
1744 if (para
->GetRange().GetStart() > range
.GetEnd())
1747 if (!para
->GetRange().IsOutside(range
))
1749 // We'll be using a copy of the paragraph to make style changes,
1750 // not updating the buffer directly.
1751 wxRichTextParagraph
* newPara
wxDUMMY_INITIALIZE(NULL
);
1753 if (haveControl
&& withUndo
)
1755 newPara
= new wxRichTextParagraph(*para
);
1756 action
->GetNewParagraphs().AppendChild(newPara
);
1758 // Also store the old ones for Undo
1759 action
->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para
));
1764 // If we're specifying paragraphs only, then we really mean character formatting
1765 // to be included in the paragraph style
1766 if ((paragraphStyle
|| parasOnly
) && !charactersOnly
)
1770 // Removes the given style from the paragraph
1771 wxRichTextRemoveStyle(newPara
->GetAttributes(), style
);
1773 else if (resetExistingStyle
)
1774 newPara
->GetAttributes() = wholeStyle
;
1779 // Only apply attributes that will make a difference to the combined
1780 // style as seen on the display
1781 wxTextAttr
combinedAttr(para
->GetCombinedAttributes());
1782 wxRichTextApplyStyle(newPara
->GetAttributes(), wholeStyle
, & combinedAttr
);
1785 wxRichTextApplyStyle(newPara
->GetAttributes(), wholeStyle
);
1789 // When applying paragraph styles dynamically, don't change the text objects' attributes
1790 // since they will computed as needed. Only apply the character styling if it's _only_
1791 // character styling. This policy is subject to change and might be put under user control.
1793 // Hm. we might well be applying a mix of paragraph and character styles, in which
1794 // case we _do_ want to apply character styles regardless of what para styles are set.
1795 // But if we're applying a paragraph style, which has some character attributes, but
1796 // we only want the paragraphs to hold this character style, then we _don't_ want to
1797 // apply the character style. So we need to be able to choose.
1799 if (!parasOnly
&& (characterStyle
|charactersOnly
) && range
.GetStart() != newPara
->GetRange().GetEnd())
1801 wxRichTextRange
childRange(range
);
1802 childRange
.LimitTo(newPara
->GetRange());
1804 // Find the starting position and if necessary split it so
1805 // we can start applying a different style.
1806 // TODO: check that the style actually changes or is different
1807 // from style outside of range
1808 wxRichTextObject
* firstObject
wxDUMMY_INITIALIZE(NULL
);
1809 wxRichTextObject
* lastObject
wxDUMMY_INITIALIZE(NULL
);
1811 if (childRange
.GetStart() == newPara
->GetRange().GetStart())
1812 firstObject
= newPara
->GetChildren().GetFirst()->GetData();
1814 firstObject
= newPara
->SplitAt(range
.GetStart());
1816 // Increment by 1 because we're apply the style one _after_ the split point
1817 long splitPoint
= childRange
.GetEnd();
1818 if (splitPoint
!= newPara
->GetRange().GetEnd())
1822 if (splitPoint
== newPara
->GetRange().GetEnd())
1823 lastObject
= newPara
->GetChildren().GetLast()->GetData();
1825 // lastObject is set as a side-effect of splitting. It's
1826 // returned as the object before the new object.
1827 (void) newPara
->SplitAt(splitPoint
, & lastObject
);
1829 wxASSERT(firstObject
!= NULL
);
1830 wxASSERT(lastObject
!= NULL
);
1832 if (!firstObject
|| !lastObject
)
1835 wxRichTextObjectList::compatibility_iterator firstNode
= newPara
->GetChildren().Find(firstObject
);
1836 wxRichTextObjectList::compatibility_iterator lastNode
= newPara
->GetChildren().Find(lastObject
);
1838 wxASSERT(firstNode
);
1841 wxRichTextObjectList::compatibility_iterator node2
= firstNode
;
1845 wxRichTextObject
* child
= node2
->GetData();
1849 // Removes the given style from the paragraph
1850 wxRichTextRemoveStyle(child
->GetAttributes(), style
);
1852 else if (resetExistingStyle
)
1853 child
->GetAttributes() = characterAttributes
;
1858 // Only apply attributes that will make a difference to the combined
1859 // style as seen on the display
1860 wxTextAttr
combinedAttr(newPara
->GetCombinedAttributes(child
->GetAttributes()));
1861 wxRichTextApplyStyle(child
->GetAttributes(), characterAttributes
, & combinedAttr
);
1864 wxRichTextApplyStyle(child
->GetAttributes(), characterAttributes
);
1867 if (node2
== lastNode
)
1870 node2
= node2
->GetNext();
1876 node
= node
->GetNext();
1879 // Do action, or delay it until end of batch.
1880 if (haveControl
&& withUndo
)
1881 GetRichTextCtrl()->GetBuffer().SubmitAction(action
);
1886 /// Get the text attributes for this position.
1887 bool wxRichTextParagraphLayoutBox::GetStyle(long position
, wxTextAttr
& style
)
1889 return DoGetStyle(position
, style
, true);
1892 bool wxRichTextParagraphLayoutBox::GetUncombinedStyle(long position
, wxTextAttr
& style
)
1894 return DoGetStyle(position
, style
, false);
1897 /// Implementation helper for GetStyle. If combineStyles is true, combine base, paragraph and
1898 /// context attributes.
1899 bool wxRichTextParagraphLayoutBox::DoGetStyle(long position
, wxTextAttr
& style
, bool combineStyles
)
1901 wxRichTextObject
* obj
wxDUMMY_INITIALIZE(NULL
);
1903 if (style
.IsParagraphStyle())
1905 obj
= GetParagraphAtPosition(position
);
1910 // Start with the base style
1911 style
= GetAttributes();
1913 // Apply the paragraph style
1914 wxRichTextApplyStyle(style
, obj
->GetAttributes());
1917 style
= obj
->GetAttributes();
1924 obj
= GetLeafObjectAtPosition(position
);
1929 wxRichTextParagraph
* para
= wxDynamicCast(obj
->GetParent(), wxRichTextParagraph
);
1930 style
= para
? para
->GetCombinedAttributes(obj
->GetAttributes()) : obj
->GetAttributes();
1933 style
= obj
->GetAttributes();
1941 static bool wxHasStyle(long flags
, long style
)
1943 return (flags
& style
) != 0;
1946 /// Combines 'style' with 'currentStyle' for the purpose of summarising the attributes of a range of
1948 bool wxRichTextParagraphLayoutBox::CollectStyle(wxTextAttr
& currentStyle
, const wxTextAttr
& style
, long& multipleStyleAttributes
, int& multipleTextEffectAttributes
, int& absentStyleAttributes
, int& absentTextEffectAttributes
)
1950 absentStyleAttributes
|= (~style
.GetFlags() & wxTEXT_ATTR_ALL
);
1951 absentTextEffectAttributes
|= (~style
.GetTextEffectFlags() & 0xFFFF);
1953 if (style
.HasFont())
1955 if (style
.HasFontSize() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_FONT_SIZE
))
1957 if (currentStyle
.HasFontSize())
1959 if (currentStyle
.GetFontSize() != style
.GetFontSize())
1961 // Clash of style - mark as such
1962 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_SIZE
;
1963 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_SIZE
);
1968 currentStyle
.SetFontSize(style
.GetFontSize());
1972 if (style
.HasFontItalic() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_FONT_ITALIC
))
1974 if (currentStyle
.HasFontItalic())
1976 if (currentStyle
.GetFontStyle() != style
.GetFontStyle())
1978 // Clash of style - mark as such
1979 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_ITALIC
;
1980 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_ITALIC
);
1985 currentStyle
.SetFontStyle(style
.GetFontStyle());
1989 if (style
.HasFontWeight() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_FONT_WEIGHT
))
1991 if (currentStyle
.HasFontWeight())
1993 if (currentStyle
.GetFontWeight() != style
.GetFontWeight())
1995 // Clash of style - mark as such
1996 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_WEIGHT
;
1997 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_WEIGHT
);
2002 currentStyle
.SetFontWeight(style
.GetFontWeight());
2006 if (style
.HasFontFaceName() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_FONT_FACE
))
2008 if (currentStyle
.HasFontFaceName())
2010 wxString
faceName1(currentStyle
.GetFontFaceName());
2011 wxString
faceName2(style
.GetFontFaceName());
2013 if (faceName1
!= faceName2
)
2015 // Clash of style - mark as such
2016 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_FACE
;
2017 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_FACE
);
2022 currentStyle
.SetFontFaceName(style
.GetFontFaceName());
2026 if (style
.HasFontUnderlined() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_FONT_UNDERLINE
))
2028 if (currentStyle
.HasFontUnderlined())
2030 if (currentStyle
.GetFontUnderlined() != style
.GetFontUnderlined())
2032 // Clash of style - mark as such
2033 multipleStyleAttributes
|= wxTEXT_ATTR_FONT_UNDERLINE
;
2034 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_FONT_UNDERLINE
);
2039 currentStyle
.SetFontUnderlined(style
.GetFontUnderlined());
2044 if (style
.HasTextColour() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_TEXT_COLOUR
))
2046 if (currentStyle
.HasTextColour())
2048 if (currentStyle
.GetTextColour() != style
.GetTextColour())
2050 // Clash of style - mark as such
2051 multipleStyleAttributes
|= wxTEXT_ATTR_TEXT_COLOUR
;
2052 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_TEXT_COLOUR
);
2056 currentStyle
.SetTextColour(style
.GetTextColour());
2059 if (style
.HasBackgroundColour() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_BACKGROUND_COLOUR
))
2061 if (currentStyle
.HasBackgroundColour())
2063 if (currentStyle
.GetBackgroundColour() != style
.GetBackgroundColour())
2065 // Clash of style - mark as such
2066 multipleStyleAttributes
|= wxTEXT_ATTR_BACKGROUND_COLOUR
;
2067 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BACKGROUND_COLOUR
);
2071 currentStyle
.SetBackgroundColour(style
.GetBackgroundColour());
2074 if (style
.HasAlignment() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_ALIGNMENT
))
2076 if (currentStyle
.HasAlignment())
2078 if (currentStyle
.GetAlignment() != style
.GetAlignment())
2080 // Clash of style - mark as such
2081 multipleStyleAttributes
|= wxTEXT_ATTR_ALIGNMENT
;
2082 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_ALIGNMENT
);
2086 currentStyle
.SetAlignment(style
.GetAlignment());
2089 if (style
.HasTabs() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_TABS
))
2091 if (currentStyle
.HasTabs())
2093 if (!wxRichTextTabsEq(currentStyle
.GetTabs(), style
.GetTabs()))
2095 // Clash of style - mark as such
2096 multipleStyleAttributes
|= wxTEXT_ATTR_TABS
;
2097 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_TABS
);
2101 currentStyle
.SetTabs(style
.GetTabs());
2104 if (style
.HasLeftIndent() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_LEFT_INDENT
))
2106 if (currentStyle
.HasLeftIndent())
2108 if (currentStyle
.GetLeftIndent() != style
.GetLeftIndent() || currentStyle
.GetLeftSubIndent() != style
.GetLeftSubIndent())
2110 // Clash of style - mark as such
2111 multipleStyleAttributes
|= wxTEXT_ATTR_LEFT_INDENT
;
2112 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_LEFT_INDENT
);
2116 currentStyle
.SetLeftIndent(style
.GetLeftIndent(), style
.GetLeftSubIndent());
2119 if (style
.HasRightIndent() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_RIGHT_INDENT
))
2121 if (currentStyle
.HasRightIndent())
2123 if (currentStyle
.GetRightIndent() != style
.GetRightIndent())
2125 // Clash of style - mark as such
2126 multipleStyleAttributes
|= wxTEXT_ATTR_RIGHT_INDENT
;
2127 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_RIGHT_INDENT
);
2131 currentStyle
.SetRightIndent(style
.GetRightIndent());
2134 if (style
.HasParagraphSpacingAfter() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_PARA_SPACING_AFTER
))
2136 if (currentStyle
.HasParagraphSpacingAfter())
2138 if (currentStyle
.GetParagraphSpacingAfter() != style
.GetParagraphSpacingAfter())
2140 // Clash of style - mark as such
2141 multipleStyleAttributes
|= wxTEXT_ATTR_PARA_SPACING_AFTER
;
2142 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_PARA_SPACING_AFTER
);
2146 currentStyle
.SetParagraphSpacingAfter(style
.GetParagraphSpacingAfter());
2149 if (style
.HasParagraphSpacingBefore() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_PARA_SPACING_BEFORE
))
2151 if (currentStyle
.HasParagraphSpacingBefore())
2153 if (currentStyle
.GetParagraphSpacingBefore() != style
.GetParagraphSpacingBefore())
2155 // Clash of style - mark as such
2156 multipleStyleAttributes
|= wxTEXT_ATTR_PARA_SPACING_BEFORE
;
2157 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_PARA_SPACING_BEFORE
);
2161 currentStyle
.SetParagraphSpacingBefore(style
.GetParagraphSpacingBefore());
2164 if (style
.HasLineSpacing() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_LINE_SPACING
))
2166 if (currentStyle
.HasLineSpacing())
2168 if (currentStyle
.GetLineSpacing() != style
.GetLineSpacing())
2170 // Clash of style - mark as such
2171 multipleStyleAttributes
|= wxTEXT_ATTR_LINE_SPACING
;
2172 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_LINE_SPACING
);
2176 currentStyle
.SetLineSpacing(style
.GetLineSpacing());
2179 if (style
.HasCharacterStyleName() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_CHARACTER_STYLE_NAME
))
2181 if (currentStyle
.HasCharacterStyleName())
2183 if (currentStyle
.GetCharacterStyleName() != style
.GetCharacterStyleName())
2185 // Clash of style - mark as such
2186 multipleStyleAttributes
|= wxTEXT_ATTR_CHARACTER_STYLE_NAME
;
2187 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_CHARACTER_STYLE_NAME
);
2191 currentStyle
.SetCharacterStyleName(style
.GetCharacterStyleName());
2194 if (style
.HasParagraphStyleName() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
))
2196 if (currentStyle
.HasParagraphStyleName())
2198 if (currentStyle
.GetParagraphStyleName() != style
.GetParagraphStyleName())
2200 // Clash of style - mark as such
2201 multipleStyleAttributes
|= wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
;
2202 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
);
2206 currentStyle
.SetParagraphStyleName(style
.GetParagraphStyleName());
2209 if (style
.HasListStyleName() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_LIST_STYLE_NAME
))
2211 if (currentStyle
.HasListStyleName())
2213 if (currentStyle
.GetListStyleName() != style
.GetListStyleName())
2215 // Clash of style - mark as such
2216 multipleStyleAttributes
|= wxTEXT_ATTR_LIST_STYLE_NAME
;
2217 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_LIST_STYLE_NAME
);
2221 currentStyle
.SetListStyleName(style
.GetListStyleName());
2224 if (style
.HasBulletStyle() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_BULLET_STYLE
))
2226 if (currentStyle
.HasBulletStyle())
2228 if (currentStyle
.GetBulletStyle() != style
.GetBulletStyle())
2230 // Clash of style - mark as such
2231 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_STYLE
;
2232 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_STYLE
);
2236 currentStyle
.SetBulletStyle(style
.GetBulletStyle());
2239 if (style
.HasBulletNumber() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_BULLET_NUMBER
))
2241 if (currentStyle
.HasBulletNumber())
2243 if (currentStyle
.GetBulletNumber() != style
.GetBulletNumber())
2245 // Clash of style - mark as such
2246 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_NUMBER
;
2247 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_NUMBER
);
2251 currentStyle
.SetBulletNumber(style
.GetBulletNumber());
2254 if (style
.HasBulletText() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_BULLET_TEXT
))
2256 if (currentStyle
.HasBulletText())
2258 if (currentStyle
.GetBulletText() != style
.GetBulletText())
2260 // Clash of style - mark as such
2261 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_TEXT
;
2262 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_TEXT
);
2267 currentStyle
.SetBulletText(style
.GetBulletText());
2268 currentStyle
.SetBulletFont(style
.GetBulletFont());
2272 if (style
.HasBulletName() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_BULLET_NAME
))
2274 if (currentStyle
.HasBulletName())
2276 if (currentStyle
.GetBulletName() != style
.GetBulletName())
2278 // Clash of style - mark as such
2279 multipleStyleAttributes
|= wxTEXT_ATTR_BULLET_NAME
;
2280 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_BULLET_NAME
);
2285 currentStyle
.SetBulletName(style
.GetBulletName());
2289 if (style
.HasURL() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_URL
))
2291 if (currentStyle
.HasURL())
2293 if (currentStyle
.GetURL() != style
.GetURL())
2295 // Clash of style - mark as such
2296 multipleStyleAttributes
|= wxTEXT_ATTR_URL
;
2297 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_URL
);
2302 currentStyle
.SetURL(style
.GetURL());
2306 if (style
.HasTextEffects() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_EFFECTS
))
2308 if (currentStyle
.HasTextEffects())
2310 // We need to find the bits in the new style that are different:
2311 // just look at those bits that are specified by the new style.
2313 // We need to remove the bits and flags that are not common between current style
2314 // and new style. In so doing we need to take account of the styles absent from one or more of the
2317 int currentRelevantTextEffects
= currentStyle
.GetTextEffects() & style
.GetTextEffectFlags();
2318 int newRelevantTextEffects
= style
.GetTextEffects() & style
.GetTextEffectFlags();
2320 if (currentRelevantTextEffects
!= newRelevantTextEffects
)
2322 // Find the text effects that were different, using XOR
2323 int differentEffects
= currentRelevantTextEffects
^ newRelevantTextEffects
;
2325 // Clash of style - mark as such
2326 multipleTextEffectAttributes
|= differentEffects
;
2327 currentStyle
.SetTextEffectFlags(currentStyle
.GetTextEffectFlags() & ~differentEffects
);
2332 currentStyle
.SetTextEffects(style
.GetTextEffects());
2333 currentStyle
.SetTextEffectFlags(style
.GetTextEffectFlags());
2336 // Mask out the flags and values that cannot be common because they were absent in one or more objecrs
2337 // that we've looked at so far
2338 currentStyle
.SetTextEffects(currentStyle
.GetTextEffects() & ~absentTextEffectAttributes
);
2339 currentStyle
.SetTextEffectFlags(currentStyle
.GetTextEffectFlags() & ~absentTextEffectAttributes
);
2341 if (currentStyle
.GetTextEffectFlags() == 0)
2342 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_EFFECTS
);
2345 if (style
.HasOutlineLevel() && !wxHasStyle(multipleStyleAttributes
|absentStyleAttributes
, wxTEXT_ATTR_OUTLINE_LEVEL
))
2347 if (currentStyle
.HasOutlineLevel())
2349 if (currentStyle
.GetOutlineLevel() != style
.GetOutlineLevel())
2351 // Clash of style - mark as such
2352 multipleStyleAttributes
|= wxTEXT_ATTR_OUTLINE_LEVEL
;
2353 currentStyle
.SetFlags(currentStyle
.GetFlags() & ~wxTEXT_ATTR_OUTLINE_LEVEL
);
2357 currentStyle
.SetOutlineLevel(style
.GetOutlineLevel());
2363 /// Get the combined style for a range - if any attribute is different within the range,
2364 /// that attribute is not present within the flags.
2365 /// *** Note that this is not recursive, and so assumes that content inside a paragraph is not itself
2367 bool wxRichTextParagraphLayoutBox::GetStyleForRange(const wxRichTextRange
& range
, wxTextAttr
& style
)
2369 style
= wxTextAttr();
2371 // The attributes that aren't valid because of multiple styles within the range
2372 long multipleStyleAttributes
= 0;
2373 int multipleTextEffectAttributes
= 0;
2375 int absentStyleAttributesPara
= 0;
2376 int absentStyleAttributesChar
= 0;
2377 int absentTextEffectAttributesPara
= 0;
2378 int absentTextEffectAttributesChar
= 0;
2380 wxRichTextObjectList::compatibility_iterator node
= GetChildren().GetFirst();
2383 wxRichTextParagraph
* para
= (wxRichTextParagraph
*) node
->GetData();
2384 if (!(para
->GetRange().GetStart() > range
.GetEnd() || para
->GetRange().GetEnd() < range
.GetStart()))
2386 if (para
->GetChildren().GetCount() == 0)
2388 wxTextAttr paraStyle
= para
->GetCombinedAttributes();
2390 CollectStyle(style
, paraStyle
, multipleStyleAttributes
, multipleTextEffectAttributes
, absentStyleAttributesPara
, absentTextEffectAttributesPara
);
2394 wxRichTextRange
paraRange(para
->GetRange());
2395 paraRange
.LimitTo(range
);
2397 // First collect paragraph attributes only
2398 wxTextAttr paraStyle
= para
->GetCombinedAttributes();
2399 paraStyle
.SetFlags(paraStyle
.GetFlags() & wxTEXT_ATTR_PARAGRAPH
);
2400 CollectStyle(style
, paraStyle
, multipleStyleAttributes
, multipleTextEffectAttributes
, absentStyleAttributesPara
, absentTextEffectAttributesPara
);
2402 wxRichTextObjectList::compatibility_iterator childNode
= para
->GetChildren().GetFirst();
2406 wxRichTextObject
* child
= childNode
->GetData();
2407 if (!(child
->GetRange().GetStart() > range
.GetEnd() || child
->GetRange().GetEnd() < range
.GetStart()))
2409 wxTextAttr childStyle
= para
->GetCombinedAttributes(child
->GetAttributes());
2411 // Now collect character attributes only
2412 childStyle
.SetFlags(childStyle
.GetFlags() & wxTEXT_ATTR_CHARACTER
);
2414 CollectStyle(style
, childStyle
, multipleStyleAttributes
, multipleTextEffectAttributes
, absentStyleAttributesChar
, absentTextEffectAttributesChar
);
2417 childNode
= childNode
->GetNext();
2421 node
= node
->GetNext();
2426 /// Set default style
2427 bool wxRichTextParagraphLayoutBox::SetDefaultStyle(const wxTextAttr
& style
)
2429 m_defaultAttributes
= style
;
2433 /// Test if this whole range has character attributes of the specified kind. If any
2434 /// of the attributes are different within the range, the test fails. You
2435 /// can use this to implement, for example, bold button updating. style must have
2436 /// flags indicating which attributes are of interest.
2437 bool wxRichTextParagraphLayoutBox::HasCharacterAttributes(const wxRichTextRange
& range
, const wxTextAttr
& style
) const
2440 int matchingCount
= 0;
2442 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2445 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2446 wxASSERT (para
!= NULL
);
2450 // Stop searching if we're beyond the range of interest
2451 if (para
->GetRange().GetStart() > range
.GetEnd())
2452 return foundCount
== matchingCount
;
2454 if (!para
->GetRange().IsOutside(range
))
2456 wxRichTextObjectList::compatibility_iterator node2
= para
->GetChildren().GetFirst();
2460 wxRichTextObject
* child
= node2
->GetData();
2461 if (!child
->GetRange().IsOutside(range
) && child
->IsKindOf(CLASSINFO(wxRichTextPlainText
)))
2464 wxTextAttr textAttr
= para
->GetCombinedAttributes(child
->GetAttributes());
2466 if (wxTextAttrEqPartial(textAttr
, style
, style
.GetFlags()))
2470 node2
= node2
->GetNext();
2475 node
= node
->GetNext();
2478 return foundCount
== matchingCount
;
2481 /// Test if this whole range has paragraph attributes of the specified kind. If any
2482 /// of the attributes are different within the range, the test fails. You
2483 /// can use this to implement, for example, centering button updating. style must have
2484 /// flags indicating which attributes are of interest.
2485 bool wxRichTextParagraphLayoutBox::HasParagraphAttributes(const wxRichTextRange
& range
, const wxTextAttr
& style
) const
2488 int matchingCount
= 0;
2490 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2493 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2494 wxASSERT (para
!= NULL
);
2498 // Stop searching if we're beyond the range of interest
2499 if (para
->GetRange().GetStart() > range
.GetEnd())
2500 return foundCount
== matchingCount
;
2502 if (!para
->GetRange().IsOutside(range
))
2504 wxTextAttr textAttr
= GetAttributes();
2505 // Apply the paragraph style
2506 wxRichTextApplyStyle(textAttr
, para
->GetAttributes());
2509 if (wxTextAttrEqPartial(textAttr
, style
, style
.GetFlags()))
2514 node
= node
->GetNext();
2516 return foundCount
== matchingCount
;
2519 void wxRichTextParagraphLayoutBox::Clear()
2524 void wxRichTextParagraphLayoutBox::Reset()
2528 wxRichTextBuffer
* buffer
= wxDynamicCast(this, wxRichTextBuffer
);
2529 if (buffer
&& GetRichTextCtrl())
2531 wxRichTextEvent
event(wxEVT_COMMAND_RICHTEXT_BUFFER_RESET
, GetRichTextCtrl()->GetId());
2532 event
.SetEventObject(GetRichTextCtrl());
2534 buffer
->SendEvent(event
, true);
2537 AddParagraph(wxEmptyString
);
2539 Invalidate(wxRICHTEXT_ALL
);
2542 /// Invalidate the buffer. With no argument, invalidates whole buffer.
2543 void wxRichTextParagraphLayoutBox::Invalidate(const wxRichTextRange
& invalidRange
)
2547 if (invalidRange
== wxRICHTEXT_ALL
)
2549 m_invalidRange
= wxRICHTEXT_ALL
;
2553 // Already invalidating everything
2554 if (m_invalidRange
== wxRICHTEXT_ALL
)
2557 if ((invalidRange
.GetStart() < m_invalidRange
.GetStart()) || m_invalidRange
.GetStart() == -1)
2558 m_invalidRange
.SetStart(invalidRange
.GetStart());
2559 if (invalidRange
.GetEnd() > m_invalidRange
.GetEnd())
2560 m_invalidRange
.SetEnd(invalidRange
.GetEnd());
2563 /// Get invalid range, rounding to entire paragraphs if argument is true.
2564 wxRichTextRange
wxRichTextParagraphLayoutBox::GetInvalidRange(bool wholeParagraphs
) const
2566 if (m_invalidRange
== wxRICHTEXT_ALL
|| m_invalidRange
== wxRICHTEXT_NONE
)
2567 return m_invalidRange
;
2569 wxRichTextRange range
= m_invalidRange
;
2571 if (wholeParagraphs
)
2573 wxRichTextParagraph
* para1
= GetParagraphAtPosition(range
.GetStart());
2574 wxRichTextParagraph
* para2
= GetParagraphAtPosition(range
.GetEnd());
2576 range
.SetStart(para1
->GetRange().GetStart());
2578 range
.SetEnd(para2
->GetRange().GetEnd());
2583 /// Apply the style sheet to the buffer, for example if the styles have changed.
2584 bool wxRichTextParagraphLayoutBox::ApplyStyleSheet(wxRichTextStyleSheet
* styleSheet
)
2586 wxASSERT(styleSheet
!= NULL
);
2592 wxRichTextAttr
attr(GetBasicStyle());
2593 if (GetBasicStyle().HasParagraphStyleName())
2595 wxRichTextParagraphStyleDefinition
* paraDef
= styleSheet
->FindParagraphStyle(GetBasicStyle().GetParagraphStyleName());
2598 attr
.Apply(paraDef
->GetStyleMergedWithBase(styleSheet
));
2599 SetBasicStyle(attr
);
2604 if (GetBasicStyle().HasCharacterStyleName())
2606 wxRichTextCharacterStyleDefinition
* charDef
= styleSheet
->FindCharacterStyle(GetBasicStyle().GetCharacterStyleName());
2609 attr
.Apply(charDef
->GetStyleMergedWithBase(styleSheet
));
2610 SetBasicStyle(attr
);
2615 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2618 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2619 wxASSERT (para
!= NULL
);
2623 // Combine paragraph and list styles. If there is a list style in the original attributes,
2624 // the current indentation overrides anything else and is used to find the item indentation.
2625 // Also, for applying paragraph styles, consider having 2 modes: (1) we merge with what we have,
2626 // thereby taking into account all user changes, (2) reset the style completely (except for indentation/list
2627 // exception as above).
2628 // Problem: when changing from one list style to another, there's a danger that the level info will get lost.
2629 // So when changing a list style interactively, could retrieve level based on current style, then
2630 // set appropriate indent and apply new style.
2632 if (!para
->GetAttributes().GetParagraphStyleName().IsEmpty() && !para
->GetAttributes().GetListStyleName().IsEmpty())
2634 int currentIndent
= para
->GetAttributes().GetLeftIndent();
2636 wxRichTextParagraphStyleDefinition
* paraDef
= styleSheet
->FindParagraphStyle(para
->GetAttributes().GetParagraphStyleName());
2637 wxRichTextListStyleDefinition
* listDef
= styleSheet
->FindListStyle(para
->GetAttributes().GetListStyleName());
2638 if (paraDef
&& !listDef
)
2640 para
->GetAttributes() = paraDef
->GetStyleMergedWithBase(styleSheet
);
2643 else if (listDef
&& !paraDef
)
2645 // Set overall style defined for the list style definition
2646 para
->GetAttributes() = listDef
->GetStyleMergedWithBase(styleSheet
);
2648 // Apply the style for this level
2649 wxRichTextApplyStyle(para
->GetAttributes(), * listDef
->GetLevelAttributes(listDef
->FindLevelForIndent(currentIndent
)));
2652 else if (listDef
&& paraDef
)
2654 // Combines overall list style, style for level, and paragraph style
2655 para
->GetAttributes() = listDef
->CombineWithParagraphStyle(currentIndent
, paraDef
->GetStyleMergedWithBase(styleSheet
));
2659 else if (para
->GetAttributes().GetParagraphStyleName().IsEmpty() && !para
->GetAttributes().GetListStyleName().IsEmpty())
2661 int currentIndent
= para
->GetAttributes().GetLeftIndent();
2663 wxRichTextListStyleDefinition
* listDef
= styleSheet
->FindListStyle(para
->GetAttributes().GetListStyleName());
2665 // Overall list definition style
2666 para
->GetAttributes() = listDef
->GetStyleMergedWithBase(styleSheet
);
2668 // Style for this level
2669 wxRichTextApplyStyle(para
->GetAttributes(), * listDef
->GetLevelAttributes(listDef
->FindLevelForIndent(currentIndent
)));
2673 else if (!para
->GetAttributes().GetParagraphStyleName().IsEmpty() && para
->GetAttributes().GetListStyleName().IsEmpty())
2675 wxRichTextParagraphStyleDefinition
* def
= styleSheet
->FindParagraphStyle(para
->GetAttributes().GetParagraphStyleName());
2678 para
->GetAttributes() = def
->GetStyleMergedWithBase(styleSheet
);
2684 node
= node
->GetNext();
2686 return foundCount
!= 0;
2690 bool wxRichTextParagraphLayoutBox::SetListStyle(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
2692 wxRichTextStyleSheet
* styleSheet
= GetStyleSheet();
2694 bool withUndo
= ((flags
& wxRICHTEXT_SETSTYLE_WITH_UNDO
) != 0);
2695 // bool applyMinimal = ((flags & wxRICHTEXT_SETSTYLE_OPTIMIZE) != 0);
2696 bool specifyLevel
= ((flags
& wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL
) != 0);
2697 bool renumber
= ((flags
& wxRICHTEXT_SETSTYLE_RENUMBER
) != 0);
2699 // Current number, if numbering
2702 wxASSERT (!specifyLevel
|| (specifyLevel
&& (specifiedLevel
>= 0)));
2704 // If we are associated with a control, make undoable; otherwise, apply immediately
2707 bool haveControl
= (GetRichTextCtrl() != NULL
);
2709 wxRichTextAction
* action
= NULL
;
2711 if (haveControl
&& withUndo
)
2713 action
= new wxRichTextAction(NULL
, _("Change List Style"), wxRICHTEXT_CHANGE_STYLE
, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
2714 action
->SetRange(range
);
2715 action
->SetPosition(GetRichTextCtrl()->GetCaretPosition());
2718 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2721 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2722 wxASSERT (para
!= NULL
);
2724 if (para
&& para
->GetChildCount() > 0)
2726 // Stop searching if we're beyond the range of interest
2727 if (para
->GetRange().GetStart() > range
.GetEnd())
2730 if (!para
->GetRange().IsOutside(range
))
2732 // We'll be using a copy of the paragraph to make style changes,
2733 // not updating the buffer directly.
2734 wxRichTextParagraph
* newPara
wxDUMMY_INITIALIZE(NULL
);
2736 if (haveControl
&& withUndo
)
2738 newPara
= new wxRichTextParagraph(*para
);
2739 action
->GetNewParagraphs().AppendChild(newPara
);
2741 // Also store the old ones for Undo
2742 action
->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para
));
2749 int thisIndent
= newPara
->GetAttributes().GetLeftIndent();
2750 int thisLevel
= specifyLevel
? specifiedLevel
: def
->FindLevelForIndent(thisIndent
);
2752 // How is numbering going to work?
2753 // If we are renumbering, or numbering for the first time, we need to keep
2754 // track of the number for each level. But we might be simply applying a different
2756 // In Word, applying a style to several paragraphs, even if at different levels,
2757 // reverts the level back to the same one. So we could do the same here.
2758 // Renumbering will need to be done when we promote/demote a paragraph.
2760 // Apply the overall list style, and item style for this level
2761 wxTextAttr
listStyle(def
->GetCombinedStyleForLevel(thisLevel
, styleSheet
));
2762 wxRichTextApplyStyle(newPara
->GetAttributes(), listStyle
);
2764 // Now we need to do numbering
2767 newPara
->GetAttributes().SetBulletNumber(n
);
2772 else if (!newPara
->GetAttributes().GetListStyleName().IsEmpty())
2774 // if def is NULL, remove list style, applying any associated paragraph style
2775 // to restore the attributes
2777 newPara
->GetAttributes().SetListStyleName(wxEmptyString
);
2778 newPara
->GetAttributes().SetLeftIndent(0, 0);
2779 newPara
->GetAttributes().SetBulletText(wxEmptyString
);
2781 // Eliminate the main list-related attributes
2782 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
);
2784 if (styleSheet
&& !newPara
->GetAttributes().GetParagraphStyleName().IsEmpty())
2786 wxRichTextParagraphStyleDefinition
* def
= styleSheet
->FindParagraphStyle(newPara
->GetAttributes().GetParagraphStyleName());
2789 newPara
->GetAttributes() = def
->GetStyleMergedWithBase(styleSheet
);
2796 node
= node
->GetNext();
2799 // Do action, or delay it until end of batch.
2800 if (haveControl
&& withUndo
)
2801 GetRichTextCtrl()->GetBuffer().SubmitAction(action
);
2806 bool wxRichTextParagraphLayoutBox::SetListStyle(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
2808 if (GetStyleSheet())
2810 wxRichTextListStyleDefinition
* def
= GetStyleSheet()->FindListStyle(defName
);
2812 return SetListStyle(range
, def
, flags
, startFrom
, specifiedLevel
);
2817 /// Clear list for given range
2818 bool wxRichTextParagraphLayoutBox::ClearListStyle(const wxRichTextRange
& range
, int flags
)
2820 return SetListStyle(range
, NULL
, flags
);
2823 /// Number/renumber any list elements in the given range
2824 bool wxRichTextParagraphLayoutBox::NumberList(const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
2826 return DoNumberList(range
, range
, 0, def
, flags
, startFrom
, specifiedLevel
);
2829 /// Number/renumber any list elements in the given range. Also do promotion or demotion of items, if specified
2830 bool wxRichTextParagraphLayoutBox::DoNumberList(const wxRichTextRange
& range
, const wxRichTextRange
& promotionRange
, int promoteBy
,
2831 wxRichTextListStyleDefinition
* def
, int flags
, int startFrom
, int specifiedLevel
)
2833 wxRichTextStyleSheet
* styleSheet
= GetStyleSheet();
2835 bool withUndo
= ((flags
& wxRICHTEXT_SETSTYLE_WITH_UNDO
) != 0);
2836 // bool applyMinimal = ((flags & wxRICHTEXT_SETSTYLE_OPTIMIZE) != 0);
2838 bool specifyLevel
= ((flags
& wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL
) != 0);
2841 bool renumber
= ((flags
& wxRICHTEXT_SETSTYLE_RENUMBER
) != 0);
2843 // Max number of levels
2844 const int maxLevels
= 10;
2846 // The level we're looking at now
2847 int currentLevel
= -1;
2849 // The item number for each level
2850 int levels
[maxLevels
];
2853 // Reset all numbering
2854 for (i
= 0; i
< maxLevels
; i
++)
2856 if (startFrom
!= -1)
2857 levels
[i
] = startFrom
-1;
2858 else if (renumber
) // start again
2861 levels
[i
] = -1; // start from the number we found, if any
2864 wxASSERT(!specifyLevel
|| (specifyLevel
&& (specifiedLevel
>= 0)));
2866 // If we are associated with a control, make undoable; otherwise, apply immediately
2869 bool haveControl
= (GetRichTextCtrl() != NULL
);
2871 wxRichTextAction
* action
= NULL
;
2873 if (haveControl
&& withUndo
)
2875 action
= new wxRichTextAction(NULL
, _("Renumber List"), wxRICHTEXT_CHANGE_STYLE
, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
2876 action
->SetRange(range
);
2877 action
->SetPosition(GetRichTextCtrl()->GetCaretPosition());
2880 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
2883 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
2884 wxASSERT (para
!= NULL
);
2886 if (para
&& para
->GetChildCount() > 0)
2888 // Stop searching if we're beyond the range of interest
2889 if (para
->GetRange().GetStart() > range
.GetEnd())
2892 if (!para
->GetRange().IsOutside(range
))
2894 // We'll be using a copy of the paragraph to make style changes,
2895 // not updating the buffer directly.
2896 wxRichTextParagraph
* newPara
wxDUMMY_INITIALIZE(NULL
);
2898 if (haveControl
&& withUndo
)
2900 newPara
= new wxRichTextParagraph(*para
);
2901 action
->GetNewParagraphs().AppendChild(newPara
);
2903 // Also store the old ones for Undo
2904 action
->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para
));
2909 wxRichTextListStyleDefinition
* defToUse
= def
;
2912 if (styleSheet
&& !newPara
->GetAttributes().GetListStyleName().IsEmpty())
2913 defToUse
= styleSheet
->FindListStyle(newPara
->GetAttributes().GetListStyleName());
2918 int thisIndent
= newPara
->GetAttributes().GetLeftIndent();
2919 int thisLevel
= defToUse
->FindLevelForIndent(thisIndent
);
2921 // If we've specified a level to apply to all, change the level.
2922 if (specifiedLevel
!= -1)
2923 thisLevel
= specifiedLevel
;
2925 // Do promotion if specified
2926 if ((promoteBy
!= 0) && !para
->GetRange().IsOutside(promotionRange
))
2928 thisLevel
= thisLevel
- promoteBy
;
2935 // Apply the overall list style, and item style for this level
2936 wxTextAttr
listStyle(defToUse
->GetCombinedStyleForLevel(thisLevel
, styleSheet
));
2937 wxRichTextApplyStyle(newPara
->GetAttributes(), listStyle
);
2939 // OK, we've (re)applied the style, now let's get the numbering right.
2941 if (currentLevel
== -1)
2942 currentLevel
= thisLevel
;
2944 // Same level as before, do nothing except increment level's number afterwards
2945 if (currentLevel
== thisLevel
)
2948 // A deeper level: start renumbering all levels after current level
2949 else if (thisLevel
> currentLevel
)
2951 for (i
= currentLevel
+1; i
<= thisLevel
; i
++)
2955 currentLevel
= thisLevel
;
2957 else if (thisLevel
< currentLevel
)
2959 currentLevel
= thisLevel
;
2962 // Use the current numbering if -1 and we have a bullet number already
2963 if (levels
[currentLevel
] == -1)
2965 if (newPara
->GetAttributes().HasBulletNumber())
2966 levels
[currentLevel
] = newPara
->GetAttributes().GetBulletNumber();
2968 levels
[currentLevel
] = 1;
2972 levels
[currentLevel
] ++;
2975 newPara
->GetAttributes().SetBulletNumber(levels
[currentLevel
]);
2977 // Create the bullet text if an outline list
2978 if (listStyle
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
)
2981 for (i
= 0; i
<= currentLevel
; i
++)
2983 if (!text
.IsEmpty())
2985 text
+= wxString::Format(wxT("%d"), levels
[i
]);
2987 newPara
->GetAttributes().SetBulletText(text
);
2993 node
= node
->GetNext();
2996 // Do action, or delay it until end of batch.
2997 if (haveControl
&& withUndo
)
2998 GetRichTextCtrl()->GetBuffer().SubmitAction(action
);
3003 bool wxRichTextParagraphLayoutBox::NumberList(const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int startFrom
, int specifiedLevel
)
3005 if (GetStyleSheet())
3007 wxRichTextListStyleDefinition
* def
= NULL
;
3008 if (!defName
.IsEmpty())
3009 def
= GetStyleSheet()->FindListStyle(defName
);
3010 return NumberList(range
, def
, flags
, startFrom
, specifiedLevel
);
3015 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
3016 bool wxRichTextParagraphLayoutBox::PromoteList(int promoteBy
, const wxRichTextRange
& range
, wxRichTextListStyleDefinition
* def
, int flags
, int specifiedLevel
)
3019 // One strategy is to first work out the range within which renumbering must occur. Then could pass these two ranges
3020 // to NumberList with a flag indicating promotion is required within one of the ranges.
3021 // Find first and last paragraphs in range. Then for first, calculate new indentation and look back until we find
3022 // a paragraph that either has no list style, or has one that is different or whose indentation is less.
3023 // We start renumbering from the para after that different para we found. We specify that the numbering of that
3024 // list position will start from 1.
3025 // Similarly, we look after the last para in the promote range for an indentation that is less (or no list style).
3026 // We can end the renumbering at this point.
3028 // For now, only renumber within the promotion range.
3030 return DoNumberList(range
, range
, promoteBy
, def
, flags
, 1, specifiedLevel
);
3033 bool wxRichTextParagraphLayoutBox::PromoteList(int promoteBy
, const wxRichTextRange
& range
, const wxString
& defName
, int flags
, int specifiedLevel
)
3035 if (GetStyleSheet())
3037 wxRichTextListStyleDefinition
* def
= NULL
;
3038 if (!defName
.IsEmpty())
3039 def
= GetStyleSheet()->FindListStyle(defName
);
3040 return PromoteList(promoteBy
, range
, def
, flags
, specifiedLevel
);
3045 /// Fills in the attributes for numbering a paragraph after previousParagraph. It also finds the
3046 /// position of the paragraph that it had to start looking from.
3047 bool wxRichTextParagraphLayoutBox::FindNextParagraphNumber(wxRichTextParagraph
* previousParagraph
, wxTextAttr
& attr
) const
3049 if (!previousParagraph
->GetAttributes().HasFlag(wxTEXT_ATTR_BULLET_STYLE
) || previousParagraph
->GetAttributes().GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_NONE
)
3052 wxRichTextStyleSheet
* styleSheet
= GetStyleSheet();
3053 if (styleSheet
&& !previousParagraph
->GetAttributes().GetListStyleName().IsEmpty())
3055 wxRichTextListStyleDefinition
* def
= styleSheet
->FindListStyle(previousParagraph
->GetAttributes().GetListStyleName());
3058 // int thisIndent = previousParagraph->GetAttributes().GetLeftIndent();
3059 // int thisLevel = def->FindLevelForIndent(thisIndent);
3061 bool isOutline
= (previousParagraph
->GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
) != 0;
3063 attr
.SetFlags(previousParagraph
->GetAttributes().GetFlags() & (wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_BULLET_NUMBER
|wxTEXT_ATTR_BULLET_TEXT
|wxTEXT_ATTR_BULLET_NAME
));
3064 if (previousParagraph
->GetAttributes().HasBulletName())
3065 attr
.SetBulletName(previousParagraph
->GetAttributes().GetBulletName());
3066 attr
.SetBulletStyle(previousParagraph
->GetAttributes().GetBulletStyle());
3067 attr
.SetListStyleName(previousParagraph
->GetAttributes().GetListStyleName());
3069 int nextNumber
= previousParagraph
->GetAttributes().GetBulletNumber() + 1;
3070 attr
.SetBulletNumber(nextNumber
);
3074 wxString text
= previousParagraph
->GetAttributes().GetBulletText();
3075 if (!text
.IsEmpty())
3077 int pos
= text
.Find(wxT('.'), true);
3078 if (pos
!= wxNOT_FOUND
)
3080 text
= text
.Mid(0, text
.Length() - pos
- 1);
3083 text
= wxEmptyString
;
3084 if (!text
.IsEmpty())
3086 text
+= wxString::Format(wxT("%d"), nextNumber
);
3087 attr
.SetBulletText(text
);
3101 * wxRichTextParagraph
3102 * This object represents a single paragraph (or in a straight text editor, a line).
3105 IMPLEMENT_DYNAMIC_CLASS(wxRichTextParagraph
, wxRichTextBox
)
3107 wxArrayInt
wxRichTextParagraph::sm_defaultTabs
;
3109 wxRichTextParagraph::wxRichTextParagraph(wxRichTextObject
* parent
, wxTextAttr
* style
):
3110 wxRichTextBox(parent
)
3113 SetAttributes(*style
);
3116 wxRichTextParagraph::wxRichTextParagraph(const wxString
& text
, wxRichTextObject
* parent
, wxTextAttr
* paraStyle
, wxTextAttr
* charStyle
):
3117 wxRichTextBox(parent
)
3120 SetAttributes(*paraStyle
);
3122 AppendChild(new wxRichTextPlainText(text
, this, charStyle
));
3125 wxRichTextParagraph::~wxRichTextParagraph()
3131 bool wxRichTextParagraph::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int WXUNUSED(descent
), int style
)
3133 wxTextAttr attr
= GetCombinedAttributes();
3135 // Draw the bullet, if any
3136 if (attr
.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE
)
3138 if (attr
.GetLeftSubIndent() != 0)
3140 int spaceBeforePara
= ConvertTenthsMMToPixels(dc
, attr
.GetParagraphSpacingBefore());
3141 int leftIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetLeftIndent());
3143 wxTextAttr
bulletAttr(GetCombinedAttributes());
3145 // Combine with the font of the first piece of content, if one is specified
3146 if (GetChildren().GetCount() > 0)
3148 wxRichTextObject
* firstObj
= (wxRichTextObject
*) GetChildren().GetFirst()->GetData();
3149 if (firstObj
->GetAttributes().HasFont())
3151 wxRichTextApplyStyle(bulletAttr
, firstObj
->GetAttributes());
3155 // Get line height from first line, if any
3156 wxRichTextLine
* line
= m_cachedLines
.GetFirst() ? (wxRichTextLine
* ) m_cachedLines
.GetFirst()->GetData() : (wxRichTextLine
*) NULL
;
3159 int lineHeight
wxDUMMY_INITIALIZE(0);
3162 lineHeight
= line
->GetSize().y
;
3163 linePos
= line
->GetPosition() + GetPosition();
3168 if (bulletAttr
.HasFont() && GetBuffer())
3169 font
= GetBuffer()->GetFontTable().FindFont(bulletAttr
);
3171 font
= (*wxNORMAL_FONT
);
3173 wxCheckSetFont(dc
, font
);
3175 lineHeight
= dc
.GetCharHeight();
3176 linePos
= GetPosition();
3177 linePos
.y
+= spaceBeforePara
;
3180 wxRect
bulletRect(GetPosition().x
+ leftIndent
, linePos
.y
, linePos
.x
- (GetPosition().x
+ leftIndent
), lineHeight
);
3182 if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_BITMAP
)
3184 if (wxRichTextBuffer::GetRenderer())
3185 wxRichTextBuffer::GetRenderer()->DrawBitmapBullet(this, dc
, bulletAttr
, bulletRect
);
3187 else if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_STANDARD
)
3189 if (wxRichTextBuffer::GetRenderer())
3190 wxRichTextBuffer::GetRenderer()->DrawStandardBullet(this, dc
, bulletAttr
, bulletRect
);
3194 wxString bulletText
= GetBulletText();
3196 if (!bulletText
.empty() && wxRichTextBuffer::GetRenderer())
3197 wxRichTextBuffer::GetRenderer()->DrawTextBullet(this, dc
, bulletAttr
, bulletRect
, bulletText
);
3202 // Draw the range for each line, one object at a time.
3204 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3207 wxRichTextLine
* line
= node
->GetData();
3208 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3210 // Lines are specified relative to the paragraph
3212 wxPoint linePosition
= line
->GetPosition() + GetPosition();
3214 // Don't draw if off the screen
3215 if (((style
& wxRICHTEXT_DRAW_IGNORE_CACHE
) != 0) || ((linePosition
.y
+ line
->GetSize().y
) >= rect
.y
&& linePosition
.y
<= rect
.y
+ rect
.height
))
3217 wxPoint objectPosition
= linePosition
;
3218 int maxDescent
= line
->GetDescent();
3220 // Loop through objects until we get to the one within range
3221 wxRichTextObjectList::compatibility_iterator node2
= m_children
.GetFirst();
3226 wxRichTextObject
* child
= node2
->GetData();
3228 if (child
->GetRange().GetLength() > 0 && !child
->GetRange().IsOutside(lineRange
) && !lineRange
.IsOutside(range
))
3230 // Draw this part of the line at the correct position
3231 wxRichTextRange
objectRange(child
->GetRange());
3232 objectRange
.LimitTo(lineRange
);
3235 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING && wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3236 if (i
< (int) line
->GetObjectSizes().GetCount())
3238 objectSize
.x
= line
->GetObjectSizes()[(size_t) i
];
3244 child
->GetRangeSize(objectRange
, objectSize
, descent
, dc
, wxRICHTEXT_UNFORMATTED
, objectPosition
);
3247 // Use the child object's width, but the whole line's height
3248 wxRect
childRect(objectPosition
, wxSize(objectSize
.x
, line
->GetSize().y
));
3249 child
->Draw(dc
, objectRange
, selectionRange
, childRect
, maxDescent
, style
);
3251 objectPosition
.x
+= objectSize
.x
;
3254 else if (child
->GetRange().GetStart() > lineRange
.GetEnd())
3255 // Can break out of inner loop now since we've passed this line's range
3258 node2
= node2
->GetNext();
3262 node
= node
->GetNext();
3268 // Get the range width using partial extents calculated for the whole paragraph.
3269 static int wxRichTextGetRangeWidth(const wxRichTextParagraph
& para
, const wxRichTextRange
& range
, const wxArrayInt
& partialExtents
)
3271 wxASSERT(partialExtents
.GetCount() >= (size_t) range
.GetLength());
3273 if (partialExtents
.GetCount() < (size_t) range
.GetLength())
3276 int leftMostPos
= 0;
3277 if (range
.GetStart() - para
.GetRange().GetStart() > 0)
3278 leftMostPos
= partialExtents
[range
.GetStart() - para
.GetRange().GetStart() - 1];
3280 int rightMostPos
= partialExtents
[range
.GetEnd() - para
.GetRange().GetStart()];
3282 int w
= rightMostPos
- leftMostPos
;
3287 /// Lay the item out
3288 bool wxRichTextParagraph::Layout(wxDC
& dc
, const wxRect
& rect
, int style
)
3290 wxTextAttr attr
= GetCombinedAttributes();
3294 // Increase the size of the paragraph due to spacing
3295 int spaceBeforePara
= ConvertTenthsMMToPixels(dc
, attr
.GetParagraphSpacingBefore());
3296 int spaceAfterPara
= ConvertTenthsMMToPixels(dc
, attr
.GetParagraphSpacingAfter());
3297 int leftIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetLeftIndent());
3298 int leftSubIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetLeftSubIndent());
3299 int rightIndent
= ConvertTenthsMMToPixels(dc
, attr
.GetRightIndent());
3301 int lineSpacing
= 0;
3303 // Let's assume line spacing of 10 is normal, 15 is 1.5, 20 is 2, etc.
3304 if (attr
.GetLineSpacing() != 10 && GetBuffer())
3306 wxFont
font(GetBuffer()->GetFontTable().FindFont(attr
));
3307 wxCheckSetFont(dc
, font
);
3308 lineSpacing
= (ConvertTenthsMMToPixels(dc
, dc
.GetCharHeight()) * attr
.GetLineSpacing())/10;
3311 // Available space for text on each line differs.
3312 int availableTextSpaceFirstLine
= rect
.GetWidth() - leftIndent
- rightIndent
;
3314 // Bullets start the text at the same position as subsequent lines
3315 if (attr
.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE
)
3316 availableTextSpaceFirstLine
-= leftSubIndent
;
3318 int availableTextSpaceSubsequentLines
= rect
.GetWidth() - leftIndent
- rightIndent
- leftSubIndent
;
3320 // Start position for each line relative to the paragraph
3321 int startPositionFirstLine
= leftIndent
;
3322 int startPositionSubsequentLines
= leftIndent
+ leftSubIndent
;
3324 // If we have a bullet in this paragraph, the start position for the first line's text
3325 // is actually leftIndent + leftSubIndent.
3326 if (attr
.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE
)
3327 startPositionFirstLine
= startPositionSubsequentLines
;
3329 long lastEndPos
= GetRange().GetStart()-1;
3330 long lastCompletedEndPos
= lastEndPos
;
3332 int currentWidth
= 0;
3333 SetPosition(rect
.GetPosition());
3335 wxPoint
currentPosition(0, spaceBeforePara
); // We will calculate lines relative to paragraph
3342 wxRichTextObjectList::compatibility_iterator node
;
3344 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3346 wxArrayInt partialExtents
;
3351 // This calculates the partial text extents
3352 GetRangeSize(GetRange(), paraSize
, paraDescent
, dc
, wxRICHTEXT_UNFORMATTED
|wxRICHTEXT_CACHE_SIZE
, wxPoint(0,0), & partialExtents
);
3354 node
= m_children
.GetFirst();
3357 wxRichTextObject
* child
= node
->GetData();
3359 child
->SetCachedSize(wxDefaultSize
);
3360 child
->Layout(dc
, rect
, style
);
3362 node
= node
->GetNext();
3369 // We may need to go back to a previous child, in which case create the new line,
3370 // find the child corresponding to the start position of the string, and
3373 node
= m_children
.GetFirst();
3376 wxRichTextObject
* child
= node
->GetData();
3378 if (child
->GetRange().GetLength() == 0)
3380 node
= node
->GetNext();
3384 // If this is e.g. a composite text box, it will need to be laid out itself.
3385 // But if just a text fragment or image, for example, this will
3386 // do nothing. NB: won't we need to set the position after layout?
3387 // since for example if position is dependent on vertical line size, we
3388 // can't tell the position until the size is determined. So possibly introduce
3389 // another layout phase.
3391 // Available width depends on whether we're on the first or subsequent lines
3392 int availableSpaceForText
= (lineCount
== 0 ? availableTextSpaceFirstLine
: availableTextSpaceSubsequentLines
);
3394 currentPosition
.x
= (lineCount
== 0 ? startPositionFirstLine
: startPositionSubsequentLines
);
3396 // We may only be looking at part of a child, if we searched back for wrapping
3397 // and found a suitable point some way into the child. So get the size for the fragment
3400 long nextBreakPos
= GetFirstLineBreakPosition(lastEndPos
+1);
3401 long lastPosToUse
= child
->GetRange().GetEnd();
3402 bool lineBreakInThisObject
= (nextBreakPos
> -1 && nextBreakPos
<= child
->GetRange().GetEnd());
3404 if (lineBreakInThisObject
)
3405 lastPosToUse
= nextBreakPos
;
3408 int childDescent
= 0;
3410 if ((nextBreakPos
== -1) && (lastEndPos
== child
->GetRange().GetStart() - 1)) // i.e. we want to get the whole thing
3412 childSize
= child
->GetCachedSize();
3413 childDescent
= child
->GetDescent();
3417 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3418 // Get height only, then the width using the partial extents
3419 GetRangeSize(wxRichTextRange(lastEndPos
+1, lastPosToUse
), childSize
, childDescent
, dc
, wxRICHTEXT_UNFORMATTED
|wxRICHTEXT_HEIGHT_ONLY
);
3420 childSize
.x
= wxRichTextGetRangeWidth(*this, wxRichTextRange(lastEndPos
+1, lastPosToUse
), partialExtents
);
3422 GetRangeSize(wxRichTextRange(lastEndPos
+1, lastPosToUse
), childSize
, childDescent
, dc
, wxRICHTEXT_UNFORMATTED
, rect
.GetPosition());
3427 // 1) There was a line break BEFORE the natural break
3428 // 2) There was a line break AFTER the natural break
3429 // 3) The child still fits (carry on)
3431 if ((lineBreakInThisObject
&& (childSize
.x
+ currentWidth
<= availableSpaceForText
)) ||
3432 (childSize
.x
+ currentWidth
> availableSpaceForText
))
3434 long wrapPosition
= 0;
3436 // Find a place to wrap. This may walk back to previous children,
3437 // for example if a word spans several objects.
3438 if (!FindWrapPosition(wxRichTextRange(lastCompletedEndPos
+1, child
->GetRange().GetEnd()), dc
, availableSpaceForText
, wrapPosition
, & partialExtents
))
3440 // If the function failed, just cut it off at the end of this child.
3441 wrapPosition
= child
->GetRange().GetEnd();
3444 // FindWrapPosition can still return a value that will put us in an endless wrapping loop
3445 if (wrapPosition
<= lastCompletedEndPos
)
3446 wrapPosition
= wxMax(lastCompletedEndPos
+1,child
->GetRange().GetEnd());
3448 // wxLogDebug(wxT("Split at %ld"), wrapPosition);
3450 // Let's find the actual size of the current line now
3452 wxRichTextRange
actualRange(lastCompletedEndPos
+1, wrapPosition
);
3454 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3455 // Get height only, then the width using the partial extents
3456 GetRangeSize(actualRange
, actualSize
, childDescent
, dc
, wxRICHTEXT_UNFORMATTED
|wxRICHTEXT_HEIGHT_ONLY
);
3457 actualSize
.x
= wxRichTextGetRangeWidth(*this, actualRange
, partialExtents
);
3459 GetRangeSize(actualRange
, actualSize
, childDescent
, dc
, wxRICHTEXT_UNFORMATTED
);
3462 currentWidth
= actualSize
.x
;
3463 lineHeight
= wxMax(lineHeight
, actualSize
.y
);
3464 maxDescent
= wxMax(childDescent
, maxDescent
);
3467 wxRichTextLine
* line
= AllocateLine(lineCount
);
3469 // Set relative range so we won't have to change line ranges when paragraphs are moved
3470 line
->SetRange(wxRichTextRange(actualRange
.GetStart() - GetRange().GetStart(), actualRange
.GetEnd() - GetRange().GetStart()));
3471 line
->SetPosition(currentPosition
);
3472 line
->SetSize(wxSize(currentWidth
, lineHeight
));
3473 line
->SetDescent(maxDescent
);
3475 // Now move down a line. TODO: add margins, spacing
3476 currentPosition
.y
+= lineHeight
;
3477 currentPosition
.y
+= lineSpacing
;
3480 maxWidth
= wxMax(maxWidth
, currentWidth
);
3484 // TODO: account for zero-length objects, such as fields
3485 wxASSERT(wrapPosition
> lastCompletedEndPos
);
3487 lastEndPos
= wrapPosition
;
3488 lastCompletedEndPos
= lastEndPos
;
3492 // May need to set the node back to a previous one, due to searching back in wrapping
3493 wxRichTextObject
* childAfterWrapPosition
= FindObjectAtPosition(wrapPosition
+1);
3494 if (childAfterWrapPosition
)
3495 node
= m_children
.Find(childAfterWrapPosition
);
3497 node
= node
->GetNext();
3501 // We still fit, so don't add a line, and keep going
3502 currentWidth
+= childSize
.x
;
3503 lineHeight
= wxMax(lineHeight
, childSize
.y
);
3504 maxDescent
= wxMax(childDescent
, maxDescent
);
3506 maxWidth
= wxMax(maxWidth
, currentWidth
);
3507 lastEndPos
= child
->GetRange().GetEnd();
3509 node
= node
->GetNext();
3513 // Add the last line - it's the current pos -> last para pos
3514 // Substract -1 because the last position is always the end-paragraph position.
3515 if (lastCompletedEndPos
<= GetRange().GetEnd()-1)
3517 currentPosition
.x
= (lineCount
== 0 ? startPositionFirstLine
: startPositionSubsequentLines
);
3519 wxRichTextLine
* line
= AllocateLine(lineCount
);
3521 wxRichTextRange
actualRange(lastCompletedEndPos
+1, GetRange().GetEnd()-1);
3523 // Set relative range so we won't have to change line ranges when paragraphs are moved
3524 line
->SetRange(wxRichTextRange(actualRange
.GetStart() - GetRange().GetStart(), actualRange
.GetEnd() - GetRange().GetStart()));
3526 line
->SetPosition(currentPosition
);
3528 if (lineHeight
== 0 && GetBuffer())
3530 wxFont
font(GetBuffer()->GetFontTable().FindFont(attr
));
3531 wxCheckSetFont(dc
, font
);
3532 lineHeight
= dc
.GetCharHeight();
3534 if (maxDescent
== 0)
3537 dc
.GetTextExtent(wxT("X"), & w
, &h
, & maxDescent
);
3540 line
->SetSize(wxSize(currentWidth
, lineHeight
));
3541 line
->SetDescent(maxDescent
);
3542 currentPosition
.y
+= lineHeight
;
3543 currentPosition
.y
+= lineSpacing
;
3547 // Remove remaining unused line objects, if any
3548 ClearUnusedLines(lineCount
);
3550 // Apply styles to wrapped lines
3551 ApplyParagraphStyle(attr
, rect
);
3553 SetCachedSize(wxSize(maxWidth
, currentPosition
.y
+ spaceBeforePara
+ spaceAfterPara
));
3557 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3558 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
3559 // Use the text extents to calculate the size of each fragment in each line
3560 wxRichTextLineList::compatibility_iterator lineNode
= m_cachedLines
.GetFirst();
3563 wxRichTextLine
* line
= lineNode
->GetData();
3564 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3566 // Loop through objects until we get to the one within range
3567 wxRichTextObjectList::compatibility_iterator node2
= m_children
.GetFirst();
3571 wxRichTextObject
* child
= node2
->GetData();
3573 if (child
->GetRange().GetLength() > 0 && !child
->GetRange().IsOutside(lineRange
))
3575 wxRichTextRange rangeToUse
= lineRange
;
3576 rangeToUse
.LimitTo(child
->GetRange());
3578 // Find the size of the child from the text extents, and store in an array
3579 // for drawing later
3581 if (rangeToUse
.GetStart() > GetRange().GetStart())
3582 left
= partialExtents
[(rangeToUse
.GetStart()-1) - GetRange().GetStart()];
3583 int right
= partialExtents
[rangeToUse
.GetEnd() - GetRange().GetStart()];
3584 int sz
= right
- left
;
3585 line
->GetObjectSizes().Add(sz
);
3587 else if (child
->GetRange().GetStart() > lineRange
.GetEnd())
3588 // Can break out of inner loop now since we've passed this line's range
3591 node2
= node2
->GetNext();
3594 lineNode
= lineNode
->GetNext();
3602 /// Apply paragraph styles, such as centering, to wrapped lines
3603 void wxRichTextParagraph::ApplyParagraphStyle(const wxTextAttr
& attr
, const wxRect
& rect
)
3605 if (!attr
.HasAlignment())
3608 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3611 wxRichTextLine
* line
= node
->GetData();
3613 wxPoint pos
= line
->GetPosition();
3614 wxSize size
= line
->GetSize();
3616 // centering, right-justification
3617 if (attr
.HasAlignment() && GetAttributes().GetAlignment() == wxTEXT_ALIGNMENT_CENTRE
)
3619 pos
.x
= (rect
.GetWidth() - size
.x
)/2 + pos
.x
;
3620 line
->SetPosition(pos
);
3622 else if (attr
.HasAlignment() && GetAttributes().GetAlignment() == wxTEXT_ALIGNMENT_RIGHT
)
3624 pos
.x
= pos
.x
+ rect
.GetWidth() - size
.x
;
3625 line
->SetPosition(pos
);
3628 node
= node
->GetNext();
3632 /// Insert text at the given position
3633 bool wxRichTextParagraph::InsertText(long pos
, const wxString
& text
)
3635 wxRichTextObject
* childToUse
= NULL
;
3636 wxRichTextObjectList::compatibility_iterator nodeToUse
= wxRichTextObjectList::compatibility_iterator();
3638 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3641 wxRichTextObject
* child
= node
->GetData();
3642 if (child
->GetRange().Contains(pos
) && child
->GetRange().GetLength() > 0)
3649 node
= node
->GetNext();
3654 wxRichTextPlainText
* textObject
= wxDynamicCast(childToUse
, wxRichTextPlainText
);
3657 int posInString
= pos
- textObject
->GetRange().GetStart();
3659 wxString newText
= textObject
->GetText().Mid(0, posInString
) +
3660 text
+ textObject
->GetText().Mid(posInString
);
3661 textObject
->SetText(newText
);
3663 int textLength
= text
.length();
3665 textObject
->SetRange(wxRichTextRange(textObject
->GetRange().GetStart(),
3666 textObject
->GetRange().GetEnd() + textLength
));
3668 // Increment the end range of subsequent fragments in this paragraph.
3669 // We'll set the paragraph range itself at a higher level.
3671 wxRichTextObjectList::compatibility_iterator node
= nodeToUse
->GetNext();
3674 wxRichTextObject
* child
= node
->GetData();
3675 child
->SetRange(wxRichTextRange(textObject
->GetRange().GetStart() + textLength
,
3676 textObject
->GetRange().GetEnd() + textLength
));
3678 node
= node
->GetNext();
3685 // TODO: if not a text object, insert at closest position, e.g. in front of it
3691 // Don't pass parent initially to suppress auto-setting of parent range.
3692 // We'll do that at a higher level.
3693 wxRichTextPlainText
* textObject
= new wxRichTextPlainText(text
, this);
3695 AppendChild(textObject
);
3702 void wxRichTextParagraph::Copy(const wxRichTextParagraph
& obj
)
3704 wxRichTextBox::Copy(obj
);
3707 /// Clear the cached lines
3708 void wxRichTextParagraph::ClearLines()
3710 WX_CLEAR_LIST(wxRichTextLineList
, m_cachedLines
);
3713 /// Get/set the object size for the given range. Returns false if the range
3714 /// is invalid for this object.
3715 bool wxRichTextParagraph::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int flags
, wxPoint position
, wxArrayInt
* partialExtents
) const
3717 if (!range
.IsWithin(GetRange()))
3720 if (flags
& wxRICHTEXT_UNFORMATTED
)
3722 // Just use unformatted data, assume no line breaks
3723 // TODO: take into account line breaks
3727 wxArrayInt childExtents
;
3734 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
3738 wxRichTextObject
* child
= node
->GetData();
3739 if (!child
->GetRange().IsOutside(range
))
3743 wxRichTextRange rangeToUse
= range
;
3744 rangeToUse
.LimitTo(child
->GetRange());
3745 int childDescent
= 0;
3747 // At present wxRICHTEXT_HEIGHT_ONLY is only fast if we're already cached the size,
3748 // but it's only going to be used after caching has taken place.
3749 if ((flags
& wxRICHTEXT_HEIGHT_ONLY
) && child
->GetCachedSize().y
!= 0)
3751 childDescent
= child
->GetDescent();
3752 childSize
= child
->GetCachedSize();
3754 sz
.y
= wxMax(sz
.y
, childSize
.y
);
3755 sz
.x
+= childSize
.x
;
3756 descent
= wxMax(descent
, childDescent
);
3758 else if (child
->GetRangeSize(rangeToUse
, childSize
, childDescent
, dc
, flags
, wxPoint(position
.x
+ sz
.x
, position
.y
), p
))
3760 sz
.y
= wxMax(sz
.y
, childSize
.y
);
3761 sz
.x
+= childSize
.x
;
3762 descent
= wxMax(descent
, childDescent
);
3764 if ((flags
& wxRICHTEXT_CACHE_SIZE
) && (rangeToUse
== child
->GetRange()))
3766 child
->SetCachedSize(childSize
);
3767 child
->SetDescent(childDescent
);
3773 if (partialExtents
->GetCount() > 0)
3774 lastSize
= (*partialExtents
)[partialExtents
->GetCount()-1];
3779 for (i
= 0; i
< childExtents
.GetCount(); i
++)
3781 partialExtents
->Add(childExtents
[i
] + lastSize
);
3790 node
= node
->GetNext();
3796 // Use formatted data, with line breaks
3799 // We're going to loop through each line, and then for each line,
3800 // call GetRangeSize for the fragment that comprises that line.
3801 // Only we have to do that multiple times within the line, because
3802 // the line may be broken into pieces. For now ignore line break commands
3803 // (so we can assume that getting the unformatted size for a fragment
3804 // within a line is the actual size)
3806 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3809 wxRichTextLine
* line
= node
->GetData();
3810 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3811 if (!lineRange
.IsOutside(range
))
3815 wxRichTextObjectList::compatibility_iterator node2
= m_children
.GetFirst();
3818 wxRichTextObject
* child
= node2
->GetData();
3820 if (!child
->GetRange().IsOutside(lineRange
))
3822 wxRichTextRange rangeToUse
= lineRange
;
3823 rangeToUse
.LimitTo(child
->GetRange());
3826 int childDescent
= 0;
3827 if (child
->GetRangeSize(rangeToUse
, childSize
, childDescent
, dc
, flags
, wxPoint(position
.x
+ sz
.x
, position
.y
)))
3829 lineSize
.y
= wxMax(lineSize
.y
, childSize
.y
);
3830 lineSize
.x
+= childSize
.x
;
3832 descent
= wxMax(descent
, childDescent
);
3835 node2
= node2
->GetNext();
3838 // Increase size by a line (TODO: paragraph spacing)
3840 sz
.x
= wxMax(sz
.x
, lineSize
.x
);
3842 node
= node
->GetNext();
3849 /// Finds the absolute position and row height for the given character position
3850 bool wxRichTextParagraph::FindPosition(wxDC
& dc
, long index
, wxPoint
& pt
, int* height
, bool forceLineStart
)
3854 wxRichTextLine
* line
= ((wxRichTextParagraphLayoutBox
*)GetParent())->GetLineAtPosition(0);
3856 *height
= line
->GetSize().y
;
3858 *height
= dc
.GetCharHeight();
3860 // -1 means 'the start of the buffer'.
3863 pt
= pt
+ line
->GetPosition();
3868 // The final position in a paragraph is taken to mean the position
3869 // at the start of the next paragraph.
3870 if (index
== GetRange().GetEnd())
3872 wxRichTextParagraphLayoutBox
* parent
= wxDynamicCast(GetParent(), wxRichTextParagraphLayoutBox
);
3873 wxASSERT( parent
!= NULL
);
3875 // Find the height at the next paragraph, if any
3876 wxRichTextLine
* line
= parent
->GetLineAtPosition(index
+ 1);
3879 *height
= line
->GetSize().y
;
3880 pt
= line
->GetAbsolutePosition();
3884 *height
= dc
.GetCharHeight();
3885 int indent
= ConvertTenthsMMToPixels(dc
, m_attributes
.GetLeftIndent());
3886 pt
= wxPoint(indent
, GetCachedSize().y
);
3892 if (index
< GetRange().GetStart() || index
> GetRange().GetEnd())
3895 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3898 wxRichTextLine
* line
= node
->GetData();
3899 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3900 if (index
>= lineRange
.GetStart() && index
<= lineRange
.GetEnd())
3902 // If this is the last point in the line, and we're forcing the
3903 // returned value to be the start of the next line, do the required
3905 if (index
== lineRange
.GetEnd() && forceLineStart
)
3907 if (node
->GetNext())
3909 wxRichTextLine
* nextLine
= node
->GetNext()->GetData();
3910 *height
= nextLine
->GetSize().y
;
3911 pt
= nextLine
->GetAbsolutePosition();
3916 pt
.y
= line
->GetPosition().y
+ GetPosition().y
;
3918 wxRichTextRange
r(lineRange
.GetStart(), index
);
3922 // We find the size of the line up to this point,
3923 // then we can add this size to the line start position and
3924 // paragraph start position to find the actual position.
3926 if (GetRangeSize(r
, rangeSize
, descent
, dc
, wxRICHTEXT_UNFORMATTED
, line
->GetPosition()+ GetPosition()))
3928 pt
.x
= line
->GetPosition().x
+ GetPosition().x
+ rangeSize
.x
;
3929 *height
= line
->GetSize().y
;
3936 node
= node
->GetNext();
3942 /// Hit-testing: returns a flag indicating hit test details, plus
3943 /// information about position
3944 int wxRichTextParagraph::HitTest(wxDC
& dc
, const wxPoint
& pt
, long& textPosition
)
3946 wxPoint paraPos
= GetPosition();
3948 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetFirst();
3951 wxRichTextLine
* line
= node
->GetData();
3952 wxPoint linePos
= paraPos
+ line
->GetPosition();
3953 wxSize lineSize
= line
->GetSize();
3954 wxRichTextRange lineRange
= line
->GetAbsoluteRange();
3956 if (pt
.y
<= linePos
.y
+ lineSize
.y
)
3958 if (pt
.x
< linePos
.x
)
3960 textPosition
= lineRange
.GetStart();
3961 return wxRICHTEXT_HITTEST_BEFORE
|wxRICHTEXT_HITTEST_OUTSIDE
;
3963 else if (pt
.x
>= (linePos
.x
+ lineSize
.x
))
3965 textPosition
= lineRange
.GetEnd();
3966 return wxRICHTEXT_HITTEST_AFTER
|wxRICHTEXT_HITTEST_OUTSIDE
;
3970 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3971 wxArrayInt partialExtents
;
3976 // This calculates the partial text extents
3977 GetRangeSize(lineRange
, paraSize
, paraDescent
, dc
, wxRICHTEXT_UNFORMATTED
, wxPoint(0,0), & partialExtents
);
3979 int lastX
= linePos
.x
;
3981 for (i
= 0; i
< partialExtents
.GetCount(); i
++)
3983 int nextX
= partialExtents
[i
] + linePos
.x
;
3985 if (pt
.x
>= lastX
&& pt
.x
<= nextX
)
3987 textPosition
= i
+ lineRange
.GetStart(); // minus 1?
3989 // So now we know it's between i-1 and i.
3990 // Let's see if we can be more precise about
3991 // which side of the position it's on.
3993 int midPoint
= (nextX
- lastX
)/2 + lastX
;
3994 if (pt
.x
>= midPoint
)
3995 return wxRICHTEXT_HITTEST_AFTER
;
3997 return wxRICHTEXT_HITTEST_BEFORE
;
4004 int lastX
= linePos
.x
;
4005 for (i
= lineRange
.GetStart(); i
<= lineRange
.GetEnd(); i
++)
4010 wxRichTextRange
rangeToUse(lineRange
.GetStart(), i
);
4012 GetRangeSize(rangeToUse
, childSize
, descent
, dc
, wxRICHTEXT_UNFORMATTED
, linePos
);
4014 int nextX
= childSize
.x
+ linePos
.x
;
4016 if (pt
.x
>= lastX
&& pt
.x
<= nextX
)
4020 // So now we know it's between i-1 and i.
4021 // Let's see if we can be more precise about
4022 // which side of the position it's on.
4024 int midPoint
= (nextX
- lastX
)/2 + lastX
;
4025 if (pt
.x
>= midPoint
)
4026 return wxRICHTEXT_HITTEST_AFTER
;
4028 return wxRICHTEXT_HITTEST_BEFORE
;
4039 node
= node
->GetNext();
4042 return wxRICHTEXT_HITTEST_NONE
;
4045 /// Split an object at this position if necessary, and return
4046 /// the previous object, or NULL if inserting at beginning.
4047 wxRichTextObject
* wxRichTextParagraph::SplitAt(long pos
, wxRichTextObject
** previousObject
)
4049 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
4052 wxRichTextObject
* child
= node
->GetData();
4054 if (pos
== child
->GetRange().GetStart())
4058 if (node
->GetPrevious())
4059 *previousObject
= node
->GetPrevious()->GetData();
4061 *previousObject
= NULL
;
4067 if (child
->GetRange().Contains(pos
))
4069 // This should create a new object, transferring part of
4070 // the content to the old object and the rest to the new object.
4071 wxRichTextObject
* newObject
= child
->DoSplit(pos
);
4073 // If we couldn't split this object, just insert in front of it.
4076 // Maybe this is an empty string, try the next one
4081 // Insert the new object after 'child'
4082 if (node
->GetNext())
4083 m_children
.Insert(node
->GetNext(), newObject
);
4085 m_children
.Append(newObject
);
4086 newObject
->SetParent(this);
4089 *previousObject
= child
;
4095 node
= node
->GetNext();
4098 *previousObject
= NULL
;
4102 /// Move content to a list from obj on
4103 void wxRichTextParagraph::MoveToList(wxRichTextObject
* obj
, wxList
& list
)
4105 wxRichTextObjectList::compatibility_iterator node
= m_children
.Find(obj
);
4108 wxRichTextObject
* child
= node
->GetData();
4111 wxRichTextObjectList::compatibility_iterator oldNode
= node
;
4113 node
= node
->GetNext();
4115 m_children
.DeleteNode(oldNode
);
4119 /// Add content back from list
4120 void wxRichTextParagraph::MoveFromList(wxList
& list
)
4122 for (wxList::compatibility_iterator node
= list
.GetFirst(); node
; node
= node
->GetNext())
4124 AppendChild((wxRichTextObject
*) node
->GetData());
4129 void wxRichTextParagraph::CalculateRange(long start
, long& end
)
4131 wxRichTextCompositeObject::CalculateRange(start
, end
);
4133 // Add one for end of paragraph
4136 m_range
.SetRange(start
, end
);
4139 /// Find the object at the given position
4140 wxRichTextObject
* wxRichTextParagraph::FindObjectAtPosition(long position
)
4142 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
4145 wxRichTextObject
* obj
= node
->GetData();
4146 if (obj
->GetRange().Contains(position
))
4149 node
= node
->GetNext();
4154 /// Get the plain text searching from the start or end of the range.
4155 /// The resulting string may be shorter than the range given.
4156 bool wxRichTextParagraph::GetContiguousPlainText(wxString
& text
, const wxRichTextRange
& range
, bool fromStart
)
4158 text
= wxEmptyString
;
4162 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
4165 wxRichTextObject
* obj
= node
->GetData();
4166 if (!obj
->GetRange().IsOutside(range
))
4168 wxRichTextPlainText
* textObj
= wxDynamicCast(obj
, wxRichTextPlainText
);
4171 text
+= textObj
->GetTextForRange(range
);
4177 node
= node
->GetNext();
4182 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetLast();
4185 wxRichTextObject
* obj
= node
->GetData();
4186 if (!obj
->GetRange().IsOutside(range
))
4188 wxRichTextPlainText
* textObj
= wxDynamicCast(obj
, wxRichTextPlainText
);
4191 text
= textObj
->GetTextForRange(range
) + text
;
4197 node
= node
->GetPrevious();
4204 /// Find a suitable wrap position.
4205 bool wxRichTextParagraph::FindWrapPosition(const wxRichTextRange
& range
, wxDC
& dc
, int availableSpace
, long& wrapPosition
, wxArrayInt
* partialExtents
)
4207 if (range
.GetLength() <= 0)
4210 // Find the first position where the line exceeds the available space.
4212 long breakPosition
= range
.GetEnd();
4214 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
4215 if (partialExtents
&& partialExtents
->GetCount() >= (size_t) (GetRange().GetLength()-1)) // the final position in a paragraph is the newline
4219 if (range
.GetStart() > GetRange().GetStart())
4220 widthBefore
= (*partialExtents
)[range
.GetStart() - GetRange().GetStart() - 1];
4225 for (i
= (size_t) range
.GetStart(); i
< (size_t) range
.GetEnd(); i
++)
4227 int widthFromStartOfThisRange
= (*partialExtents
)[i
- GetRange().GetStart()] - widthBefore
;
4229 if (widthFromStartOfThisRange
> availableSpace
)
4231 breakPosition
= i
-1;
4239 // Binary chop for speed
4240 long minPos
= range
.GetStart();
4241 long maxPos
= range
.GetEnd();
4244 if (minPos
== maxPos
)
4247 GetRangeSize(wxRichTextRange(range
.GetStart(), minPos
), sz
, descent
, dc
, wxRICHTEXT_UNFORMATTED
);
4249 if (sz
.x
> availableSpace
)
4250 breakPosition
= minPos
- 1;
4253 else if ((maxPos
- minPos
) == 1)
4256 GetRangeSize(wxRichTextRange(range
.GetStart(), minPos
), sz
, descent
, dc
, wxRICHTEXT_UNFORMATTED
);
4258 if (sz
.x
> availableSpace
)
4259 breakPosition
= minPos
- 1;
4262 GetRangeSize(wxRichTextRange(range
.GetStart(), maxPos
), sz
, descent
, dc
, wxRICHTEXT_UNFORMATTED
);
4263 if (sz
.x
> availableSpace
)
4264 breakPosition
= maxPos
-1;
4270 long nextPos
= minPos
+ ((maxPos
- minPos
) / 2);
4273 GetRangeSize(wxRichTextRange(range
.GetStart(), nextPos
), sz
, descent
, dc
, wxRICHTEXT_UNFORMATTED
);
4275 if (sz
.x
> availableSpace
)
4287 // Now we know the last position on the line.
4288 // Let's try to find a word break.
4291 if (GetContiguousPlainText(plainText
, wxRichTextRange(range
.GetStart(), breakPosition
), false))
4293 int newLinePos
= plainText
.Find(wxRichTextLineBreakChar
);
4294 if (newLinePos
!= wxNOT_FOUND
)
4296 breakPosition
= wxMax(0, range
.GetStart() + newLinePos
);
4300 int spacePos
= plainText
.Find(wxT(' '), true);
4301 int tabPos
= plainText
.Find(wxT('\t'), true);
4302 int pos
= wxMax(spacePos
, tabPos
);
4303 if (pos
!= wxNOT_FOUND
)
4305 int positionsFromEndOfString
= plainText
.length() - pos
- 1;
4306 breakPosition
= breakPosition
- positionsFromEndOfString
;
4311 wrapPosition
= breakPosition
;
4316 /// Get the bullet text for this paragraph.
4317 wxString
wxRichTextParagraph::GetBulletText()
4319 if (GetAttributes().GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_NONE
||
4320 (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_BITMAP
))
4321 return wxEmptyString
;
4323 int number
= GetAttributes().GetBulletNumber();
4326 if ((GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ARABIC
) || (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
))
4328 text
.Printf(wxT("%d"), number
);
4330 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER
)
4332 // TODO: Unicode, and also check if number > 26
4333 text
.Printf(wxT("%c"), (wxChar
) (number
+64));
4335 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER
)
4337 // TODO: Unicode, and also check if number > 26
4338 text
.Printf(wxT("%c"), (wxChar
) (number
+96));
4340 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER
)
4342 text
= wxRichTextDecimalToRoman(number
);
4344 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER
)
4346 text
= wxRichTextDecimalToRoman(number
);
4349 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_SYMBOL
)
4351 text
= GetAttributes().GetBulletText();
4354 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE
)
4356 // The outline style relies on the text being computed statically,
4357 // since it depends on other levels points (e.g. 1.2.1.1). So normally the bullet text
4358 // should be stored in the attributes; if not, just use the number for this
4359 // level, as previously computed.
4360 if (!GetAttributes().GetBulletText().IsEmpty())
4361 text
= GetAttributes().GetBulletText();
4364 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_PARENTHESES
)
4366 text
= wxT("(") + text
+ wxT(")");
4368 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_RIGHT_PARENTHESIS
)
4370 text
= text
+ wxT(")");
4373 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_PERIOD
)
4381 /// Allocate or reuse a line object
4382 wxRichTextLine
* wxRichTextParagraph::AllocateLine(int pos
)
4384 if (pos
< (int) m_cachedLines
.GetCount())
4386 wxRichTextLine
* line
= m_cachedLines
.Item(pos
)->GetData();
4392 wxRichTextLine
* line
= new wxRichTextLine(this);
4393 m_cachedLines
.Append(line
);
4398 /// Clear remaining unused line objects, if any
4399 bool wxRichTextParagraph::ClearUnusedLines(int lineCount
)
4401 int cachedLineCount
= m_cachedLines
.GetCount();
4402 if ((int) cachedLineCount
> lineCount
)
4404 for (int i
= 0; i
< (int) (cachedLineCount
- lineCount
); i
++)
4406 wxRichTextLineList::compatibility_iterator node
= m_cachedLines
.GetLast();
4407 wxRichTextLine
* line
= node
->GetData();
4408 m_cachedLines
.Erase(node
);
4415 /// Get combined attributes of the base style, paragraph style and character style. We use this to dynamically
4416 /// retrieve the actual style.
4417 wxTextAttr
wxRichTextParagraph::GetCombinedAttributes(const wxTextAttr
& contentStyle
) const
4420 wxRichTextBuffer
* buf
= wxDynamicCast(GetParent(), wxRichTextBuffer
);
4423 attr
= buf
->GetBasicStyle();
4424 wxRichTextApplyStyle(attr
, GetAttributes());
4427 attr
= GetAttributes();
4429 wxRichTextApplyStyle(attr
, contentStyle
);
4433 /// Get combined attributes of the base style and paragraph style.
4434 wxTextAttr
wxRichTextParagraph::GetCombinedAttributes() const
4437 wxRichTextBuffer
* buf
= wxDynamicCast(GetParent(), wxRichTextBuffer
);
4440 attr
= buf
->GetBasicStyle();
4441 wxRichTextApplyStyle(attr
, GetAttributes());
4444 attr
= GetAttributes();
4449 /// Create default tabstop array
4450 void wxRichTextParagraph::InitDefaultTabs()
4452 // create a default tab list at 10 mm each.
4453 for (int i
= 0; i
< 20; ++i
)
4455 sm_defaultTabs
.Add(i
*100);
4459 /// Clear default tabstop array
4460 void wxRichTextParagraph::ClearDefaultTabs()
4462 sm_defaultTabs
.Clear();
4465 /// Get the first position from pos that has a line break character.
4466 long wxRichTextParagraph::GetFirstLineBreakPosition(long pos
)
4468 wxRichTextObjectList::compatibility_iterator node
= m_children
.GetFirst();
4471 wxRichTextObject
* obj
= node
->GetData();
4472 if (pos
>= obj
->GetRange().GetStart() && pos
<= obj
->GetRange().GetEnd())
4474 wxRichTextPlainText
* textObj
= wxDynamicCast(obj
, wxRichTextPlainText
);
4477 long breakPos
= textObj
->GetFirstLineBreakPosition(pos
);
4482 node
= node
->GetNext();
4489 * This object represents a line in a paragraph, and stores
4490 * offsets from the start of the paragraph representing the
4491 * start and end positions of the line.
4494 wxRichTextLine::wxRichTextLine(wxRichTextParagraph
* parent
)
4500 void wxRichTextLine::Init(wxRichTextParagraph
* parent
)
4503 m_range
.SetRange(-1, -1);
4504 m_pos
= wxPoint(0, 0);
4505 m_size
= wxSize(0, 0);
4507 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
4508 m_objectSizes
.Clear();
4513 void wxRichTextLine::Copy(const wxRichTextLine
& obj
)
4515 m_range
= obj
.m_range
;
4516 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
4517 m_objectSizes
= obj
.m_objectSizes
;
4521 /// Get the absolute object position
4522 wxPoint
wxRichTextLine::GetAbsolutePosition() const
4524 return m_parent
->GetPosition() + m_pos
;
4527 /// Get the absolute range
4528 wxRichTextRange
wxRichTextLine::GetAbsoluteRange() const
4530 wxRichTextRange
range(m_range
.GetStart() + m_parent
->GetRange().GetStart(), 0);
4531 range
.SetEnd(range
.GetStart() + m_range
.GetLength()-1);
4536 * wxRichTextPlainText
4537 * This object represents a single piece of text.
4540 IMPLEMENT_DYNAMIC_CLASS(wxRichTextPlainText
, wxRichTextObject
)
4542 wxRichTextPlainText::wxRichTextPlainText(const wxString
& text
, wxRichTextObject
* parent
, wxTextAttr
* style
):
4543 wxRichTextObject(parent
)
4546 SetAttributes(*style
);
4551 #define USE_KERNING_FIX 1
4553 // If insufficient tabs are defined, this is the tab width used
4554 #define WIDTH_FOR_DEFAULT_TABS 50
4557 bool wxRichTextPlainText::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int descent
, int WXUNUSED(style
))
4559 wxRichTextParagraph
* para
= wxDynamicCast(GetParent(), wxRichTextParagraph
);
4560 wxASSERT (para
!= NULL
);
4562 wxTextAttr
textAttr(para
? para
->GetCombinedAttributes(GetAttributes()) : GetAttributes());
4564 int offset
= GetRange().GetStart();
4566 // Replace line break characters with spaces
4567 wxString str
= m_text
;
4568 wxString toRemove
= wxRichTextLineBreakChar
;
4569 str
.Replace(toRemove
, wxT(" "));
4570 if (textAttr
.HasTextEffects() && (textAttr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_CAPITALS
))
4573 long len
= range
.GetLength();
4574 wxString stringChunk
= str
.Mid(range
.GetStart() - offset
, (size_t) len
);
4576 // Test for the optimized situations where all is selected, or none
4579 wxFont
textFont(GetBuffer()->GetFontTable().FindFont(textAttr
));
4580 wxCheckSetFont(dc
, textFont
);
4581 int charHeight
= dc
.GetCharHeight();
4584 if ( textFont
.Ok() )
4586 if ( textAttr
.HasTextEffects() && (textAttr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_SUPERSCRIPT
) )
4588 double size
= static_cast<double>(textFont
.GetPointSize()) / wxSCRIPT_MUL_FACTOR
;
4589 textFont
.SetPointSize( static_cast<int>(size
) );
4592 wxCheckSetFont(dc
, textFont
);
4594 else if ( textAttr
.HasTextEffects() && (textAttr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_SUBSCRIPT
) )
4596 double size
= static_cast<double>(textFont
.GetPointSize()) / wxSCRIPT_MUL_FACTOR
;
4597 textFont
.SetPointSize( static_cast<int>(size
) );
4599 int sub_height
= static_cast<int>( static_cast<double>(charHeight
) / wxSCRIPT_MUL_FACTOR
);
4600 y
= rect
.y
+ (rect
.height
- sub_height
+ (descent
- m_descent
));
4601 wxCheckSetFont(dc
, textFont
);
4606 y
= rect
.y
+ (rect
.height
- charHeight
- (descent
- m_descent
));
4612 y
= rect
.y
+ (rect
.height
- charHeight
- (descent
- m_descent
));
4615 // (a) All selected.
4616 if (selectionRange
.GetStart() <= range
.GetStart() && selectionRange
.GetEnd() >= range
.GetEnd())
4618 DrawTabbedString(dc
, textAttr
, rect
, stringChunk
, x
, y
, true);
4620 // (b) None selected.
4621 else if (selectionRange
.GetEnd() < range
.GetStart() || selectionRange
.GetStart() > range
.GetEnd())
4623 // Draw all unselected
4624 DrawTabbedString(dc
, textAttr
, rect
, stringChunk
, x
, y
, false);
4628 // (c) Part selected, part not
4629 // Let's draw unselected chunk, selected chunk, then unselected chunk.
4631 dc
.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT
);
4633 // 1. Initial unselected chunk, if any, up until start of selection.
4634 if (selectionRange
.GetStart() > range
.GetStart() && selectionRange
.GetStart() <= range
.GetEnd())
4636 int r1
= range
.GetStart();
4637 int s1
= selectionRange
.GetStart()-1;
4638 int fragmentLen
= s1
- r1
+ 1;
4639 if (fragmentLen
< 0)
4640 wxLogDebug(wxT("Mid(%d, %d"), (int)(r1
- offset
), (int)fragmentLen
);
4641 wxString stringFragment
= str
.Mid(r1
- offset
, fragmentLen
);
4643 DrawTabbedString(dc
, textAttr
, rect
, stringFragment
, x
, y
, false);
4646 if (stringChunk
.Find(wxT("\t")) == wxNOT_FOUND
)
4648 // Compensate for kerning difference
4649 wxString
stringFragment2(str
.Mid(r1
- offset
, fragmentLen
+1));
4650 wxString
stringFragment3(str
.Mid(r1
- offset
+ fragmentLen
, 1));
4652 wxCoord w1
, h1
, w2
, h2
, w3
, h3
;
4653 dc
.GetTextExtent(stringFragment
, & w1
, & h1
);
4654 dc
.GetTextExtent(stringFragment2
, & w2
, & h2
);
4655 dc
.GetTextExtent(stringFragment3
, & w3
, & h3
);
4657 int kerningDiff
= (w1
+ w3
) - w2
;
4658 x
= x
- kerningDiff
;
4663 // 2. Selected chunk, if any.
4664 if (selectionRange
.GetEnd() >= range
.GetStart())
4666 int s1
= wxMax(selectionRange
.GetStart(), range
.GetStart());
4667 int s2
= wxMin(selectionRange
.GetEnd(), range
.GetEnd());
4669 int fragmentLen
= s2
- s1
+ 1;
4670 if (fragmentLen
< 0)
4671 wxLogDebug(wxT("Mid(%d, %d"), (int)(s1
- offset
), (int)fragmentLen
);
4672 wxString stringFragment
= str
.Mid(s1
- offset
, fragmentLen
);
4674 DrawTabbedString(dc
, textAttr
, rect
, stringFragment
, x
, y
, true);
4677 if (stringChunk
.Find(wxT("\t")) == wxNOT_FOUND
)
4679 // Compensate for kerning difference
4680 wxString
stringFragment2(str
.Mid(s1
- offset
, fragmentLen
+1));
4681 wxString
stringFragment3(str
.Mid(s1
- offset
+ fragmentLen
, 1));
4683 wxCoord w1
, h1
, w2
, h2
, w3
, h3
;
4684 dc
.GetTextExtent(stringFragment
, & w1
, & h1
);
4685 dc
.GetTextExtent(stringFragment2
, & w2
, & h2
);
4686 dc
.GetTextExtent(stringFragment3
, & w3
, & h3
);
4688 int kerningDiff
= (w1
+ w3
) - w2
;
4689 x
= x
- kerningDiff
;
4694 // 3. Remaining unselected chunk, if any
4695 if (selectionRange
.GetEnd() < range
.GetEnd())
4697 int s2
= wxMin(selectionRange
.GetEnd()+1, range
.GetEnd());
4698 int r2
= range
.GetEnd();
4700 int fragmentLen
= r2
- s2
+ 1;
4701 if (fragmentLen
< 0)
4702 wxLogDebug(wxT("Mid(%d, %d"), (int)(s2
- offset
), (int)fragmentLen
);
4703 wxString stringFragment
= str
.Mid(s2
- offset
, fragmentLen
);
4705 DrawTabbedString(dc
, textAttr
, rect
, stringFragment
, x
, y
, false);
4712 bool wxRichTextPlainText::DrawTabbedString(wxDC
& dc
, const wxTextAttr
& attr
, const wxRect
& rect
,wxString
& str
, wxCoord
& x
, wxCoord
& y
, bool selected
)
4714 bool hasTabs
= (str
.Find(wxT('\t')) != wxNOT_FOUND
);
4716 wxArrayInt tabArray
;
4720 if (attr
.GetTabs().IsEmpty())
4721 tabArray
= wxRichTextParagraph::GetDefaultTabs();
4723 tabArray
= attr
.GetTabs();
4724 tabCount
= tabArray
.GetCount();
4726 for (int i
= 0; i
< tabCount
; ++i
)
4728 int pos
= tabArray
[i
];
4729 pos
= ConvertTenthsMMToPixels(dc
, pos
);
4736 int nextTabPos
= -1;
4742 wxColour
highlightColour(wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
));
4743 wxColour
highlightTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
));
4745 wxCheckSetBrush(dc
, wxBrush(highlightColour
));
4746 wxCheckSetPen(dc
, wxPen(highlightColour
));
4747 dc
.SetTextForeground(highlightTextColour
);
4748 dc
.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT
);
4752 dc
.SetTextForeground(attr
.GetTextColour());
4754 if (attr
.HasFlag(wxTEXT_ATTR_BACKGROUND_COLOUR
) && attr
.GetBackgroundColour().IsOk())
4756 dc
.SetBackgroundMode(wxBRUSHSTYLE_SOLID
);
4757 dc
.SetTextBackground(attr
.GetBackgroundColour());
4760 dc
.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT
);
4765 // the string has a tab
4766 // break up the string at the Tab
4767 wxString stringChunk
= str
.BeforeFirst(wxT('\t'));
4768 str
= str
.AfterFirst(wxT('\t'));
4769 dc
.GetTextExtent(stringChunk
, & w
, & h
);
4771 bool not_found
= true;
4772 for (int i
= 0; i
< tabCount
&& not_found
; ++i
)
4774 nextTabPos
= tabArray
.Item(i
);
4776 // Find the next tab position.
4777 // Even if we're at the end of the tab array, we must still draw the chunk.
4779 if (nextTabPos
> tabPos
|| (i
== (tabCount
- 1)))
4781 if (nextTabPos
<= tabPos
)
4783 int defaultTabWidth
= ConvertTenthsMMToPixels(dc
, WIDTH_FOR_DEFAULT_TABS
);
4784 nextTabPos
= tabPos
+ defaultTabWidth
;
4791 wxRect
selRect(x
, rect
.y
, w
, rect
.GetHeight());
4792 dc
.DrawRectangle(selRect
);
4794 dc
.DrawText(stringChunk
, x
, y
);
4796 if (attr
.HasTextEffects() && (attr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_STRIKETHROUGH
))
4798 wxPen oldPen
= dc
.GetPen();
4799 wxCheckSetPen(dc
, wxPen(attr
.GetTextColour(), 1));
4800 dc
.DrawLine(x
, (int) (y
+(h
/2)+0.5), x
+w
, (int) (y
+(h
/2)+0.5));
4801 wxCheckSetPen(dc
, oldPen
);
4807 hasTabs
= (str
.Find(wxT('\t')) != wxNOT_FOUND
);
4812 dc
.GetTextExtent(str
, & w
, & h
);
4815 wxRect
selRect(x
, rect
.y
, w
, rect
.GetHeight());
4816 dc
.DrawRectangle(selRect
);
4818 dc
.DrawText(str
, x
, y
);
4820 if (attr
.HasTextEffects() && (attr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_STRIKETHROUGH
))
4822 wxPen oldPen
= dc
.GetPen();
4823 wxCheckSetPen(dc
, wxPen(attr
.GetTextColour(), 1));
4824 dc
.DrawLine(x
, (int) (y
+(h
/2)+0.5), x
+w
, (int) (y
+(h
/2)+0.5));
4825 wxCheckSetPen(dc
, oldPen
);
4834 /// Lay the item out
4835 bool wxRichTextPlainText::Layout(wxDC
& dc
, const wxRect
& WXUNUSED(rect
), int WXUNUSED(style
))
4837 // Only lay out if we haven't already cached the size
4839 GetRangeSize(GetRange(), m_size
, m_descent
, dc
, 0, wxPoint(0, 0));
4845 void wxRichTextPlainText::Copy(const wxRichTextPlainText
& obj
)
4847 wxRichTextObject::Copy(obj
);
4849 m_text
= obj
.m_text
;
4852 /// Get/set the object size for the given range. Returns false if the range
4853 /// is invalid for this object.
4854 bool wxRichTextPlainText::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& descent
, wxDC
& dc
, int WXUNUSED(flags
), wxPoint position
, wxArrayInt
* partialExtents
) const
4856 if (!range
.IsWithin(GetRange()))
4859 wxRichTextParagraph
* para
= wxDynamicCast(GetParent(), wxRichTextParagraph
);
4860 wxASSERT (para
!= NULL
);
4862 wxTextAttr
textAttr(para
? para
->GetCombinedAttributes(GetAttributes()) : GetAttributes());
4864 // Always assume unformatted text, since at this level we have no knowledge
4865 // of line breaks - and we don't need it, since we'll calculate size within
4866 // formatted text by doing it in chunks according to the line ranges
4868 bool bScript(false);
4869 wxFont
font(GetBuffer()->GetFontTable().FindFont(textAttr
));
4872 if ( textAttr
.HasTextEffects() && ( (textAttr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_SUPERSCRIPT
)
4873 || (textAttr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_SUBSCRIPT
) ) )
4875 wxFont textFont
= font
;
4876 double size
= static_cast<double>(textFont
.GetPointSize()) / wxSCRIPT_MUL_FACTOR
;
4877 textFont
.SetPointSize( static_cast<int>(size
) );
4878 wxCheckSetFont(dc
, textFont
);
4883 wxCheckSetFont(dc
, font
);
4887 bool haveDescent
= false;
4888 int startPos
= range
.GetStart() - GetRange().GetStart();
4889 long len
= range
.GetLength();
4891 wxString
str(m_text
);
4892 wxString toReplace
= wxRichTextLineBreakChar
;
4893 str
.Replace(toReplace
, wxT(" "));
4895 wxString stringChunk
= str
.Mid(startPos
, (size_t) len
);
4897 if (textAttr
.HasTextEffects() && (textAttr
.GetTextEffects() & wxTEXT_ATTR_EFFECT_CAPITALS
))
4898 stringChunk
.MakeUpper();
4902 if (stringChunk
.Find(wxT('\t')) != wxNOT_FOUND
)
4904 // the string has a tab
4905 wxArrayInt tabArray
;
4906 if (textAttr
.GetTabs().IsEmpty())
4907 tabArray
= wxRichTextParagraph::GetDefaultTabs();
4909 tabArray
= textAttr
.GetTabs();
4911 int tabCount
= tabArray
.GetCount();
4913 for (int i
= 0; i
< tabCount
; ++i
)
4915 int pos
= tabArray
[i
];
4916 pos
= ((wxRichTextPlainText
*) this)->ConvertTenthsMMToPixels(dc
, pos
);
4920 int nextTabPos
= -1;
4922 while (stringChunk
.Find(wxT('\t')) >= 0)
4924 int absoluteWidth
= 0;
4926 // the string has a tab
4927 // break up the string at the Tab
4928 wxString stringFragment
= stringChunk
.BeforeFirst(wxT('\t'));
4929 stringChunk
= stringChunk
.AfterFirst(wxT('\t'));
4934 if (partialExtents
->GetCount() > 0)
4935 oldWidth
= (*partialExtents
)[partialExtents
->GetCount()-1];
4939 // Add these partial extents
4941 dc
.GetPartialTextExtents(stringFragment
, p
);
4943 for (j
= 0; j
< p
.GetCount(); j
++)
4944 partialExtents
->Add(oldWidth
+ p
[j
]);
4946 if (partialExtents
->GetCount() > 0)
4947 absoluteWidth
= (*partialExtents
)[(*partialExtents
).GetCount()-1] + position
.x
;
4949 absoluteWidth
= position
.x
;
4953 dc
.GetTextExtent(stringFragment
, & w
, & h
);
4955 absoluteWidth
= width
+ position
.x
;
4959 bool notFound
= true;
4960 for (int i
= 0; i
< tabCount
&& notFound
; ++i
)
4962 nextTabPos
= tabArray
.Item(i
);
4964 // Find the next tab position.
4965 // Even if we're at the end of the tab array, we must still process the chunk.
4967 if (nextTabPos
> absoluteWidth
|| (i
== (tabCount
- 1)))
4969 if (nextTabPos
<= absoluteWidth
)
4971 int defaultTabWidth
= ((wxRichTextPlainText
*) this)->ConvertTenthsMMToPixels(dc
, WIDTH_FOR_DEFAULT_TABS
);
4972 nextTabPos
= absoluteWidth
+ defaultTabWidth
;
4976 width
= nextTabPos
- position
.x
;
4979 partialExtents
->Add(width
);
4985 if (!stringChunk
.IsEmpty())
4990 if (partialExtents
->GetCount() > 0)
4991 oldWidth
= (*partialExtents
)[partialExtents
->GetCount()-1];
4995 // Add these partial extents
4997 dc
.GetPartialTextExtents(stringChunk
, p
);
4999 for (j
= 0; j
< p
.GetCount(); j
++)
5000 partialExtents
->Add(oldWidth
+ p
[j
]);
5004 dc
.GetTextExtent(stringChunk
, & w
, & h
, & descent
);
5012 int charHeight
= dc
.GetCharHeight();
5013 if ((*partialExtents
).GetCount() > 0)
5014 w
= (*partialExtents
)[partialExtents
->GetCount()-1];
5017 size
= wxSize(w
, charHeight
);
5021 size
= wxSize(width
, dc
.GetCharHeight());
5025 dc
.GetTextExtent(wxT("X"), & w
, & h
, & descent
);
5033 /// Do a split, returning an object containing the second part, and setting
5034 /// the first part in 'this'.
5035 wxRichTextObject
* wxRichTextPlainText::DoSplit(long pos
)
5037 long index
= pos
- GetRange().GetStart();
5039 if (index
< 0 || index
>= (int) m_text
.length())
5042 wxString firstPart
= m_text
.Mid(0, index
);
5043 wxString secondPart
= m_text
.Mid(index
);
5047 wxRichTextPlainText
* newObject
= new wxRichTextPlainText(secondPart
);
5048 newObject
->SetAttributes(GetAttributes());
5050 newObject
->SetRange(wxRichTextRange(pos
, GetRange().GetEnd()));
5051 GetRange().SetEnd(pos
-1);
5057 void wxRichTextPlainText::CalculateRange(long start
, long& end
)
5059 end
= start
+ m_text
.length() - 1;
5060 m_range
.SetRange(start
, end
);
5064 bool wxRichTextPlainText::DeleteRange(const wxRichTextRange
& range
)
5066 wxRichTextRange r
= range
;
5068 r
.LimitTo(GetRange());
5070 if (r
.GetStart() == GetRange().GetStart() && r
.GetEnd() == GetRange().GetEnd())
5076 long startIndex
= r
.GetStart() - GetRange().GetStart();
5077 long len
= r
.GetLength();
5079 m_text
= m_text
.Mid(0, startIndex
) + m_text
.Mid(startIndex
+len
);
5083 /// Get text for the given range.
5084 wxString
wxRichTextPlainText::GetTextForRange(const wxRichTextRange
& range
) const
5086 wxRichTextRange r
= range
;
5088 r
.LimitTo(GetRange());
5090 long startIndex
= r
.GetStart() - GetRange().GetStart();
5091 long len
= r
.GetLength();
5093 return m_text
.Mid(startIndex
, len
);
5096 /// Returns true if this object can merge itself with the given one.
5097 bool wxRichTextPlainText::CanMerge(wxRichTextObject
* object
) const
5099 return object
->GetClassInfo() == CLASSINFO(wxRichTextPlainText
) &&
5100 (m_text
.empty() || wxTextAttrEq(GetAttributes(), object
->GetAttributes()));
5103 /// Returns true if this object merged itself with the given one.
5104 /// The calling code will then delete the given object.
5105 bool wxRichTextPlainText::Merge(wxRichTextObject
* object
)
5107 wxRichTextPlainText
* textObject
= wxDynamicCast(object
, wxRichTextPlainText
);
5108 wxASSERT( textObject
!= NULL
);
5112 m_text
+= textObject
->GetText();
5113 wxRichTextApplyStyle(m_attributes
, textObject
->GetAttributes());
5120 /// Dump to output stream for debugging
5121 void wxRichTextPlainText::Dump(wxTextOutputStream
& stream
)
5123 wxRichTextObject::Dump(stream
);
5124 stream
<< m_text
<< wxT("\n");
5127 /// Get the first position from pos that has a line break character.
5128 long wxRichTextPlainText::GetFirstLineBreakPosition(long pos
)
5131 int len
= m_text
.length();
5132 int startPos
= pos
- m_range
.GetStart();
5133 for (i
= startPos
; i
< len
; i
++)
5135 wxChar ch
= m_text
[i
];
5136 if (ch
== wxRichTextLineBreakChar
)
5138 return i
+ m_range
.GetStart();
5146 * This is a kind of box, used to represent the whole buffer
5149 IMPLEMENT_DYNAMIC_CLASS(wxRichTextBuffer
, wxRichTextParagraphLayoutBox
)
5151 wxList
wxRichTextBuffer::sm_handlers
;
5152 wxRichTextRenderer
* wxRichTextBuffer::sm_renderer
= NULL
;
5153 int wxRichTextBuffer::sm_bulletRightMargin
= 20;
5154 float wxRichTextBuffer::sm_bulletProportion
= (float) 0.3;
5157 void wxRichTextBuffer::Init()
5159 m_commandProcessor
= new wxCommandProcessor
;
5160 m_styleSheet
= NULL
;
5162 m_batchedCommandDepth
= 0;
5163 m_batchedCommand
= NULL
;
5170 wxRichTextBuffer::~wxRichTextBuffer()
5172 delete m_commandProcessor
;
5173 delete m_batchedCommand
;
5176 ClearEventHandlers();
5179 void wxRichTextBuffer::ResetAndClearCommands()
5183 GetCommandProcessor()->ClearCommands();
5186 Invalidate(wxRICHTEXT_ALL
);
5189 void wxRichTextBuffer::Copy(const wxRichTextBuffer
& obj
)
5191 wxRichTextParagraphLayoutBox::Copy(obj
);
5193 m_styleSheet
= obj
.m_styleSheet
;
5194 m_modified
= obj
.m_modified
;
5195 m_batchedCommandDepth
= obj
.m_batchedCommandDepth
;
5196 m_batchedCommand
= obj
.m_batchedCommand
;
5197 m_suppressUndo
= obj
.m_suppressUndo
;
5200 /// Push style sheet to top of stack
5201 bool wxRichTextBuffer::PushStyleSheet(wxRichTextStyleSheet
* styleSheet
)
5204 styleSheet
->InsertSheet(m_styleSheet
);
5206 SetStyleSheet(styleSheet
);
5211 /// Pop style sheet from top of stack
5212 wxRichTextStyleSheet
* wxRichTextBuffer::PopStyleSheet()
5216 wxRichTextStyleSheet
* oldSheet
= m_styleSheet
;
5217 m_styleSheet
= oldSheet
->GetNextSheet();
5226 /// Submit command to insert paragraphs
5227 bool wxRichTextBuffer::InsertParagraphsWithUndo(long pos
, const wxRichTextParagraphLayoutBox
& paragraphs
, wxRichTextCtrl
* ctrl
, int flags
)
5229 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Text"), wxRICHTEXT_INSERT
, this, ctrl
, false);
5231 wxTextAttr
attr(GetDefaultStyle());
5233 wxTextAttr
* p
= NULL
;
5234 wxTextAttr paraAttr
;
5235 if (flags
& wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
)
5237 paraAttr
= GetStyleForNewParagraph(pos
);
5238 if (!paraAttr
.IsDefault())
5244 action
->GetNewParagraphs() = paragraphs
;
5246 if (p
&& !p
->IsDefault())
5248 for (wxRichTextObjectList::compatibility_iterator node
= action
->GetNewParagraphs().GetChildren().GetFirst(); node
; node
= node
->GetNext())
5250 wxRichTextObject
* child
= node
->GetData();
5251 child
->SetAttributes(*p
);
5255 action
->SetPosition(pos
);
5257 wxRichTextRange range
= wxRichTextRange(pos
, pos
+ paragraphs
.GetRange().GetEnd() - 1);
5258 if (!paragraphs
.GetPartialParagraph())
5259 range
.SetEnd(range
.GetEnd()+1);
5261 // Set the range we'll need to delete in Undo
5262 action
->SetRange(range
);
5264 SubmitAction(action
);
5269 /// Submit command to insert the given text
5270 bool wxRichTextBuffer::InsertTextWithUndo(long pos
, const wxString
& text
, wxRichTextCtrl
* ctrl
, int flags
)
5272 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Text"), wxRICHTEXT_INSERT
, this, ctrl
, false);
5274 wxTextAttr
* p
= NULL
;
5275 wxTextAttr paraAttr
;
5276 if (flags
& wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
)
5278 // Get appropriate paragraph style
5279 paraAttr
= GetStyleForNewParagraph(pos
, false, false);
5280 if (!paraAttr
.IsDefault())
5284 action
->GetNewParagraphs().AddParagraphs(text
, p
);
5286 int length
= action
->GetNewParagraphs().GetRange().GetLength();
5288 if (text
.length() > 0 && text
.Last() != wxT('\n'))
5290 // Don't count the newline when undoing
5292 action
->GetNewParagraphs().SetPartialParagraph(true);
5294 else if (text
.length() > 0 && text
.Last() == wxT('\n'))
5297 action
->SetPosition(pos
);
5299 // Set the range we'll need to delete in Undo
5300 action
->SetRange(wxRichTextRange(pos
, pos
+ length
- 1));
5302 SubmitAction(action
);
5307 /// Submit command to insert the given text
5308 bool wxRichTextBuffer::InsertNewlineWithUndo(long pos
, wxRichTextCtrl
* ctrl
, int flags
)
5310 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Text"), wxRICHTEXT_INSERT
, this, ctrl
, false);
5312 wxTextAttr
* p
= NULL
;
5313 wxTextAttr paraAttr
;
5314 if (flags
& wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
)
5316 paraAttr
= GetStyleForNewParagraph(pos
, false, true /* look for next paragraph style */);
5317 if (!paraAttr
.IsDefault())
5321 wxTextAttr
attr(GetDefaultStyle());
5323 wxRichTextParagraph
* newPara
= new wxRichTextParagraph(wxEmptyString
, this, & attr
);
5324 action
->GetNewParagraphs().AppendChild(newPara
);
5325 action
->GetNewParagraphs().UpdateRanges();
5326 action
->GetNewParagraphs().SetPartialParagraph(false);
5327 wxRichTextParagraph
* para
= GetParagraphAtPosition(pos
, false);
5331 newPara
->SetAttributes(*p
);
5333 if (flags
& wxRICHTEXT_INSERT_INTERACTIVE
)
5335 if (para
&& para
->GetRange().GetEnd() == pos
)
5337 if (newPara
->GetAttributes().HasBulletNumber())
5338 newPara
->GetAttributes().SetBulletNumber(newPara
->GetAttributes().GetBulletNumber()+1);
5341 action
->SetPosition(pos
);
5343 // Use the default character style
5344 // Use the default character style
5345 if (!GetDefaultStyle().IsDefault() && newPara
->GetChildren().GetFirst())
5347 // Check whether the default style merely reflects the paragraph/basic style,
5348 // in which case don't apply it.
5349 wxTextAttrEx
defaultStyle(GetDefaultStyle());
5350 wxTextAttrEx toApply
;
5353 wxRichTextAttr combinedAttr
= para
->GetCombinedAttributes();
5354 wxTextAttrEx newAttr
;
5355 // This filters out attributes that are accounted for by the current
5356 // paragraph/basic style
5357 wxRichTextApplyStyle(toApply
, defaultStyle
, & combinedAttr
);
5360 toApply
= defaultStyle
;
5362 if (!toApply
.IsDefault())
5363 newPara
->GetChildren().GetFirst()->GetData()->SetAttributes(toApply
);
5366 // Set the range we'll need to delete in Undo
5367 action
->SetRange(wxRichTextRange(pos1
, pos1
));
5369 SubmitAction(action
);
5374 /// Submit command to insert the given image
5375 bool wxRichTextBuffer::InsertImageWithUndo(long pos
, const wxRichTextImageBlock
& imageBlock
, wxRichTextCtrl
* ctrl
, int flags
)
5377 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Image"), wxRICHTEXT_INSERT
, this, ctrl
, false);
5379 wxTextAttr
* p
= NULL
;
5380 wxTextAttr paraAttr
;
5381 if (flags
& wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
)
5383 paraAttr
= GetStyleForNewParagraph(pos
);
5384 if (!paraAttr
.IsDefault())
5388 wxTextAttr
attr(GetDefaultStyle());
5390 wxRichTextParagraph
* newPara
= new wxRichTextParagraph(this, & attr
);
5392 newPara
->SetAttributes(*p
);
5394 wxRichTextImage
* imageObject
= new wxRichTextImage(imageBlock
, newPara
);
5395 newPara
->AppendChild(imageObject
);
5396 action
->GetNewParagraphs().AppendChild(newPara
);
5397 action
->GetNewParagraphs().UpdateRanges();
5399 action
->GetNewParagraphs().SetPartialParagraph(true);
5401 action
->SetPosition(pos
);
5403 // Set the range we'll need to delete in Undo
5404 action
->SetRange(wxRichTextRange(pos
, pos
));
5406 SubmitAction(action
);
5411 /// Get the style that is appropriate for a new paragraph at this position.
5412 /// If the previous paragraph has a paragraph style name, look up the next-paragraph
5414 wxTextAttr
wxRichTextBuffer::GetStyleForNewParagraph(long pos
, bool caretPosition
, bool lookUpNewParaStyle
) const
5416 wxRichTextParagraph
* para
= GetParagraphAtPosition(pos
, caretPosition
);
5420 bool foundAttributes
= false;
5422 // Look for a matching paragraph style
5423 if (lookUpNewParaStyle
&& !para
->GetAttributes().GetParagraphStyleName().IsEmpty() && GetStyleSheet())
5425 wxRichTextParagraphStyleDefinition
* paraDef
= GetStyleSheet()->FindParagraphStyle(para
->GetAttributes().GetParagraphStyleName());
5428 // If we're not at the end of the paragraph, then we apply THIS style, and not the designated next style.
5429 if (para
->GetRange().GetEnd() == pos
&& !paraDef
->GetNextStyle().IsEmpty())
5431 wxRichTextParagraphStyleDefinition
* nextParaDef
= GetStyleSheet()->FindParagraphStyle(paraDef
->GetNextStyle());
5434 foundAttributes
= true;
5435 attr
= nextParaDef
->GetStyleMergedWithBase(GetStyleSheet());
5439 // If we didn't find the 'next style', use this style instead.
5440 if (!foundAttributes
)
5442 foundAttributes
= true;
5443 attr
= paraDef
->GetStyleMergedWithBase(GetStyleSheet());
5447 if (!foundAttributes
)
5449 attr
= para
->GetAttributes();
5450 int flags
= attr
.GetFlags();
5452 // Eliminate character styles
5453 flags
&= ( (~ wxTEXT_ATTR_FONT
) |
5454 (~ wxTEXT_ATTR_TEXT_COLOUR
) |
5455 (~ wxTEXT_ATTR_BACKGROUND_COLOUR
) );
5456 attr
.SetFlags(flags
);
5459 // Now see if we need to number the paragraph.
5460 if (attr
.HasBulletStyle())
5462 wxTextAttr numberingAttr
;
5463 if (FindNextParagraphNumber(para
, numberingAttr
))
5464 wxRichTextApplyStyle(attr
, (const wxTextAttr
&) numberingAttr
);
5470 return wxTextAttr();
5473 /// Submit command to delete this range
5474 bool wxRichTextBuffer::DeleteRangeWithUndo(const wxRichTextRange
& range
, wxRichTextCtrl
* ctrl
)
5476 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Delete"), wxRICHTEXT_DELETE
, this, ctrl
);
5478 action
->SetPosition(ctrl
->GetCaretPosition());
5480 // Set the range to delete
5481 action
->SetRange(range
);
5483 // Copy the fragment that we'll need to restore in Undo
5484 CopyFragment(range
, action
->GetOldParagraphs());
5486 // See if we're deleting a paragraph marker, in which case we need to
5487 // make a note not to copy the attributes from the 2nd paragraph to the 1st.
5488 if (range
.GetStart() == range
.GetEnd())
5490 wxRichTextParagraph
* para
= GetParagraphAtPosition(range
.GetStart());
5491 if (para
&& para
->GetRange().GetEnd() == range
.GetEnd())
5493 wxRichTextParagraph
* nextPara
= GetParagraphAtPosition(range
.GetStart()+1);
5494 if (nextPara
&& nextPara
!= para
)
5496 action
->GetOldParagraphs().GetChildren().GetFirst()->GetData()->SetAttributes(nextPara
->GetAttributes());
5497 action
->GetOldParagraphs().GetAttributes().SetFlags(action
->GetOldParagraphs().GetAttributes().GetFlags() | wxTEXT_ATTR_KEEP_FIRST_PARA_STYLE
);
5502 SubmitAction(action
);
5507 /// Collapse undo/redo commands
5508 bool wxRichTextBuffer::BeginBatchUndo(const wxString
& cmdName
)
5510 if (m_batchedCommandDepth
== 0)
5512 wxASSERT(m_batchedCommand
== NULL
);
5513 if (m_batchedCommand
)
5515 GetCommandProcessor()->Store(m_batchedCommand
);
5517 m_batchedCommand
= new wxRichTextCommand(cmdName
);
5520 m_batchedCommandDepth
++;
5525 /// Collapse undo/redo commands
5526 bool wxRichTextBuffer::EndBatchUndo()
5528 m_batchedCommandDepth
--;
5530 wxASSERT(m_batchedCommandDepth
>= 0);
5531 wxASSERT(m_batchedCommand
!= NULL
);
5533 if (m_batchedCommandDepth
== 0)
5535 GetCommandProcessor()->Store(m_batchedCommand
);
5536 m_batchedCommand
= NULL
;
5542 /// Submit immediately, or delay according to whether collapsing is on
5543 bool wxRichTextBuffer::SubmitAction(wxRichTextAction
* action
)
5545 if (BatchingUndo() && m_batchedCommand
&& !SuppressingUndo())
5547 wxRichTextCommand
* cmd
= new wxRichTextCommand(action
->GetName());
5548 cmd
->AddAction(action
);
5550 cmd
->GetActions().Clear();
5553 m_batchedCommand
->AddAction(action
);
5557 wxRichTextCommand
* cmd
= new wxRichTextCommand(action
->GetName());
5558 cmd
->AddAction(action
);
5560 // Only store it if we're not suppressing undo.
5561 return GetCommandProcessor()->Submit(cmd
, !SuppressingUndo());
5567 /// Begin suppressing undo/redo commands.
5568 bool wxRichTextBuffer::BeginSuppressUndo()
5575 /// End suppressing undo/redo commands.
5576 bool wxRichTextBuffer::EndSuppressUndo()
5583 /// Begin using a style
5584 bool wxRichTextBuffer::BeginStyle(const wxTextAttr
& style
)
5586 wxTextAttr
newStyle(GetDefaultStyle());
5588 // Save the old default style
5589 m_attributeStack
.Append((wxObject
*) new wxTextAttr(GetDefaultStyle()));
5591 wxRichTextApplyStyle(newStyle
, style
);
5592 newStyle
.SetFlags(style
.GetFlags()|newStyle
.GetFlags());
5594 SetDefaultStyle(newStyle
);
5600 bool wxRichTextBuffer::EndStyle()
5602 if (!m_attributeStack
.GetFirst())
5604 wxLogDebug(_("Too many EndStyle calls!"));
5608 wxList::compatibility_iterator node
= m_attributeStack
.GetLast();
5609 wxTextAttr
* attr
= (wxTextAttr
*)node
->GetData();
5610 m_attributeStack
.Erase(node
);
5612 SetDefaultStyle(*attr
);
5619 bool wxRichTextBuffer::EndAllStyles()
5621 while (m_attributeStack
.GetCount() != 0)
5626 /// Clear the style stack
5627 void wxRichTextBuffer::ClearStyleStack()
5629 for (wxList::compatibility_iterator node
= m_attributeStack
.GetFirst(); node
; node
= node
->GetNext())
5630 delete (wxTextAttr
*) node
->GetData();
5631 m_attributeStack
.Clear();
5634 /// Begin using bold
5635 bool wxRichTextBuffer::BeginBold()
5638 attr
.SetFontWeight(wxBOLD
);
5640 return BeginStyle(attr
);
5643 /// Begin using italic
5644 bool wxRichTextBuffer::BeginItalic()
5647 attr
.SetFontStyle(wxITALIC
);
5649 return BeginStyle(attr
);
5652 /// Begin using underline
5653 bool wxRichTextBuffer::BeginUnderline()
5656 attr
.SetFontUnderlined(true);
5658 return BeginStyle(attr
);
5661 /// Begin using point size
5662 bool wxRichTextBuffer::BeginFontSize(int pointSize
)
5665 attr
.SetFontSize(pointSize
);
5667 return BeginStyle(attr
);
5670 /// Begin using this font
5671 bool wxRichTextBuffer::BeginFont(const wxFont
& font
)
5676 return BeginStyle(attr
);
5679 /// Begin using this colour
5680 bool wxRichTextBuffer::BeginTextColour(const wxColour
& colour
)
5683 attr
.SetFlags(wxTEXT_ATTR_TEXT_COLOUR
);
5684 attr
.SetTextColour(colour
);
5686 return BeginStyle(attr
);
5689 /// Begin using alignment
5690 bool wxRichTextBuffer::BeginAlignment(wxTextAttrAlignment alignment
)
5693 attr
.SetFlags(wxTEXT_ATTR_ALIGNMENT
);
5694 attr
.SetAlignment(alignment
);
5696 return BeginStyle(attr
);
5699 /// Begin left indent
5700 bool wxRichTextBuffer::BeginLeftIndent(int leftIndent
, int leftSubIndent
)
5703 attr
.SetFlags(wxTEXT_ATTR_LEFT_INDENT
);
5704 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5706 return BeginStyle(attr
);
5709 /// Begin right indent
5710 bool wxRichTextBuffer::BeginRightIndent(int rightIndent
)
5713 attr
.SetFlags(wxTEXT_ATTR_RIGHT_INDENT
);
5714 attr
.SetRightIndent(rightIndent
);
5716 return BeginStyle(attr
);
5719 /// Begin paragraph spacing
5720 bool wxRichTextBuffer::BeginParagraphSpacing(int before
, int after
)
5724 flags
|= wxTEXT_ATTR_PARA_SPACING_BEFORE
;
5726 flags
|= wxTEXT_ATTR_PARA_SPACING_AFTER
;
5729 attr
.SetFlags(flags
);
5730 attr
.SetParagraphSpacingBefore(before
);
5731 attr
.SetParagraphSpacingAfter(after
);
5733 return BeginStyle(attr
);
5736 /// Begin line spacing
5737 bool wxRichTextBuffer::BeginLineSpacing(int lineSpacing
)
5740 attr
.SetFlags(wxTEXT_ATTR_LINE_SPACING
);
5741 attr
.SetLineSpacing(lineSpacing
);
5743 return BeginStyle(attr
);
5746 /// Begin numbered bullet
5747 bool wxRichTextBuffer::BeginNumberedBullet(int bulletNumber
, int leftIndent
, int leftSubIndent
, int bulletStyle
)
5750 attr
.SetFlags(wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_LEFT_INDENT
);
5751 attr
.SetBulletStyle(bulletStyle
);
5752 attr
.SetBulletNumber(bulletNumber
);
5753 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5755 return BeginStyle(attr
);
5758 /// Begin symbol bullet
5759 bool wxRichTextBuffer::BeginSymbolBullet(const wxString
& symbol
, int leftIndent
, int leftSubIndent
, int bulletStyle
)
5762 attr
.SetFlags(wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_LEFT_INDENT
);
5763 attr
.SetBulletStyle(bulletStyle
);
5764 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5765 attr
.SetBulletText(symbol
);
5767 return BeginStyle(attr
);
5770 /// Begin standard bullet
5771 bool wxRichTextBuffer::BeginStandardBullet(const wxString
& bulletName
, int leftIndent
, int leftSubIndent
, int bulletStyle
)
5774 attr
.SetFlags(wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_LEFT_INDENT
);
5775 attr
.SetBulletStyle(bulletStyle
);
5776 attr
.SetLeftIndent(leftIndent
, leftSubIndent
);
5777 attr
.SetBulletName(bulletName
);
5779 return BeginStyle(attr
);
5782 /// Begin named character style
5783 bool wxRichTextBuffer::BeginCharacterStyle(const wxString
& characterStyle
)
5785 if (GetStyleSheet())
5787 wxRichTextCharacterStyleDefinition
* def
= GetStyleSheet()->FindCharacterStyle(characterStyle
);
5790 wxTextAttr attr
= def
->GetStyleMergedWithBase(GetStyleSheet());
5791 return BeginStyle(attr
);
5797 /// Begin named paragraph style
5798 bool wxRichTextBuffer::BeginParagraphStyle(const wxString
& paragraphStyle
)
5800 if (GetStyleSheet())
5802 wxRichTextParagraphStyleDefinition
* def
= GetStyleSheet()->FindParagraphStyle(paragraphStyle
);
5805 wxTextAttr attr
= def
->GetStyleMergedWithBase(GetStyleSheet());
5806 return BeginStyle(attr
);
5812 /// Begin named list style
5813 bool wxRichTextBuffer::BeginListStyle(const wxString
& listStyle
, int level
, int number
)
5815 if (GetStyleSheet())
5817 wxRichTextListStyleDefinition
* def
= GetStyleSheet()->FindListStyle(listStyle
);
5820 wxTextAttr
attr(def
->GetCombinedStyleForLevel(level
));
5822 attr
.SetBulletNumber(number
);
5824 return BeginStyle(attr
);
5831 bool wxRichTextBuffer::BeginURL(const wxString
& url
, const wxString
& characterStyle
)
5835 if (!characterStyle
.IsEmpty() && GetStyleSheet())
5837 wxRichTextCharacterStyleDefinition
* def
= GetStyleSheet()->FindCharacterStyle(characterStyle
);
5840 attr
= def
->GetStyleMergedWithBase(GetStyleSheet());
5845 return BeginStyle(attr
);
5848 /// Adds a handler to the end
5849 void wxRichTextBuffer::AddHandler(wxRichTextFileHandler
*handler
)
5851 sm_handlers
.Append(handler
);
5854 /// Inserts a handler at the front
5855 void wxRichTextBuffer::InsertHandler(wxRichTextFileHandler
*handler
)
5857 sm_handlers
.Insert( handler
);
5860 /// Removes a handler
5861 bool wxRichTextBuffer::RemoveHandler(const wxString
& name
)
5863 wxRichTextFileHandler
*handler
= FindHandler(name
);
5866 sm_handlers
.DeleteObject(handler
);
5874 /// Finds a handler by filename or, if supplied, type
5875 wxRichTextFileHandler
*wxRichTextBuffer::FindHandlerFilenameOrType(const wxString
& filename
,
5876 wxRichTextFileType imageType
)
5878 if (imageType
!= wxRICHTEXT_TYPE_ANY
)
5879 return FindHandler(imageType
);
5880 else if (!filename
.IsEmpty())
5882 wxString path
, file
, ext
;
5883 wxSplitPath(filename
, & path
, & file
, & ext
);
5884 return FindHandler(ext
, imageType
);
5891 /// Finds a handler by name
5892 wxRichTextFileHandler
* wxRichTextBuffer::FindHandler(const wxString
& name
)
5894 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5897 wxRichTextFileHandler
*handler
= (wxRichTextFileHandler
*)node
->GetData();
5898 if (handler
->GetName().Lower() == name
.Lower()) return handler
;
5900 node
= node
->GetNext();
5905 /// Finds a handler by extension and type
5906 wxRichTextFileHandler
* wxRichTextBuffer::FindHandler(const wxString
& extension
, wxRichTextFileType type
)
5908 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5911 wxRichTextFileHandler
*handler
= (wxRichTextFileHandler
*)node
->GetData();
5912 if ( handler
->GetExtension().Lower() == extension
.Lower() &&
5913 (type
== wxRICHTEXT_TYPE_ANY
|| handler
->GetType() == type
) )
5915 node
= node
->GetNext();
5920 /// Finds a handler by type
5921 wxRichTextFileHandler
* wxRichTextBuffer::FindHandler(wxRichTextFileType type
)
5923 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5926 wxRichTextFileHandler
*handler
= (wxRichTextFileHandler
*)node
->GetData();
5927 if (handler
->GetType() == type
) return handler
;
5928 node
= node
->GetNext();
5933 void wxRichTextBuffer::InitStandardHandlers()
5935 if (!FindHandler(wxRICHTEXT_TYPE_TEXT
))
5936 AddHandler(new wxRichTextPlainTextHandler
);
5939 void wxRichTextBuffer::CleanUpHandlers()
5941 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
5944 wxRichTextFileHandler
* handler
= (wxRichTextFileHandler
*)node
->GetData();
5945 wxList::compatibility_iterator next
= node
->GetNext();
5950 sm_handlers
.Clear();
5953 wxString
wxRichTextBuffer::GetExtWildcard(bool combine
, bool save
, wxArrayInt
* types
)
5960 wxList::compatibility_iterator node
= GetHandlers().GetFirst();
5964 wxRichTextFileHandler
* handler
= (wxRichTextFileHandler
*) node
->GetData();
5965 if (handler
->IsVisible() && ((save
&& handler
->CanSave()) || (!save
&& handler
->CanLoad())))
5970 wildcard
+= wxT(";");
5971 wildcard
+= wxT("*.") + handler
->GetExtension();
5976 wildcard
+= wxT("|");
5977 wildcard
+= handler
->GetName();
5978 wildcard
+= wxT(" ");
5979 wildcard
+= _("files");
5980 wildcard
+= wxT(" (*.");
5981 wildcard
+= handler
->GetExtension();
5982 wildcard
+= wxT(")|*.");
5983 wildcard
+= handler
->GetExtension();
5985 types
->Add(handler
->GetType());
5990 node
= node
->GetNext();
5994 wildcard
= wxT("(") + wildcard
+ wxT(")|") + wildcard
;
5999 bool wxRichTextBuffer::LoadFile(const wxString
& filename
, wxRichTextFileType type
)
6001 wxRichTextFileHandler
* handler
= FindHandlerFilenameOrType(filename
, type
);
6004 SetDefaultStyle(wxTextAttr());
6005 handler
->SetFlags(GetHandlerFlags());
6006 bool success
= handler
->LoadFile(this, filename
);
6007 Invalidate(wxRICHTEXT_ALL
);
6015 bool wxRichTextBuffer::SaveFile(const wxString
& filename
, wxRichTextFileType type
)
6017 wxRichTextFileHandler
* handler
= FindHandlerFilenameOrType(filename
, type
);
6020 handler
->SetFlags(GetHandlerFlags());
6021 return handler
->SaveFile(this, filename
);
6027 /// Load from a stream
6028 bool wxRichTextBuffer::LoadFile(wxInputStream
& stream
, wxRichTextFileType type
)
6030 wxRichTextFileHandler
* handler
= FindHandler(type
);
6033 SetDefaultStyle(wxTextAttr());
6034 handler
->SetFlags(GetHandlerFlags());
6035 bool success
= handler
->LoadFile(this, stream
);
6036 Invalidate(wxRICHTEXT_ALL
);
6043 /// Save to a stream
6044 bool wxRichTextBuffer::SaveFile(wxOutputStream
& stream
, wxRichTextFileType type
)
6046 wxRichTextFileHandler
* handler
= FindHandler(type
);
6049 handler
->SetFlags(GetHandlerFlags());
6050 return handler
->SaveFile(this, stream
);
6056 /// Copy the range to the clipboard
6057 bool wxRichTextBuffer::CopyToClipboard(const wxRichTextRange
& range
)
6059 bool success
= false;
6060 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
6062 if (!wxTheClipboard
->IsOpened() && wxTheClipboard
->Open())
6064 wxTheClipboard
->Clear();
6066 // Add composite object
6068 wxDataObjectComposite
* compositeObject
= new wxDataObjectComposite();
6071 wxString text
= GetTextForRange(range
);
6074 text
= wxTextFile::Translate(text
, wxTextFileType_Dos
);
6077 compositeObject
->Add(new wxTextDataObject(text
), false /* not preferred */);
6080 // Add rich text buffer data object. This needs the XML handler to be present.
6082 if (FindHandler(wxRICHTEXT_TYPE_XML
))
6084 wxRichTextBuffer
* richTextBuf
= new wxRichTextBuffer
;
6085 CopyFragment(range
, *richTextBuf
);
6087 compositeObject
->Add(new wxRichTextBufferDataObject(richTextBuf
), true /* preferred */);
6090 if (wxTheClipboard
->SetData(compositeObject
))
6093 wxTheClipboard
->Close();
6102 /// Paste the clipboard content to the buffer
6103 bool wxRichTextBuffer::PasteFromClipboard(long position
)
6105 bool success
= false;
6106 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
6107 if (CanPasteFromClipboard())
6109 if (wxTheClipboard
->Open())
6111 if (wxTheClipboard
->IsSupported(wxDataFormat(wxRichTextBufferDataObject::GetRichTextBufferFormatId())))
6113 wxRichTextBufferDataObject data
;
6114 wxTheClipboard
->GetData(data
);
6115 wxRichTextBuffer
* richTextBuffer
= data
.GetRichTextBuffer();
6118 InsertParagraphsWithUndo(position
+1, *richTextBuffer
, GetRichTextCtrl(), 0);
6119 if (GetRichTextCtrl())
6120 GetRichTextCtrl()->ShowPosition(position
+ richTextBuffer
->GetRange().GetEnd());
6121 delete richTextBuffer
;
6124 else if (wxTheClipboard
->IsSupported(wxDF_TEXT
) || wxTheClipboard
->IsSupported(wxDF_UNICODETEXT
))
6126 wxTextDataObject data
;
6127 wxTheClipboard
->GetData(data
);
6128 wxString
text(data
.GetText());
6131 text2
.Alloc(text
.Length()+1);
6133 for (i
= 0; i
< text
.Length(); i
++)
6135 wxChar ch
= text
[i
];
6136 if (ch
!= wxT('\r'))
6140 wxString text2
= text
;
6142 InsertTextWithUndo(position
+1, text2
, GetRichTextCtrl(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE
);
6144 if (GetRichTextCtrl())
6145 GetRichTextCtrl()->ShowPosition(position
+ text2
.Length());
6149 else if (wxTheClipboard
->IsSupported(wxDF_BITMAP
))
6151 wxBitmapDataObject data
;
6152 wxTheClipboard
->GetData(data
);
6153 wxBitmap
bitmap(data
.GetBitmap());
6154 wxImage
image(bitmap
.ConvertToImage());
6156 wxRichTextAction
* action
= new wxRichTextAction(NULL
, _("Insert Image"), wxRICHTEXT_INSERT
, this, GetRichTextCtrl(), false);
6158 action
->GetNewParagraphs().AddImage(image
);
6160 if (action
->GetNewParagraphs().GetChildCount() == 1)
6161 action
->GetNewParagraphs().SetPartialParagraph(true);
6163 action
->SetPosition(position
+1);
6165 // Set the range we'll need to delete in Undo
6166 action
->SetRange(wxRichTextRange(position
+1, position
+1));
6168 SubmitAction(action
);
6172 wxTheClipboard
->Close();
6176 wxUnusedVar(position
);
6181 /// Can we paste from the clipboard?
6182 bool wxRichTextBuffer::CanPasteFromClipboard() const
6184 bool canPaste
= false;
6185 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
6186 if (!wxTheClipboard
->IsOpened() && wxTheClipboard
->Open())
6188 if (wxTheClipboard
->IsSupported(wxDF_TEXT
) || wxTheClipboard
->IsSupported(wxDF_UNICODETEXT
) ||
6189 wxTheClipboard
->IsSupported(wxDataFormat(wxRichTextBufferDataObject::GetRichTextBufferFormatId())) ||
6190 wxTheClipboard
->IsSupported(wxDF_BITMAP
))
6194 wxTheClipboard
->Close();
6200 /// Dumps contents of buffer for debugging purposes
6201 void wxRichTextBuffer::Dump()
6205 wxStringOutputStream
stream(& text
);
6206 wxTextOutputStream
textStream(stream
);
6213 /// Add an event handler
6214 bool wxRichTextBuffer::AddEventHandler(wxEvtHandler
* handler
)
6216 m_eventHandlers
.Append(handler
);
6220 /// Remove an event handler
6221 bool wxRichTextBuffer::RemoveEventHandler(wxEvtHandler
* handler
, bool deleteHandler
)
6223 wxList::compatibility_iterator node
= m_eventHandlers
.Find(handler
);
6226 m_eventHandlers
.Erase(node
);
6236 /// Clear event handlers
6237 void wxRichTextBuffer::ClearEventHandlers()
6239 m_eventHandlers
.Clear();
6242 /// Send event to event handlers. If sendToAll is true, will send to all event handlers,
6243 /// otherwise will stop at the first successful one.
6244 bool wxRichTextBuffer::SendEvent(wxEvent
& event
, bool sendToAll
)
6246 bool success
= false;
6247 for (wxList::compatibility_iterator node
= m_eventHandlers
.GetFirst(); node
; node
= node
->GetNext())
6249 wxEvtHandler
* handler
= (wxEvtHandler
*) node
->GetData();
6250 if (handler
->ProcessEvent(event
))
6260 /// Set style sheet and notify of the change
6261 bool wxRichTextBuffer::SetStyleSheetAndNotify(wxRichTextStyleSheet
* sheet
)
6263 wxRichTextStyleSheet
* oldSheet
= GetStyleSheet();
6265 wxWindowID id
= wxID_ANY
;
6266 if (GetRichTextCtrl())
6267 id
= GetRichTextCtrl()->GetId();
6269 wxRichTextEvent
event(wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING
, id
);
6270 event
.SetEventObject(GetRichTextCtrl());
6271 event
.SetOldStyleSheet(oldSheet
);
6272 event
.SetNewStyleSheet(sheet
);
6275 if (SendEvent(event
) && !event
.IsAllowed())
6277 if (sheet
!= oldSheet
)
6283 if (oldSheet
&& oldSheet
!= sheet
)
6286 SetStyleSheet(sheet
);
6288 event
.SetEventType(wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED
);
6289 event
.SetOldStyleSheet(NULL
);
6292 return SendEvent(event
);
6295 /// Set renderer, deleting old one
6296 void wxRichTextBuffer::SetRenderer(wxRichTextRenderer
* renderer
)
6300 sm_renderer
= renderer
;
6303 bool wxRichTextStdRenderer::DrawStandardBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttr
& bulletAttr
, const wxRect
& rect
)
6305 if (bulletAttr
.GetTextColour().Ok())
6307 wxCheckSetPen(dc
, wxPen(bulletAttr
.GetTextColour()));
6308 wxCheckSetBrush(dc
, wxBrush(bulletAttr
.GetTextColour()));
6312 wxCheckSetPen(dc
, *wxBLACK_PEN
);
6313 wxCheckSetBrush(dc
, *wxBLACK_BRUSH
);
6317 if (bulletAttr
.HasFont())
6319 font
= paragraph
->GetBuffer()->GetFontTable().FindFont(bulletAttr
);
6322 font
= (*wxNORMAL_FONT
);
6324 wxCheckSetFont(dc
, font
);
6326 int charHeight
= dc
.GetCharHeight();
6328 int bulletWidth
= (int) (((float) charHeight
) * wxRichTextBuffer::GetBulletProportion());
6329 int bulletHeight
= bulletWidth
;
6333 // Calculate the top position of the character (as opposed to the whole line height)
6334 int y
= rect
.y
+ (rect
.height
- charHeight
);
6336 // Calculate where the bullet should be positioned
6337 y
= y
+ (charHeight
+1)/2 - (bulletHeight
+1)/2;
6339 // The margin between a bullet and text.
6340 int margin
= paragraph
->ConvertTenthsMMToPixels(dc
, wxRichTextBuffer::GetBulletRightMargin());
6342 if (bulletAttr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT
)
6343 x
= rect
.x
+ rect
.width
- bulletWidth
- margin
;
6344 else if (bulletAttr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE
)
6345 x
= x
+ (rect
.width
)/2 - bulletWidth
/2;
6347 if (bulletAttr
.GetBulletName() == wxT("standard/square"))
6349 dc
.DrawRectangle(x
, y
, bulletWidth
, bulletHeight
);
6351 else if (bulletAttr
.GetBulletName() == wxT("standard/diamond"))
6354 pts
[0].x
= x
; pts
[0].y
= y
+ bulletHeight
/2;
6355 pts
[1].x
= x
+ bulletWidth
/2; pts
[1].y
= y
;
6356 pts
[2].x
= x
+ bulletWidth
; pts
[2].y
= y
+ bulletHeight
/2;
6357 pts
[3].x
= x
+ bulletWidth
/2; pts
[3].y
= y
+ bulletHeight
;
6359 dc
.DrawPolygon(4, pts
);
6361 else if (bulletAttr
.GetBulletName() == wxT("standard/triangle"))
6364 pts
[0].x
= x
; pts
[0].y
= y
;
6365 pts
[1].x
= x
+ bulletWidth
; pts
[1].y
= y
+ bulletHeight
/2;
6366 pts
[2].x
= x
; pts
[2].y
= y
+ bulletHeight
;
6368 dc
.DrawPolygon(3, pts
);
6370 else // "standard/circle", and catch-all
6372 dc
.DrawEllipse(x
, y
, bulletWidth
, bulletHeight
);
6378 bool wxRichTextStdRenderer::DrawTextBullet(wxRichTextParagraph
* paragraph
, wxDC
& dc
, const wxTextAttr
& attr
, const wxRect
& rect
, const wxString
& text
)
6383 if ((attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_SYMBOL
) && !attr
.GetBulletFont().IsEmpty() && attr
.HasFont())
6385 wxTextAttr fontAttr
;
6386 fontAttr
.SetFontSize(attr
.GetFontSize());
6387 fontAttr
.SetFontStyle(attr
.GetFontStyle());
6388 fontAttr
.SetFontWeight(attr
.GetFontWeight());
6389 fontAttr
.SetFontUnderlined(attr
.GetFontUnderlined());
6390 fontAttr
.SetFontFaceName(attr
.GetBulletFont());
6391 font
= paragraph
->GetBuffer()->GetFontTable().FindFont(fontAttr
);
6393 else if (attr
.HasFont())
6394 font
= paragraph
->GetBuffer()->GetFontTable().FindFont(attr
);
6396 font
= (*wxNORMAL_FONT
);
6398 wxCheckSetFont(dc
, font
);
6400 if (attr
.GetTextColour().Ok())
6401 dc
.SetTextForeground(attr
.GetTextColour());
6403 dc
.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT
);
6405 int charHeight
= dc
.GetCharHeight();
6407 dc
.GetTextExtent(text
, & tw
, & th
);
6411 // Calculate the top position of the character (as opposed to the whole line height)
6412 int y
= rect
.y
+ (rect
.height
- charHeight
);
6414 // The margin between a bullet and text.
6415 int margin
= paragraph
->ConvertTenthsMMToPixels(dc
, wxRichTextBuffer::GetBulletRightMargin());
6417 if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT
)
6418 x
= (rect
.x
+ rect
.width
) - tw
- margin
;
6419 else if (attr
.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE
)
6420 x
= x
+ (rect
.width
)/2 - tw
/2;
6422 dc
.DrawText(text
, x
, y
);
6430 bool wxRichTextStdRenderer::DrawBitmapBullet(wxRichTextParagraph
* WXUNUSED(paragraph
), wxDC
& WXUNUSED(dc
), const wxTextAttr
& WXUNUSED(attr
), const wxRect
& WXUNUSED(rect
))
6432 // Currently unimplemented. The intention is to store bitmaps by name in a media store associated
6433 // with the buffer. The store will allow retrieval from memory, disk or other means.
6437 /// Enumerate the standard bullet names currently supported
6438 bool wxRichTextStdRenderer::EnumerateStandardBulletNames(wxArrayString
& bulletNames
)
6440 bulletNames
.Add(wxT("standard/circle"));
6441 bulletNames
.Add(wxT("standard/square"));
6442 bulletNames
.Add(wxT("standard/diamond"));
6443 bulletNames
.Add(wxT("standard/triangle"));
6449 * Module to initialise and clean up handlers
6452 class wxRichTextModule
: public wxModule
6454 DECLARE_DYNAMIC_CLASS(wxRichTextModule
)
6456 wxRichTextModule() {}
6459 wxRichTextBuffer::SetRenderer(new wxRichTextStdRenderer
);
6460 wxRichTextBuffer::InitStandardHandlers();
6461 wxRichTextParagraph::InitDefaultTabs();
6466 wxRichTextBuffer::CleanUpHandlers();
6467 wxRichTextDecimalToRoman(-1);
6468 wxRichTextParagraph::ClearDefaultTabs();
6469 wxRichTextCtrl::ClearAvailableFontNames();
6470 wxRichTextBuffer::SetRenderer(NULL
);
6474 IMPLEMENT_DYNAMIC_CLASS(wxRichTextModule
, wxModule
)
6477 // If the richtext lib is dynamically loaded after the app has already started
6478 // (such as from wxPython) then the built-in module system will not init this
6479 // module. Provide this function to do it manually.
6480 void wxRichTextModuleInit()
6482 wxModule
* module = new wxRichTextModule
;
6484 wxModule::RegisterModule(module);
6489 * Commands for undo/redo
6493 wxRichTextCommand::wxRichTextCommand(const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
6494 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
): wxCommand(true, name
)
6496 /* wxRichTextAction* action = */ new wxRichTextAction(this, name
, id
, buffer
, ctrl
, ignoreFirstTime
);
6499 wxRichTextCommand::wxRichTextCommand(const wxString
& name
): wxCommand(true, name
)
6503 wxRichTextCommand::~wxRichTextCommand()
6508 void wxRichTextCommand::AddAction(wxRichTextAction
* action
)
6510 if (!m_actions
.Member(action
))
6511 m_actions
.Append(action
);
6514 bool wxRichTextCommand::Do()
6516 for (wxList::compatibility_iterator node
= m_actions
.GetFirst(); node
; node
= node
->GetNext())
6518 wxRichTextAction
* action
= (wxRichTextAction
*) node
->GetData();
6525 bool wxRichTextCommand::Undo()
6527 for (wxList::compatibility_iterator node
= m_actions
.GetLast(); node
; node
= node
->GetPrevious())
6529 wxRichTextAction
* action
= (wxRichTextAction
*) node
->GetData();
6536 void wxRichTextCommand::ClearActions()
6538 WX_CLEAR_LIST(wxList
, m_actions
);
6546 wxRichTextAction::wxRichTextAction(wxRichTextCommand
* cmd
, const wxString
& name
, wxRichTextCommandId id
, wxRichTextBuffer
* buffer
,
6547 wxRichTextCtrl
* ctrl
, bool ignoreFirstTime
)
6550 m_ignoreThis
= ignoreFirstTime
;
6555 m_newParagraphs
.SetDefaultStyle(buffer
->GetDefaultStyle());
6556 m_newParagraphs
.SetBasicStyle(buffer
->GetBasicStyle());
6558 cmd
->AddAction(this);
6561 wxRichTextAction::~wxRichTextAction()
6565 void wxRichTextAction::CalculateRefreshOptimizations(wxArrayInt
& optimizationLineCharPositions
, wxArrayInt
& optimizationLineYPositions
)
6567 // Store a list of line start character and y positions so we can figure out which area
6568 // we need to refresh
6570 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6571 // NOTE: we're assuming that the buffer is laid out correctly at this point.
6572 // If we had several actions, which only invalidate and leave layout until the
6573 // paint handler is called, then this might not be true. So we may need to switch
6574 // optimisation on only when we're simply adding text and not simultaneously
6575 // deleting a selection, for example. Or, we make sure the buffer is laid out correctly
6576 // first, but of course this means we'll be doing it twice.
6577 if (!m_buffer
->GetDirty() && m_ctrl
) // can only do optimisation if the buffer is already laid out correctly
6579 wxSize clientSize
= m_ctrl
->GetClientSize();
6580 wxPoint firstVisiblePt
= m_ctrl
->GetFirstVisiblePoint();
6581 int lastY
= firstVisiblePt
.y
+ clientSize
.y
;
6583 wxRichTextParagraph
* para
= m_buffer
->GetParagraphAtPosition(GetRange().GetStart());
6584 wxRichTextObjectList::compatibility_iterator node
= m_buffer
->GetChildren().Find(para
);
6587 wxRichTextParagraph
* child
= (wxRichTextParagraph
*) node
->GetData();
6588 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
6591 wxRichTextLine
* line
= node2
->GetData();
6592 wxPoint pt
= line
->GetAbsolutePosition();
6593 wxRichTextRange range
= line
->GetAbsoluteRange();
6597 node2
= wxRichTextLineList::compatibility_iterator();
6598 node
= wxRichTextObjectList::compatibility_iterator();
6600 else if (range
.GetStart() > GetPosition() && pt
.y
>= firstVisiblePt
.y
)
6602 optimizationLineCharPositions
.Add(range
.GetStart());
6603 optimizationLineYPositions
.Add(pt
.y
);
6607 node2
= node2
->GetNext();
6611 node
= node
->GetNext();
6617 bool wxRichTextAction::Do()
6619 m_buffer
->Modify(true);
6623 case wxRICHTEXT_INSERT
:
6625 // Store a list of line start character and y positions so we can figure out which area
6626 // we need to refresh
6627 wxArrayInt optimizationLineCharPositions
;
6628 wxArrayInt optimizationLineYPositions
;
6630 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6631 CalculateRefreshOptimizations(optimizationLineCharPositions
, optimizationLineYPositions
);
6634 m_buffer
->InsertFragment(GetRange().GetStart(), m_newParagraphs
);
6635 m_buffer
->UpdateRanges();
6636 m_buffer
->Invalidate(wxRichTextRange(wxMax(0, GetRange().GetStart()-1), GetRange().GetEnd()));
6638 long newCaretPosition
= GetPosition() + m_newParagraphs
.GetRange().GetLength();
6640 // Character position to caret position
6641 newCaretPosition
--;
6643 // Don't take into account the last newline
6644 if (m_newParagraphs
.GetPartialParagraph())
6645 newCaretPosition
--;
6647 if (m_newParagraphs
.GetChildren().GetCount() > 1)
6649 wxRichTextObject
* p
= (wxRichTextObject
*) m_newParagraphs
.GetChildren().GetLast()->GetData();
6650 if (p
->GetRange().GetLength() == 1)
6651 newCaretPosition
--;
6654 newCaretPosition
= wxMin(newCaretPosition
, (m_buffer
->GetRange().GetEnd()-1));
6656 UpdateAppearance(newCaretPosition
, true /* send update event */, & optimizationLineCharPositions
, & optimizationLineYPositions
, true /* do */);
6658 wxRichTextEvent
cmdEvent(
6659 wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED
,
6660 m_ctrl
? m_ctrl
->GetId() : -1);
6661 cmdEvent
.SetEventObject(m_ctrl
? (wxObject
*) m_ctrl
: (wxObject
*) m_buffer
);
6662 cmdEvent
.SetRange(GetRange());
6663 cmdEvent
.SetPosition(GetRange().GetStart());
6665 m_buffer
->SendEvent(cmdEvent
);
6669 case wxRICHTEXT_DELETE
:
6671 wxArrayInt optimizationLineCharPositions
;
6672 wxArrayInt optimizationLineYPositions
;
6674 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6675 CalculateRefreshOptimizations(optimizationLineCharPositions
, optimizationLineYPositions
);
6678 m_buffer
->DeleteRange(GetRange());
6679 m_buffer
->UpdateRanges();
6680 m_buffer
->Invalidate(wxRichTextRange(GetRange().GetStart(), GetRange().GetStart()));
6682 long caretPos
= GetRange().GetStart()-1;
6683 if (caretPos
>= m_buffer
->GetRange().GetEnd())
6686 UpdateAppearance(caretPos
, true /* send update event */, & optimizationLineCharPositions
, & optimizationLineYPositions
, true /* do */);
6688 wxRichTextEvent
cmdEvent(
6689 wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED
,
6690 m_ctrl
? m_ctrl
->GetId() : -1);
6691 cmdEvent
.SetEventObject(m_ctrl
? (wxObject
*) m_ctrl
: (wxObject
*) m_buffer
);
6692 cmdEvent
.SetRange(GetRange());
6693 cmdEvent
.SetPosition(GetRange().GetStart());
6695 m_buffer
->SendEvent(cmdEvent
);
6699 case wxRICHTEXT_CHANGE_STYLE
:
6701 ApplyParagraphs(GetNewParagraphs());
6702 m_buffer
->Invalidate(GetRange());
6704 UpdateAppearance(GetPosition());
6706 wxRichTextEvent
cmdEvent(
6707 wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED
,
6708 m_ctrl
? m_ctrl
->GetId() : -1);
6709 cmdEvent
.SetEventObject(m_ctrl
? (wxObject
*) m_ctrl
: (wxObject
*) m_buffer
);
6710 cmdEvent
.SetRange(GetRange());
6711 cmdEvent
.SetPosition(GetRange().GetStart());
6713 m_buffer
->SendEvent(cmdEvent
);
6724 bool wxRichTextAction::Undo()
6726 m_buffer
->Modify(true);
6730 case wxRICHTEXT_INSERT
:
6732 wxArrayInt optimizationLineCharPositions
;
6733 wxArrayInt optimizationLineYPositions
;
6735 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6736 CalculateRefreshOptimizations(optimizationLineCharPositions
, optimizationLineYPositions
);
6739 m_buffer
->DeleteRange(GetRange());
6740 m_buffer
->UpdateRanges();
6741 m_buffer
->Invalidate(wxRichTextRange(GetRange().GetStart(), GetRange().GetStart()));
6743 long newCaretPosition
= GetPosition() - 1;
6745 UpdateAppearance(newCaretPosition
, true, /* send update event */ & optimizationLineCharPositions
, & optimizationLineYPositions
, false /* undo */);
6747 wxRichTextEvent
cmdEvent(
6748 wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED
,
6749 m_ctrl
? m_ctrl
->GetId() : -1);
6750 cmdEvent
.SetEventObject(m_ctrl
? (wxObject
*) m_ctrl
: (wxObject
*) m_buffer
);
6751 cmdEvent
.SetRange(GetRange());
6752 cmdEvent
.SetPosition(GetRange().GetStart());
6754 m_buffer
->SendEvent(cmdEvent
);
6758 case wxRICHTEXT_DELETE
:
6760 wxArrayInt optimizationLineCharPositions
;
6761 wxArrayInt optimizationLineYPositions
;
6763 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6764 CalculateRefreshOptimizations(optimizationLineCharPositions
, optimizationLineYPositions
);
6767 m_buffer
->InsertFragment(GetRange().GetStart(), m_oldParagraphs
);
6768 m_buffer
->UpdateRanges();
6769 m_buffer
->Invalidate(GetRange());
6771 UpdateAppearance(GetPosition(), true, /* send update event */ & optimizationLineCharPositions
, & optimizationLineYPositions
, false /* undo */);
6773 wxRichTextEvent
cmdEvent(
6774 wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED
,
6775 m_ctrl
? m_ctrl
->GetId() : -1);
6776 cmdEvent
.SetEventObject(m_ctrl
? (wxObject
*) m_ctrl
: (wxObject
*) m_buffer
);
6777 cmdEvent
.SetRange(GetRange());
6778 cmdEvent
.SetPosition(GetRange().GetStart());
6780 m_buffer
->SendEvent(cmdEvent
);
6784 case wxRICHTEXT_CHANGE_STYLE
:
6786 ApplyParagraphs(GetOldParagraphs());
6787 m_buffer
->Invalidate(GetRange());
6789 UpdateAppearance(GetPosition());
6791 wxRichTextEvent
cmdEvent(
6792 wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED
,
6793 m_ctrl
? m_ctrl
->GetId() : -1);
6794 cmdEvent
.SetEventObject(m_ctrl
? (wxObject
*) m_ctrl
: (wxObject
*) m_buffer
);
6795 cmdEvent
.SetRange(GetRange());
6796 cmdEvent
.SetPosition(GetRange().GetStart());
6798 m_buffer
->SendEvent(cmdEvent
);
6809 /// Update the control appearance
6810 void wxRichTextAction::UpdateAppearance(long caretPosition
, bool sendUpdateEvent
, wxArrayInt
* optimizationLineCharPositions
, wxArrayInt
* optimizationLineYPositions
, bool isDoCmd
)
6814 m_ctrl
->SetCaretPosition(caretPosition
);
6815 if (!m_ctrl
->IsFrozen())
6817 m_ctrl
->LayoutContent();
6819 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6820 // Find refresh rectangle if we are in a position to optimise refresh
6821 if ((m_cmdId
== wxRICHTEXT_INSERT
|| m_cmdId
== wxRICHTEXT_DELETE
) && optimizationLineCharPositions
)
6825 wxSize clientSize
= m_ctrl
->GetClientSize();
6826 wxPoint firstVisiblePt
= m_ctrl
->GetFirstVisiblePoint();
6828 // Start/end positions
6830 int lastY
= firstVisiblePt
.y
+ clientSize
.y
;
6832 bool foundEnd
= false;
6834 // position offset - how many characters were inserted
6835 int positionOffset
= GetRange().GetLength();
6837 // Determine whether this is Do or Undo, and adjust positionOffset accordingly
6838 if ((m_cmdId
== wxRICHTEXT_DELETE
&& isDoCmd
) || (m_cmdId
== wxRICHTEXT_INSERT
&& !isDoCmd
))
6839 positionOffset
= - positionOffset
;
6841 // find the first line which is being drawn at the same position as it was
6842 // before. Since we're talking about a simple insertion, we can assume
6843 // that the rest of the window does not need to be redrawn.
6845 wxRichTextParagraph
* para
= m_buffer
->GetParagraphAtPosition(GetPosition());
6848 // Find line containing GetPosition().
6849 wxRichTextLine
* line
= NULL
;
6850 wxRichTextLineList::compatibility_iterator node2
= para
->GetLines().GetFirst();
6853 wxRichTextLine
* l
= node2
->GetData();
6854 wxRichTextRange range
= l
->GetAbsoluteRange();
6855 if (range
.Contains(GetRange().GetStart()-1))
6860 node2
= node2
->GetNext();
6865 // Step back a couple of lines to where we can be sure of reformatting correctly
6866 wxRichTextLineList::compatibility_iterator lineNode
= para
->GetLines().Find(line
);
6869 lineNode
= lineNode
->GetPrevious();
6872 line
= (wxRichTextLine
*) lineNode
->GetData();
6873 lineNode
= lineNode
->GetPrevious();
6875 line
= (wxRichTextLine
*) lineNode
->GetData();
6879 firstY
= line
->GetAbsolutePosition().y
;
6883 wxRichTextObjectList::compatibility_iterator node
= m_buffer
->GetChildren().Find(para
);
6886 wxRichTextParagraph
* child
= (wxRichTextParagraph
*) node
->GetData();
6887 wxRichTextLineList::compatibility_iterator node2
= child
->GetLines().GetFirst();
6890 wxRichTextLine
* line
= node2
->GetData();
6891 wxPoint pt
= line
->GetAbsolutePosition();
6892 wxRichTextRange range
= line
->GetAbsoluteRange();
6894 // we want to find the first line that is in the same position
6895 // as before. This will mean we're at the end of the changed text.
6897 if (pt
.y
> lastY
) // going past the end of the window, no more info
6899 node2
= wxRichTextLineList::compatibility_iterator();
6900 node
= wxRichTextObjectList::compatibility_iterator();
6902 // Detect last line in the buffer
6903 else if (!node2
->GetNext() && para
->GetRange().Contains(m_buffer
->GetRange().GetEnd()))
6906 lastY
= pt
.y
+ line
->GetSize().y
;
6908 node2
= wxRichTextLineList::compatibility_iterator();
6909 node
= wxRichTextObjectList::compatibility_iterator();
6915 // search for this line being at the same position as before
6916 for (i
= 0; i
< optimizationLineCharPositions
->GetCount(); i
++)
6918 if (((*optimizationLineCharPositions
)[i
] + positionOffset
== range
.GetStart()) &&
6919 ((*optimizationLineYPositions
)[i
] == pt
.y
))
6921 // Stop, we're now the same as we were
6926 node2
= wxRichTextLineList::compatibility_iterator();
6927 node
= wxRichTextObjectList::compatibility_iterator();
6935 node2
= node2
->GetNext();
6939 node
= node
->GetNext();
6942 firstY
= wxMax(firstVisiblePt
.y
, firstY
);
6944 lastY
= firstVisiblePt
.y
+ clientSize
.y
;
6946 // Convert to device coordinates
6947 wxRect
rect(m_ctrl
->GetPhysicalPoint(wxPoint(firstVisiblePt
.x
, firstY
)), wxSize(clientSize
.x
, lastY
- firstY
));
6948 m_ctrl
->RefreshRect(rect
);
6952 m_ctrl
->Refresh(false);
6954 #if wxRICHTEXT_USE_OWN_CARET
6955 m_ctrl
->PositionCaret();
6957 if (sendUpdateEvent
)
6958 wxTextCtrl::SendTextUpdatedEvent(m_ctrl
);
6963 /// Replace the buffer paragraphs with the new ones.
6964 void wxRichTextAction::ApplyParagraphs(const wxRichTextParagraphLayoutBox
& fragment
)
6966 wxRichTextObjectList::compatibility_iterator node
= fragment
.GetChildren().GetFirst();
6969 wxRichTextParagraph
* para
= wxDynamicCast(node
->GetData(), wxRichTextParagraph
);
6970 wxASSERT (para
!= NULL
);
6972 // We'll replace the existing paragraph by finding the paragraph at this position,
6973 // delete its node data, and setting a copy as the new node data.
6974 // TODO: make more efficient by simply swapping old and new paragraph objects.
6976 wxRichTextParagraph
* existingPara
= m_buffer
->GetParagraphAtPosition(para
->GetRange().GetStart());
6979 wxRichTextObjectList::compatibility_iterator bufferParaNode
= m_buffer
->GetChildren().Find(existingPara
);
6982 wxRichTextParagraph
* newPara
= new wxRichTextParagraph(*para
);
6983 newPara
->SetParent(m_buffer
);
6985 bufferParaNode
->SetData(newPara
);
6987 delete existingPara
;
6991 node
= node
->GetNext();
6998 * This stores beginning and end positions for a range of data.
7001 /// Limit this range to be within 'range'
7002 bool wxRichTextRange::LimitTo(const wxRichTextRange
& range
)
7004 if (m_start
< range
.m_start
)
7005 m_start
= range
.m_start
;
7007 if (m_end
> range
.m_end
)
7008 m_end
= range
.m_end
;
7014 * wxRichTextImage implementation
7015 * This object represents an image.
7018 IMPLEMENT_DYNAMIC_CLASS(wxRichTextImage
, wxRichTextObject
)
7020 wxRichTextImage::wxRichTextImage(const wxImage
& image
, wxRichTextObject
* parent
, wxTextAttr
* charStyle
):
7021 wxRichTextObject(parent
)
7025 SetAttributes(*charStyle
);
7028 wxRichTextImage::wxRichTextImage(const wxRichTextImageBlock
& imageBlock
, wxRichTextObject
* parent
, wxTextAttr
* charStyle
):
7029 wxRichTextObject(parent
)
7031 m_imageBlock
= imageBlock
;
7032 m_imageBlock
.Load(m_image
);
7034 SetAttributes(*charStyle
);
7037 /// Load wxImage from the block
7038 bool wxRichTextImage::LoadFromBlock()
7040 m_imageBlock
.Load(m_image
);
7041 return m_imageBlock
.Ok();
7044 /// Make block from the wxImage
7045 bool wxRichTextImage::MakeBlock()
7047 if (m_imageBlock
.GetImageType() == wxBITMAP_TYPE_ANY
|| m_imageBlock
.GetImageType() == -1)
7048 m_imageBlock
.SetImageType(wxBITMAP_TYPE_PNG
);
7050 m_imageBlock
.MakeImageBlock(m_image
, m_imageBlock
.GetImageType());
7051 return m_imageBlock
.Ok();
7056 bool wxRichTextImage::Draw(wxDC
& dc
, const wxRichTextRange
& range
, const wxRichTextRange
& selectionRange
, const wxRect
& rect
, int WXUNUSED(descent
), int WXUNUSED(style
))
7058 if (!m_image
.Ok() && m_imageBlock
.Ok())
7064 if (m_image
.Ok() && !m_bitmap
.Ok())
7065 m_bitmap
= wxBitmap(m_image
);
7067 int y
= rect
.y
+ (rect
.height
- m_image
.GetHeight());
7070 dc
.DrawBitmap(m_bitmap
, rect
.x
, y
, true);
7072 if (selectionRange
.Contains(range
.GetStart()))
7074 wxCheckSetBrush(dc
, *wxBLACK_BRUSH
);
7075 wxCheckSetPen(dc
, *wxBLACK_PEN
);
7076 dc
.SetLogicalFunction(wxINVERT
);
7077 dc
.DrawRectangle(rect
);
7078 dc
.SetLogicalFunction(wxCOPY
);
7084 /// Lay the item out
7085 bool wxRichTextImage::Layout(wxDC
& WXUNUSED(dc
), const wxRect
& rect
, int WXUNUSED(style
))
7092 SetCachedSize(wxSize(m_image
.GetWidth(), m_image
.GetHeight()));
7093 SetPosition(rect
.GetPosition());
7099 /// Get/set the object size for the given range. Returns false if the range
7100 /// is invalid for this object.
7101 bool wxRichTextImage::GetRangeSize(const wxRichTextRange
& range
, wxSize
& size
, int& WXUNUSED(descent
), wxDC
& WXUNUSED(dc
), int WXUNUSED(flags
), wxPoint
WXUNUSED(position
), wxArrayInt
* partialExtents
) const
7103 if (!range
.IsWithin(GetRange()))
7107 ((wxRichTextImage
*) this)->LoadFromBlock();
7112 partialExtents
->Add(m_image
.GetWidth());
7114 partialExtents
->Add(0);
7120 size
.x
= m_image
.GetWidth();
7121 size
.y
= m_image
.GetHeight();
7127 void wxRichTextImage::Copy(const wxRichTextImage
& obj
)
7129 wxRichTextObject::Copy(obj
);
7131 m_image
= obj
.m_image
;
7132 m_imageBlock
= obj
.m_imageBlock
;
7140 /// Compare two attribute objects
7141 bool wxTextAttrEq(const wxTextAttr
& attr1
, const wxTextAttr
& attr2
)
7143 return (attr1
== attr2
);
7146 // Partial equality test taking flags into account
7147 bool wxTextAttrEqPartial(const wxTextAttr
& attr1
, const wxTextAttr
& attr2
, int flags
)
7149 return attr1
.EqPartial(attr2
, flags
);
7153 bool wxRichTextTabsEq(const wxArrayInt
& tabs1
, const wxArrayInt
& tabs2
)
7155 if (tabs1
.GetCount() != tabs2
.GetCount())
7159 for (i
= 0; i
< tabs1
.GetCount(); i
++)
7161 if (tabs1
[i
] != tabs2
[i
])
7167 bool wxRichTextApplyStyle(wxTextAttr
& destStyle
, const wxTextAttr
& style
, wxTextAttr
* compareWith
)
7169 return destStyle
.Apply(style
, compareWith
);
7172 // Remove attributes
7173 bool wxRichTextRemoveStyle(wxTextAttr
& destStyle
, const wxTextAttr
& style
)
7175 return wxTextAttr::RemoveStyle(destStyle
, style
);
7178 /// Combine two bitlists, specifying the bits of interest with separate flags.
7179 bool wxRichTextCombineBitlists(int& valueA
, int valueB
, int& flagsA
, int flagsB
)
7181 return wxTextAttr::CombineBitlists(valueA
, valueB
, flagsA
, flagsB
);
7184 /// Compare two bitlists
7185 bool wxRichTextBitlistsEqPartial(int valueA
, int valueB
, int flags
)
7187 return wxTextAttr::BitlistsEqPartial(valueA
, valueB
, flags
);
7190 /// Split into paragraph and character styles
7191 bool wxRichTextSplitParaCharStyles(const wxTextAttr
& style
, wxTextAttr
& parStyle
, wxTextAttr
& charStyle
)
7193 return wxTextAttr::SplitParaCharStyles(style
, parStyle
, charStyle
);
7196 /// Convert a decimal to Roman numerals
7197 wxString
wxRichTextDecimalToRoman(long n
)
7199 static wxArrayInt decimalNumbers
;
7200 static wxArrayString romanNumbers
;
7205 decimalNumbers
.Clear();
7206 romanNumbers
.Clear();
7207 return wxEmptyString
;
7210 if (decimalNumbers
.GetCount() == 0)
7212 #define wxRichTextAddDecRom(n, r) decimalNumbers.Add(n); romanNumbers.Add(r);
7214 wxRichTextAddDecRom(1000, wxT("M"));
7215 wxRichTextAddDecRom(900, wxT("CM"));
7216 wxRichTextAddDecRom(500, wxT("D"));
7217 wxRichTextAddDecRom(400, wxT("CD"));
7218 wxRichTextAddDecRom(100, wxT("C"));
7219 wxRichTextAddDecRom(90, wxT("XC"));
7220 wxRichTextAddDecRom(50, wxT("L"));
7221 wxRichTextAddDecRom(40, wxT("XL"));
7222 wxRichTextAddDecRom(10, wxT("X"));
7223 wxRichTextAddDecRom(9, wxT("IX"));
7224 wxRichTextAddDecRom(5, wxT("V"));
7225 wxRichTextAddDecRom(4, wxT("IV"));
7226 wxRichTextAddDecRom(1, wxT("I"));
7232 while (n
> 0 && i
< 13)
7234 if (n
>= decimalNumbers
[i
])
7236 n
-= decimalNumbers
[i
];
7237 roman
+= romanNumbers
[i
];
7244 if (roman
.IsEmpty())
7250 * wxRichTextFileHandler
7251 * Base class for file handlers
7254 IMPLEMENT_CLASS(wxRichTextFileHandler
, wxObject
)
7256 #if wxUSE_FFILE && wxUSE_STREAMS
7257 bool wxRichTextFileHandler::LoadFile(wxRichTextBuffer
*buffer
, const wxString
& filename
)
7259 wxFFileInputStream
stream(filename
);
7261 return LoadFile(buffer
, stream
);
7266 bool wxRichTextFileHandler::SaveFile(wxRichTextBuffer
*buffer
, const wxString
& filename
)
7268 wxFFileOutputStream
stream(filename
);
7270 return SaveFile(buffer
, stream
);
7274 #endif // wxUSE_FFILE && wxUSE_STREAMS
7276 /// Can we handle this filename (if using files)? By default, checks the extension.
7277 bool wxRichTextFileHandler::CanHandle(const wxString
& filename
) const
7279 wxString path
, file
, ext
;
7280 wxSplitPath(filename
, & path
, & file
, & ext
);
7282 return (ext
.Lower() == GetExtension());
7286 * wxRichTextTextHandler
7287 * Plain text handler
7290 IMPLEMENT_CLASS(wxRichTextPlainTextHandler
, wxRichTextFileHandler
)
7293 bool wxRichTextPlainTextHandler::DoLoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
)
7301 while (!stream
.Eof())
7303 int ch
= stream
.GetC();
7307 if (ch
== 10 && lastCh
!= 13)
7310 if (ch
> 0 && ch
!= 10)
7317 buffer
->ResetAndClearCommands();
7319 buffer
->AddParagraphs(str
);
7320 buffer
->UpdateRanges();
7325 bool wxRichTextPlainTextHandler::DoSaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
)
7330 wxString text
= buffer
->GetText();
7332 wxString newLine
= wxRichTextLineBreakChar
;
7333 text
.Replace(newLine
, wxT("\n"));
7335 wxCharBuffer buf
= text
.ToAscii();
7337 stream
.Write((const char*) buf
, text
.length());
7340 #endif // wxUSE_STREAMS
7343 * Stores information about an image, in binary in-memory form
7346 wxRichTextImageBlock::wxRichTextImageBlock()
7351 wxRichTextImageBlock::wxRichTextImageBlock(const wxRichTextImageBlock
& block
):wxObject()
7357 wxRichTextImageBlock::~wxRichTextImageBlock()
7366 void wxRichTextImageBlock::Init()
7370 m_imageType
= wxBITMAP_TYPE_INVALID
;
7373 void wxRichTextImageBlock::Clear()
7378 m_imageType
= wxBITMAP_TYPE_INVALID
;
7382 // Load the original image into a memory block.
7383 // If the image is not a JPEG, we must convert it into a JPEG
7384 // to conserve space.
7385 // If it's not a JPEG we can make use of 'image', already scaled, so we don't have to
7386 // load the image a 2nd time.
7388 bool wxRichTextImageBlock::MakeImageBlock(const wxString
& filename
, wxBitmapType imageType
,
7389 wxImage
& image
, bool convertToJPEG
)
7391 m_imageType
= imageType
;
7393 wxString
filenameToRead(filename
);
7394 bool removeFile
= false;
7396 if (imageType
== -1)
7397 return false; // Could not determine image type
7399 if ((imageType
!= wxBITMAP_TYPE_JPEG
) && convertToJPEG
)
7402 bool success
= wxGetTempFileName(_("image"), tempFile
) ;
7406 wxUnusedVar(success
);
7408 image
.SaveFile(tempFile
, wxBITMAP_TYPE_JPEG
);
7409 filenameToRead
= tempFile
;
7412 m_imageType
= wxBITMAP_TYPE_JPEG
;
7415 if (!file
.Open(filenameToRead
))
7418 m_dataSize
= (size_t) file
.Length();
7423 m_data
= ReadBlock(filenameToRead
, m_dataSize
);
7426 wxRemoveFile(filenameToRead
);
7428 return (m_data
!= NULL
);
7431 // Make an image block from the wxImage in the given
7433 bool wxRichTextImageBlock::MakeImageBlock(wxImage
& image
, wxBitmapType imageType
, int quality
)
7435 m_imageType
= imageType
;
7436 image
.SetOption(wxT("quality"), quality
);
7438 if (imageType
== -1)
7439 return false; // Could not determine image type
7442 bool success
= wxGetTempFileName(_("image"), tempFile
) ;
7445 wxUnusedVar(success
);
7447 if (!image
.SaveFile(tempFile
, m_imageType
))
7449 if (wxFileExists(tempFile
))
7450 wxRemoveFile(tempFile
);
7455 if (!file
.Open(tempFile
))
7458 m_dataSize
= (size_t) file
.Length();
7463 m_data
= ReadBlock(tempFile
, m_dataSize
);
7465 wxRemoveFile(tempFile
);
7467 return (m_data
!= NULL
);
7472 bool wxRichTextImageBlock::Write(const wxString
& filename
)
7474 return WriteBlock(filename
, m_data
, m_dataSize
);
7477 void wxRichTextImageBlock::Copy(const wxRichTextImageBlock
& block
)
7479 m_imageType
= block
.m_imageType
;
7485 m_dataSize
= block
.m_dataSize
;
7486 if (m_dataSize
== 0)
7489 m_data
= new unsigned char[m_dataSize
];
7491 for (i
= 0; i
< m_dataSize
; i
++)
7492 m_data
[i
] = block
.m_data
[i
];
7496 void wxRichTextImageBlock::operator=(const wxRichTextImageBlock
& block
)
7501 // Load a wxImage from the block
7502 bool wxRichTextImageBlock::Load(wxImage
& image
)
7507 // Read in the image.
7509 wxMemoryInputStream
mstream(m_data
, m_dataSize
);
7510 bool success
= image
.LoadFile(mstream
, GetImageType());
7513 bool success
= wxGetTempFileName(_("image"), tempFile
) ;
7516 if (!WriteBlock(tempFile
, m_data
, m_dataSize
))
7520 success
= image
.LoadFile(tempFile
, GetImageType());
7521 wxRemoveFile(tempFile
);
7527 // Write data in hex to a stream
7528 bool wxRichTextImageBlock::WriteHex(wxOutputStream
& stream
)
7530 const int bufSize
= 512;
7531 char buf
[bufSize
+1];
7533 int left
= m_dataSize
;
7538 if (left
*2 > bufSize
)
7540 n
= bufSize
; left
-= (bufSize
/2);
7544 n
= left
*2; left
= 0;
7548 for (i
= 0; i
< (n
/2); i
++)
7550 wxDecToHex(m_data
[j
], b
, b
+1);
7555 stream
.Write((const char*) buf
, n
);
7560 // Read data in hex from a stream
7561 bool wxRichTextImageBlock::ReadHex(wxInputStream
& stream
, int length
, wxBitmapType imageType
)
7563 int dataSize
= length
/2;
7569 m_data
= new unsigned char[dataSize
];
7571 for (i
= 0; i
< dataSize
; i
++)
7573 str
[0] = (char)stream
.GetC();
7574 str
[1] = (char)stream
.GetC();
7576 m_data
[i
] = (unsigned char)wxHexToDec(str
);
7579 m_dataSize
= dataSize
;
7580 m_imageType
= imageType
;
7585 // Allocate and read from stream as a block of memory
7586 unsigned char* wxRichTextImageBlock::ReadBlock(wxInputStream
& stream
, size_t size
)
7588 unsigned char* block
= new unsigned char[size
];
7592 stream
.Read(block
, size
);
7597 unsigned char* wxRichTextImageBlock::ReadBlock(const wxString
& filename
, size_t size
)
7599 wxFileInputStream
stream(filename
);
7603 return ReadBlock(stream
, size
);
7606 // Write memory block to stream
7607 bool wxRichTextImageBlock::WriteBlock(wxOutputStream
& stream
, unsigned char* block
, size_t size
)
7609 stream
.Write((void*) block
, size
);
7610 return stream
.IsOk();
7614 // Write memory block to file
7615 bool wxRichTextImageBlock::WriteBlock(const wxString
& filename
, unsigned char* block
, size_t size
)
7617 wxFileOutputStream
outStream(filename
);
7618 if (!outStream
.Ok())
7621 return WriteBlock(outStream
, block
, size
);
7624 // Gets the extension for the block's type
7625 wxString
wxRichTextImageBlock::GetExtension() const
7627 wxImageHandler
* handler
= wxImage::FindHandler(GetImageType());
7629 return handler
->GetExtension();
7631 return wxEmptyString
;
7637 * The data object for a wxRichTextBuffer
7640 const wxChar
*wxRichTextBufferDataObject::ms_richTextBufferFormatId
= wxT("wxShape");
7642 wxRichTextBufferDataObject::wxRichTextBufferDataObject(wxRichTextBuffer
* richTextBuffer
)
7644 m_richTextBuffer
= richTextBuffer
;
7646 // this string should uniquely identify our format, but is otherwise
7648 m_formatRichTextBuffer
.SetId(GetRichTextBufferFormatId());
7650 SetFormat(m_formatRichTextBuffer
);
7653 wxRichTextBufferDataObject::~wxRichTextBufferDataObject()
7655 delete m_richTextBuffer
;
7658 // after a call to this function, the richTextBuffer is owned by the caller and it
7659 // is responsible for deleting it!
7660 wxRichTextBuffer
* wxRichTextBufferDataObject::GetRichTextBuffer()
7662 wxRichTextBuffer
* richTextBuffer
= m_richTextBuffer
;
7663 m_richTextBuffer
= NULL
;
7665 return richTextBuffer
;
7668 wxDataFormat
wxRichTextBufferDataObject::GetPreferredFormat(Direction
WXUNUSED(dir
)) const
7670 return m_formatRichTextBuffer
;
7673 size_t wxRichTextBufferDataObject::GetDataSize() const
7675 if (!m_richTextBuffer
)
7681 wxStringOutputStream
stream(& bufXML
);
7682 if (!m_richTextBuffer
->SaveFile(stream
, wxRICHTEXT_TYPE_XML
))
7684 wxLogError(wxT("Could not write the buffer to an XML stream.\nYou may have forgotten to add the XML file handler."));
7690 wxCharBuffer buffer
= bufXML
.mb_str(wxConvUTF8
);
7691 return strlen(buffer
) + 1;
7693 return bufXML
.Length()+1;
7697 bool wxRichTextBufferDataObject::GetDataHere(void *pBuf
) const
7699 if (!pBuf
|| !m_richTextBuffer
)
7705 wxStringOutputStream
stream(& bufXML
);
7706 if (!m_richTextBuffer
->SaveFile(stream
, wxRICHTEXT_TYPE_XML
))
7708 wxLogError(wxT("Could not write the buffer to an XML stream.\nYou may have forgotten to add the XML file handler."));
7714 wxCharBuffer buffer
= bufXML
.mb_str(wxConvUTF8
);
7715 size_t len
= strlen(buffer
);
7716 memcpy((char*) pBuf
, (const char*) buffer
, len
);
7717 ((char*) pBuf
)[len
] = 0;
7719 size_t len
= bufXML
.Length();
7720 memcpy((char*) pBuf
, (const char*) bufXML
.c_str(), len
);
7721 ((char*) pBuf
)[len
] = 0;
7727 bool wxRichTextBufferDataObject::SetData(size_t WXUNUSED(len
), const void *buf
)
7729 delete m_richTextBuffer
;
7730 m_richTextBuffer
= NULL
;
7732 wxString
bufXML((const char*) buf
, wxConvUTF8
);
7734 m_richTextBuffer
= new wxRichTextBuffer
;
7736 wxStringInputStream
stream(bufXML
);
7737 if (!m_richTextBuffer
->LoadFile(stream
, wxRICHTEXT_TYPE_XML
))
7739 wxLogError(wxT("Could not read the buffer from an XML stream.\nYou may have forgotten to add the XML file handler."));
7741 delete m_richTextBuffer
;
7742 m_richTextBuffer
= NULL
;
7754 * wxRichTextFontTable
7755 * Manages quick access to a pool of fonts for rendering rich text
7758 WX_DECLARE_STRING_HASH_MAP_WITH_DECL(wxFont
, wxRichTextFontTableHashMap
, class WXDLLIMPEXP_RICHTEXT
);
7760 class wxRichTextFontTableData
: public wxObjectRefData
7763 wxRichTextFontTableData() {}
7765 wxFont
FindFont(const wxTextAttr
& fontSpec
);
7767 wxRichTextFontTableHashMap m_hashMap
;
7770 wxFont
wxRichTextFontTableData::FindFont(const wxTextAttr
& fontSpec
)
7772 wxString
facename(fontSpec
.GetFontFaceName());
7773 wxString
spec(wxString::Format(wxT("%d-%d-%d-%d-%s-%d"), fontSpec
.GetFontSize(), fontSpec
.GetFontStyle(), fontSpec
.GetFontWeight(), (int) fontSpec
.GetFontUnderlined(), facename
.c_str(), (int) fontSpec
.GetFontEncoding()));
7774 wxRichTextFontTableHashMap::iterator entry
= m_hashMap
.find(spec
);
7776 if ( entry
== m_hashMap
.end() )
7778 wxFont
font(fontSpec
.GetFontSize(), wxDEFAULT
, fontSpec
.GetFontStyle(), fontSpec
.GetFontWeight(), fontSpec
.GetFontUnderlined(), facename
.c_str());
7779 m_hashMap
[spec
] = font
;
7784 return entry
->second
;
7788 IMPLEMENT_DYNAMIC_CLASS(wxRichTextFontTable
, wxObject
)
7790 wxRichTextFontTable::wxRichTextFontTable()
7792 m_refData
= new wxRichTextFontTableData
;
7795 wxRichTextFontTable::wxRichTextFontTable(const wxRichTextFontTable
& table
)
7801 wxRichTextFontTable::~wxRichTextFontTable()
7806 bool wxRichTextFontTable::operator == (const wxRichTextFontTable
& table
) const
7808 return (m_refData
== table
.m_refData
);
7811 void wxRichTextFontTable::operator= (const wxRichTextFontTable
& table
)
7816 wxFont
wxRichTextFontTable::FindFont(const wxTextAttr
& fontSpec
)
7818 wxRichTextFontTableData
* data
= (wxRichTextFontTableData
*) m_refData
;
7820 return data
->FindFont(fontSpec
);
7825 void wxRichTextFontTable::Clear()
7827 wxRichTextFontTableData
* data
= (wxRichTextFontTableData
*) m_refData
;
7829 data
->m_hashMap
.clear();