]> git.saurik.com Git - wxWidgets.git/blob - src/richtext/richtextbuffer.cpp
s/wxSplitPath/wxFileName::SplitPath
[wxWidgets.git] / src / richtext / richtextbuffer.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/richtext/richtextbuffer.cpp
3 // Purpose: Buffer for wxRichTextCtrl
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 2005-09-30
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
14
15 #ifdef __BORLANDC__
16 #pragma hdrstop
17 #endif
18
19 #if wxUSE_RICHTEXT
20
21 #include "wx/richtext/richtextbuffer.h"
22
23 #ifndef WX_PRECOMP
24 #include "wx/dc.h"
25 #include "wx/intl.h"
26 #include "wx/log.h"
27 #include "wx/dataobj.h"
28 #include "wx/module.h"
29 #endif
30
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"
39
40 #include "wx/richtext/richtextctrl.h"
41 #include "wx/richtext/richtextstyles.h"
42
43 #include "wx/listimpl.cpp"
44
45 WX_DEFINE_LIST(wxRichTextObjectList)
46 WX_DEFINE_LIST(wxRichTextLineList)
47
48 // Switch off if the platform doesn't like it for some reason
49 #define wxRICHTEXT_USE_OPTIMIZED_DRAWING 1
50
51 // Use GetPartialTextExtents for platforms that support it natively
52 #define wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS 1
53
54 const wxChar wxRichTextLineBreakChar = (wxChar) 29;
55
56 // Helpers for efficiency
57
58 inline void wxCheckSetFont(wxDC& dc, const wxFont& font)
59 {
60 #if 0
61 const wxFont& font1 = dc.GetFont();
62 if (font1.IsOk() && font.IsOk())
63 {
64 if (font1.GetPointSize() == font.GetPointSize() &&
65 font1.GetFamily() == font.GetFamily() &&
66 font1.GetStyle() == font.GetStyle() &&
67 font1.GetWeight() == font.GetWeight() &&
68 font1.GetUnderlined() == font.GetUnderlined() &&
69 font1.GetFaceName() == font.GetFaceName())
70 return;
71 }
72 #endif
73 dc.SetFont(font);
74 }
75
76 inline void wxCheckSetPen(wxDC& dc, const wxPen& pen)
77 {
78 const wxPen& pen1 = dc.GetPen();
79 if (pen1.IsOk() && pen.IsOk())
80 {
81 if (pen1.GetWidth() == pen.GetWidth() &&
82 pen1.GetStyle() == pen.GetStyle() &&
83 pen1.GetColour() == pen.GetColour())
84 return;
85 }
86 dc.SetPen(pen);
87 }
88
89 inline void wxCheckSetBrush(wxDC& dc, const wxBrush& brush)
90 {
91 const wxBrush& brush1 = dc.GetBrush();
92 if (brush1.IsOk() && brush.IsOk())
93 {
94 if (brush1.GetStyle() == brush.GetStyle() &&
95 brush1.GetColour() == brush.GetColour())
96 return;
97 }
98 dc.SetBrush(brush);
99 }
100
101 /*!
102 * wxRichTextObject
103 * This is the base for drawable objects.
104 */
105
106 IMPLEMENT_CLASS(wxRichTextObject, wxObject)
107
108 wxRichTextObject::wxRichTextObject(wxRichTextObject* parent)
109 {
110 m_dirty = false;
111 m_refCount = 1;
112 m_parent = parent;
113 m_leftMargin = 0;
114 m_rightMargin = 0;
115 m_topMargin = 0;
116 m_bottomMargin = 0;
117 m_descent = 0;
118 }
119
120 wxRichTextObject::~wxRichTextObject()
121 {
122 }
123
124 void wxRichTextObject::Dereference()
125 {
126 m_refCount --;
127 if (m_refCount <= 0)
128 delete this;
129 }
130
131 /// Copy
132 void wxRichTextObject::Copy(const wxRichTextObject& obj)
133 {
134 m_size = obj.m_size;
135 m_pos = obj.m_pos;
136 m_dirty = obj.m_dirty;
137 m_range = obj.m_range;
138 m_attributes = obj.m_attributes;
139 m_descent = obj.m_descent;
140 }
141
142 void wxRichTextObject::SetMargins(int margin)
143 {
144 m_leftMargin = m_rightMargin = m_topMargin = m_bottomMargin = margin;
145 }
146
147 void wxRichTextObject::SetMargins(int leftMargin, int rightMargin, int topMargin, int bottomMargin)
148 {
149 m_leftMargin = leftMargin;
150 m_rightMargin = rightMargin;
151 m_topMargin = topMargin;
152 m_bottomMargin = bottomMargin;
153 }
154
155 // Convert units in tenths of a millimetre to device units
156 int wxRichTextObject::ConvertTenthsMMToPixels(wxDC& dc, int units)
157 {
158 int p = ConvertTenthsMMToPixels(dc.GetPPI().x, units);
159
160 // Unscale
161 wxRichTextBuffer* buffer = GetBuffer();
162 if (buffer)
163 p = (int) ((double)p / buffer->GetScale());
164 return p;
165 }
166
167 // Convert units in tenths of a millimetre to device units
168 int wxRichTextObject::ConvertTenthsMMToPixels(int ppi, int units)
169 {
170 // There are ppi pixels in 254.1 "1/10 mm"
171
172 double pixels = ((double) units * (double)ppi) / 254.1;
173
174 return (int) pixels;
175 }
176
177 /// Dump to output stream for debugging
178 void wxRichTextObject::Dump(wxTextOutputStream& stream)
179 {
180 stream << GetClassInfo()->GetClassName() << wxT("\n");
181 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");
182 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 }
184
185 /// Gets the containing buffer
186 wxRichTextBuffer* wxRichTextObject::GetBuffer() const
187 {
188 const wxRichTextObject* obj = this;
189 while (obj && !obj->IsKindOf(CLASSINFO(wxRichTextBuffer)))
190 obj = obj->GetParent();
191 return wxDynamicCast(obj, wxRichTextBuffer);
192 }
193
194 /*!
195 * wxRichTextCompositeObject
196 * This is the base for drawable objects.
197 */
198
199 IMPLEMENT_CLASS(wxRichTextCompositeObject, wxRichTextObject)
200
201 wxRichTextCompositeObject::wxRichTextCompositeObject(wxRichTextObject* parent):
202 wxRichTextObject(parent)
203 {
204 }
205
206 wxRichTextCompositeObject::~wxRichTextCompositeObject()
207 {
208 DeleteChildren();
209 }
210
211 /// Get the nth child
212 wxRichTextObject* wxRichTextCompositeObject::GetChild(size_t n) const
213 {
214 wxASSERT ( n < m_children.GetCount() );
215
216 return m_children.Item(n)->GetData();
217 }
218
219 /// Append a child, returning the position
220 size_t wxRichTextCompositeObject::AppendChild(wxRichTextObject* child)
221 {
222 m_children.Append(child);
223 child->SetParent(this);
224 return m_children.GetCount() - 1;
225 }
226
227 /// Insert the child in front of the given object, or at the beginning
228 bool wxRichTextCompositeObject::InsertChild(wxRichTextObject* child, wxRichTextObject* inFrontOf)
229 {
230 if (inFrontOf)
231 {
232 wxRichTextObjectList::compatibility_iterator node = m_children.Find(inFrontOf);
233 m_children.Insert(node, child);
234 }
235 else
236 m_children.Insert(child);
237 child->SetParent(this);
238
239 return true;
240 }
241
242 /// Delete the child
243 bool wxRichTextCompositeObject::RemoveChild(wxRichTextObject* child, bool deleteChild)
244 {
245 wxRichTextObjectList::compatibility_iterator node = m_children.Find(child);
246 if (node)
247 {
248 wxRichTextObject* obj = node->GetData();
249 m_children.Erase(node);
250 if (deleteChild)
251 delete obj;
252
253 return true;
254 }
255 return false;
256 }
257
258 /// Delete all children
259 bool wxRichTextCompositeObject::DeleteChildren()
260 {
261 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
262 while (node)
263 {
264 wxRichTextObjectList::compatibility_iterator oldNode = node;
265
266 wxRichTextObject* child = node->GetData();
267 child->Dereference(); // Only delete if reference count is zero
268
269 node = node->GetNext();
270 m_children.Erase(oldNode);
271 }
272
273 return true;
274 }
275
276 /// Get the child count
277 size_t wxRichTextCompositeObject::GetChildCount() const
278 {
279 return m_children.GetCount();
280 }
281
282 /// Copy
283 void wxRichTextCompositeObject::Copy(const wxRichTextCompositeObject& obj)
284 {
285 wxRichTextObject::Copy(obj);
286
287 DeleteChildren();
288
289 wxRichTextObjectList::compatibility_iterator node = obj.m_children.GetFirst();
290 while (node)
291 {
292 wxRichTextObject* child = node->GetData();
293 wxRichTextObject* newChild = child->Clone();
294 newChild->SetParent(this);
295 m_children.Append(newChild);
296
297 node = node->GetNext();
298 }
299 }
300
301 /// Hit-testing: returns a flag indicating hit test details, plus
302 /// information about position
303 int wxRichTextCompositeObject::HitTest(wxDC& dc, const wxPoint& pt, long& textPosition)
304 {
305 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
306 while (node)
307 {
308 wxRichTextObject* child = node->GetData();
309
310 int ret = child->HitTest(dc, pt, textPosition);
311 if (ret != wxRICHTEXT_HITTEST_NONE)
312 return ret;
313
314 node = node->GetNext();
315 }
316
317 textPosition = GetRange().GetEnd()-1;
318 return wxRICHTEXT_HITTEST_AFTER|wxRICHTEXT_HITTEST_OUTSIDE;
319 }
320
321 /// Finds the absolute position and row height for the given character position
322 bool wxRichTextCompositeObject::FindPosition(wxDC& dc, long index, wxPoint& pt, int* height, bool forceLineStart)
323 {
324 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
325 while (node)
326 {
327 wxRichTextObject* child = node->GetData();
328
329 if (child->FindPosition(dc, index, pt, height, forceLineStart))
330 return true;
331
332 node = node->GetNext();
333 }
334
335 return false;
336 }
337
338 /// Calculate range
339 void wxRichTextCompositeObject::CalculateRange(long start, long& end)
340 {
341 long current = start;
342 long lastEnd = current;
343
344 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
345 while (node)
346 {
347 wxRichTextObject* child = node->GetData();
348 long childEnd = 0;
349
350 child->CalculateRange(current, childEnd);
351 lastEnd = childEnd;
352
353 current = childEnd + 1;
354
355 node = node->GetNext();
356 }
357
358 end = lastEnd;
359
360 // An object with no children has zero length
361 if (m_children.GetCount() == 0)
362 end --;
363
364 m_range.SetRange(start, end);
365 }
366
367 /// Delete range from layout.
368 bool wxRichTextCompositeObject::DeleteRange(const wxRichTextRange& range)
369 {
370 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
371
372 while (node)
373 {
374 wxRichTextObject* obj = (wxRichTextObject*) node->GetData();
375 wxRichTextObjectList::compatibility_iterator next = node->GetNext();
376
377 // Delete the range in each paragraph
378
379 // When a chunk has been deleted, internally the content does not
380 // now match the ranges.
381 // However, so long as deletion is not done on the same object twice this is OK.
382 // If you may delete content from the same object twice, recalculate
383 // the ranges inbetween DeleteRange calls by calling CalculateRanges, and
384 // adjust the range you're deleting accordingly.
385
386 if (!obj->GetRange().IsOutside(range))
387 {
388 obj->DeleteRange(range);
389
390 // Delete an empty object, or paragraph within this range.
391 if (obj->IsEmpty() ||
392 (range.GetStart() <= obj->GetRange().GetStart() && range.GetEnd() >= obj->GetRange().GetEnd()))
393 {
394 // An empty paragraph has length 1, so won't be deleted unless the
395 // whole range is deleted.
396 RemoveChild(obj, true);
397 }
398 }
399
400 node = next;
401 }
402
403 return true;
404 }
405
406 /// Get any text in this object for the given range
407 wxString wxRichTextCompositeObject::GetTextForRange(const wxRichTextRange& range) const
408 {
409 wxString text;
410 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
411 while (node)
412 {
413 wxRichTextObject* child = node->GetData();
414 wxRichTextRange childRange = range;
415 if (!child->GetRange().IsOutside(range))
416 {
417 childRange.LimitTo(child->GetRange());
418
419 wxString childText = child->GetTextForRange(childRange);
420
421 text += childText;
422 }
423 node = node->GetNext();
424 }
425
426 return text;
427 }
428
429 /// Recursively merge all pieces that can be merged.
430 bool wxRichTextCompositeObject::Defragment(const wxRichTextRange& range)
431 {
432 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
433 while (node)
434 {
435 wxRichTextObject* child = node->GetData();
436 if (range == wxRICHTEXT_ALL || !child->GetRange().IsOutside(range))
437 {
438 wxRichTextCompositeObject* composite = wxDynamicCast(child, wxRichTextCompositeObject);
439 if (composite)
440 composite->Defragment();
441
442 if (node->GetNext())
443 {
444 wxRichTextObject* nextChild = node->GetNext()->GetData();
445 if (child->CanMerge(nextChild) && child->Merge(nextChild))
446 {
447 nextChild->Dereference();
448 m_children.Erase(node->GetNext());
449
450 // Don't set node -- we'll see if we can merge again with the next
451 // child.
452 }
453 else
454 node = node->GetNext();
455 }
456 else
457 node = node->GetNext();
458 }
459 else
460 node = node->GetNext();
461 }
462
463 return true;
464 }
465
466 /// Dump to output stream for debugging
467 void wxRichTextCompositeObject::Dump(wxTextOutputStream& stream)
468 {
469 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
470 while (node)
471 {
472 wxRichTextObject* child = node->GetData();
473 child->Dump(stream);
474 node = node->GetNext();
475 }
476 }
477
478
479 /*!
480 * wxRichTextBox
481 * This defines a 2D space to lay out objects
482 */
483
484 IMPLEMENT_DYNAMIC_CLASS(wxRichTextBox, wxRichTextCompositeObject)
485
486 wxRichTextBox::wxRichTextBox(wxRichTextObject* parent):
487 wxRichTextCompositeObject(parent)
488 {
489 }
490
491 /// Draw the item
492 bool wxRichTextBox::Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& WXUNUSED(rect), int descent, int style)
493 {
494 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
495 while (node)
496 {
497 wxRichTextObject* child = node->GetData();
498
499 wxRect childRect = wxRect(child->GetPosition(), child->GetCachedSize());
500 child->Draw(dc, range, selectionRange, childRect, descent, style);
501
502 node = node->GetNext();
503 }
504 return true;
505 }
506
507 /// Lay the item out
508 bool wxRichTextBox::Layout(wxDC& dc, const wxRect& rect, int style)
509 {
510 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
511 while (node)
512 {
513 wxRichTextObject* child = node->GetData();
514 child->Layout(dc, rect, style);
515
516 node = node->GetNext();
517 }
518 m_dirty = false;
519 return true;
520 }
521
522 /// Get/set the size for the given range. Assume only has one child.
523 bool wxRichTextBox::GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position, wxArrayInt* partialExtents) const
524 {
525 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
526 if (node)
527 {
528 wxRichTextObject* child = node->GetData();
529 return child->GetRangeSize(range, size, descent, dc, flags, position, partialExtents);
530 }
531 else
532 return false;
533 }
534
535 /// Copy
536 void wxRichTextBox::Copy(const wxRichTextBox& obj)
537 {
538 wxRichTextCompositeObject::Copy(obj);
539 }
540
541
542 /*!
543 * wxRichTextParagraphLayoutBox
544 * This box knows how to lay out paragraphs.
545 */
546
547 IMPLEMENT_DYNAMIC_CLASS(wxRichTextParagraphLayoutBox, wxRichTextBox)
548
549 wxRichTextParagraphLayoutBox::wxRichTextParagraphLayoutBox(wxRichTextObject* parent):
550 wxRichTextBox(parent)
551 {
552 Init();
553 }
554
555 /// Initialize the object.
556 void wxRichTextParagraphLayoutBox::Init()
557 {
558 m_ctrl = NULL;
559
560 // For now, assume is the only box and has no initial size.
561 m_range = wxRichTextRange(0, -1);
562
563 m_invalidRange.SetRange(-1, -1);
564 m_leftMargin = 4;
565 m_rightMargin = 4;
566 m_topMargin = 4;
567 m_bottomMargin = 4;
568 m_partialParagraph = false;
569 }
570
571 /// Draw the item
572 bool wxRichTextParagraphLayoutBox::Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int style)
573 {
574 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
575 while (node)
576 {
577 wxRichTextParagraph* child = wxDynamicCast(node->GetData(), wxRichTextParagraph);
578 wxASSERT (child != NULL);
579
580 if (child && !child->GetRange().IsOutside(range))
581 {
582 wxRect childRect(child->GetPosition(), child->GetCachedSize());
583
584 if (((style & wxRICHTEXT_DRAW_IGNORE_CACHE) == 0) && childRect.GetTop() > rect.GetBottom())
585 {
586 // Stop drawing
587 break;
588 }
589 else if (((style & wxRICHTEXT_DRAW_IGNORE_CACHE) == 0) && childRect.GetBottom() < rect.GetTop())
590 {
591 // Skip
592 }
593 else
594 child->Draw(dc, range, selectionRange, rect, descent, style);
595 }
596
597 node = node->GetNext();
598 }
599 return true;
600 }
601
602 /// Lay the item out
603 bool wxRichTextParagraphLayoutBox::Layout(wxDC& dc, const wxRect& rect, int style)
604 {
605 wxRect availableSpace;
606 bool formatRect = (style & wxRICHTEXT_LAYOUT_SPECIFIED_RECT) == wxRICHTEXT_LAYOUT_SPECIFIED_RECT;
607
608 // If only laying out a specific area, the passed rect has a different meaning:
609 // the visible part of the buffer. This is used in wxRichTextCtrl::OnSize,
610 // so that during a size, only the visible part will be relaid out, or
611 // it would take too long causing flicker. As an approximation, we assume that
612 // everything up to the start of the visible area is laid out correctly.
613 if (formatRect)
614 {
615 availableSpace = wxRect(0 + m_leftMargin,
616 0 + m_topMargin,
617 rect.width - m_leftMargin - m_rightMargin,
618 rect.height);
619
620 // Invalidate the part of the buffer from the first visible line
621 // to the end. If other parts of the buffer are currently invalid,
622 // then they too will be taken into account if they are above
623 // the visible point.
624 long startPos = 0;
625 wxRichTextLine* line = GetLineAtYPosition(rect.y);
626 if (line)
627 startPos = line->GetAbsoluteRange().GetStart();
628
629 Invalidate(wxRichTextRange(startPos, GetRange().GetEnd()));
630 }
631 else
632 availableSpace = wxRect(rect.x + m_leftMargin,
633 rect.y + m_topMargin,
634 rect.width - m_leftMargin - m_rightMargin,
635 rect.height - m_topMargin - m_bottomMargin);
636
637 int maxWidth = 0;
638
639 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
640
641 bool layoutAll = true;
642
643 // Get invalid range, rounding to paragraph start/end.
644 wxRichTextRange invalidRange = GetInvalidRange(true);
645
646 if (invalidRange == wxRICHTEXT_NONE && !formatRect)
647 return true;
648
649 if (invalidRange == wxRICHTEXT_ALL)
650 layoutAll = true;
651 else // If we know what range is affected, start laying out from that point on.
652 if (invalidRange.GetStart() >= GetRange().GetStart())
653 {
654 wxRichTextParagraph* firstParagraph = GetParagraphAtPosition(invalidRange.GetStart());
655 if (firstParagraph)
656 {
657 wxRichTextObjectList::compatibility_iterator firstNode = m_children.Find(firstParagraph);
658 wxRichTextObjectList::compatibility_iterator previousNode;
659 if ( firstNode )
660 previousNode = firstNode->GetPrevious();
661 if (firstNode)
662 {
663 if (previousNode)
664 {
665 wxRichTextParagraph* previousParagraph = wxDynamicCast(previousNode->GetData(), wxRichTextParagraph);
666 availableSpace.y = previousParagraph->GetPosition().y + previousParagraph->GetCachedSize().y;
667 }
668
669 // Now we're going to start iterating from the first affected paragraph.
670 node = firstNode;
671
672 layoutAll = false;
673 }
674 }
675 }
676
677 // A way to force speedy rest-of-buffer layout (the 'else' below)
678 bool forceQuickLayout = false;
679
680 while (node)
681 {
682 // Assume this box only contains paragraphs
683
684 wxRichTextParagraph* child = wxDynamicCast(node->GetData(), wxRichTextParagraph);
685 wxCHECK_MSG( child, false, _T("Unknown object in layout") );
686
687 // TODO: what if the child hasn't been laid out (e.g. involved in Undo) but still has 'old' lines
688 if ( !forceQuickLayout &&
689 (layoutAll ||
690 child->GetLines().IsEmpty() ||
691 !child->GetRange().IsOutside(invalidRange)) )
692 {
693 child->Layout(dc, availableSpace, style);
694
695 // Layout must set the cached size
696 availableSpace.y += child->GetCachedSize().y;
697 maxWidth = wxMax(maxWidth, child->GetCachedSize().x);
698
699 // If we're just formatting the visible part of the buffer,
700 // and we're now past the bottom of the window, start quick
701 // layout.
702 if (formatRect && child->GetPosition().y > rect.GetBottom())
703 forceQuickLayout = true;
704 }
705 else
706 {
707 // We're outside the immediately affected range, so now let's just
708 // move everything up or down. This assumes that all the children have previously
709 // been laid out and have wrapped line lists associated with them.
710 // TODO: check all paragraphs before the affected range.
711
712 int inc = availableSpace.y - child->GetPosition().y;
713
714 while (node)
715 {
716 wxRichTextParagraph* child = wxDynamicCast(node->GetData(), wxRichTextParagraph);
717 if (child)
718 {
719 if (child->GetLines().GetCount() == 0)
720 child->Layout(dc, availableSpace, style);
721 else
722 child->SetPosition(wxPoint(child->GetPosition().x, child->GetPosition().y + inc));
723
724 availableSpace.y += child->GetCachedSize().y;
725 maxWidth = wxMax(maxWidth, child->GetCachedSize().x);
726 }
727
728 node = node->GetNext();
729 }
730 break;
731 }
732
733 node = node->GetNext();
734 }
735
736 SetCachedSize(wxSize(maxWidth, availableSpace.y));
737
738 m_dirty = false;
739 m_invalidRange = wxRICHTEXT_NONE;
740
741 return true;
742 }
743
744 /// Copy
745 void wxRichTextParagraphLayoutBox::Copy(const wxRichTextParagraphLayoutBox& obj)
746 {
747 wxRichTextBox::Copy(obj);
748
749 m_partialParagraph = obj.m_partialParagraph;
750 m_defaultAttributes = obj.m_defaultAttributes;
751 }
752
753 /// Get/set the size for the given range.
754 bool wxRichTextParagraphLayoutBox::GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position, wxArrayInt* WXUNUSED(partialExtents)) const
755 {
756 wxSize sz;
757
758 wxRichTextObjectList::compatibility_iterator startPara = wxRichTextObjectList::compatibility_iterator();
759 wxRichTextObjectList::compatibility_iterator endPara = wxRichTextObjectList::compatibility_iterator();
760
761 // First find the first paragraph whose starting position is within the range.
762 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
763 while (node)
764 {
765 // child is a paragraph
766 wxRichTextObject* child = node->GetData();
767 const wxRichTextRange& r = child->GetRange();
768
769 if (r.GetStart() <= range.GetStart() && r.GetEnd() >= range.GetStart())
770 {
771 startPara = node;
772 break;
773 }
774
775 node = node->GetNext();
776 }
777
778 // Next find the last paragraph containing part of the range
779 node = m_children.GetFirst();
780 while (node)
781 {
782 // child is a paragraph
783 wxRichTextObject* child = node->GetData();
784 const wxRichTextRange& r = child->GetRange();
785
786 if (r.GetStart() <= range.GetEnd() && r.GetEnd() >= range.GetEnd())
787 {
788 endPara = node;
789 break;
790 }
791
792 node = node->GetNext();
793 }
794
795 if (!startPara || !endPara)
796 return false;
797
798 // Now we can add up the sizes
799 for (node = startPara; node ; node = node->GetNext())
800 {
801 // child is a paragraph
802 wxRichTextObject* child = node->GetData();
803 const wxRichTextRange& childRange = child->GetRange();
804 wxRichTextRange rangeToFind = range;
805 rangeToFind.LimitTo(childRange);
806
807 wxSize childSize;
808
809 int childDescent = 0;
810 child->GetRangeSize(rangeToFind, childSize, childDescent, dc, flags, position);
811
812 descent = wxMax(childDescent, descent);
813
814 sz.x = wxMax(sz.x, childSize.x);
815 sz.y += childSize.y;
816
817 if (node == endPara)
818 break;
819 }
820
821 size = sz;
822
823 return true;
824 }
825
826 /// Get the paragraph at the given position
827 wxRichTextParagraph* wxRichTextParagraphLayoutBox::GetParagraphAtPosition(long pos, bool caretPosition) const
828 {
829 if (caretPosition)
830 pos ++;
831
832 // First find the first paragraph whose starting position is within the range.
833 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
834 while (node)
835 {
836 // child is a paragraph
837 wxRichTextParagraph* child = wxDynamicCast(node->GetData(), wxRichTextParagraph);
838 wxASSERT (child != NULL);
839
840 // Return first child in buffer if position is -1
841 // if (pos == -1)
842 // return child;
843
844 if (child->GetRange().Contains(pos))
845 return child;
846
847 node = node->GetNext();
848 }
849 return NULL;
850 }
851
852 /// Get the line at the given position
853 wxRichTextLine* wxRichTextParagraphLayoutBox::GetLineAtPosition(long pos, bool caretPosition) const
854 {
855 if (caretPosition)
856 pos ++;
857
858 // First find the first paragraph whose starting position is within the range.
859 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
860 while (node)
861 {
862 wxRichTextObject* obj = (wxRichTextObject*) node->GetData();
863 if (obj->GetRange().Contains(pos))
864 {
865 // child is a paragraph
866 wxRichTextParagraph* child = wxDynamicCast(obj, wxRichTextParagraph);
867 wxASSERT (child != NULL);
868
869 wxRichTextLineList::compatibility_iterator node2 = child->GetLines().GetFirst();
870 while (node2)
871 {
872 wxRichTextLine* line = node2->GetData();
873
874 wxRichTextRange range = line->GetAbsoluteRange();
875
876 if (range.Contains(pos) ||
877
878 // If the position is end-of-paragraph, then return the last line of
879 // of the paragraph.
880 ((range.GetEnd() == child->GetRange().GetEnd()-1) && (pos == child->GetRange().GetEnd())))
881 return line;
882
883 node2 = node2->GetNext();
884 }
885 }
886
887 node = node->GetNext();
888 }
889
890 int lineCount = GetLineCount();
891 if (lineCount > 0)
892 return GetLineForVisibleLineNumber(lineCount-1);
893 else
894 return NULL;
895 }
896
897 /// Get the line at the given y pixel position, or the last line.
898 wxRichTextLine* wxRichTextParagraphLayoutBox::GetLineAtYPosition(int y) const
899 {
900 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
901 while (node)
902 {
903 wxRichTextParagraph* child = wxDynamicCast(node->GetData(), wxRichTextParagraph);
904 wxASSERT (child != NULL);
905
906 wxRichTextLineList::compatibility_iterator node2 = child->GetLines().GetFirst();
907 while (node2)
908 {
909 wxRichTextLine* line = node2->GetData();
910
911 wxRect rect(line->GetRect());
912
913 if (y <= rect.GetBottom())
914 return line;
915
916 node2 = node2->GetNext();
917 }
918
919 node = node->GetNext();
920 }
921
922 // Return last line
923 int lineCount = GetLineCount();
924 if (lineCount > 0)
925 return GetLineForVisibleLineNumber(lineCount-1);
926 else
927 return NULL;
928 }
929
930 /// Get the number of visible lines
931 int wxRichTextParagraphLayoutBox::GetLineCount() const
932 {
933 int count = 0;
934
935 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
936 while (node)
937 {
938 wxRichTextParagraph* child = wxDynamicCast(node->GetData(), wxRichTextParagraph);
939 wxASSERT (child != NULL);
940
941 count += child->GetLines().GetCount();
942 node = node->GetNext();
943 }
944 return count;
945 }
946
947
948 /// Get the paragraph for a given line
949 wxRichTextParagraph* wxRichTextParagraphLayoutBox::GetParagraphForLine(wxRichTextLine* line) const
950 {
951 return GetParagraphAtPosition(line->GetAbsoluteRange().GetStart());
952 }
953
954 /// Get the line size at the given position
955 wxSize wxRichTextParagraphLayoutBox::GetLineSizeAtPosition(long pos, bool caretPosition) const
956 {
957 wxRichTextLine* line = GetLineAtPosition(pos, caretPosition);
958 if (line)
959 {
960 return line->GetSize();
961 }
962 else
963 return wxSize(0, 0);
964 }
965
966
967 /// Convenience function to add a paragraph of text
968 wxRichTextRange wxRichTextParagraphLayoutBox::AddParagraph(const wxString& text, wxTextAttr* paraStyle)
969 {
970 // Don't use the base style, just the default style, and the base style will
971 // be combined at display time.
972 // Divide into paragraph and character styles.
973
974 wxTextAttr defaultCharStyle;
975 wxTextAttr defaultParaStyle;
976
977 // If the default style is a named paragraph style, don't apply any character formatting
978 // to the initial text string.
979 if (GetDefaultStyle().HasParagraphStyleName() && GetStyleSheet())
980 {
981 wxRichTextParagraphStyleDefinition* def = GetStyleSheet()->FindParagraphStyle(GetDefaultStyle().GetParagraphStyleName());
982 if (def)
983 defaultParaStyle = def->GetStyleMergedWithBase(GetStyleSheet());
984 }
985 else
986 wxRichTextSplitParaCharStyles(GetDefaultStyle(), defaultParaStyle, defaultCharStyle);
987
988 wxTextAttr* pStyle = paraStyle ? paraStyle : (wxTextAttr*) & defaultParaStyle;
989 wxTextAttr* cStyle = & defaultCharStyle;
990
991 wxRichTextParagraph* para = new wxRichTextParagraph(text, this, pStyle, cStyle);
992
993 AppendChild(para);
994
995 UpdateRanges();
996 SetDirty(true);
997
998 return para->GetRange();
999 }
1000
1001 /// Adds multiple paragraphs, based on newlines.
1002 wxRichTextRange wxRichTextParagraphLayoutBox::AddParagraphs(const wxString& text, wxTextAttr* paraStyle)
1003 {
1004 // Don't use the base style, just the default style, and the base style will
1005 // be combined at display time.
1006 // Divide into paragraph and character styles.
1007
1008 wxTextAttr defaultCharStyle;
1009 wxTextAttr defaultParaStyle;
1010
1011 // If the default style is a named paragraph style, don't apply any character formatting
1012 // to the initial text string.
1013 if (GetDefaultStyle().HasParagraphStyleName() && GetStyleSheet())
1014 {
1015 wxRichTextParagraphStyleDefinition* def = GetStyleSheet()->FindParagraphStyle(GetDefaultStyle().GetParagraphStyleName());
1016 if (def)
1017 defaultParaStyle = def->GetStyleMergedWithBase(GetStyleSheet());
1018 }
1019 else
1020 wxRichTextSplitParaCharStyles(GetDefaultStyle(), defaultParaStyle, defaultCharStyle);
1021
1022 wxTextAttr* pStyle = paraStyle ? paraStyle : (wxTextAttr*) & defaultParaStyle;
1023 wxTextAttr* cStyle = & defaultCharStyle;
1024
1025 wxRichTextParagraph* firstPara = NULL;
1026 wxRichTextParagraph* lastPara = NULL;
1027
1028 wxRichTextRange range(-1, -1);
1029
1030 size_t i = 0;
1031 size_t len = text.length();
1032 wxString line;
1033 wxRichTextParagraph* para = new wxRichTextParagraph(wxEmptyString, this, pStyle, cStyle);
1034
1035 AppendChild(para);
1036
1037 firstPara = para;
1038 lastPara = para;
1039
1040 while (i < len)
1041 {
1042 wxChar ch = text[i];
1043 if (ch == wxT('\n') || ch == wxT('\r'))
1044 {
1045 if (i != (len-1))
1046 {
1047 wxRichTextPlainText* plainText = (wxRichTextPlainText*) para->GetChildren().GetFirst()->GetData();
1048 plainText->SetText(line);
1049
1050 para = new wxRichTextParagraph(wxEmptyString, this, pStyle, cStyle);
1051
1052 AppendChild(para);
1053
1054 lastPara = para;
1055 line = wxEmptyString;
1056 }
1057 }
1058 else
1059 line += ch;
1060
1061 i ++;
1062 }
1063
1064 if (!line.empty())
1065 {
1066 wxRichTextPlainText* plainText = (wxRichTextPlainText*) para->GetChildren().GetFirst()->GetData();
1067 plainText->SetText(line);
1068 }
1069
1070 UpdateRanges();
1071
1072 SetDirty(false);
1073
1074 return wxRichTextRange(firstPara->GetRange().GetStart(), lastPara->GetRange().GetEnd());
1075 }
1076
1077 /// Convenience function to add an image
1078 wxRichTextRange wxRichTextParagraphLayoutBox::AddImage(const wxImage& image, wxTextAttr* paraStyle)
1079 {
1080 // Don't use the base style, just the default style, and the base style will
1081 // be combined at display time.
1082 // Divide into paragraph and character styles.
1083
1084 wxTextAttr defaultCharStyle;
1085 wxTextAttr defaultParaStyle;
1086
1087 // If the default style is a named paragraph style, don't apply any character formatting
1088 // to the initial text string.
1089 if (GetDefaultStyle().HasParagraphStyleName() && GetStyleSheet())
1090 {
1091 wxRichTextParagraphStyleDefinition* def = GetStyleSheet()->FindParagraphStyle(GetDefaultStyle().GetParagraphStyleName());
1092 if (def)
1093 defaultParaStyle = def->GetStyleMergedWithBase(GetStyleSheet());
1094 }
1095 else
1096 wxRichTextSplitParaCharStyles(GetDefaultStyle(), defaultParaStyle, defaultCharStyle);
1097
1098 wxTextAttr* pStyle = paraStyle ? paraStyle : (wxTextAttr*) & defaultParaStyle;
1099 wxTextAttr* cStyle = & defaultCharStyle;
1100
1101 wxRichTextParagraph* para = new wxRichTextParagraph(this, pStyle);
1102 AppendChild(para);
1103 para->AppendChild(new wxRichTextImage(image, this, cStyle));
1104
1105 UpdateRanges();
1106 SetDirty(true);
1107
1108 return para->GetRange();
1109 }
1110
1111
1112 /// Insert fragment into this box at the given position. If partialParagraph is true,
1113 /// it is assumed that the last (or only) paragraph is just a piece of data with no paragraph
1114 /// marker.
1115
1116 bool wxRichTextParagraphLayoutBox::InsertFragment(long position, wxRichTextParagraphLayoutBox& fragment)
1117 {
1118 SetDirty(true);
1119
1120 // First, find the first paragraph whose starting position is within the range.
1121 wxRichTextParagraph* para = GetParagraphAtPosition(position);
1122 if (para)
1123 {
1124 wxTextAttrEx originalAttr = para->GetAttributes();
1125
1126 wxRichTextObjectList::compatibility_iterator node = m_children.Find(para);
1127
1128 // Now split at this position, returning the object to insert the new
1129 // ones in front of.
1130 wxRichTextObject* nextObject = para->SplitAt(position);
1131
1132 // Special case: partial paragraph, just one paragraph. Might be a small amount of
1133 // text, for example, so let's optimize.
1134
1135 if (fragment.GetPartialParagraph() && fragment.GetChildren().GetCount() == 1)
1136 {
1137 // Add the first para to this para...
1138 wxRichTextObjectList::compatibility_iterator firstParaNode = fragment.GetChildren().GetFirst();
1139 if (!firstParaNode)
1140 return false;
1141
1142 // Iterate through the fragment paragraph inserting the content into this paragraph.
1143 wxRichTextParagraph* firstPara = wxDynamicCast(firstParaNode->GetData(), wxRichTextParagraph);
1144 wxASSERT (firstPara != NULL);
1145
1146 wxRichTextObjectList::compatibility_iterator objectNode = firstPara->GetChildren().GetFirst();
1147 while (objectNode)
1148 {
1149 wxRichTextObject* newObj = objectNode->GetData()->Clone();
1150
1151 if (!nextObject)
1152 {
1153 // Append
1154 para->AppendChild(newObj);
1155 }
1156 else
1157 {
1158 // Insert before nextObject
1159 para->InsertChild(newObj, nextObject);
1160 }
1161
1162 objectNode = objectNode->GetNext();
1163 }
1164
1165 return true;
1166 }
1167 else
1168 {
1169 // Procedure for inserting a fragment consisting of a number of
1170 // paragraphs:
1171 //
1172 // 1. Remove and save the content that's after the insertion point, for adding
1173 // back once we've added the fragment.
1174 // 2. Add the content from the first fragment paragraph to the current
1175 // paragraph.
1176 // 3. Add remaining fragment paragraphs after the current paragraph.
1177 // 4. Add back the saved content from the first paragraph. If partialParagraph
1178 // is true, add it to the last paragraph added and not a new one.
1179
1180 // 1. Remove and save objects after split point.
1181 wxList savedObjects;
1182 if (nextObject)
1183 para->MoveToList(nextObject, savedObjects);
1184
1185 // 2. Add the content from the 1st fragment paragraph.
1186 wxRichTextObjectList::compatibility_iterator firstParaNode = fragment.GetChildren().GetFirst();
1187 if (!firstParaNode)
1188 return false;
1189
1190 wxRichTextParagraph* firstPara = wxDynamicCast(firstParaNode->GetData(), wxRichTextParagraph);
1191 wxASSERT(firstPara != NULL);
1192
1193 if (!(fragment.GetAttributes().GetFlags() & wxTEXT_ATTR_KEEP_FIRST_PARA_STYLE))
1194 para->SetAttributes(firstPara->GetAttributes());
1195
1196 // Save empty paragraph attributes for appending later
1197 // These are character attributes deliberately set for a new paragraph. Without this,
1198 // we couldn't pass default attributes when appending a new paragraph.
1199 wxTextAttrEx emptyParagraphAttributes;
1200
1201 wxRichTextObjectList::compatibility_iterator objectNode = firstPara->GetChildren().GetFirst();
1202
1203 if (objectNode && firstPara->GetChildren().GetCount() == 1 && objectNode->GetData()->IsEmpty())
1204 emptyParagraphAttributes = objectNode->GetData()->GetAttributes();
1205
1206 while (objectNode)
1207 {
1208 wxRichTextObject* newObj = objectNode->GetData()->Clone();
1209
1210 // Append
1211 para->AppendChild(newObj);
1212
1213 objectNode = objectNode->GetNext();
1214 }
1215
1216 // 3. Add remaining fragment paragraphs after the current paragraph.
1217 wxRichTextObjectList::compatibility_iterator nextParagraphNode = node->GetNext();
1218 wxRichTextObject* nextParagraph = NULL;
1219 if (nextParagraphNode)
1220 nextParagraph = nextParagraphNode->GetData();
1221
1222 wxRichTextObjectList::compatibility_iterator i = fragment.GetChildren().GetFirst()->GetNext();
1223 wxRichTextParagraph* finalPara = para;
1224
1225 bool needExtraPara = (!i || !fragment.GetPartialParagraph());
1226
1227 // If there was only one paragraph, we need to insert a new one.
1228 while (i)
1229 {
1230 wxRichTextParagraph* para = wxDynamicCast(i->GetData(), wxRichTextParagraph);
1231 wxASSERT( para != NULL );
1232
1233 finalPara = (wxRichTextParagraph*) para->Clone();
1234
1235 if (nextParagraph)
1236 InsertChild(finalPara, nextParagraph);
1237 else
1238 AppendChild(finalPara);
1239
1240 i = i->GetNext();
1241 }
1242
1243 // If there was only one paragraph, or we have full paragraphs in our fragment,
1244 // we need to insert a new one.
1245 if (needExtraPara)
1246 {
1247 finalPara = new wxRichTextParagraph;
1248
1249 if (nextParagraph)
1250 InsertChild(finalPara, nextParagraph);
1251 else
1252 AppendChild(finalPara);
1253 }
1254
1255 // 4. Add back the remaining content.
1256 if (finalPara)
1257 {
1258 if (nextObject)
1259 finalPara->MoveFromList(savedObjects);
1260
1261 // Ensure there's at least one object
1262 if (finalPara->GetChildCount() == 0)
1263 {
1264 wxRichTextPlainText* text = new wxRichTextPlainText(wxEmptyString);
1265 text->SetAttributes(emptyParagraphAttributes);
1266
1267 finalPara->AppendChild(text);
1268 }
1269 }
1270
1271 if ((fragment.GetAttributes().GetFlags() & wxTEXT_ATTR_KEEP_FIRST_PARA_STYLE) && firstPara)
1272 finalPara->SetAttributes(firstPara->GetAttributes());
1273 else if (finalPara && finalPara != para)
1274 finalPara->SetAttributes(originalAttr);
1275
1276 return true;
1277 }
1278 }
1279 else
1280 {
1281 // Append
1282 wxRichTextObjectList::compatibility_iterator i = fragment.GetChildren().GetFirst();
1283 while (i)
1284 {
1285 wxRichTextParagraph* para = wxDynamicCast(i->GetData(), wxRichTextParagraph);
1286 wxASSERT( para != NULL );
1287
1288 AppendChild(para->Clone());
1289
1290 i = i->GetNext();
1291 }
1292
1293 return true;
1294 }
1295 }
1296
1297 /// Make a copy of the fragment corresponding to the given range, putting it in 'fragment'.
1298 /// If there was an incomplete paragraph at the end, partialParagraph is set to true.
1299 bool wxRichTextParagraphLayoutBox::CopyFragment(const wxRichTextRange& range, wxRichTextParagraphLayoutBox& fragment)
1300 {
1301 wxRichTextObjectList::compatibility_iterator i = GetChildren().GetFirst();
1302 while (i)
1303 {
1304 wxRichTextParagraph* para = wxDynamicCast(i->GetData(), wxRichTextParagraph);
1305 wxASSERT( para != NULL );
1306
1307 if (!para->GetRange().IsOutside(range))
1308 {
1309 fragment.AppendChild(para->Clone());
1310 }
1311 i = i->GetNext();
1312 }
1313
1314 // Now top and tail the first and last paragraphs in our new fragment (which might be the same).
1315 if (!fragment.IsEmpty())
1316 {
1317 wxRichTextRange topTailRange(range);
1318
1319 wxRichTextParagraph* firstPara = wxDynamicCast(fragment.GetChildren().GetFirst()->GetData(), wxRichTextParagraph);
1320 wxASSERT( firstPara != NULL );
1321
1322 // Chop off the start of the paragraph
1323 if (topTailRange.GetStart() > firstPara->GetRange().GetStart())
1324 {
1325 wxRichTextRange r(firstPara->GetRange().GetStart(), topTailRange.GetStart()-1);
1326 firstPara->DeleteRange(r);
1327
1328 // Make sure the numbering is correct
1329 long end;
1330 fragment.CalculateRange(firstPara->GetRange().GetStart(), end);
1331
1332 // Now, we've deleted some positions, so adjust the range
1333 // accordingly.
1334 topTailRange.SetEnd(topTailRange.GetEnd() - r.GetLength());
1335 }
1336
1337 wxRichTextParagraph* lastPara = wxDynamicCast(fragment.GetChildren().GetLast()->GetData(), wxRichTextParagraph);
1338 wxASSERT( lastPara != NULL );
1339
1340 if (topTailRange.GetEnd() < (lastPara->GetRange().GetEnd()-1))
1341 {
1342 wxRichTextRange r(topTailRange.GetEnd()+1, lastPara->GetRange().GetEnd()-1); /* -1 since actual text ends 1 position before end of para marker */
1343 lastPara->DeleteRange(r);
1344
1345 // Make sure the numbering is correct
1346 long end;
1347 fragment.CalculateRange(firstPara->GetRange().GetStart(), end);
1348
1349 // We only have part of a paragraph at the end
1350 fragment.SetPartialParagraph(true);
1351 }
1352 else
1353 {
1354 if (topTailRange.GetEnd() == (lastPara->GetRange().GetEnd() - 1))
1355 // We have a partial paragraph (don't save last new paragraph marker)
1356 fragment.SetPartialParagraph(true);
1357 else
1358 // We have a complete paragraph
1359 fragment.SetPartialParagraph(false);
1360 }
1361 }
1362
1363 return true;
1364 }
1365
1366 /// Given a position, get the number of the visible line (potentially many to a paragraph),
1367 /// starting from zero at the start of the buffer.
1368 long wxRichTextParagraphLayoutBox::GetVisibleLineNumber(long pos, bool caretPosition, bool startOfLine) const
1369 {
1370 if (caretPosition)
1371 pos ++;
1372
1373 int lineCount = 0;
1374
1375 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
1376 while (node)
1377 {
1378 wxRichTextParagraph* child = wxDynamicCast(node->GetData(), wxRichTextParagraph);
1379 wxASSERT( child != NULL );
1380
1381 if (child->GetRange().Contains(pos))
1382 {
1383 wxRichTextLineList::compatibility_iterator node2 = child->GetLines().GetFirst();
1384 while (node2)
1385 {
1386 wxRichTextLine* line = node2->GetData();
1387 wxRichTextRange lineRange = line->GetAbsoluteRange();
1388
1389 if (lineRange.Contains(pos))
1390 {
1391 // If the caret is displayed at the end of the previous wrapped line,
1392 // we want to return the line it's _displayed_ at (not the actual line
1393 // containing the position).
1394 if (lineRange.GetStart() == pos && !startOfLine && child->GetRange().GetStart() != pos)
1395 return lineCount - 1;
1396 else
1397 return lineCount;
1398 }
1399
1400 lineCount ++;
1401
1402 node2 = node2->GetNext();
1403 }
1404 // If we didn't find it in the lines, it must be
1405 // the last position of the paragraph. So return the last line.
1406 return lineCount-1;
1407 }
1408 else
1409 lineCount += child->GetLines().GetCount();
1410
1411 node = node->GetNext();
1412 }
1413
1414 // Not found
1415 return -1;
1416 }
1417
1418 /// Given a line number, get the corresponding wxRichTextLine object.
1419 wxRichTextLine* wxRichTextParagraphLayoutBox::GetLineForVisibleLineNumber(long lineNumber) const
1420 {
1421 int lineCount = 0;
1422
1423 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
1424 while (node)
1425 {
1426 wxRichTextParagraph* child = wxDynamicCast(node->GetData(), wxRichTextParagraph);
1427 wxASSERT(child != NULL);
1428
1429 if (lineNumber < (int) (child->GetLines().GetCount() + lineCount))
1430 {
1431 wxRichTextLineList::compatibility_iterator node2 = child->GetLines().GetFirst();
1432 while (node2)
1433 {
1434 wxRichTextLine* line = node2->GetData();
1435
1436 if (lineCount == lineNumber)
1437 return line;
1438
1439 lineCount ++;
1440
1441 node2 = node2->GetNext();
1442 }
1443 }
1444 else
1445 lineCount += child->GetLines().GetCount();
1446
1447 node = node->GetNext();
1448 }
1449
1450 // Didn't find it
1451 return NULL;
1452 }
1453
1454 /// Delete range from layout.
1455 bool wxRichTextParagraphLayoutBox::DeleteRange(const wxRichTextRange& range)
1456 {
1457 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
1458
1459 wxRichTextParagraph* firstPara = NULL;
1460 while (node)
1461 {
1462 wxRichTextParagraph* obj = wxDynamicCast(node->GetData(), wxRichTextParagraph);
1463 wxASSERT (obj != NULL);
1464
1465 wxRichTextObjectList::compatibility_iterator next = node->GetNext();
1466
1467 // Delete the range in each paragraph
1468
1469 if (!obj->GetRange().IsOutside(range))
1470 {
1471 // Deletes the content of this object within the given range
1472 obj->DeleteRange(range);
1473
1474 wxRichTextRange thisRange = obj->GetRange();
1475 wxTextAttrEx thisAttr = obj->GetAttributes();
1476
1477 // If the whole paragraph is within the range to delete,
1478 // delete the whole thing.
1479 if (range.GetStart() <= thisRange.GetStart() && range.GetEnd() >= thisRange.GetEnd())
1480 {
1481 // Delete the whole object
1482 RemoveChild(obj, true);
1483 obj = NULL;
1484 }
1485 else if (!firstPara)
1486 firstPara = obj;
1487
1488 // If the range includes the paragraph end, we need to join this
1489 // and the next paragraph.
1490 if (range.GetEnd() <= thisRange.GetEnd())
1491 {
1492 // We need to move the objects from the next paragraph
1493 // to this paragraph
1494
1495 wxRichTextParagraph* nextParagraph = NULL;
1496 if ((range.GetEnd() < thisRange.GetEnd()) && obj)
1497 nextParagraph = obj;
1498 else
1499 {
1500 // We're ending at the end of the paragraph, so merge the _next_ paragraph.
1501 if (next)
1502 nextParagraph = wxDynamicCast(next->GetData(), wxRichTextParagraph);
1503 }
1504
1505 bool applyFinalParagraphStyle = firstPara && nextParagraph && nextParagraph != firstPara;
1506
1507 wxTextAttrEx nextParaAttr;
1508 if (applyFinalParagraphStyle)
1509 {
1510 // Special case when deleting the end of a paragraph - use _this_ paragraph's style,
1511 // not the next one.
1512 if (range.GetStart() == range.GetEnd() && range.GetStart() == thisRange.GetEnd())
1513 nextParaAttr = thisAttr;
1514 else
1515 nextParaAttr = nextParagraph->GetAttributes();
1516 }
1517
1518 if (firstPara && nextParagraph && firstPara != nextParagraph)
1519 {
1520 // Move the objects to the previous para
1521 wxRichTextObjectList::compatibility_iterator node1 = nextParagraph->GetChildren().GetFirst();
1522
1523 while (node1)
1524 {
1525 wxRichTextObject* obj1 = node1->GetData();
1526
1527 firstPara->AppendChild(obj1);
1528
1529 wxRichTextObjectList::compatibility_iterator next1 = node1->GetNext();
1530 nextParagraph->GetChildren().Erase(node1);
1531
1532 node1 = next1;
1533 }
1534
1535 // Delete the paragraph
1536 RemoveChild(nextParagraph, true);
1537 }
1538
1539 // Avoid empty paragraphs
1540 if (firstPara && firstPara->GetChildren().GetCount() == 0)
1541 {
1542 wxRichTextPlainText* text = new wxRichTextPlainText(wxEmptyString);
1543 firstPara->AppendChild(text);
1544 }
1545
1546 if (applyFinalParagraphStyle)
1547 firstPara->SetAttributes(nextParaAttr);
1548
1549 return true;
1550 }
1551 }
1552
1553 node = next;
1554 }
1555
1556 return true;
1557 }
1558
1559 /// Get any text in this object for the given range
1560 wxString wxRichTextParagraphLayoutBox::GetTextForRange(const wxRichTextRange& range) const
1561 {
1562 int lineCount = 0;
1563 wxString text;
1564 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
1565 while (node)
1566 {
1567 wxRichTextObject* child = node->GetData();
1568 if (!child->GetRange().IsOutside(range))
1569 {
1570 wxRichTextRange childRange = range;
1571 childRange.LimitTo(child->GetRange());
1572
1573 wxString childText = child->GetTextForRange(childRange);
1574
1575 text += childText;
1576
1577 if ((childRange.GetEnd() == child->GetRange().GetEnd()) && node->GetNext())
1578 text += wxT("\n");
1579
1580 lineCount ++;
1581 }
1582 node = node->GetNext();
1583 }
1584
1585 return text;
1586 }
1587
1588 /// Get all the text
1589 wxString wxRichTextParagraphLayoutBox::GetText() const
1590 {
1591 return GetTextForRange(GetRange());
1592 }
1593
1594 /// Get the paragraph by number
1595 wxRichTextParagraph* wxRichTextParagraphLayoutBox::GetParagraphAtLine(long paragraphNumber) const
1596 {
1597 if ((size_t) paragraphNumber >= GetChildCount())
1598 return NULL;
1599
1600 return (wxRichTextParagraph*) GetChild((size_t) paragraphNumber);
1601 }
1602
1603 /// Get the length of the paragraph
1604 int wxRichTextParagraphLayoutBox::GetParagraphLength(long paragraphNumber) const
1605 {
1606 wxRichTextParagraph* para = GetParagraphAtLine(paragraphNumber);
1607 if (para)
1608 return para->GetRange().GetLength() - 1; // don't include newline
1609 else
1610 return 0;
1611 }
1612
1613 /// Get the text of the paragraph
1614 wxString wxRichTextParagraphLayoutBox::GetParagraphText(long paragraphNumber) const
1615 {
1616 wxRichTextParagraph* para = GetParagraphAtLine(paragraphNumber);
1617 if (para)
1618 return para->GetTextForRange(para->GetRange());
1619 else
1620 return wxEmptyString;
1621 }
1622
1623 /// Convert zero-based line column and paragraph number to a position.
1624 long wxRichTextParagraphLayoutBox::XYToPosition(long x, long y) const
1625 {
1626 wxRichTextParagraph* para = GetParagraphAtLine(y);
1627 if (para)
1628 {
1629 return para->GetRange().GetStart() + x;
1630 }
1631 else
1632 return -1;
1633 }
1634
1635 /// Convert zero-based position to line column and paragraph number
1636 bool wxRichTextParagraphLayoutBox::PositionToXY(long pos, long* x, long* y) const
1637 {
1638 wxRichTextParagraph* para = GetParagraphAtPosition(pos);
1639 if (para)
1640 {
1641 int count = 0;
1642 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
1643 while (node)
1644 {
1645 wxRichTextObject* child = node->GetData();
1646 if (child == para)
1647 break;
1648 count ++;
1649 node = node->GetNext();
1650 }
1651
1652 *y = count;
1653 *x = pos - para->GetRange().GetStart();
1654
1655 return true;
1656 }
1657 else
1658 return false;
1659 }
1660
1661 /// Get the leaf object in a paragraph at this position.
1662 /// Given a line number, get the corresponding wxRichTextLine object.
1663 wxRichTextObject* wxRichTextParagraphLayoutBox::GetLeafObjectAtPosition(long position) const
1664 {
1665 wxRichTextParagraph* para = GetParagraphAtPosition(position);
1666 if (para)
1667 {
1668 wxRichTextObjectList::compatibility_iterator node = para->GetChildren().GetFirst();
1669
1670 while (node)
1671 {
1672 wxRichTextObject* child = node->GetData();
1673 if (child->GetRange().Contains(position))
1674 return child;
1675
1676 node = node->GetNext();
1677 }
1678 if (position == para->GetRange().GetEnd() && para->GetChildCount() > 0)
1679 return para->GetChildren().GetLast()->GetData();
1680 }
1681 return NULL;
1682 }
1683
1684 /// Set character or paragraph text attributes: apply character styles only to immediate text nodes
1685 bool wxRichTextParagraphLayoutBox::SetStyle(const wxRichTextRange& range, const wxTextAttr& style, int flags)
1686 {
1687 bool characterStyle = false;
1688 bool paragraphStyle = false;
1689
1690 if (style.IsCharacterStyle())
1691 characterStyle = true;
1692 if (style.IsParagraphStyle())
1693 paragraphStyle = true;
1694
1695 bool withUndo = ((flags & wxRICHTEXT_SETSTYLE_WITH_UNDO) != 0);
1696 bool applyMinimal = ((flags & wxRICHTEXT_SETSTYLE_OPTIMIZE) != 0);
1697 bool parasOnly = ((flags & wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY) != 0);
1698 bool charactersOnly = ((flags & wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY) != 0);
1699 bool resetExistingStyle = ((flags & wxRICHTEXT_SETSTYLE_RESET) != 0);
1700 bool removeStyle = ((flags & wxRICHTEXT_SETSTYLE_REMOVE) != 0);
1701
1702 // Apply paragraph style first, if any
1703 wxTextAttr wholeStyle(style);
1704
1705 if (!removeStyle && wholeStyle.HasParagraphStyleName() && GetStyleSheet())
1706 {
1707 wxRichTextParagraphStyleDefinition* def = GetStyleSheet()->FindParagraphStyle(wholeStyle.GetParagraphStyleName());
1708 if (def)
1709 wxRichTextApplyStyle(wholeStyle, def->GetStyleMergedWithBase(GetStyleSheet()));
1710 }
1711
1712 // Limit the attributes to be set to the content to only character attributes.
1713 wxTextAttr characterAttributes(wholeStyle);
1714 characterAttributes.SetFlags(characterAttributes.GetFlags() & (wxTEXT_ATTR_CHARACTER));
1715
1716 if (!removeStyle && characterAttributes.HasCharacterStyleName() && GetStyleSheet())
1717 {
1718 wxRichTextCharacterStyleDefinition* def = GetStyleSheet()->FindCharacterStyle(characterAttributes.GetCharacterStyleName());
1719 if (def)
1720 wxRichTextApplyStyle(characterAttributes, def->GetStyleMergedWithBase(GetStyleSheet()));
1721 }
1722
1723 // If we are associated with a control, make undoable; otherwise, apply immediately
1724 // to the data.
1725
1726 bool haveControl = (GetRichTextCtrl() != NULL);
1727
1728 wxRichTextAction* action = NULL;
1729
1730 if (haveControl && withUndo)
1731 {
1732 action = new wxRichTextAction(NULL, _("Change Style"), wxRICHTEXT_CHANGE_STYLE, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
1733 action->SetRange(range);
1734 action->SetPosition(GetRichTextCtrl()->GetCaretPosition());
1735 }
1736
1737 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
1738 while (node)
1739 {
1740 wxRichTextParagraph* para = wxDynamicCast(node->GetData(), wxRichTextParagraph);
1741 wxASSERT (para != NULL);
1742
1743 if (para && para->GetChildCount() > 0)
1744 {
1745 // Stop searching if we're beyond the range of interest
1746 if (para->GetRange().GetStart() > range.GetEnd())
1747 break;
1748
1749 if (!para->GetRange().IsOutside(range))
1750 {
1751 // We'll be using a copy of the paragraph to make style changes,
1752 // not updating the buffer directly.
1753 wxRichTextParagraph* newPara wxDUMMY_INITIALIZE(NULL);
1754
1755 if (haveControl && withUndo)
1756 {
1757 newPara = new wxRichTextParagraph(*para);
1758 action->GetNewParagraphs().AppendChild(newPara);
1759
1760 // Also store the old ones for Undo
1761 action->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para));
1762 }
1763 else
1764 newPara = para;
1765
1766 // If we're specifying paragraphs only, then we really mean character formatting
1767 // to be included in the paragraph style
1768 if ((paragraphStyle || parasOnly) && !charactersOnly)
1769 {
1770 if (removeStyle)
1771 {
1772 // Removes the given style from the paragraph
1773 wxRichTextRemoveStyle(newPara->GetAttributes(), style);
1774 }
1775 else if (resetExistingStyle)
1776 newPara->GetAttributes() = wholeStyle;
1777 else
1778 {
1779 if (applyMinimal)
1780 {
1781 // Only apply attributes that will make a difference to the combined
1782 // style as seen on the display
1783 wxTextAttr combinedAttr(para->GetCombinedAttributes());
1784 wxRichTextApplyStyle(newPara->GetAttributes(), wholeStyle, & combinedAttr);
1785 }
1786 else
1787 wxRichTextApplyStyle(newPara->GetAttributes(), wholeStyle);
1788 }
1789 }
1790
1791 // When applying paragraph styles dynamically, don't change the text objects' attributes
1792 // since they will computed as needed. Only apply the character styling if it's _only_
1793 // character styling. This policy is subject to change and might be put under user control.
1794
1795 // Hm. we might well be applying a mix of paragraph and character styles, in which
1796 // case we _do_ want to apply character styles regardless of what para styles are set.
1797 // But if we're applying a paragraph style, which has some character attributes, but
1798 // we only want the paragraphs to hold this character style, then we _don't_ want to
1799 // apply the character style. So we need to be able to choose.
1800
1801 if (!parasOnly && (characterStyle|charactersOnly) && range.GetStart() != newPara->GetRange().GetEnd())
1802 {
1803 wxRichTextRange childRange(range);
1804 childRange.LimitTo(newPara->GetRange());
1805
1806 // Find the starting position and if necessary split it so
1807 // we can start applying a different style.
1808 // TODO: check that the style actually changes or is different
1809 // from style outside of range
1810 wxRichTextObject* firstObject wxDUMMY_INITIALIZE(NULL);
1811 wxRichTextObject* lastObject wxDUMMY_INITIALIZE(NULL);
1812
1813 if (childRange.GetStart() == newPara->GetRange().GetStart())
1814 firstObject = newPara->GetChildren().GetFirst()->GetData();
1815 else
1816 firstObject = newPara->SplitAt(range.GetStart());
1817
1818 // Increment by 1 because we're apply the style one _after_ the split point
1819 long splitPoint = childRange.GetEnd();
1820 if (splitPoint != newPara->GetRange().GetEnd())
1821 splitPoint ++;
1822
1823 // Find last object
1824 if (splitPoint == newPara->GetRange().GetEnd())
1825 lastObject = newPara->GetChildren().GetLast()->GetData();
1826 else
1827 // lastObject is set as a side-effect of splitting. It's
1828 // returned as the object before the new object.
1829 (void) newPara->SplitAt(splitPoint, & lastObject);
1830
1831 wxASSERT(firstObject != NULL);
1832 wxASSERT(lastObject != NULL);
1833
1834 if (!firstObject || !lastObject)
1835 continue;
1836
1837 wxRichTextObjectList::compatibility_iterator firstNode = newPara->GetChildren().Find(firstObject);
1838 wxRichTextObjectList::compatibility_iterator lastNode = newPara->GetChildren().Find(lastObject);
1839
1840 wxASSERT(firstNode);
1841 wxASSERT(lastNode);
1842
1843 wxRichTextObjectList::compatibility_iterator node2 = firstNode;
1844
1845 while (node2)
1846 {
1847 wxRichTextObject* child = node2->GetData();
1848
1849 if (removeStyle)
1850 {
1851 // Removes the given style from the paragraph
1852 wxRichTextRemoveStyle(child->GetAttributes(), style);
1853 }
1854 else if (resetExistingStyle)
1855 child->GetAttributes() = characterAttributes;
1856 else
1857 {
1858 if (applyMinimal)
1859 {
1860 // Only apply attributes that will make a difference to the combined
1861 // style as seen on the display
1862 wxTextAttr combinedAttr(newPara->GetCombinedAttributes(child->GetAttributes()));
1863 wxRichTextApplyStyle(child->GetAttributes(), characterAttributes, & combinedAttr);
1864 }
1865 else
1866 wxRichTextApplyStyle(child->GetAttributes(), characterAttributes);
1867 }
1868
1869 if (node2 == lastNode)
1870 break;
1871
1872 node2 = node2->GetNext();
1873 }
1874 }
1875 }
1876 }
1877
1878 node = node->GetNext();
1879 }
1880
1881 // Do action, or delay it until end of batch.
1882 if (haveControl && withUndo)
1883 GetRichTextCtrl()->GetBuffer().SubmitAction(action);
1884
1885 return true;
1886 }
1887
1888 /// Get the text attributes for this position.
1889 bool wxRichTextParagraphLayoutBox::GetStyle(long position, wxTextAttr& style)
1890 {
1891 return DoGetStyle(position, style, true);
1892 }
1893
1894 bool wxRichTextParagraphLayoutBox::GetUncombinedStyle(long position, wxTextAttr& style)
1895 {
1896 return DoGetStyle(position, style, false);
1897 }
1898
1899 /// Implementation helper for GetStyle. If combineStyles is true, combine base, paragraph and
1900 /// context attributes.
1901 bool wxRichTextParagraphLayoutBox::DoGetStyle(long position, wxTextAttr& style, bool combineStyles)
1902 {
1903 wxRichTextObject* obj wxDUMMY_INITIALIZE(NULL);
1904
1905 if (style.IsParagraphStyle())
1906 {
1907 obj = GetParagraphAtPosition(position);
1908 if (obj)
1909 {
1910 if (combineStyles)
1911 {
1912 // Start with the base style
1913 style = GetAttributes();
1914
1915 // Apply the paragraph style
1916 wxRichTextApplyStyle(style, obj->GetAttributes());
1917 }
1918 else
1919 style = obj->GetAttributes();
1920
1921 return true;
1922 }
1923 }
1924 else
1925 {
1926 obj = GetLeafObjectAtPosition(position);
1927 if (obj)
1928 {
1929 if (combineStyles)
1930 {
1931 wxRichTextParagraph* para = wxDynamicCast(obj->GetParent(), wxRichTextParagraph);
1932 style = para ? para->GetCombinedAttributes(obj->GetAttributes()) : obj->GetAttributes();
1933 }
1934 else
1935 style = obj->GetAttributes();
1936
1937 return true;
1938 }
1939 }
1940 return false;
1941 }
1942
1943 static bool wxHasStyle(long flags, long style)
1944 {
1945 return (flags & style) != 0;
1946 }
1947
1948 /// Combines 'style' with 'currentStyle' for the purpose of summarising the attributes of a range of
1949 /// content.
1950 bool wxRichTextParagraphLayoutBox::CollectStyle(wxTextAttr& currentStyle, const wxTextAttr& style, long& multipleStyleAttributes, int& multipleTextEffectAttributes, int& absentStyleAttributes, int& absentTextEffectAttributes)
1951 {
1952 absentStyleAttributes |= (~style.GetFlags() & wxTEXT_ATTR_ALL);
1953 absentTextEffectAttributes |= (~style.GetTextEffectFlags() & 0xFFFF);
1954
1955 if (style.HasFont())
1956 {
1957 if (style.HasFontSize() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_FONT_SIZE))
1958 {
1959 if (currentStyle.HasFontSize())
1960 {
1961 if (currentStyle.GetFontSize() != style.GetFontSize())
1962 {
1963 // Clash of style - mark as such
1964 multipleStyleAttributes |= wxTEXT_ATTR_FONT_SIZE;
1965 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_FONT_SIZE);
1966 }
1967 }
1968 else
1969 {
1970 currentStyle.SetFontSize(style.GetFontSize());
1971 }
1972 }
1973
1974 if (style.HasFontItalic() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_FONT_ITALIC))
1975 {
1976 if (currentStyle.HasFontItalic())
1977 {
1978 if (currentStyle.GetFontStyle() != style.GetFontStyle())
1979 {
1980 // Clash of style - mark as such
1981 multipleStyleAttributes |= wxTEXT_ATTR_FONT_ITALIC;
1982 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_FONT_ITALIC);
1983 }
1984 }
1985 else
1986 {
1987 currentStyle.SetFontStyle(style.GetFontStyle());
1988 }
1989 }
1990
1991 if (style.HasFontWeight() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_FONT_WEIGHT))
1992 {
1993 if (currentStyle.HasFontWeight())
1994 {
1995 if (currentStyle.GetFontWeight() != style.GetFontWeight())
1996 {
1997 // Clash of style - mark as such
1998 multipleStyleAttributes |= wxTEXT_ATTR_FONT_WEIGHT;
1999 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_FONT_WEIGHT);
2000 }
2001 }
2002 else
2003 {
2004 currentStyle.SetFontWeight(style.GetFontWeight());
2005 }
2006 }
2007
2008 if (style.HasFontFaceName() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_FONT_FACE))
2009 {
2010 if (currentStyle.HasFontFaceName())
2011 {
2012 wxString faceName1(currentStyle.GetFontFaceName());
2013 wxString faceName2(style.GetFontFaceName());
2014
2015 if (faceName1 != faceName2)
2016 {
2017 // Clash of style - mark as such
2018 multipleStyleAttributes |= wxTEXT_ATTR_FONT_FACE;
2019 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_FONT_FACE);
2020 }
2021 }
2022 else
2023 {
2024 currentStyle.SetFontFaceName(style.GetFontFaceName());
2025 }
2026 }
2027
2028 if (style.HasFontUnderlined() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_FONT_UNDERLINE))
2029 {
2030 if (currentStyle.HasFontUnderlined())
2031 {
2032 if (currentStyle.GetFontUnderlined() != style.GetFontUnderlined())
2033 {
2034 // Clash of style - mark as such
2035 multipleStyleAttributes |= wxTEXT_ATTR_FONT_UNDERLINE;
2036 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_FONT_UNDERLINE);
2037 }
2038 }
2039 else
2040 {
2041 currentStyle.SetFontUnderlined(style.GetFontUnderlined());
2042 }
2043 }
2044 }
2045
2046 if (style.HasTextColour() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_TEXT_COLOUR))
2047 {
2048 if (currentStyle.HasTextColour())
2049 {
2050 if (currentStyle.GetTextColour() != style.GetTextColour())
2051 {
2052 // Clash of style - mark as such
2053 multipleStyleAttributes |= wxTEXT_ATTR_TEXT_COLOUR;
2054 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_TEXT_COLOUR);
2055 }
2056 }
2057 else
2058 currentStyle.SetTextColour(style.GetTextColour());
2059 }
2060
2061 if (style.HasBackgroundColour() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_BACKGROUND_COLOUR))
2062 {
2063 if (currentStyle.HasBackgroundColour())
2064 {
2065 if (currentStyle.GetBackgroundColour() != style.GetBackgroundColour())
2066 {
2067 // Clash of style - mark as such
2068 multipleStyleAttributes |= wxTEXT_ATTR_BACKGROUND_COLOUR;
2069 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_BACKGROUND_COLOUR);
2070 }
2071 }
2072 else
2073 currentStyle.SetBackgroundColour(style.GetBackgroundColour());
2074 }
2075
2076 if (style.HasAlignment() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_ALIGNMENT))
2077 {
2078 if (currentStyle.HasAlignment())
2079 {
2080 if (currentStyle.GetAlignment() != style.GetAlignment())
2081 {
2082 // Clash of style - mark as such
2083 multipleStyleAttributes |= wxTEXT_ATTR_ALIGNMENT;
2084 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_ALIGNMENT);
2085 }
2086 }
2087 else
2088 currentStyle.SetAlignment(style.GetAlignment());
2089 }
2090
2091 if (style.HasTabs() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_TABS))
2092 {
2093 if (currentStyle.HasTabs())
2094 {
2095 if (!wxRichTextTabsEq(currentStyle.GetTabs(), style.GetTabs()))
2096 {
2097 // Clash of style - mark as such
2098 multipleStyleAttributes |= wxTEXT_ATTR_TABS;
2099 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_TABS);
2100 }
2101 }
2102 else
2103 currentStyle.SetTabs(style.GetTabs());
2104 }
2105
2106 if (style.HasLeftIndent() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_LEFT_INDENT))
2107 {
2108 if (currentStyle.HasLeftIndent())
2109 {
2110 if (currentStyle.GetLeftIndent() != style.GetLeftIndent() || currentStyle.GetLeftSubIndent() != style.GetLeftSubIndent())
2111 {
2112 // Clash of style - mark as such
2113 multipleStyleAttributes |= wxTEXT_ATTR_LEFT_INDENT;
2114 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_LEFT_INDENT);
2115 }
2116 }
2117 else
2118 currentStyle.SetLeftIndent(style.GetLeftIndent(), style.GetLeftSubIndent());
2119 }
2120
2121 if (style.HasRightIndent() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_RIGHT_INDENT))
2122 {
2123 if (currentStyle.HasRightIndent())
2124 {
2125 if (currentStyle.GetRightIndent() != style.GetRightIndent())
2126 {
2127 // Clash of style - mark as such
2128 multipleStyleAttributes |= wxTEXT_ATTR_RIGHT_INDENT;
2129 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_RIGHT_INDENT);
2130 }
2131 }
2132 else
2133 currentStyle.SetRightIndent(style.GetRightIndent());
2134 }
2135
2136 if (style.HasParagraphSpacingAfter() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_PARA_SPACING_AFTER))
2137 {
2138 if (currentStyle.HasParagraphSpacingAfter())
2139 {
2140 if (currentStyle.GetParagraphSpacingAfter() != style.GetParagraphSpacingAfter())
2141 {
2142 // Clash of style - mark as such
2143 multipleStyleAttributes |= wxTEXT_ATTR_PARA_SPACING_AFTER;
2144 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_PARA_SPACING_AFTER);
2145 }
2146 }
2147 else
2148 currentStyle.SetParagraphSpacingAfter(style.GetParagraphSpacingAfter());
2149 }
2150
2151 if (style.HasParagraphSpacingBefore() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_PARA_SPACING_BEFORE))
2152 {
2153 if (currentStyle.HasParagraphSpacingBefore())
2154 {
2155 if (currentStyle.GetParagraphSpacingBefore() != style.GetParagraphSpacingBefore())
2156 {
2157 // Clash of style - mark as such
2158 multipleStyleAttributes |= wxTEXT_ATTR_PARA_SPACING_BEFORE;
2159 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_PARA_SPACING_BEFORE);
2160 }
2161 }
2162 else
2163 currentStyle.SetParagraphSpacingBefore(style.GetParagraphSpacingBefore());
2164 }
2165
2166 if (style.HasLineSpacing() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_LINE_SPACING))
2167 {
2168 if (currentStyle.HasLineSpacing())
2169 {
2170 if (currentStyle.GetLineSpacing() != style.GetLineSpacing())
2171 {
2172 // Clash of style - mark as such
2173 multipleStyleAttributes |= wxTEXT_ATTR_LINE_SPACING;
2174 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_LINE_SPACING);
2175 }
2176 }
2177 else
2178 currentStyle.SetLineSpacing(style.GetLineSpacing());
2179 }
2180
2181 if (style.HasCharacterStyleName() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_CHARACTER_STYLE_NAME))
2182 {
2183 if (currentStyle.HasCharacterStyleName())
2184 {
2185 if (currentStyle.GetCharacterStyleName() != style.GetCharacterStyleName())
2186 {
2187 // Clash of style - mark as such
2188 multipleStyleAttributes |= wxTEXT_ATTR_CHARACTER_STYLE_NAME;
2189 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_CHARACTER_STYLE_NAME);
2190 }
2191 }
2192 else
2193 currentStyle.SetCharacterStyleName(style.GetCharacterStyleName());
2194 }
2195
2196 if (style.HasParagraphStyleName() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_PARAGRAPH_STYLE_NAME))
2197 {
2198 if (currentStyle.HasParagraphStyleName())
2199 {
2200 if (currentStyle.GetParagraphStyleName() != style.GetParagraphStyleName())
2201 {
2202 // Clash of style - mark as such
2203 multipleStyleAttributes |= wxTEXT_ATTR_PARAGRAPH_STYLE_NAME;
2204 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_PARAGRAPH_STYLE_NAME);
2205 }
2206 }
2207 else
2208 currentStyle.SetParagraphStyleName(style.GetParagraphStyleName());
2209 }
2210
2211 if (style.HasListStyleName() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_LIST_STYLE_NAME))
2212 {
2213 if (currentStyle.HasListStyleName())
2214 {
2215 if (currentStyle.GetListStyleName() != style.GetListStyleName())
2216 {
2217 // Clash of style - mark as such
2218 multipleStyleAttributes |= wxTEXT_ATTR_LIST_STYLE_NAME;
2219 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_LIST_STYLE_NAME);
2220 }
2221 }
2222 else
2223 currentStyle.SetListStyleName(style.GetListStyleName());
2224 }
2225
2226 if (style.HasBulletStyle() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_BULLET_STYLE))
2227 {
2228 if (currentStyle.HasBulletStyle())
2229 {
2230 if (currentStyle.GetBulletStyle() != style.GetBulletStyle())
2231 {
2232 // Clash of style - mark as such
2233 multipleStyleAttributes |= wxTEXT_ATTR_BULLET_STYLE;
2234 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_BULLET_STYLE);
2235 }
2236 }
2237 else
2238 currentStyle.SetBulletStyle(style.GetBulletStyle());
2239 }
2240
2241 if (style.HasBulletNumber() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_BULLET_NUMBER))
2242 {
2243 if (currentStyle.HasBulletNumber())
2244 {
2245 if (currentStyle.GetBulletNumber() != style.GetBulletNumber())
2246 {
2247 // Clash of style - mark as such
2248 multipleStyleAttributes |= wxTEXT_ATTR_BULLET_NUMBER;
2249 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_BULLET_NUMBER);
2250 }
2251 }
2252 else
2253 currentStyle.SetBulletNumber(style.GetBulletNumber());
2254 }
2255
2256 if (style.HasBulletText() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_BULLET_TEXT))
2257 {
2258 if (currentStyle.HasBulletText())
2259 {
2260 if (currentStyle.GetBulletText() != style.GetBulletText())
2261 {
2262 // Clash of style - mark as such
2263 multipleStyleAttributes |= wxTEXT_ATTR_BULLET_TEXT;
2264 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_BULLET_TEXT);
2265 }
2266 }
2267 else
2268 {
2269 currentStyle.SetBulletText(style.GetBulletText());
2270 currentStyle.SetBulletFont(style.GetBulletFont());
2271 }
2272 }
2273
2274 if (style.HasBulletName() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_BULLET_NAME))
2275 {
2276 if (currentStyle.HasBulletName())
2277 {
2278 if (currentStyle.GetBulletName() != style.GetBulletName())
2279 {
2280 // Clash of style - mark as such
2281 multipleStyleAttributes |= wxTEXT_ATTR_BULLET_NAME;
2282 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_BULLET_NAME);
2283 }
2284 }
2285 else
2286 {
2287 currentStyle.SetBulletName(style.GetBulletName());
2288 }
2289 }
2290
2291 if (style.HasURL() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_URL))
2292 {
2293 if (currentStyle.HasURL())
2294 {
2295 if (currentStyle.GetURL() != style.GetURL())
2296 {
2297 // Clash of style - mark as such
2298 multipleStyleAttributes |= wxTEXT_ATTR_URL;
2299 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_URL);
2300 }
2301 }
2302 else
2303 {
2304 currentStyle.SetURL(style.GetURL());
2305 }
2306 }
2307
2308 if (style.HasTextEffects() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_EFFECTS))
2309 {
2310 if (currentStyle.HasTextEffects())
2311 {
2312 // We need to find the bits in the new style that are different:
2313 // just look at those bits that are specified by the new style.
2314
2315 // We need to remove the bits and flags that are not common between current style
2316 // and new style. In so doing we need to take account of the styles absent from one or more of the
2317 // previous styles.
2318
2319 int currentRelevantTextEffects = currentStyle.GetTextEffects() & style.GetTextEffectFlags();
2320 int newRelevantTextEffects = style.GetTextEffects() & style.GetTextEffectFlags();
2321
2322 if (currentRelevantTextEffects != newRelevantTextEffects)
2323 {
2324 // Find the text effects that were different, using XOR
2325 int differentEffects = currentRelevantTextEffects ^ newRelevantTextEffects;
2326
2327 // Clash of style - mark as such
2328 multipleTextEffectAttributes |= differentEffects;
2329 currentStyle.SetTextEffectFlags(currentStyle.GetTextEffectFlags() & ~differentEffects);
2330 }
2331 }
2332 else
2333 {
2334 currentStyle.SetTextEffects(style.GetTextEffects());
2335 currentStyle.SetTextEffectFlags(style.GetTextEffectFlags());
2336 }
2337
2338 // Mask out the flags and values that cannot be common because they were absent in one or more objecrs
2339 // that we've looked at so far
2340 currentStyle.SetTextEffects(currentStyle.GetTextEffects() & ~absentTextEffectAttributes);
2341 currentStyle.SetTextEffectFlags(currentStyle.GetTextEffectFlags() & ~absentTextEffectAttributes);
2342
2343 if (currentStyle.GetTextEffectFlags() == 0)
2344 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_EFFECTS);
2345 }
2346
2347 if (style.HasOutlineLevel() && !wxHasStyle(multipleStyleAttributes|absentStyleAttributes, wxTEXT_ATTR_OUTLINE_LEVEL))
2348 {
2349 if (currentStyle.HasOutlineLevel())
2350 {
2351 if (currentStyle.GetOutlineLevel() != style.GetOutlineLevel())
2352 {
2353 // Clash of style - mark as such
2354 multipleStyleAttributes |= wxTEXT_ATTR_OUTLINE_LEVEL;
2355 currentStyle.SetFlags(currentStyle.GetFlags() & ~wxTEXT_ATTR_OUTLINE_LEVEL);
2356 }
2357 }
2358 else
2359 currentStyle.SetOutlineLevel(style.GetOutlineLevel());
2360 }
2361
2362 return true;
2363 }
2364
2365 /// Get the combined style for a range - if any attribute is different within the range,
2366 /// that attribute is not present within the flags.
2367 /// *** Note that this is not recursive, and so assumes that content inside a paragraph is not itself
2368 /// nested.
2369 bool wxRichTextParagraphLayoutBox::GetStyleForRange(const wxRichTextRange& range, wxTextAttr& style)
2370 {
2371 style = wxTextAttr();
2372
2373 // The attributes that aren't valid because of multiple styles within the range
2374 long multipleStyleAttributes = 0;
2375 int multipleTextEffectAttributes = 0;
2376
2377 int absentStyleAttributesPara = 0;
2378 int absentStyleAttributesChar = 0;
2379 int absentTextEffectAttributesPara = 0;
2380 int absentTextEffectAttributesChar = 0;
2381
2382 wxRichTextObjectList::compatibility_iterator node = GetChildren().GetFirst();
2383 while (node)
2384 {
2385 wxRichTextParagraph* para = (wxRichTextParagraph*) node->GetData();
2386 if (!(para->GetRange().GetStart() > range.GetEnd() || para->GetRange().GetEnd() < range.GetStart()))
2387 {
2388 if (para->GetChildren().GetCount() == 0)
2389 {
2390 wxTextAttr paraStyle = para->GetCombinedAttributes();
2391
2392 CollectStyle(style, paraStyle, multipleStyleAttributes, multipleTextEffectAttributes, absentStyleAttributesPara, absentTextEffectAttributesPara);
2393 }
2394 else
2395 {
2396 wxRichTextRange paraRange(para->GetRange());
2397 paraRange.LimitTo(range);
2398
2399 // First collect paragraph attributes only
2400 wxTextAttr paraStyle = para->GetCombinedAttributes();
2401 paraStyle.SetFlags(paraStyle.GetFlags() & wxTEXT_ATTR_PARAGRAPH);
2402 CollectStyle(style, paraStyle, multipleStyleAttributes, multipleTextEffectAttributes, absentStyleAttributesPara, absentTextEffectAttributesPara);
2403
2404 wxRichTextObjectList::compatibility_iterator childNode = para->GetChildren().GetFirst();
2405
2406 while (childNode)
2407 {
2408 wxRichTextObject* child = childNode->GetData();
2409 if (!(child->GetRange().GetStart() > range.GetEnd() || child->GetRange().GetEnd() < range.GetStart()))
2410 {
2411 wxTextAttr childStyle = para->GetCombinedAttributes(child->GetAttributes());
2412
2413 // Now collect character attributes only
2414 childStyle.SetFlags(childStyle.GetFlags() & wxTEXT_ATTR_CHARACTER);
2415
2416 CollectStyle(style, childStyle, multipleStyleAttributes, multipleTextEffectAttributes, absentStyleAttributesChar, absentTextEffectAttributesChar);
2417 }
2418
2419 childNode = childNode->GetNext();
2420 }
2421 }
2422 }
2423 node = node->GetNext();
2424 }
2425 return true;
2426 }
2427
2428 /// Set default style
2429 bool wxRichTextParagraphLayoutBox::SetDefaultStyle(const wxTextAttr& style)
2430 {
2431 m_defaultAttributes = style;
2432 return true;
2433 }
2434
2435 /// Test if this whole range has character attributes of the specified kind. If any
2436 /// of the attributes are different within the range, the test fails. You
2437 /// can use this to implement, for example, bold button updating. style must have
2438 /// flags indicating which attributes are of interest.
2439 bool wxRichTextParagraphLayoutBox::HasCharacterAttributes(const wxRichTextRange& range, const wxTextAttr& style) const
2440 {
2441 int foundCount = 0;
2442 int matchingCount = 0;
2443
2444 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
2445 while (node)
2446 {
2447 wxRichTextParagraph* para = wxDynamicCast(node->GetData(), wxRichTextParagraph);
2448 wxASSERT (para != NULL);
2449
2450 if (para)
2451 {
2452 // Stop searching if we're beyond the range of interest
2453 if (para->GetRange().GetStart() > range.GetEnd())
2454 return foundCount == matchingCount;
2455
2456 if (!para->GetRange().IsOutside(range))
2457 {
2458 wxRichTextObjectList::compatibility_iterator node2 = para->GetChildren().GetFirst();
2459
2460 while (node2)
2461 {
2462 wxRichTextObject* child = node2->GetData();
2463 if (!child->GetRange().IsOutside(range) && child->IsKindOf(CLASSINFO(wxRichTextPlainText)))
2464 {
2465 foundCount ++;
2466 wxTextAttr textAttr = para->GetCombinedAttributes(child->GetAttributes());
2467
2468 if (wxTextAttrEqPartial(textAttr, style, style.GetFlags()))
2469 matchingCount ++;
2470 }
2471
2472 node2 = node2->GetNext();
2473 }
2474 }
2475 }
2476
2477 node = node->GetNext();
2478 }
2479
2480 return foundCount == matchingCount;
2481 }
2482
2483 /// Test if this whole range has paragraph attributes of the specified kind. If any
2484 /// of the attributes are different within the range, the test fails. You
2485 /// can use this to implement, for example, centering button updating. style must have
2486 /// flags indicating which attributes are of interest.
2487 bool wxRichTextParagraphLayoutBox::HasParagraphAttributes(const wxRichTextRange& range, const wxTextAttr& style) const
2488 {
2489 int foundCount = 0;
2490 int matchingCount = 0;
2491
2492 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
2493 while (node)
2494 {
2495 wxRichTextParagraph* para = wxDynamicCast(node->GetData(), wxRichTextParagraph);
2496 wxASSERT (para != NULL);
2497
2498 if (para)
2499 {
2500 // Stop searching if we're beyond the range of interest
2501 if (para->GetRange().GetStart() > range.GetEnd())
2502 return foundCount == matchingCount;
2503
2504 if (!para->GetRange().IsOutside(range))
2505 {
2506 wxTextAttr textAttr = GetAttributes();
2507 // Apply the paragraph style
2508 wxRichTextApplyStyle(textAttr, para->GetAttributes());
2509
2510 foundCount ++;
2511 if (wxTextAttrEqPartial(textAttr, style, style.GetFlags()))
2512 matchingCount ++;
2513 }
2514 }
2515
2516 node = node->GetNext();
2517 }
2518 return foundCount == matchingCount;
2519 }
2520
2521 void wxRichTextParagraphLayoutBox::Clear()
2522 {
2523 DeleteChildren();
2524 }
2525
2526 void wxRichTextParagraphLayoutBox::Reset()
2527 {
2528 Clear();
2529
2530 wxRichTextBuffer* buffer = wxDynamicCast(this, wxRichTextBuffer);
2531 if (buffer && GetRichTextCtrl())
2532 {
2533 wxRichTextEvent event(wxEVT_COMMAND_RICHTEXT_BUFFER_RESET, GetRichTextCtrl()->GetId());
2534 event.SetEventObject(GetRichTextCtrl());
2535
2536 buffer->SendEvent(event, true);
2537 }
2538
2539 AddParagraph(wxEmptyString);
2540
2541 Invalidate(wxRICHTEXT_ALL);
2542 }
2543
2544 /// Invalidate the buffer. With no argument, invalidates whole buffer.
2545 void wxRichTextParagraphLayoutBox::Invalidate(const wxRichTextRange& invalidRange)
2546 {
2547 SetDirty(true);
2548
2549 if (invalidRange == wxRICHTEXT_ALL)
2550 {
2551 m_invalidRange = wxRICHTEXT_ALL;
2552 return;
2553 }
2554
2555 // Already invalidating everything
2556 if (m_invalidRange == wxRICHTEXT_ALL)
2557 return;
2558
2559 if ((invalidRange.GetStart() < m_invalidRange.GetStart()) || m_invalidRange.GetStart() == -1)
2560 m_invalidRange.SetStart(invalidRange.GetStart());
2561 if (invalidRange.GetEnd() > m_invalidRange.GetEnd())
2562 m_invalidRange.SetEnd(invalidRange.GetEnd());
2563 }
2564
2565 /// Get invalid range, rounding to entire paragraphs if argument is true.
2566 wxRichTextRange wxRichTextParagraphLayoutBox::GetInvalidRange(bool wholeParagraphs) const
2567 {
2568 if (m_invalidRange == wxRICHTEXT_ALL || m_invalidRange == wxRICHTEXT_NONE)
2569 return m_invalidRange;
2570
2571 wxRichTextRange range = m_invalidRange;
2572
2573 if (wholeParagraphs)
2574 {
2575 wxRichTextParagraph* para1 = GetParagraphAtPosition(range.GetStart());
2576 wxRichTextParagraph* para2 = GetParagraphAtPosition(range.GetEnd());
2577 if (para1)
2578 range.SetStart(para1->GetRange().GetStart());
2579 if (para2)
2580 range.SetEnd(para2->GetRange().GetEnd());
2581 }
2582 return range;
2583 }
2584
2585 /// Apply the style sheet to the buffer, for example if the styles have changed.
2586 bool wxRichTextParagraphLayoutBox::ApplyStyleSheet(wxRichTextStyleSheet* styleSheet)
2587 {
2588 wxASSERT(styleSheet != NULL);
2589 if (!styleSheet)
2590 return false;
2591
2592 int foundCount = 0;
2593
2594 wxRichTextAttr attr(GetBasicStyle());
2595 if (GetBasicStyle().HasParagraphStyleName())
2596 {
2597 wxRichTextParagraphStyleDefinition* paraDef = styleSheet->FindParagraphStyle(GetBasicStyle().GetParagraphStyleName());
2598 if (paraDef)
2599 {
2600 attr.Apply(paraDef->GetStyleMergedWithBase(styleSheet));
2601 SetBasicStyle(attr);
2602 foundCount ++;
2603 }
2604 }
2605
2606 if (GetBasicStyle().HasCharacterStyleName())
2607 {
2608 wxRichTextCharacterStyleDefinition* charDef = styleSheet->FindCharacterStyle(GetBasicStyle().GetCharacterStyleName());
2609 if (charDef)
2610 {
2611 attr.Apply(charDef->GetStyleMergedWithBase(styleSheet));
2612 SetBasicStyle(attr);
2613 foundCount ++;
2614 }
2615 }
2616
2617 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
2618 while (node)
2619 {
2620 wxRichTextParagraph* para = wxDynamicCast(node->GetData(), wxRichTextParagraph);
2621 wxASSERT (para != NULL);
2622
2623 if (para)
2624 {
2625 // Combine paragraph and list styles. If there is a list style in the original attributes,
2626 // the current indentation overrides anything else and is used to find the item indentation.
2627 // Also, for applying paragraph styles, consider having 2 modes: (1) we merge with what we have,
2628 // thereby taking into account all user changes, (2) reset the style completely (except for indentation/list
2629 // exception as above).
2630 // Problem: when changing from one list style to another, there's a danger that the level info will get lost.
2631 // So when changing a list style interactively, could retrieve level based on current style, then
2632 // set appropriate indent and apply new style.
2633
2634 if (!para->GetAttributes().GetParagraphStyleName().IsEmpty() && !para->GetAttributes().GetListStyleName().IsEmpty())
2635 {
2636 int currentIndent = para->GetAttributes().GetLeftIndent();
2637
2638 wxRichTextParagraphStyleDefinition* paraDef = styleSheet->FindParagraphStyle(para->GetAttributes().GetParagraphStyleName());
2639 wxRichTextListStyleDefinition* listDef = styleSheet->FindListStyle(para->GetAttributes().GetListStyleName());
2640 if (paraDef && !listDef)
2641 {
2642 para->GetAttributes() = paraDef->GetStyleMergedWithBase(styleSheet);
2643 foundCount ++;
2644 }
2645 else if (listDef && !paraDef)
2646 {
2647 // Set overall style defined for the list style definition
2648 para->GetAttributes() = listDef->GetStyleMergedWithBase(styleSheet);
2649
2650 // Apply the style for this level
2651 wxRichTextApplyStyle(para->GetAttributes(), * listDef->GetLevelAttributes(listDef->FindLevelForIndent(currentIndent)));
2652 foundCount ++;
2653 }
2654 else if (listDef && paraDef)
2655 {
2656 // Combines overall list style, style for level, and paragraph style
2657 para->GetAttributes() = listDef->CombineWithParagraphStyle(currentIndent, paraDef->GetStyleMergedWithBase(styleSheet));
2658 foundCount ++;
2659 }
2660 }
2661 else if (para->GetAttributes().GetParagraphStyleName().IsEmpty() && !para->GetAttributes().GetListStyleName().IsEmpty())
2662 {
2663 int currentIndent = para->GetAttributes().GetLeftIndent();
2664
2665 wxRichTextListStyleDefinition* listDef = styleSheet->FindListStyle(para->GetAttributes().GetListStyleName());
2666
2667 // Overall list definition style
2668 para->GetAttributes() = listDef->GetStyleMergedWithBase(styleSheet);
2669
2670 // Style for this level
2671 wxRichTextApplyStyle(para->GetAttributes(), * listDef->GetLevelAttributes(listDef->FindLevelForIndent(currentIndent)));
2672
2673 foundCount ++;
2674 }
2675 else if (!para->GetAttributes().GetParagraphStyleName().IsEmpty() && para->GetAttributes().GetListStyleName().IsEmpty())
2676 {
2677 wxRichTextParagraphStyleDefinition* def = styleSheet->FindParagraphStyle(para->GetAttributes().GetParagraphStyleName());
2678 if (def)
2679 {
2680 para->GetAttributes() = def->GetStyleMergedWithBase(styleSheet);
2681 foundCount ++;
2682 }
2683 }
2684 }
2685
2686 node = node->GetNext();
2687 }
2688 return foundCount != 0;
2689 }
2690
2691 /// Set list style
2692 bool wxRichTextParagraphLayoutBox::SetListStyle(const wxRichTextRange& range, wxRichTextListStyleDefinition* def, int flags, int startFrom, int specifiedLevel)
2693 {
2694 wxRichTextStyleSheet* styleSheet = GetStyleSheet();
2695
2696 bool withUndo = ((flags & wxRICHTEXT_SETSTYLE_WITH_UNDO) != 0);
2697 // bool applyMinimal = ((flags & wxRICHTEXT_SETSTYLE_OPTIMIZE) != 0);
2698 bool specifyLevel = ((flags & wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL) != 0);
2699 bool renumber = ((flags & wxRICHTEXT_SETSTYLE_RENUMBER) != 0);
2700
2701 // Current number, if numbering
2702 int n = startFrom;
2703
2704 wxASSERT (!specifyLevel || (specifyLevel && (specifiedLevel >= 0)));
2705
2706 // If we are associated with a control, make undoable; otherwise, apply immediately
2707 // to the data.
2708
2709 bool haveControl = (GetRichTextCtrl() != NULL);
2710
2711 wxRichTextAction* action = NULL;
2712
2713 if (haveControl && withUndo)
2714 {
2715 action = new wxRichTextAction(NULL, _("Change List Style"), wxRICHTEXT_CHANGE_STYLE, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
2716 action->SetRange(range);
2717 action->SetPosition(GetRichTextCtrl()->GetCaretPosition());
2718 }
2719
2720 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
2721 while (node)
2722 {
2723 wxRichTextParagraph* para = wxDynamicCast(node->GetData(), wxRichTextParagraph);
2724 wxASSERT (para != NULL);
2725
2726 if (para && para->GetChildCount() > 0)
2727 {
2728 // Stop searching if we're beyond the range of interest
2729 if (para->GetRange().GetStart() > range.GetEnd())
2730 break;
2731
2732 if (!para->GetRange().IsOutside(range))
2733 {
2734 // We'll be using a copy of the paragraph to make style changes,
2735 // not updating the buffer directly.
2736 wxRichTextParagraph* newPara wxDUMMY_INITIALIZE(NULL);
2737
2738 if (haveControl && withUndo)
2739 {
2740 newPara = new wxRichTextParagraph(*para);
2741 action->GetNewParagraphs().AppendChild(newPara);
2742
2743 // Also store the old ones for Undo
2744 action->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para));
2745 }
2746 else
2747 newPara = para;
2748
2749 if (def)
2750 {
2751 int thisIndent = newPara->GetAttributes().GetLeftIndent();
2752 int thisLevel = specifyLevel ? specifiedLevel : def->FindLevelForIndent(thisIndent);
2753
2754 // How is numbering going to work?
2755 // If we are renumbering, or numbering for the first time, we need to keep
2756 // track of the number for each level. But we might be simply applying a different
2757 // list style.
2758 // In Word, applying a style to several paragraphs, even if at different levels,
2759 // reverts the level back to the same one. So we could do the same here.
2760 // Renumbering will need to be done when we promote/demote a paragraph.
2761
2762 // Apply the overall list style, and item style for this level
2763 wxTextAttr listStyle(def->GetCombinedStyleForLevel(thisLevel, styleSheet));
2764 wxRichTextApplyStyle(newPara->GetAttributes(), listStyle);
2765
2766 // Now we need to do numbering
2767 if (renumber)
2768 {
2769 newPara->GetAttributes().SetBulletNumber(n);
2770 }
2771
2772 n ++;
2773 }
2774 else if (!newPara->GetAttributes().GetListStyleName().IsEmpty())
2775 {
2776 // if def is NULL, remove list style, applying any associated paragraph style
2777 // to restore the attributes
2778
2779 newPara->GetAttributes().SetListStyleName(wxEmptyString);
2780 newPara->GetAttributes().SetLeftIndent(0, 0);
2781 newPara->GetAttributes().SetBulletText(wxEmptyString);
2782
2783 // Eliminate the main list-related attributes
2784 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);
2785
2786 if (styleSheet && !newPara->GetAttributes().GetParagraphStyleName().IsEmpty())
2787 {
2788 wxRichTextParagraphStyleDefinition* def = styleSheet->FindParagraphStyle(newPara->GetAttributes().GetParagraphStyleName());
2789 if (def)
2790 {
2791 newPara->GetAttributes() = def->GetStyleMergedWithBase(styleSheet);
2792 }
2793 }
2794 }
2795 }
2796 }
2797
2798 node = node->GetNext();
2799 }
2800
2801 // Do action, or delay it until end of batch.
2802 if (haveControl && withUndo)
2803 GetRichTextCtrl()->GetBuffer().SubmitAction(action);
2804
2805 return true;
2806 }
2807
2808 bool wxRichTextParagraphLayoutBox::SetListStyle(const wxRichTextRange& range, const wxString& defName, int flags, int startFrom, int specifiedLevel)
2809 {
2810 if (GetStyleSheet())
2811 {
2812 wxRichTextListStyleDefinition* def = GetStyleSheet()->FindListStyle(defName);
2813 if (def)
2814 return SetListStyle(range, def, flags, startFrom, specifiedLevel);
2815 }
2816 return false;
2817 }
2818
2819 /// Clear list for given range
2820 bool wxRichTextParagraphLayoutBox::ClearListStyle(const wxRichTextRange& range, int flags)
2821 {
2822 return SetListStyle(range, NULL, flags);
2823 }
2824
2825 /// Number/renumber any list elements in the given range
2826 bool wxRichTextParagraphLayoutBox::NumberList(const wxRichTextRange& range, wxRichTextListStyleDefinition* def, int flags, int startFrom, int specifiedLevel)
2827 {
2828 return DoNumberList(range, range, 0, def, flags, startFrom, specifiedLevel);
2829 }
2830
2831 /// Number/renumber any list elements in the given range. Also do promotion or demotion of items, if specified
2832 bool wxRichTextParagraphLayoutBox::DoNumberList(const wxRichTextRange& range, const wxRichTextRange& promotionRange, int promoteBy,
2833 wxRichTextListStyleDefinition* def, int flags, int startFrom, int specifiedLevel)
2834 {
2835 wxRichTextStyleSheet* styleSheet = GetStyleSheet();
2836
2837 bool withUndo = ((flags & wxRICHTEXT_SETSTYLE_WITH_UNDO) != 0);
2838 // bool applyMinimal = ((flags & wxRICHTEXT_SETSTYLE_OPTIMIZE) != 0);
2839 #ifdef __WXDEBUG__
2840 bool specifyLevel = ((flags & wxRICHTEXT_SETSTYLE_SPECIFY_LEVEL) != 0);
2841 #endif
2842
2843 bool renumber = ((flags & wxRICHTEXT_SETSTYLE_RENUMBER) != 0);
2844
2845 // Max number of levels
2846 const int maxLevels = 10;
2847
2848 // The level we're looking at now
2849 int currentLevel = -1;
2850
2851 // The item number for each level
2852 int levels[maxLevels];
2853 int i;
2854
2855 // Reset all numbering
2856 for (i = 0; i < maxLevels; i++)
2857 {
2858 if (startFrom != -1)
2859 levels[i] = startFrom-1;
2860 else if (renumber) // start again
2861 levels[i] = 0;
2862 else
2863 levels[i] = -1; // start from the number we found, if any
2864 }
2865
2866 wxASSERT(!specifyLevel || (specifyLevel && (specifiedLevel >= 0)));
2867
2868 // If we are associated with a control, make undoable; otherwise, apply immediately
2869 // to the data.
2870
2871 bool haveControl = (GetRichTextCtrl() != NULL);
2872
2873 wxRichTextAction* action = NULL;
2874
2875 if (haveControl && withUndo)
2876 {
2877 action = new wxRichTextAction(NULL, _("Renumber List"), wxRICHTEXT_CHANGE_STYLE, & GetRichTextCtrl()->GetBuffer(), GetRichTextCtrl());
2878 action->SetRange(range);
2879 action->SetPosition(GetRichTextCtrl()->GetCaretPosition());
2880 }
2881
2882 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
2883 while (node)
2884 {
2885 wxRichTextParagraph* para = wxDynamicCast(node->GetData(), wxRichTextParagraph);
2886 wxASSERT (para != NULL);
2887
2888 if (para && para->GetChildCount() > 0)
2889 {
2890 // Stop searching if we're beyond the range of interest
2891 if (para->GetRange().GetStart() > range.GetEnd())
2892 break;
2893
2894 if (!para->GetRange().IsOutside(range))
2895 {
2896 // We'll be using a copy of the paragraph to make style changes,
2897 // not updating the buffer directly.
2898 wxRichTextParagraph* newPara wxDUMMY_INITIALIZE(NULL);
2899
2900 if (haveControl && withUndo)
2901 {
2902 newPara = new wxRichTextParagraph(*para);
2903 action->GetNewParagraphs().AppendChild(newPara);
2904
2905 // Also store the old ones for Undo
2906 action->GetOldParagraphs().AppendChild(new wxRichTextParagraph(*para));
2907 }
2908 else
2909 newPara = para;
2910
2911 wxRichTextListStyleDefinition* defToUse = def;
2912 if (!defToUse)
2913 {
2914 if (styleSheet && !newPara->GetAttributes().GetListStyleName().IsEmpty())
2915 defToUse = styleSheet->FindListStyle(newPara->GetAttributes().GetListStyleName());
2916 }
2917
2918 if (defToUse)
2919 {
2920 int thisIndent = newPara->GetAttributes().GetLeftIndent();
2921 int thisLevel = defToUse->FindLevelForIndent(thisIndent);
2922
2923 // If we've specified a level to apply to all, change the level.
2924 if (specifiedLevel != -1)
2925 thisLevel = specifiedLevel;
2926
2927 // Do promotion if specified
2928 if ((promoteBy != 0) && !para->GetRange().IsOutside(promotionRange))
2929 {
2930 thisLevel = thisLevel - promoteBy;
2931 if (thisLevel < 0)
2932 thisLevel = 0;
2933 if (thisLevel > 9)
2934 thisLevel = 9;
2935 }
2936
2937 // Apply the overall list style, and item style for this level
2938 wxTextAttr listStyle(defToUse->GetCombinedStyleForLevel(thisLevel, styleSheet));
2939 wxRichTextApplyStyle(newPara->GetAttributes(), listStyle);
2940
2941 // OK, we've (re)applied the style, now let's get the numbering right.
2942
2943 if (currentLevel == -1)
2944 currentLevel = thisLevel;
2945
2946 // Same level as before, do nothing except increment level's number afterwards
2947 if (currentLevel == thisLevel)
2948 {
2949 }
2950 // A deeper level: start renumbering all levels after current level
2951 else if (thisLevel > currentLevel)
2952 {
2953 for (i = currentLevel+1; i <= thisLevel; i++)
2954 {
2955 levels[i] = 0;
2956 }
2957 currentLevel = thisLevel;
2958 }
2959 else if (thisLevel < currentLevel)
2960 {
2961 currentLevel = thisLevel;
2962 }
2963
2964 // Use the current numbering if -1 and we have a bullet number already
2965 if (levels[currentLevel] == -1)
2966 {
2967 if (newPara->GetAttributes().HasBulletNumber())
2968 levels[currentLevel] = newPara->GetAttributes().GetBulletNumber();
2969 else
2970 levels[currentLevel] = 1;
2971 }
2972 else
2973 {
2974 levels[currentLevel] ++;
2975 }
2976
2977 newPara->GetAttributes().SetBulletNumber(levels[currentLevel]);
2978
2979 // Create the bullet text if an outline list
2980 if (listStyle.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE)
2981 {
2982 wxString text;
2983 for (i = 0; i <= currentLevel; i++)
2984 {
2985 if (!text.IsEmpty())
2986 text += wxT(".");
2987 text += wxString::Format(wxT("%d"), levels[i]);
2988 }
2989 newPara->GetAttributes().SetBulletText(text);
2990 }
2991 }
2992 }
2993 }
2994
2995 node = node->GetNext();
2996 }
2997
2998 // Do action, or delay it until end of batch.
2999 if (haveControl && withUndo)
3000 GetRichTextCtrl()->GetBuffer().SubmitAction(action);
3001
3002 return true;
3003 }
3004
3005 bool wxRichTextParagraphLayoutBox::NumberList(const wxRichTextRange& range, const wxString& defName, int flags, int startFrom, int specifiedLevel)
3006 {
3007 if (GetStyleSheet())
3008 {
3009 wxRichTextListStyleDefinition* def = NULL;
3010 if (!defName.IsEmpty())
3011 def = GetStyleSheet()->FindListStyle(defName);
3012 return NumberList(range, def, flags, startFrom, specifiedLevel);
3013 }
3014 return false;
3015 }
3016
3017 /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
3018 bool wxRichTextParagraphLayoutBox::PromoteList(int promoteBy, const wxRichTextRange& range, wxRichTextListStyleDefinition* def, int flags, int specifiedLevel)
3019 {
3020 // TODO
3021 // One strategy is to first work out the range within which renumbering must occur. Then could pass these two ranges
3022 // to NumberList with a flag indicating promotion is required within one of the ranges.
3023 // Find first and last paragraphs in range. Then for first, calculate new indentation and look back until we find
3024 // a paragraph that either has no list style, or has one that is different or whose indentation is less.
3025 // We start renumbering from the para after that different para we found. We specify that the numbering of that
3026 // list position will start from 1.
3027 // Similarly, we look after the last para in the promote range for an indentation that is less (or no list style).
3028 // We can end the renumbering at this point.
3029
3030 // For now, only renumber within the promotion range.
3031
3032 return DoNumberList(range, range, promoteBy, def, flags, 1, specifiedLevel);
3033 }
3034
3035 bool wxRichTextParagraphLayoutBox::PromoteList(int promoteBy, const wxRichTextRange& range, const wxString& defName, int flags, int specifiedLevel)
3036 {
3037 if (GetStyleSheet())
3038 {
3039 wxRichTextListStyleDefinition* def = NULL;
3040 if (!defName.IsEmpty())
3041 def = GetStyleSheet()->FindListStyle(defName);
3042 return PromoteList(promoteBy, range, def, flags, specifiedLevel);
3043 }
3044 return false;
3045 }
3046
3047 /// Fills in the attributes for numbering a paragraph after previousParagraph. It also finds the
3048 /// position of the paragraph that it had to start looking from.
3049 bool wxRichTextParagraphLayoutBox::FindNextParagraphNumber(wxRichTextParagraph* previousParagraph, wxTextAttr& attr) const
3050 {
3051 if (!previousParagraph->GetAttributes().HasFlag(wxTEXT_ATTR_BULLET_STYLE) || previousParagraph->GetAttributes().GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_NONE)
3052 return false;
3053
3054 wxRichTextStyleSheet* styleSheet = GetStyleSheet();
3055 if (styleSheet && !previousParagraph->GetAttributes().GetListStyleName().IsEmpty())
3056 {
3057 wxRichTextListStyleDefinition* def = styleSheet->FindListStyle(previousParagraph->GetAttributes().GetListStyleName());
3058 if (def)
3059 {
3060 // int thisIndent = previousParagraph->GetAttributes().GetLeftIndent();
3061 // int thisLevel = def->FindLevelForIndent(thisIndent);
3062
3063 bool isOutline = (previousParagraph->GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE) != 0;
3064
3065 attr.SetFlags(previousParagraph->GetAttributes().GetFlags() & (wxTEXT_ATTR_BULLET_STYLE|wxTEXT_ATTR_BULLET_NUMBER|wxTEXT_ATTR_BULLET_TEXT|wxTEXT_ATTR_BULLET_NAME));
3066 if (previousParagraph->GetAttributes().HasBulletName())
3067 attr.SetBulletName(previousParagraph->GetAttributes().GetBulletName());
3068 attr.SetBulletStyle(previousParagraph->GetAttributes().GetBulletStyle());
3069 attr.SetListStyleName(previousParagraph->GetAttributes().GetListStyleName());
3070
3071 int nextNumber = previousParagraph->GetAttributes().GetBulletNumber() + 1;
3072 attr.SetBulletNumber(nextNumber);
3073
3074 if (isOutline)
3075 {
3076 wxString text = previousParagraph->GetAttributes().GetBulletText();
3077 if (!text.IsEmpty())
3078 {
3079 int pos = text.Find(wxT('.'), true);
3080 if (pos != wxNOT_FOUND)
3081 {
3082 text = text.Mid(0, text.Length() - pos - 1);
3083 }
3084 else
3085 text = wxEmptyString;
3086 if (!text.IsEmpty())
3087 text += wxT(".");
3088 text += wxString::Format(wxT("%d"), nextNumber);
3089 attr.SetBulletText(text);
3090 }
3091 }
3092
3093 return true;
3094 }
3095 else
3096 return false;
3097 }
3098 else
3099 return false;
3100 }
3101
3102 /*!
3103 * wxRichTextParagraph
3104 * This object represents a single paragraph (or in a straight text editor, a line).
3105 */
3106
3107 IMPLEMENT_DYNAMIC_CLASS(wxRichTextParagraph, wxRichTextBox)
3108
3109 wxArrayInt wxRichTextParagraph::sm_defaultTabs;
3110
3111 wxRichTextParagraph::wxRichTextParagraph(wxRichTextObject* parent, wxTextAttr* style):
3112 wxRichTextBox(parent)
3113 {
3114 if (style)
3115 SetAttributes(*style);
3116 }
3117
3118 wxRichTextParagraph::wxRichTextParagraph(const wxString& text, wxRichTextObject* parent, wxTextAttr* paraStyle, wxTextAttr* charStyle):
3119 wxRichTextBox(parent)
3120 {
3121 if (paraStyle)
3122 SetAttributes(*paraStyle);
3123
3124 AppendChild(new wxRichTextPlainText(text, this, charStyle));
3125 }
3126
3127 wxRichTextParagraph::~wxRichTextParagraph()
3128 {
3129 ClearLines();
3130 }
3131
3132 /// Draw the item
3133 bool wxRichTextParagraph::Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int WXUNUSED(descent), int style)
3134 {
3135 wxTextAttr attr = GetCombinedAttributes();
3136
3137 // Draw the bullet, if any
3138 if (attr.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE)
3139 {
3140 if (attr.GetLeftSubIndent() != 0)
3141 {
3142 int spaceBeforePara = ConvertTenthsMMToPixels(dc, attr.GetParagraphSpacingBefore());
3143 int leftIndent = ConvertTenthsMMToPixels(dc, attr.GetLeftIndent());
3144
3145 wxTextAttr bulletAttr(GetCombinedAttributes());
3146
3147 // Combine with the font of the first piece of content, if one is specified
3148 if (GetChildren().GetCount() > 0)
3149 {
3150 wxRichTextObject* firstObj = (wxRichTextObject*) GetChildren().GetFirst()->GetData();
3151 if (firstObj->GetAttributes().HasFont())
3152 {
3153 wxRichTextApplyStyle(bulletAttr, firstObj->GetAttributes());
3154 }
3155 }
3156
3157 // Get line height from first line, if any
3158 wxRichTextLine* line = m_cachedLines.GetFirst() ? (wxRichTextLine* ) m_cachedLines.GetFirst()->GetData() : (wxRichTextLine*) NULL;
3159
3160 wxPoint linePos;
3161 int lineHeight wxDUMMY_INITIALIZE(0);
3162 if (line)
3163 {
3164 lineHeight = line->GetSize().y;
3165 linePos = line->GetPosition() + GetPosition();
3166 }
3167 else
3168 {
3169 wxFont font;
3170 if (bulletAttr.HasFont() && GetBuffer())
3171 font = GetBuffer()->GetFontTable().FindFont(bulletAttr);
3172 else
3173 font = (*wxNORMAL_FONT);
3174
3175 wxCheckSetFont(dc, font);
3176
3177 lineHeight = dc.GetCharHeight();
3178 linePos = GetPosition();
3179 linePos.y += spaceBeforePara;
3180 }
3181
3182 wxRect bulletRect(GetPosition().x + leftIndent, linePos.y, linePos.x - (GetPosition().x + leftIndent), lineHeight);
3183
3184 if (attr.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_BITMAP)
3185 {
3186 if (wxRichTextBuffer::GetRenderer())
3187 wxRichTextBuffer::GetRenderer()->DrawBitmapBullet(this, dc, bulletAttr, bulletRect);
3188 }
3189 else if (attr.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_STANDARD)
3190 {
3191 if (wxRichTextBuffer::GetRenderer())
3192 wxRichTextBuffer::GetRenderer()->DrawStandardBullet(this, dc, bulletAttr, bulletRect);
3193 }
3194 else
3195 {
3196 wxString bulletText = GetBulletText();
3197
3198 if (!bulletText.empty() && wxRichTextBuffer::GetRenderer())
3199 wxRichTextBuffer::GetRenderer()->DrawTextBullet(this, dc, bulletAttr, bulletRect, bulletText);
3200 }
3201 }
3202 }
3203
3204 // Draw the range for each line, one object at a time.
3205
3206 wxRichTextLineList::compatibility_iterator node = m_cachedLines.GetFirst();
3207 while (node)
3208 {
3209 wxRichTextLine* line = node->GetData();
3210 wxRichTextRange lineRange = line->GetAbsoluteRange();
3211
3212 // Lines are specified relative to the paragraph
3213
3214 wxPoint linePosition = line->GetPosition() + GetPosition();
3215
3216 // Don't draw if off the screen
3217 if (((style & wxRICHTEXT_DRAW_IGNORE_CACHE) != 0) || ((linePosition.y + line->GetSize().y) >= rect.y && linePosition.y <= rect.y + rect.height))
3218 {
3219 wxPoint objectPosition = linePosition;
3220 int maxDescent = line->GetDescent();
3221
3222 // Loop through objects until we get to the one within range
3223 wxRichTextObjectList::compatibility_iterator node2 = m_children.GetFirst();
3224
3225 int i = 0;
3226 while (node2)
3227 {
3228 wxRichTextObject* child = node2->GetData();
3229
3230 if (child->GetRange().GetLength() > 0 && !child->GetRange().IsOutside(lineRange) && !lineRange.IsOutside(range))
3231 {
3232 // Draw this part of the line at the correct position
3233 wxRichTextRange objectRange(child->GetRange());
3234 objectRange.LimitTo(lineRange);
3235
3236 wxSize objectSize;
3237 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING && wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3238 if (i < (int) line->GetObjectSizes().GetCount())
3239 {
3240 objectSize.x = line->GetObjectSizes()[(size_t) i];
3241 }
3242 else
3243 #endif
3244 {
3245 int descent = 0;
3246 child->GetRangeSize(objectRange, objectSize, descent, dc, wxRICHTEXT_UNFORMATTED, objectPosition);
3247 }
3248
3249 // Use the child object's width, but the whole line's height
3250 wxRect childRect(objectPosition, wxSize(objectSize.x, line->GetSize().y));
3251 child->Draw(dc, objectRange, selectionRange, childRect, maxDescent, style);
3252
3253 objectPosition.x += objectSize.x;
3254 i ++;
3255 }
3256 else if (child->GetRange().GetStart() > lineRange.GetEnd())
3257 // Can break out of inner loop now since we've passed this line's range
3258 break;
3259
3260 node2 = node2->GetNext();
3261 }
3262 }
3263
3264 node = node->GetNext();
3265 }
3266
3267 return true;
3268 }
3269
3270 // Get the range width using partial extents calculated for the whole paragraph.
3271 static int wxRichTextGetRangeWidth(const wxRichTextParagraph& para, const wxRichTextRange& range, const wxArrayInt& partialExtents)
3272 {
3273 wxASSERT(partialExtents.GetCount() >= (size_t) range.GetLength());
3274
3275 if (partialExtents.GetCount() < (size_t) range.GetLength())
3276 return 0;
3277
3278 int leftMostPos = 0;
3279 if (range.GetStart() - para.GetRange().GetStart() > 0)
3280 leftMostPos = partialExtents[range.GetStart() - para.GetRange().GetStart() - 1];
3281
3282 int rightMostPos = partialExtents[range.GetEnd() - para.GetRange().GetStart()];
3283
3284 int w = rightMostPos - leftMostPos;
3285
3286 return w;
3287 }
3288
3289 /// Lay the item out
3290 bool wxRichTextParagraph::Layout(wxDC& dc, const wxRect& rect, int style)
3291 {
3292 wxTextAttr attr = GetCombinedAttributes();
3293
3294 // ClearLines();
3295
3296 // Increase the size of the paragraph due to spacing
3297 int spaceBeforePara = ConvertTenthsMMToPixels(dc, attr.GetParagraphSpacingBefore());
3298 int spaceAfterPara = ConvertTenthsMMToPixels(dc, attr.GetParagraphSpacingAfter());
3299 int leftIndent = ConvertTenthsMMToPixels(dc, attr.GetLeftIndent());
3300 int leftSubIndent = ConvertTenthsMMToPixels(dc, attr.GetLeftSubIndent());
3301 int rightIndent = ConvertTenthsMMToPixels(dc, attr.GetRightIndent());
3302
3303 int lineSpacing = 0;
3304
3305 // Let's assume line spacing of 10 is normal, 15 is 1.5, 20 is 2, etc.
3306 if (attr.GetLineSpacing() != 10 && GetBuffer())
3307 {
3308 wxFont font(GetBuffer()->GetFontTable().FindFont(attr));
3309 wxCheckSetFont(dc, font);
3310 lineSpacing = (ConvertTenthsMMToPixels(dc, dc.GetCharHeight()) * attr.GetLineSpacing())/10;
3311 }
3312
3313 // Available space for text on each line differs.
3314 int availableTextSpaceFirstLine = rect.GetWidth() - leftIndent - rightIndent;
3315
3316 // Bullets start the text at the same position as subsequent lines
3317 if (attr.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE)
3318 availableTextSpaceFirstLine -= leftSubIndent;
3319
3320 int availableTextSpaceSubsequentLines = rect.GetWidth() - leftIndent - rightIndent - leftSubIndent;
3321
3322 // Start position for each line relative to the paragraph
3323 int startPositionFirstLine = leftIndent;
3324 int startPositionSubsequentLines = leftIndent + leftSubIndent;
3325
3326 // If we have a bullet in this paragraph, the start position for the first line's text
3327 // is actually leftIndent + leftSubIndent.
3328 if (attr.GetBulletStyle() != wxTEXT_ATTR_BULLET_STYLE_NONE)
3329 startPositionFirstLine = startPositionSubsequentLines;
3330
3331 long lastEndPos = GetRange().GetStart()-1;
3332 long lastCompletedEndPos = lastEndPos;
3333
3334 int currentWidth = 0;
3335 SetPosition(rect.GetPosition());
3336
3337 wxPoint currentPosition(0, spaceBeforePara); // We will calculate lines relative to paragraph
3338 int lineHeight = 0;
3339 int maxWidth = 0;
3340 int maxDescent = 0;
3341
3342 int lineCount = 0;
3343
3344 wxRichTextObjectList::compatibility_iterator node;
3345
3346 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3347 wxUnusedVar(style);
3348 wxArrayInt partialExtents;
3349
3350 wxSize paraSize;
3351 int paraDescent;
3352
3353 // This calculates the partial text extents
3354 GetRangeSize(GetRange(), paraSize, paraDescent, dc, wxRICHTEXT_UNFORMATTED|wxRICHTEXT_CACHE_SIZE, wxPoint(0,0), & partialExtents);
3355 #else
3356 node = m_children.GetFirst();
3357 while (node)
3358 {
3359 wxRichTextObject* child = node->GetData();
3360
3361 child->SetCachedSize(wxDefaultSize);
3362 child->Layout(dc, rect, style);
3363
3364 node = node->GetNext();
3365 }
3366
3367 #endif
3368
3369 // Split up lines
3370
3371 // We may need to go back to a previous child, in which case create the new line,
3372 // find the child corresponding to the start position of the string, and
3373 // continue.
3374
3375 node = m_children.GetFirst();
3376 while (node)
3377 {
3378 wxRichTextObject* child = node->GetData();
3379
3380 if (child->GetRange().GetLength() == 0)
3381 {
3382 node = node->GetNext();
3383 continue;
3384 }
3385
3386 // If this is e.g. a composite text box, it will need to be laid out itself.
3387 // But if just a text fragment or image, for example, this will
3388 // do nothing. NB: won't we need to set the position after layout?
3389 // since for example if position is dependent on vertical line size, we
3390 // can't tell the position until the size is determined. So possibly introduce
3391 // another layout phase.
3392
3393 // Available width depends on whether we're on the first or subsequent lines
3394 int availableSpaceForText = (lineCount == 0 ? availableTextSpaceFirstLine : availableTextSpaceSubsequentLines);
3395
3396 currentPosition.x = (lineCount == 0 ? startPositionFirstLine : startPositionSubsequentLines);
3397
3398 // We may only be looking at part of a child, if we searched back for wrapping
3399 // and found a suitable point some way into the child. So get the size for the fragment
3400 // if necessary.
3401
3402 long nextBreakPos = GetFirstLineBreakPosition(lastEndPos+1);
3403 long lastPosToUse = child->GetRange().GetEnd();
3404 bool lineBreakInThisObject = (nextBreakPos > -1 && nextBreakPos <= child->GetRange().GetEnd());
3405
3406 if (lineBreakInThisObject)
3407 lastPosToUse = nextBreakPos;
3408
3409 wxSize childSize;
3410 int childDescent = 0;
3411
3412 if ((nextBreakPos == -1) && (lastEndPos == child->GetRange().GetStart() - 1)) // i.e. we want to get the whole thing
3413 {
3414 childSize = child->GetCachedSize();
3415 childDescent = child->GetDescent();
3416 }
3417 else
3418 {
3419 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3420 // Get height only, then the width using the partial extents
3421 GetRangeSize(wxRichTextRange(lastEndPos+1, lastPosToUse), childSize, childDescent, dc, wxRICHTEXT_UNFORMATTED|wxRICHTEXT_HEIGHT_ONLY);
3422 childSize.x = wxRichTextGetRangeWidth(*this, wxRichTextRange(lastEndPos+1, lastPosToUse), partialExtents);
3423 #else
3424 GetRangeSize(wxRichTextRange(lastEndPos+1, lastPosToUse), childSize, childDescent, dc, wxRICHTEXT_UNFORMATTED, rect.GetPosition());
3425 #endif
3426 }
3427
3428 // Cases:
3429 // 1) There was a line break BEFORE the natural break
3430 // 2) There was a line break AFTER the natural break
3431 // 3) The child still fits (carry on)
3432
3433 if ((lineBreakInThisObject && (childSize.x + currentWidth <= availableSpaceForText)) ||
3434 (childSize.x + currentWidth > availableSpaceForText))
3435 {
3436 long wrapPosition = 0;
3437
3438 // Find a place to wrap. This may walk back to previous children,
3439 // for example if a word spans several objects.
3440 if (!FindWrapPosition(wxRichTextRange(lastCompletedEndPos+1, child->GetRange().GetEnd()), dc, availableSpaceForText, wrapPosition, & partialExtents))
3441 {
3442 // If the function failed, just cut it off at the end of this child.
3443 wrapPosition = child->GetRange().GetEnd();
3444 }
3445
3446 // FindWrapPosition can still return a value that will put us in an endless wrapping loop
3447 if (wrapPosition <= lastCompletedEndPos)
3448 wrapPosition = wxMax(lastCompletedEndPos+1,child->GetRange().GetEnd());
3449
3450 // wxLogDebug(wxT("Split at %ld"), wrapPosition);
3451
3452 // Let's find the actual size of the current line now
3453 wxSize actualSize;
3454 wxRichTextRange actualRange(lastCompletedEndPos+1, wrapPosition);
3455
3456 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3457 // Get height only, then the width using the partial extents
3458 GetRangeSize(actualRange, actualSize, childDescent, dc, wxRICHTEXT_UNFORMATTED|wxRICHTEXT_HEIGHT_ONLY);
3459 actualSize.x = wxRichTextGetRangeWidth(*this, actualRange, partialExtents);
3460 #else
3461 GetRangeSize(actualRange, actualSize, childDescent, dc, wxRICHTEXT_UNFORMATTED);
3462 #endif
3463
3464 currentWidth = actualSize.x;
3465 lineHeight = wxMax(lineHeight, actualSize.y);
3466 maxDescent = wxMax(childDescent, maxDescent);
3467
3468 // Add a new line
3469 wxRichTextLine* line = AllocateLine(lineCount);
3470
3471 // Set relative range so we won't have to change line ranges when paragraphs are moved
3472 line->SetRange(wxRichTextRange(actualRange.GetStart() - GetRange().GetStart(), actualRange.GetEnd() - GetRange().GetStart()));
3473 line->SetPosition(currentPosition);
3474 line->SetSize(wxSize(currentWidth, lineHeight));
3475 line->SetDescent(maxDescent);
3476
3477 // Now move down a line. TODO: add margins, spacing
3478 currentPosition.y += lineHeight;
3479 currentPosition.y += lineSpacing;
3480 currentWidth = 0;
3481 maxDescent = 0;
3482 maxWidth = wxMax(maxWidth, currentWidth);
3483
3484 lineCount ++;
3485
3486 // TODO: account for zero-length objects, such as fields
3487 wxASSERT(wrapPosition > lastCompletedEndPos);
3488
3489 lastEndPos = wrapPosition;
3490 lastCompletedEndPos = lastEndPos;
3491
3492 lineHeight = 0;
3493
3494 // May need to set the node back to a previous one, due to searching back in wrapping
3495 wxRichTextObject* childAfterWrapPosition = FindObjectAtPosition(wrapPosition+1);
3496 if (childAfterWrapPosition)
3497 node = m_children.Find(childAfterWrapPosition);
3498 else
3499 node = node->GetNext();
3500 }
3501 else
3502 {
3503 // We still fit, so don't add a line, and keep going
3504 currentWidth += childSize.x;
3505 lineHeight = wxMax(lineHeight, childSize.y);
3506 maxDescent = wxMax(childDescent, maxDescent);
3507
3508 maxWidth = wxMax(maxWidth, currentWidth);
3509 lastEndPos = child->GetRange().GetEnd();
3510
3511 node = node->GetNext();
3512 }
3513 }
3514
3515 // Add the last line - it's the current pos -> last para pos
3516 // Substract -1 because the last position is always the end-paragraph position.
3517 if (lastCompletedEndPos <= GetRange().GetEnd()-1)
3518 {
3519 currentPosition.x = (lineCount == 0 ? startPositionFirstLine : startPositionSubsequentLines);
3520
3521 wxRichTextLine* line = AllocateLine(lineCount);
3522
3523 wxRichTextRange actualRange(lastCompletedEndPos+1, GetRange().GetEnd()-1);
3524
3525 // Set relative range so we won't have to change line ranges when paragraphs are moved
3526 line->SetRange(wxRichTextRange(actualRange.GetStart() - GetRange().GetStart(), actualRange.GetEnd() - GetRange().GetStart()));
3527
3528 line->SetPosition(currentPosition);
3529
3530 if (lineHeight == 0 && GetBuffer())
3531 {
3532 wxFont font(GetBuffer()->GetFontTable().FindFont(attr));
3533 wxCheckSetFont(dc, font);
3534 lineHeight = dc.GetCharHeight();
3535 }
3536 if (maxDescent == 0)
3537 {
3538 int w, h;
3539 dc.GetTextExtent(wxT("X"), & w, &h, & maxDescent);
3540 }
3541
3542 line->SetSize(wxSize(currentWidth, lineHeight));
3543 line->SetDescent(maxDescent);
3544 currentPosition.y += lineHeight;
3545 currentPosition.y += lineSpacing;
3546 lineCount ++;
3547 }
3548
3549 // Remove remaining unused line objects, if any
3550 ClearUnusedLines(lineCount);
3551
3552 // Apply styles to wrapped lines
3553 ApplyParagraphStyle(attr, rect, dc);
3554
3555 SetCachedSize(wxSize(maxWidth, currentPosition.y + spaceBeforePara + spaceAfterPara));
3556
3557 m_dirty = false;
3558
3559 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3560 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
3561 // Use the text extents to calculate the size of each fragment in each line
3562 wxRichTextLineList::compatibility_iterator lineNode = m_cachedLines.GetFirst();
3563 while (lineNode)
3564 {
3565 wxRichTextLine* line = lineNode->GetData();
3566 wxRichTextRange lineRange = line->GetAbsoluteRange();
3567
3568 // Loop through objects until we get to the one within range
3569 wxRichTextObjectList::compatibility_iterator node2 = m_children.GetFirst();
3570
3571 while (node2)
3572 {
3573 wxRichTextObject* child = node2->GetData();
3574
3575 if (child->GetRange().GetLength() > 0 && !child->GetRange().IsOutside(lineRange))
3576 {
3577 wxRichTextRange rangeToUse = lineRange;
3578 rangeToUse.LimitTo(child->GetRange());
3579
3580 // Find the size of the child from the text extents, and store in an array
3581 // for drawing later
3582 int left = 0;
3583 if (rangeToUse.GetStart() > GetRange().GetStart())
3584 left = partialExtents[(rangeToUse.GetStart()-1) - GetRange().GetStart()];
3585 int right = partialExtents[rangeToUse.GetEnd() - GetRange().GetStart()];
3586 int sz = right - left;
3587 line->GetObjectSizes().Add(sz);
3588 }
3589 else if (child->GetRange().GetStart() > lineRange.GetEnd())
3590 // Can break out of inner loop now since we've passed this line's range
3591 break;
3592
3593 node2 = node2->GetNext();
3594 }
3595
3596 lineNode = lineNode->GetNext();
3597 }
3598 #endif
3599 #endif
3600
3601 return true;
3602 }
3603
3604 /// Apply paragraph styles, such as centering, to wrapped lines
3605 void wxRichTextParagraph::ApplyParagraphStyle(const wxTextAttr& attr, const wxRect& rect, wxDC& dc)
3606 {
3607 if (!attr.HasAlignment())
3608 return;
3609
3610 wxRichTextLineList::compatibility_iterator node = m_cachedLines.GetFirst();
3611 while (node)
3612 {
3613 wxRichTextLine* line = node->GetData();
3614
3615 wxPoint pos = line->GetPosition();
3616 wxSize size = line->GetSize();
3617
3618 // centering, right-justification
3619 if (attr.HasAlignment() && GetAttributes().GetAlignment() == wxTEXT_ALIGNMENT_CENTRE)
3620 {
3621 int rightIndent = ConvertTenthsMMToPixels(dc, attr.GetRightIndent());
3622 pos.x = (rect.GetWidth() - (pos.x - rect.x) - rightIndent - size.x)/2 + pos.x;
3623 line->SetPosition(pos);
3624 }
3625 else if (attr.HasAlignment() && GetAttributes().GetAlignment() == wxTEXT_ALIGNMENT_RIGHT)
3626 {
3627 int rightIndent = ConvertTenthsMMToPixels(dc, attr.GetRightIndent());
3628 pos.x = rect.x + rect.GetWidth() - size.x - rightIndent;
3629 line->SetPosition(pos);
3630 }
3631
3632 node = node->GetNext();
3633 }
3634 }
3635
3636 /// Insert text at the given position
3637 bool wxRichTextParagraph::InsertText(long pos, const wxString& text)
3638 {
3639 wxRichTextObject* childToUse = NULL;
3640 wxRichTextObjectList::compatibility_iterator nodeToUse = wxRichTextObjectList::compatibility_iterator();
3641
3642 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
3643 while (node)
3644 {
3645 wxRichTextObject* child = node->GetData();
3646 if (child->GetRange().Contains(pos) && child->GetRange().GetLength() > 0)
3647 {
3648 childToUse = child;
3649 nodeToUse = node;
3650 break;
3651 }
3652
3653 node = node->GetNext();
3654 }
3655
3656 if (childToUse)
3657 {
3658 wxRichTextPlainText* textObject = wxDynamicCast(childToUse, wxRichTextPlainText);
3659 if (textObject)
3660 {
3661 int posInString = pos - textObject->GetRange().GetStart();
3662
3663 wxString newText = textObject->GetText().Mid(0, posInString) +
3664 text + textObject->GetText().Mid(posInString);
3665 textObject->SetText(newText);
3666
3667 int textLength = text.length();
3668
3669 textObject->SetRange(wxRichTextRange(textObject->GetRange().GetStart(),
3670 textObject->GetRange().GetEnd() + textLength));
3671
3672 // Increment the end range of subsequent fragments in this paragraph.
3673 // We'll set the paragraph range itself at a higher level.
3674
3675 wxRichTextObjectList::compatibility_iterator node = nodeToUse->GetNext();
3676 while (node)
3677 {
3678 wxRichTextObject* child = node->GetData();
3679 child->SetRange(wxRichTextRange(textObject->GetRange().GetStart() + textLength,
3680 textObject->GetRange().GetEnd() + textLength));
3681
3682 node = node->GetNext();
3683 }
3684
3685 return true;
3686 }
3687 else
3688 {
3689 // TODO: if not a text object, insert at closest position, e.g. in front of it
3690 }
3691 }
3692 else
3693 {
3694 // Add at end.
3695 // Don't pass parent initially to suppress auto-setting of parent range.
3696 // We'll do that at a higher level.
3697 wxRichTextPlainText* textObject = new wxRichTextPlainText(text, this);
3698
3699 AppendChild(textObject);
3700 return true;
3701 }
3702
3703 return false;
3704 }
3705
3706 void wxRichTextParagraph::Copy(const wxRichTextParagraph& obj)
3707 {
3708 wxRichTextBox::Copy(obj);
3709 }
3710
3711 /// Clear the cached lines
3712 void wxRichTextParagraph::ClearLines()
3713 {
3714 WX_CLEAR_LIST(wxRichTextLineList, m_cachedLines);
3715 }
3716
3717 /// Get/set the object size for the given range. Returns false if the range
3718 /// is invalid for this object.
3719 bool wxRichTextParagraph::GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position, wxArrayInt* partialExtents) const
3720 {
3721 if (!range.IsWithin(GetRange()))
3722 return false;
3723
3724 if (flags & wxRICHTEXT_UNFORMATTED)
3725 {
3726 // Just use unformatted data, assume no line breaks
3727 // TODO: take into account line breaks
3728
3729 wxSize sz;
3730
3731 wxArrayInt childExtents;
3732 wxArrayInt* p;
3733 if (partialExtents)
3734 p = & childExtents;
3735 else
3736 p = NULL;
3737
3738 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
3739 while (node)
3740 {
3741
3742 wxRichTextObject* child = node->GetData();
3743 if (!child->GetRange().IsOutside(range))
3744 {
3745 wxSize childSize;
3746
3747 wxRichTextRange rangeToUse = range;
3748 rangeToUse.LimitTo(child->GetRange());
3749 int childDescent = 0;
3750
3751 // At present wxRICHTEXT_HEIGHT_ONLY is only fast if we're already cached the size,
3752 // but it's only going to be used after caching has taken place.
3753 if ((flags & wxRICHTEXT_HEIGHT_ONLY) && child->GetCachedSize().y != 0)
3754 {
3755 childDescent = child->GetDescent();
3756 childSize = child->GetCachedSize();
3757
3758 sz.y = wxMax(sz.y, childSize.y);
3759 sz.x += childSize.x;
3760 descent = wxMax(descent, childDescent);
3761 }
3762 else if (child->GetRangeSize(rangeToUse, childSize, childDescent, dc, flags, wxPoint(position.x + sz.x, position.y), p))
3763 {
3764 sz.y = wxMax(sz.y, childSize.y);
3765 sz.x += childSize.x;
3766 descent = wxMax(descent, childDescent);
3767
3768 if ((flags & wxRICHTEXT_CACHE_SIZE) && (rangeToUse == child->GetRange()))
3769 {
3770 child->SetCachedSize(childSize);
3771 child->SetDescent(childDescent);
3772 }
3773
3774 if (partialExtents)
3775 {
3776 int lastSize;
3777 if (partialExtents->GetCount() > 0)
3778 lastSize = (*partialExtents)[partialExtents->GetCount()-1];
3779 else
3780 lastSize = 0;
3781
3782 size_t i;
3783 for (i = 0; i < childExtents.GetCount(); i++)
3784 {
3785 partialExtents->Add(childExtents[i] + lastSize);
3786 }
3787 }
3788 }
3789
3790 if (p)
3791 p->Clear();
3792 }
3793
3794 node = node->GetNext();
3795 }
3796 size = sz;
3797 }
3798 else
3799 {
3800 // Use formatted data, with line breaks
3801 wxSize sz;
3802
3803 // We're going to loop through each line, and then for each line,
3804 // call GetRangeSize for the fragment that comprises that line.
3805 // Only we have to do that multiple times within the line, because
3806 // the line may be broken into pieces. For now ignore line break commands
3807 // (so we can assume that getting the unformatted size for a fragment
3808 // within a line is the actual size)
3809
3810 wxRichTextLineList::compatibility_iterator node = m_cachedLines.GetFirst();
3811 while (node)
3812 {
3813 wxRichTextLine* line = node->GetData();
3814 wxRichTextRange lineRange = line->GetAbsoluteRange();
3815 if (!lineRange.IsOutside(range))
3816 {
3817 wxSize lineSize;
3818
3819 wxRichTextObjectList::compatibility_iterator node2 = m_children.GetFirst();
3820 while (node2)
3821 {
3822 wxRichTextObject* child = node2->GetData();
3823
3824 if (!child->GetRange().IsOutside(lineRange))
3825 {
3826 wxRichTextRange rangeToUse = lineRange;
3827 rangeToUse.LimitTo(child->GetRange());
3828
3829 wxSize childSize;
3830 int childDescent = 0;
3831 if (child->GetRangeSize(rangeToUse, childSize, childDescent, dc, flags, wxPoint(position.x + sz.x, position.y)))
3832 {
3833 lineSize.y = wxMax(lineSize.y, childSize.y);
3834 lineSize.x += childSize.x;
3835 }
3836 descent = wxMax(descent, childDescent);
3837 }
3838
3839 node2 = node2->GetNext();
3840 }
3841
3842 // Increase size by a line (TODO: paragraph spacing)
3843 sz.y += lineSize.y;
3844 sz.x = wxMax(sz.x, lineSize.x);
3845 }
3846 node = node->GetNext();
3847 }
3848 size = sz;
3849 }
3850 return true;
3851 }
3852
3853 /// Finds the absolute position and row height for the given character position
3854 bool wxRichTextParagraph::FindPosition(wxDC& dc, long index, wxPoint& pt, int* height, bool forceLineStart)
3855 {
3856 if (index == -1)
3857 {
3858 wxRichTextLine* line = ((wxRichTextParagraphLayoutBox*)GetParent())->GetLineAtPosition(0);
3859 if (line)
3860 *height = line->GetSize().y;
3861 else
3862 *height = dc.GetCharHeight();
3863
3864 // -1 means 'the start of the buffer'.
3865 pt = GetPosition();
3866 if (line)
3867 pt = pt + line->GetPosition();
3868
3869 return true;
3870 }
3871
3872 // The final position in a paragraph is taken to mean the position
3873 // at the start of the next paragraph.
3874 if (index == GetRange().GetEnd())
3875 {
3876 wxRichTextParagraphLayoutBox* parent = wxDynamicCast(GetParent(), wxRichTextParagraphLayoutBox);
3877 wxASSERT( parent != NULL );
3878
3879 // Find the height at the next paragraph, if any
3880 wxRichTextLine* line = parent->GetLineAtPosition(index + 1);
3881 if (line)
3882 {
3883 *height = line->GetSize().y;
3884 pt = line->GetAbsolutePosition();
3885 }
3886 else
3887 {
3888 *height = dc.GetCharHeight();
3889 int indent = ConvertTenthsMMToPixels(dc, m_attributes.GetLeftIndent());
3890 pt = wxPoint(indent, GetCachedSize().y);
3891 }
3892
3893 return true;
3894 }
3895
3896 if (index < GetRange().GetStart() || index > GetRange().GetEnd())
3897 return false;
3898
3899 wxRichTextLineList::compatibility_iterator node = m_cachedLines.GetFirst();
3900 while (node)
3901 {
3902 wxRichTextLine* line = node->GetData();
3903 wxRichTextRange lineRange = line->GetAbsoluteRange();
3904 if (index >= lineRange.GetStart() && index <= lineRange.GetEnd())
3905 {
3906 // If this is the last point in the line, and we're forcing the
3907 // returned value to be the start of the next line, do the required
3908 // thing.
3909 if (index == lineRange.GetEnd() && forceLineStart)
3910 {
3911 if (node->GetNext())
3912 {
3913 wxRichTextLine* nextLine = node->GetNext()->GetData();
3914 *height = nextLine->GetSize().y;
3915 pt = nextLine->GetAbsolutePosition();
3916 return true;
3917 }
3918 }
3919
3920 pt.y = line->GetPosition().y + GetPosition().y;
3921
3922 wxRichTextRange r(lineRange.GetStart(), index);
3923 wxSize rangeSize;
3924 int descent = 0;
3925
3926 // We find the size of the line up to this point,
3927 // then we can add this size to the line start position and
3928 // paragraph start position to find the actual position.
3929
3930 if (GetRangeSize(r, rangeSize, descent, dc, wxRICHTEXT_UNFORMATTED, line->GetPosition()+ GetPosition()))
3931 {
3932 pt.x = line->GetPosition().x + GetPosition().x + rangeSize.x;
3933 *height = line->GetSize().y;
3934
3935 return true;
3936 }
3937
3938 }
3939
3940 node = node->GetNext();
3941 }
3942
3943 return false;
3944 }
3945
3946 /// Hit-testing: returns a flag indicating hit test details, plus
3947 /// information about position
3948 int wxRichTextParagraph::HitTest(wxDC& dc, const wxPoint& pt, long& textPosition)
3949 {
3950 wxPoint paraPos = GetPosition();
3951
3952 wxRichTextLineList::compatibility_iterator node = m_cachedLines.GetFirst();
3953 while (node)
3954 {
3955 wxRichTextLine* line = node->GetData();
3956 wxPoint linePos = paraPos + line->GetPosition();
3957 wxSize lineSize = line->GetSize();
3958 wxRichTextRange lineRange = line->GetAbsoluteRange();
3959
3960 if (pt.y <= linePos.y + lineSize.y)
3961 {
3962 if (pt.x < linePos.x)
3963 {
3964 textPosition = lineRange.GetStart();
3965 return wxRICHTEXT_HITTEST_BEFORE|wxRICHTEXT_HITTEST_OUTSIDE;
3966 }
3967 else if (pt.x >= (linePos.x + lineSize.x))
3968 {
3969 textPosition = lineRange.GetEnd();
3970 return wxRICHTEXT_HITTEST_AFTER|wxRICHTEXT_HITTEST_OUTSIDE;
3971 }
3972 else
3973 {
3974 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
3975 wxArrayInt partialExtents;
3976
3977 wxSize paraSize;
3978 int paraDescent;
3979
3980 // This calculates the partial text extents
3981 GetRangeSize(lineRange, paraSize, paraDescent, dc, wxRICHTEXT_UNFORMATTED, wxPoint(0,0), & partialExtents);
3982
3983 int lastX = linePos.x;
3984 size_t i;
3985 for (i = 0; i < partialExtents.GetCount(); i++)
3986 {
3987 int nextX = partialExtents[i] + linePos.x;
3988
3989 if (pt.x >= lastX && pt.x <= nextX)
3990 {
3991 textPosition = i + lineRange.GetStart(); // minus 1?
3992
3993 // So now we know it's between i-1 and i.
3994 // Let's see if we can be more precise about
3995 // which side of the position it's on.
3996
3997 int midPoint = (nextX - lastX)/2 + lastX;
3998 if (pt.x >= midPoint)
3999 return wxRICHTEXT_HITTEST_AFTER;
4000 else
4001 return wxRICHTEXT_HITTEST_BEFORE;
4002 }
4003
4004 lastX = nextX;
4005 }
4006 #else
4007 long i;
4008 int lastX = linePos.x;
4009 for (i = lineRange.GetStart(); i <= lineRange.GetEnd(); i++)
4010 {
4011 wxSize childSize;
4012 int descent = 0;
4013
4014 wxRichTextRange rangeToUse(lineRange.GetStart(), i);
4015
4016 GetRangeSize(rangeToUse, childSize, descent, dc, wxRICHTEXT_UNFORMATTED, linePos);
4017
4018 int nextX = childSize.x + linePos.x;
4019
4020 if (pt.x >= lastX && pt.x <= nextX)
4021 {
4022 textPosition = i;
4023
4024 // So now we know it's between i-1 and i.
4025 // Let's see if we can be more precise about
4026 // which side of the position it's on.
4027
4028 int midPoint = (nextX - lastX)/2 + lastX;
4029 if (pt.x >= midPoint)
4030 return wxRICHTEXT_HITTEST_AFTER;
4031 else
4032 return wxRICHTEXT_HITTEST_BEFORE;
4033 }
4034 else
4035 {
4036 lastX = nextX;
4037 }
4038 }
4039 #endif
4040 }
4041 }
4042
4043 node = node->GetNext();
4044 }
4045
4046 return wxRICHTEXT_HITTEST_NONE;
4047 }
4048
4049 /// Split an object at this position if necessary, and return
4050 /// the previous object, or NULL if inserting at beginning.
4051 wxRichTextObject* wxRichTextParagraph::SplitAt(long pos, wxRichTextObject** previousObject)
4052 {
4053 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
4054 while (node)
4055 {
4056 wxRichTextObject* child = node->GetData();
4057
4058 if (pos == child->GetRange().GetStart())
4059 {
4060 if (previousObject)
4061 {
4062 if (node->GetPrevious())
4063 *previousObject = node->GetPrevious()->GetData();
4064 else
4065 *previousObject = NULL;
4066 }
4067
4068 return child;
4069 }
4070
4071 if (child->GetRange().Contains(pos))
4072 {
4073 // This should create a new object, transferring part of
4074 // the content to the old object and the rest to the new object.
4075 wxRichTextObject* newObject = child->DoSplit(pos);
4076
4077 // If we couldn't split this object, just insert in front of it.
4078 if (!newObject)
4079 {
4080 // Maybe this is an empty string, try the next one
4081 // return child;
4082 }
4083 else
4084 {
4085 // Insert the new object after 'child'
4086 if (node->GetNext())
4087 m_children.Insert(node->GetNext(), newObject);
4088 else
4089 m_children.Append(newObject);
4090 newObject->SetParent(this);
4091
4092 if (previousObject)
4093 *previousObject = child;
4094
4095 return newObject;
4096 }
4097 }
4098
4099 node = node->GetNext();
4100 }
4101 if (previousObject)
4102 *previousObject = NULL;
4103 return NULL;
4104 }
4105
4106 /// Move content to a list from obj on
4107 void wxRichTextParagraph::MoveToList(wxRichTextObject* obj, wxList& list)
4108 {
4109 wxRichTextObjectList::compatibility_iterator node = m_children.Find(obj);
4110 while (node)
4111 {
4112 wxRichTextObject* child = node->GetData();
4113 list.Append(child);
4114
4115 wxRichTextObjectList::compatibility_iterator oldNode = node;
4116
4117 node = node->GetNext();
4118
4119 m_children.DeleteNode(oldNode);
4120 }
4121 }
4122
4123 /// Add content back from list
4124 void wxRichTextParagraph::MoveFromList(wxList& list)
4125 {
4126 for (wxList::compatibility_iterator node = list.GetFirst(); node; node = node->GetNext())
4127 {
4128 AppendChild((wxRichTextObject*) node->GetData());
4129 }
4130 }
4131
4132 /// Calculate range
4133 void wxRichTextParagraph::CalculateRange(long start, long& end)
4134 {
4135 wxRichTextCompositeObject::CalculateRange(start, end);
4136
4137 // Add one for end of paragraph
4138 end ++;
4139
4140 m_range.SetRange(start, end);
4141 }
4142
4143 /// Find the object at the given position
4144 wxRichTextObject* wxRichTextParagraph::FindObjectAtPosition(long position)
4145 {
4146 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
4147 while (node)
4148 {
4149 wxRichTextObject* obj = node->GetData();
4150 if (obj->GetRange().Contains(position))
4151 return obj;
4152
4153 node = node->GetNext();
4154 }
4155 return NULL;
4156 }
4157
4158 /// Get the plain text searching from the start or end of the range.
4159 /// The resulting string may be shorter than the range given.
4160 bool wxRichTextParagraph::GetContiguousPlainText(wxString& text, const wxRichTextRange& range, bool fromStart)
4161 {
4162 text = wxEmptyString;
4163
4164 if (fromStart)
4165 {
4166 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
4167 while (node)
4168 {
4169 wxRichTextObject* obj = node->GetData();
4170 if (!obj->GetRange().IsOutside(range))
4171 {
4172 wxRichTextPlainText* textObj = wxDynamicCast(obj, wxRichTextPlainText);
4173 if (textObj)
4174 {
4175 text += textObj->GetTextForRange(range);
4176 }
4177 else
4178 {
4179 text += wxT(" ");
4180 }
4181 }
4182
4183 node = node->GetNext();
4184 }
4185 }
4186 else
4187 {
4188 wxRichTextObjectList::compatibility_iterator node = m_children.GetLast();
4189 while (node)
4190 {
4191 wxRichTextObject* obj = node->GetData();
4192 if (!obj->GetRange().IsOutside(range))
4193 {
4194 wxRichTextPlainText* textObj = wxDynamicCast(obj, wxRichTextPlainText);
4195 if (textObj)
4196 {
4197 text = textObj->GetTextForRange(range) + text;
4198 }
4199 else
4200 {
4201 text = wxT(" ") + text;
4202 }
4203 }
4204
4205 node = node->GetPrevious();
4206 }
4207 }
4208
4209 return true;
4210 }
4211
4212 /// Find a suitable wrap position.
4213 bool wxRichTextParagraph::FindWrapPosition(const wxRichTextRange& range, wxDC& dc, int availableSpace, long& wrapPosition, wxArrayInt* partialExtents)
4214 {
4215 if (range.GetLength() <= 0)
4216 return false;
4217
4218 // Find the first position where the line exceeds the available space.
4219 wxSize sz;
4220 long breakPosition = range.GetEnd();
4221
4222 #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
4223 if (partialExtents && partialExtents->GetCount() >= (size_t) (GetRange().GetLength()-1)) // the final position in a paragraph is the newline
4224 {
4225 int widthBefore;
4226
4227 if (range.GetStart() > GetRange().GetStart())
4228 widthBefore = (*partialExtents)[range.GetStart() - GetRange().GetStart() - 1];
4229 else
4230 widthBefore = 0;
4231
4232 size_t i;
4233 for (i = (size_t) range.GetStart(); i <= (size_t) range.GetEnd(); i++)
4234 {
4235 int widthFromStartOfThisRange = (*partialExtents)[i - GetRange().GetStart()] - widthBefore;
4236
4237 if (widthFromStartOfThisRange > availableSpace)
4238 {
4239 breakPosition = i-1;
4240 break;
4241 }
4242 }
4243 }
4244 else
4245 #endif
4246 {
4247 // Binary chop for speed
4248 long minPos = range.GetStart();
4249 long maxPos = range.GetEnd();
4250 while (true)
4251 {
4252 if (minPos == maxPos)
4253 {
4254 int descent = 0;
4255 GetRangeSize(wxRichTextRange(range.GetStart(), minPos), sz, descent, dc, wxRICHTEXT_UNFORMATTED);
4256
4257 if (sz.x > availableSpace)
4258 breakPosition = minPos - 1;
4259 break;
4260 }
4261 else if ((maxPos - minPos) == 1)
4262 {
4263 int descent = 0;
4264 GetRangeSize(wxRichTextRange(range.GetStart(), minPos), sz, descent, dc, wxRICHTEXT_UNFORMATTED);
4265
4266 if (sz.x > availableSpace)
4267 breakPosition = minPos - 1;
4268 else
4269 {
4270 GetRangeSize(wxRichTextRange(range.GetStart(), maxPos), sz, descent, dc, wxRICHTEXT_UNFORMATTED);
4271 if (sz.x > availableSpace)
4272 breakPosition = maxPos-1;
4273 }
4274 break;
4275 }
4276 else
4277 {
4278 long nextPos = minPos + ((maxPos - minPos) / 2);
4279
4280 int descent = 0;
4281 GetRangeSize(wxRichTextRange(range.GetStart(), nextPos), sz, descent, dc, wxRICHTEXT_UNFORMATTED);
4282
4283 if (sz.x > availableSpace)
4284 {
4285 maxPos = nextPos;
4286 }
4287 else
4288 {
4289 minPos = nextPos;
4290 }
4291 }
4292 }
4293 }
4294
4295 // Now we know the last position on the line.
4296 // Let's try to find a word break.
4297
4298 wxString plainText;
4299 if (GetContiguousPlainText(plainText, wxRichTextRange(range.GetStart(), breakPosition), false))
4300 {
4301 int newLinePos = plainText.Find(wxRichTextLineBreakChar);
4302 if (newLinePos != wxNOT_FOUND)
4303 {
4304 breakPosition = wxMax(0, range.GetStart() + newLinePos);
4305 }
4306 else
4307 {
4308 int spacePos = plainText.Find(wxT(' '), true);
4309 int tabPos = plainText.Find(wxT('\t'), true);
4310 int pos = wxMax(spacePos, tabPos);
4311 if (pos != wxNOT_FOUND)
4312 {
4313 int positionsFromEndOfString = plainText.length() - pos - 1;
4314 breakPosition = breakPosition - positionsFromEndOfString;
4315 }
4316 }
4317 }
4318
4319 wrapPosition = breakPosition;
4320
4321 return true;
4322 }
4323
4324 /// Get the bullet text for this paragraph.
4325 wxString wxRichTextParagraph::GetBulletText()
4326 {
4327 if (GetAttributes().GetBulletStyle() == wxTEXT_ATTR_BULLET_STYLE_NONE ||
4328 (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_BITMAP))
4329 return wxEmptyString;
4330
4331 int number = GetAttributes().GetBulletNumber();
4332
4333 wxString text;
4334 if ((GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ARABIC) || (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE))
4335 {
4336 text.Printf(wxT("%d"), number);
4337 }
4338 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER)
4339 {
4340 // TODO: Unicode, and also check if number > 26
4341 text.Printf(wxT("%c"), (wxChar) (number+64));
4342 }
4343 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER)
4344 {
4345 // TODO: Unicode, and also check if number > 26
4346 text.Printf(wxT("%c"), (wxChar) (number+96));
4347 }
4348 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER)
4349 {
4350 text = wxRichTextDecimalToRoman(number);
4351 }
4352 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER)
4353 {
4354 text = wxRichTextDecimalToRoman(number);
4355 text.MakeLower();
4356 }
4357 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_SYMBOL)
4358 {
4359 text = GetAttributes().GetBulletText();
4360 }
4361
4362 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE)
4363 {
4364 // The outline style relies on the text being computed statically,
4365 // since it depends on other levels points (e.g. 1.2.1.1). So normally the bullet text
4366 // should be stored in the attributes; if not, just use the number for this
4367 // level, as previously computed.
4368 if (!GetAttributes().GetBulletText().IsEmpty())
4369 text = GetAttributes().GetBulletText();
4370 }
4371
4372 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_PARENTHESES)
4373 {
4374 text = wxT("(") + text + wxT(")");
4375 }
4376 else if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_RIGHT_PARENTHESIS)
4377 {
4378 text = text + wxT(")");
4379 }
4380
4381 if (GetAttributes().GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_PERIOD)
4382 {
4383 text += wxT(".");
4384 }
4385
4386 return text;
4387 }
4388
4389 /// Allocate or reuse a line object
4390 wxRichTextLine* wxRichTextParagraph::AllocateLine(int pos)
4391 {
4392 if (pos < (int) m_cachedLines.GetCount())
4393 {
4394 wxRichTextLine* line = m_cachedLines.Item(pos)->GetData();
4395 line->Init(this);
4396 return line;
4397 }
4398 else
4399 {
4400 wxRichTextLine* line = new wxRichTextLine(this);
4401 m_cachedLines.Append(line);
4402 return line;
4403 }
4404 }
4405
4406 /// Clear remaining unused line objects, if any
4407 bool wxRichTextParagraph::ClearUnusedLines(int lineCount)
4408 {
4409 int cachedLineCount = m_cachedLines.GetCount();
4410 if ((int) cachedLineCount > lineCount)
4411 {
4412 for (int i = 0; i < (int) (cachedLineCount - lineCount); i ++)
4413 {
4414 wxRichTextLineList::compatibility_iterator node = m_cachedLines.GetLast();
4415 wxRichTextLine* line = node->GetData();
4416 m_cachedLines.Erase(node);
4417 delete line;
4418 }
4419 }
4420 return true;
4421 }
4422
4423 /// Get combined attributes of the base style, paragraph style and character style. We use this to dynamically
4424 /// retrieve the actual style.
4425 wxTextAttr wxRichTextParagraph::GetCombinedAttributes(const wxTextAttr& contentStyle) const
4426 {
4427 wxTextAttr attr;
4428 wxRichTextBuffer* buf = wxDynamicCast(GetParent(), wxRichTextBuffer);
4429 if (buf)
4430 {
4431 attr = buf->GetBasicStyle();
4432 wxRichTextApplyStyle(attr, GetAttributes());
4433 }
4434 else
4435 attr = GetAttributes();
4436
4437 wxRichTextApplyStyle(attr, contentStyle);
4438 return attr;
4439 }
4440
4441 /// Get combined attributes of the base style and paragraph style.
4442 wxTextAttr wxRichTextParagraph::GetCombinedAttributes() const
4443 {
4444 wxTextAttr attr;
4445 wxRichTextBuffer* buf = wxDynamicCast(GetParent(), wxRichTextBuffer);
4446 if (buf)
4447 {
4448 attr = buf->GetBasicStyle();
4449 wxRichTextApplyStyle(attr, GetAttributes());
4450 }
4451 else
4452 attr = GetAttributes();
4453
4454 return attr;
4455 }
4456
4457 /// Create default tabstop array
4458 void wxRichTextParagraph::InitDefaultTabs()
4459 {
4460 // create a default tab list at 10 mm each.
4461 for (int i = 0; i < 20; ++i)
4462 {
4463 sm_defaultTabs.Add(i*100);
4464 }
4465 }
4466
4467 /// Clear default tabstop array
4468 void wxRichTextParagraph::ClearDefaultTabs()
4469 {
4470 sm_defaultTabs.Clear();
4471 }
4472
4473 /// Get the first position from pos that has a line break character.
4474 long wxRichTextParagraph::GetFirstLineBreakPosition(long pos)
4475 {
4476 wxRichTextObjectList::compatibility_iterator node = m_children.GetFirst();
4477 while (node)
4478 {
4479 wxRichTextObject* obj = node->GetData();
4480 if (pos >= obj->GetRange().GetStart() && pos <= obj->GetRange().GetEnd())
4481 {
4482 wxRichTextPlainText* textObj = wxDynamicCast(obj, wxRichTextPlainText);
4483 if (textObj)
4484 {
4485 long breakPos = textObj->GetFirstLineBreakPosition(pos);
4486 if (breakPos > -1)
4487 return breakPos;
4488 }
4489 }
4490 node = node->GetNext();
4491 }
4492 return -1;
4493 }
4494
4495 /*!
4496 * wxRichTextLine
4497 * This object represents a line in a paragraph, and stores
4498 * offsets from the start of the paragraph representing the
4499 * start and end positions of the line.
4500 */
4501
4502 wxRichTextLine::wxRichTextLine(wxRichTextParagraph* parent)
4503 {
4504 Init(parent);
4505 }
4506
4507 /// Initialisation
4508 void wxRichTextLine::Init(wxRichTextParagraph* parent)
4509 {
4510 m_parent = parent;
4511 m_range.SetRange(-1, -1);
4512 m_pos = wxPoint(0, 0);
4513 m_size = wxSize(0, 0);
4514 m_descent = 0;
4515 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
4516 m_objectSizes.Clear();
4517 #endif
4518 }
4519
4520 /// Copy
4521 void wxRichTextLine::Copy(const wxRichTextLine& obj)
4522 {
4523 m_range = obj.m_range;
4524 #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
4525 m_objectSizes = obj.m_objectSizes;
4526 #endif
4527 }
4528
4529 /// Get the absolute object position
4530 wxPoint wxRichTextLine::GetAbsolutePosition() const
4531 {
4532 return m_parent->GetPosition() + m_pos;
4533 }
4534
4535 /// Get the absolute range
4536 wxRichTextRange wxRichTextLine::GetAbsoluteRange() const
4537 {
4538 wxRichTextRange range(m_range.GetStart() + m_parent->GetRange().GetStart(), 0);
4539 range.SetEnd(range.GetStart() + m_range.GetLength()-1);
4540 return range;
4541 }
4542
4543 /*!
4544 * wxRichTextPlainText
4545 * This object represents a single piece of text.
4546 */
4547
4548 IMPLEMENT_DYNAMIC_CLASS(wxRichTextPlainText, wxRichTextObject)
4549
4550 wxRichTextPlainText::wxRichTextPlainText(const wxString& text, wxRichTextObject* parent, wxTextAttr* style):
4551 wxRichTextObject(parent)
4552 {
4553 if (style)
4554 SetAttributes(*style);
4555
4556 m_text = text;
4557 }
4558
4559 #define USE_KERNING_FIX 1
4560
4561 // If insufficient tabs are defined, this is the tab width used
4562 #define WIDTH_FOR_DEFAULT_TABS 50
4563
4564 /// Draw the item
4565 bool wxRichTextPlainText::Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int descent, int WXUNUSED(style))
4566 {
4567 wxRichTextParagraph* para = wxDynamicCast(GetParent(), wxRichTextParagraph);
4568 wxASSERT (para != NULL);
4569
4570 wxTextAttr textAttr(para ? para->GetCombinedAttributes(GetAttributes()) : GetAttributes());
4571
4572 int offset = GetRange().GetStart();
4573
4574 // Replace line break characters with spaces
4575 wxString str = m_text;
4576 wxString toRemove = wxRichTextLineBreakChar;
4577 str.Replace(toRemove, wxT(" "));
4578 if (textAttr.HasTextEffects() && (textAttr.GetTextEffects() & wxTEXT_ATTR_EFFECT_CAPITALS))
4579 str.MakeUpper();
4580
4581 long len = range.GetLength();
4582 wxString stringChunk = str.Mid(range.GetStart() - offset, (size_t) len);
4583
4584 // Test for the optimized situations where all is selected, or none
4585 // is selected.
4586
4587 wxFont textFont(GetBuffer()->GetFontTable().FindFont(textAttr));
4588 wxCheckSetFont(dc, textFont);
4589 int charHeight = dc.GetCharHeight();
4590
4591 int x, y;
4592 if ( textFont.Ok() )
4593 {
4594 if ( textAttr.HasTextEffects() && (textAttr.GetTextEffects() & wxTEXT_ATTR_EFFECT_SUPERSCRIPT) )
4595 {
4596 double size = static_cast<double>(textFont.GetPointSize()) / wxSCRIPT_MUL_FACTOR;
4597 textFont.SetPointSize( static_cast<int>(size) );
4598 x = rect.x;
4599 y = rect.y;
4600 wxCheckSetFont(dc, textFont);
4601 }
4602 else if ( textAttr.HasTextEffects() && (textAttr.GetTextEffects() & wxTEXT_ATTR_EFFECT_SUBSCRIPT) )
4603 {
4604 double size = static_cast<double>(textFont.GetPointSize()) / wxSCRIPT_MUL_FACTOR;
4605 textFont.SetPointSize( static_cast<int>(size) );
4606 x = rect.x;
4607 int sub_height = static_cast<int>( static_cast<double>(charHeight) / wxSCRIPT_MUL_FACTOR);
4608 y = rect.y + (rect.height - sub_height + (descent - m_descent));
4609 wxCheckSetFont(dc, textFont);
4610 }
4611 else
4612 {
4613 x = rect.x;
4614 y = rect.y + (rect.height - charHeight - (descent - m_descent));
4615 }
4616 }
4617 else
4618 {
4619 x = rect.x;
4620 y = rect.y + (rect.height - charHeight - (descent - m_descent));
4621 }
4622
4623 // (a) All selected.
4624 if (selectionRange.GetStart() <= range.GetStart() && selectionRange.GetEnd() >= range.GetEnd())
4625 {
4626 DrawTabbedString(dc, textAttr, rect, stringChunk, x, y, true);
4627 }
4628 // (b) None selected.
4629 else if (selectionRange.GetEnd() < range.GetStart() || selectionRange.GetStart() > range.GetEnd())
4630 {
4631 // Draw all unselected
4632 DrawTabbedString(dc, textAttr, rect, stringChunk, x, y, false);
4633 }
4634 else
4635 {
4636 // (c) Part selected, part not
4637 // Let's draw unselected chunk, selected chunk, then unselected chunk.
4638
4639 dc.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT);
4640
4641 // 1. Initial unselected chunk, if any, up until start of selection.
4642 if (selectionRange.GetStart() > range.GetStart() && selectionRange.GetStart() <= range.GetEnd())
4643 {
4644 int r1 = range.GetStart();
4645 int s1 = selectionRange.GetStart()-1;
4646 int fragmentLen = s1 - r1 + 1;
4647 if (fragmentLen < 0)
4648 wxLogDebug(wxT("Mid(%d, %d"), (int)(r1 - offset), (int)fragmentLen);
4649 wxString stringFragment = str.Mid(r1 - offset, fragmentLen);
4650
4651 DrawTabbedString(dc, textAttr, rect, stringFragment, x, y, false);
4652
4653 #if USE_KERNING_FIX
4654 if (stringChunk.Find(wxT("\t")) == wxNOT_FOUND)
4655 {
4656 // Compensate for kerning difference
4657 wxString stringFragment2(str.Mid(r1 - offset, fragmentLen+1));
4658 wxString stringFragment3(str.Mid(r1 - offset + fragmentLen, 1));
4659
4660 wxCoord w1, h1, w2, h2, w3, h3;
4661 dc.GetTextExtent(stringFragment, & w1, & h1);
4662 dc.GetTextExtent(stringFragment2, & w2, & h2);
4663 dc.GetTextExtent(stringFragment3, & w3, & h3);
4664
4665 int kerningDiff = (w1 + w3) - w2;
4666 x = x - kerningDiff;
4667 }
4668 #endif
4669 }
4670
4671 // 2. Selected chunk, if any.
4672 if (selectionRange.GetEnd() >= range.GetStart())
4673 {
4674 int s1 = wxMax(selectionRange.GetStart(), range.GetStart());
4675 int s2 = wxMin(selectionRange.GetEnd(), range.GetEnd());
4676
4677 int fragmentLen = s2 - s1 + 1;
4678 if (fragmentLen < 0)
4679 wxLogDebug(wxT("Mid(%d, %d"), (int)(s1 - offset), (int)fragmentLen);
4680 wxString stringFragment = str.Mid(s1 - offset, fragmentLen);
4681
4682 DrawTabbedString(dc, textAttr, rect, stringFragment, x, y, true);
4683
4684 #if USE_KERNING_FIX
4685 if (stringChunk.Find(wxT("\t")) == wxNOT_FOUND)
4686 {
4687 // Compensate for kerning difference
4688 wxString stringFragment2(str.Mid(s1 - offset, fragmentLen+1));
4689 wxString stringFragment3(str.Mid(s1 - offset + fragmentLen, 1));
4690
4691 wxCoord w1, h1, w2, h2, w3, h3;
4692 dc.GetTextExtent(stringFragment, & w1, & h1);
4693 dc.GetTextExtent(stringFragment2, & w2, & h2);
4694 dc.GetTextExtent(stringFragment3, & w3, & h3);
4695
4696 int kerningDiff = (w1 + w3) - w2;
4697 x = x - kerningDiff;
4698 }
4699 #endif
4700 }
4701
4702 // 3. Remaining unselected chunk, if any
4703 if (selectionRange.GetEnd() < range.GetEnd())
4704 {
4705 int s2 = wxMin(selectionRange.GetEnd()+1, range.GetEnd());
4706 int r2 = range.GetEnd();
4707
4708 int fragmentLen = r2 - s2 + 1;
4709 if (fragmentLen < 0)
4710 wxLogDebug(wxT("Mid(%d, %d"), (int)(s2 - offset), (int)fragmentLen);
4711 wxString stringFragment = str.Mid(s2 - offset, fragmentLen);
4712
4713 DrawTabbedString(dc, textAttr, rect, stringFragment, x, y, false);
4714 }
4715 }
4716
4717 return true;
4718 }
4719
4720 bool wxRichTextPlainText::DrawTabbedString(wxDC& dc, const wxTextAttr& attr, const wxRect& rect,wxString& str, wxCoord& x, wxCoord& y, bool selected)
4721 {
4722 bool hasTabs = (str.Find(wxT('\t')) != wxNOT_FOUND);
4723
4724 wxArrayInt tabArray;
4725 int tabCount;
4726 if (hasTabs)
4727 {
4728 if (attr.GetTabs().IsEmpty())
4729 tabArray = wxRichTextParagraph::GetDefaultTabs();
4730 else
4731 tabArray = attr.GetTabs();
4732 tabCount = tabArray.GetCount();
4733
4734 for (int i = 0; i < tabCount; ++i)
4735 {
4736 int pos = tabArray[i];
4737 pos = ConvertTenthsMMToPixels(dc, pos);
4738 tabArray[i] = pos;
4739 }
4740 }
4741 else
4742 tabCount = 0;
4743
4744 int nextTabPos = -1;
4745 int tabPos = -1;
4746 wxCoord w, h;
4747
4748 if (selected)
4749 {
4750 wxColour highlightColour(wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT));
4751 wxColour highlightTextColour(wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT));
4752
4753 wxCheckSetBrush(dc, wxBrush(highlightColour));
4754 wxCheckSetPen(dc, wxPen(highlightColour));
4755 dc.SetTextForeground(highlightTextColour);
4756 dc.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT);
4757 }
4758 else
4759 {
4760 dc.SetTextForeground(attr.GetTextColour());
4761
4762 if (attr.HasFlag(wxTEXT_ATTR_BACKGROUND_COLOUR) && attr.GetBackgroundColour().IsOk())
4763 {
4764 dc.SetBackgroundMode(wxBRUSHSTYLE_SOLID);
4765 dc.SetTextBackground(attr.GetBackgroundColour());
4766 }
4767 else
4768 dc.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT);
4769 }
4770
4771 while (hasTabs)
4772 {
4773 // the string has a tab
4774 // break up the string at the Tab
4775 wxString stringChunk = str.BeforeFirst(wxT('\t'));
4776 str = str.AfterFirst(wxT('\t'));
4777 dc.GetTextExtent(stringChunk, & w, & h);
4778 tabPos = x + w;
4779 bool not_found = true;
4780 for (int i = 0; i < tabCount && not_found; ++i)
4781 {
4782 nextTabPos = tabArray.Item(i);
4783
4784 // Find the next tab position.
4785 // Even if we're at the end of the tab array, we must still draw the chunk.
4786
4787 if (nextTabPos > tabPos || (i == (tabCount - 1)))
4788 {
4789 if (nextTabPos <= tabPos)
4790 {
4791 int defaultTabWidth = ConvertTenthsMMToPixels(dc, WIDTH_FOR_DEFAULT_TABS);
4792 nextTabPos = tabPos + defaultTabWidth;
4793 }
4794
4795 not_found = false;
4796 if (selected)
4797 {
4798 w = nextTabPos - x;
4799 wxRect selRect(x, rect.y, w, rect.GetHeight());
4800 dc.DrawRectangle(selRect);
4801 }
4802 dc.DrawText(stringChunk, x, y);
4803
4804 if (attr.HasTextEffects() && (attr.GetTextEffects() & wxTEXT_ATTR_EFFECT_STRIKETHROUGH))
4805 {
4806 wxPen oldPen = dc.GetPen();
4807 wxCheckSetPen(dc, wxPen(attr.GetTextColour(), 1));
4808 dc.DrawLine(x, (int) (y+(h/2)+0.5), x+w, (int) (y+(h/2)+0.5));
4809 wxCheckSetPen(dc, oldPen);
4810 }
4811
4812 x = nextTabPos;
4813 }
4814 }
4815 hasTabs = (str.Find(wxT('\t')) != wxNOT_FOUND);
4816 }
4817
4818 if (!str.IsEmpty())
4819 {
4820 dc.GetTextExtent(str, & w, & h);
4821 if (selected)
4822 {
4823 wxRect selRect(x, rect.y, w, rect.GetHeight());
4824 dc.DrawRectangle(selRect);
4825 }
4826 dc.DrawText(str, x, y);
4827
4828 if (attr.HasTextEffects() && (attr.GetTextEffects() & wxTEXT_ATTR_EFFECT_STRIKETHROUGH))
4829 {
4830 wxPen oldPen = dc.GetPen();
4831 wxCheckSetPen(dc, wxPen(attr.GetTextColour(), 1));
4832 dc.DrawLine(x, (int) (y+(h/2)+0.5), x+w, (int) (y+(h/2)+0.5));
4833 wxCheckSetPen(dc, oldPen);
4834 }
4835
4836 x += w;
4837 }
4838 return true;
4839
4840 }
4841
4842 /// Lay the item out
4843 bool wxRichTextPlainText::Layout(wxDC& dc, const wxRect& WXUNUSED(rect), int WXUNUSED(style))
4844 {
4845 // Only lay out if we haven't already cached the size
4846 if (m_size.x == -1)
4847 GetRangeSize(GetRange(), m_size, m_descent, dc, 0, wxPoint(0, 0));
4848
4849 return true;
4850 }
4851
4852 /// Copy
4853 void wxRichTextPlainText::Copy(const wxRichTextPlainText& obj)
4854 {
4855 wxRichTextObject::Copy(obj);
4856
4857 m_text = obj.m_text;
4858 }
4859
4860 /// Get/set the object size for the given range. Returns false if the range
4861 /// is invalid for this object.
4862 bool wxRichTextPlainText::GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int WXUNUSED(flags), wxPoint position, wxArrayInt* partialExtents) const
4863 {
4864 if (!range.IsWithin(GetRange()))
4865 return false;
4866
4867 wxRichTextParagraph* para = wxDynamicCast(GetParent(), wxRichTextParagraph);
4868 wxASSERT (para != NULL);
4869
4870 wxTextAttr textAttr(para ? para->GetCombinedAttributes(GetAttributes()) : GetAttributes());
4871
4872 // Always assume unformatted text, since at this level we have no knowledge
4873 // of line breaks - and we don't need it, since we'll calculate size within
4874 // formatted text by doing it in chunks according to the line ranges
4875
4876 bool bScript(false);
4877 wxFont font(GetBuffer()->GetFontTable().FindFont(textAttr));
4878 if (font.Ok())
4879 {
4880 if ( textAttr.HasTextEffects() && ( (textAttr.GetTextEffects() & wxTEXT_ATTR_EFFECT_SUPERSCRIPT)
4881 || (textAttr.GetTextEffects() & wxTEXT_ATTR_EFFECT_SUBSCRIPT) ) )
4882 {
4883 wxFont textFont = font;
4884 double size = static_cast<double>(textFont.GetPointSize()) / wxSCRIPT_MUL_FACTOR;
4885 textFont.SetPointSize( static_cast<int>(size) );
4886 wxCheckSetFont(dc, textFont);
4887 bScript = true;
4888 }
4889 else
4890 {
4891 wxCheckSetFont(dc, font);
4892 }
4893 }
4894
4895 bool haveDescent = false;
4896 int startPos = range.GetStart() - GetRange().GetStart();
4897 long len = range.GetLength();
4898
4899 wxString str(m_text);
4900 wxString toReplace = wxRichTextLineBreakChar;
4901 str.Replace(toReplace, wxT(" "));
4902
4903 wxString stringChunk = str.Mid(startPos, (size_t) len);
4904
4905 if (textAttr.HasTextEffects() && (textAttr.GetTextEffects() & wxTEXT_ATTR_EFFECT_CAPITALS))
4906 stringChunk.MakeUpper();
4907
4908 wxCoord w, h;
4909 int width = 0;
4910 if (stringChunk.Find(wxT('\t')) != wxNOT_FOUND)
4911 {
4912 // the string has a tab
4913 wxArrayInt tabArray;
4914 if (textAttr.GetTabs().IsEmpty())
4915 tabArray = wxRichTextParagraph::GetDefaultTabs();
4916 else
4917 tabArray = textAttr.GetTabs();
4918
4919 int tabCount = tabArray.GetCount();
4920
4921 for (int i = 0; i < tabCount; ++i)
4922 {
4923 int pos = tabArray[i];
4924 pos = ((wxRichTextPlainText*) this)->ConvertTenthsMMToPixels(dc, pos);
4925 tabArray[i] = pos;
4926 }
4927
4928 int nextTabPos = -1;
4929
4930 while (stringChunk.Find(wxT('\t')) >= 0)
4931 {
4932 int absoluteWidth = 0;
4933
4934 // the string has a tab
4935 // break up the string at the Tab
4936 wxString stringFragment = stringChunk.BeforeFirst(wxT('\t'));
4937 stringChunk = stringChunk.AfterFirst(wxT('\t'));
4938
4939 if (partialExtents)
4940 {
4941 int oldWidth;
4942 if (partialExtents->GetCount() > 0)
4943 oldWidth = (*partialExtents)[partialExtents->GetCount()-1];
4944 else
4945 oldWidth = 0;
4946
4947 // Add these partial extents
4948 wxArrayInt p;
4949 dc.GetPartialTextExtents(stringFragment, p);
4950 size_t j;
4951 for (j = 0; j < p.GetCount(); j++)
4952 partialExtents->Add(oldWidth + p[j]);
4953
4954 if (partialExtents->GetCount() > 0)
4955 absoluteWidth = (*partialExtents)[(*partialExtents).GetCount()-1] + position.x;
4956 else
4957 absoluteWidth = position.x;
4958 }
4959 else
4960 {
4961 dc.GetTextExtent(stringFragment, & w, & h);
4962 width += w;
4963 absoluteWidth = width + position.x;
4964 haveDescent = true;
4965 }
4966
4967 bool notFound = true;
4968 for (int i = 0; i < tabCount && notFound; ++i)
4969 {
4970 nextTabPos = tabArray.Item(i);
4971
4972 // Find the next tab position.
4973 // Even if we're at the end of the tab array, we must still process the chunk.
4974
4975 if (nextTabPos > absoluteWidth || (i == (tabCount - 1)))
4976 {
4977 if (nextTabPos <= absoluteWidth)
4978 {
4979 int defaultTabWidth = ((wxRichTextPlainText*) this)->ConvertTenthsMMToPixels(dc, WIDTH_FOR_DEFAULT_TABS);
4980 nextTabPos = absoluteWidth + defaultTabWidth;
4981 }
4982
4983 notFound = false;
4984 width = nextTabPos - position.x;
4985
4986 if (partialExtents)
4987 partialExtents->Add(width);
4988 }
4989 }
4990 }
4991 }
4992
4993 if (!stringChunk.IsEmpty())
4994 {
4995 if (partialExtents)
4996 {
4997 int oldWidth;
4998 if (partialExtents->GetCount() > 0)
4999 oldWidth = (*partialExtents)[partialExtents->GetCount()-1];
5000 else
5001 oldWidth = 0;
5002
5003 // Add these partial extents
5004 wxArrayInt p;
5005 dc.GetPartialTextExtents(stringChunk, p);
5006 size_t j;
5007 for (j = 0; j < p.GetCount(); j++)
5008 partialExtents->Add(oldWidth + p[j]);
5009 }
5010 else
5011 {
5012 dc.GetTextExtent(stringChunk, & w, & h, & descent);
5013 width += w;
5014 haveDescent = true;
5015 }
5016 }
5017
5018 if (partialExtents)
5019 {
5020 int charHeight = dc.GetCharHeight();
5021 if ((*partialExtents).GetCount() > 0)
5022 w = (*partialExtents)[partialExtents->GetCount()-1];
5023 else
5024 w = 0;
5025 size = wxSize(w, charHeight);
5026 }
5027 else
5028 {
5029 size = wxSize(width, dc.GetCharHeight());
5030 }
5031
5032 if (!haveDescent)
5033 dc.GetTextExtent(wxT("X"), & w, & h, & descent);
5034
5035 if ( bScript )
5036 dc.SetFont(font);
5037
5038 return true;
5039 }
5040
5041 /// Do a split, returning an object containing the second part, and setting
5042 /// the first part in 'this'.
5043 wxRichTextObject* wxRichTextPlainText::DoSplit(long pos)
5044 {
5045 long index = pos - GetRange().GetStart();
5046
5047 if (index < 0 || index >= (int) m_text.length())
5048 return NULL;
5049
5050 wxString firstPart = m_text.Mid(0, index);
5051 wxString secondPart = m_text.Mid(index);
5052
5053 m_text = firstPart;
5054
5055 wxRichTextPlainText* newObject = new wxRichTextPlainText(secondPart);
5056 newObject->SetAttributes(GetAttributes());
5057
5058 newObject->SetRange(wxRichTextRange(pos, GetRange().GetEnd()));
5059 GetRange().SetEnd(pos-1);
5060
5061 return newObject;
5062 }
5063
5064 /// Calculate range
5065 void wxRichTextPlainText::CalculateRange(long start, long& end)
5066 {
5067 end = start + m_text.length() - 1;
5068 m_range.SetRange(start, end);
5069 }
5070
5071 /// Delete range
5072 bool wxRichTextPlainText::DeleteRange(const wxRichTextRange& range)
5073 {
5074 wxRichTextRange r = range;
5075
5076 r.LimitTo(GetRange());
5077
5078 if (r.GetStart() == GetRange().GetStart() && r.GetEnd() == GetRange().GetEnd())
5079 {
5080 m_text.Empty();
5081 return true;
5082 }
5083
5084 long startIndex = r.GetStart() - GetRange().GetStart();
5085 long len = r.GetLength();
5086
5087 m_text = m_text.Mid(0, startIndex) + m_text.Mid(startIndex+len);
5088 return true;
5089 }
5090
5091 /// Get text for the given range.
5092 wxString wxRichTextPlainText::GetTextForRange(const wxRichTextRange& range) const
5093 {
5094 wxRichTextRange r = range;
5095
5096 r.LimitTo(GetRange());
5097
5098 long startIndex = r.GetStart() - GetRange().GetStart();
5099 long len = r.GetLength();
5100
5101 return m_text.Mid(startIndex, len);
5102 }
5103
5104 /// Returns true if this object can merge itself with the given one.
5105 bool wxRichTextPlainText::CanMerge(wxRichTextObject* object) const
5106 {
5107 return object->GetClassInfo() == CLASSINFO(wxRichTextPlainText) &&
5108 (m_text.empty() || wxTextAttrEq(GetAttributes(), object->GetAttributes()));
5109 }
5110
5111 /// Returns true if this object merged itself with the given one.
5112 /// The calling code will then delete the given object.
5113 bool wxRichTextPlainText::Merge(wxRichTextObject* object)
5114 {
5115 wxRichTextPlainText* textObject = wxDynamicCast(object, wxRichTextPlainText);
5116 wxASSERT( textObject != NULL );
5117
5118 if (textObject)
5119 {
5120 m_text += textObject->GetText();
5121 wxRichTextApplyStyle(m_attributes, textObject->GetAttributes());
5122 return true;
5123 }
5124 else
5125 return false;
5126 }
5127
5128 /// Dump to output stream for debugging
5129 void wxRichTextPlainText::Dump(wxTextOutputStream& stream)
5130 {
5131 wxRichTextObject::Dump(stream);
5132 stream << m_text << wxT("\n");
5133 }
5134
5135 /// Get the first position from pos that has a line break character.
5136 long wxRichTextPlainText::GetFirstLineBreakPosition(long pos)
5137 {
5138 int i;
5139 int len = m_text.length();
5140 int startPos = pos - m_range.GetStart();
5141 for (i = startPos; i < len; i++)
5142 {
5143 wxChar ch = m_text[i];
5144 if (ch == wxRichTextLineBreakChar)
5145 {
5146 return i + m_range.GetStart();
5147 }
5148 }
5149 return -1;
5150 }
5151
5152 /*!
5153 * wxRichTextBuffer
5154 * This is a kind of box, used to represent the whole buffer
5155 */
5156
5157 IMPLEMENT_DYNAMIC_CLASS(wxRichTextBuffer, wxRichTextParagraphLayoutBox)
5158
5159 wxList wxRichTextBuffer::sm_handlers;
5160 wxRichTextRenderer* wxRichTextBuffer::sm_renderer = NULL;
5161 int wxRichTextBuffer::sm_bulletRightMargin = 20;
5162 float wxRichTextBuffer::sm_bulletProportion = (float) 0.3;
5163
5164 /// Initialisation
5165 void wxRichTextBuffer::Init()
5166 {
5167 m_commandProcessor = new wxCommandProcessor;
5168 m_styleSheet = NULL;
5169 m_modified = false;
5170 m_batchedCommandDepth = 0;
5171 m_batchedCommand = NULL;
5172 m_suppressUndo = 0;
5173 m_handlerFlags = 0;
5174 m_scale = 1.0;
5175 }
5176
5177 /// Initialisation
5178 wxRichTextBuffer::~wxRichTextBuffer()
5179 {
5180 delete m_commandProcessor;
5181 delete m_batchedCommand;
5182
5183 ClearStyleStack();
5184 ClearEventHandlers();
5185 }
5186
5187 void wxRichTextBuffer::ResetAndClearCommands()
5188 {
5189 Reset();
5190
5191 GetCommandProcessor()->ClearCommands();
5192
5193 Modify(false);
5194 Invalidate(wxRICHTEXT_ALL);
5195 }
5196
5197 void wxRichTextBuffer::Copy(const wxRichTextBuffer& obj)
5198 {
5199 wxRichTextParagraphLayoutBox::Copy(obj);
5200
5201 m_styleSheet = obj.m_styleSheet;
5202 m_modified = obj.m_modified;
5203 m_batchedCommandDepth = obj.m_batchedCommandDepth;
5204 m_batchedCommand = obj.m_batchedCommand;
5205 m_suppressUndo = obj.m_suppressUndo;
5206 }
5207
5208 /// Push style sheet to top of stack
5209 bool wxRichTextBuffer::PushStyleSheet(wxRichTextStyleSheet* styleSheet)
5210 {
5211 if (m_styleSheet)
5212 styleSheet->InsertSheet(m_styleSheet);
5213
5214 SetStyleSheet(styleSheet);
5215
5216 return true;
5217 }
5218
5219 /// Pop style sheet from top of stack
5220 wxRichTextStyleSheet* wxRichTextBuffer::PopStyleSheet()
5221 {
5222 if (m_styleSheet)
5223 {
5224 wxRichTextStyleSheet* oldSheet = m_styleSheet;
5225 m_styleSheet = oldSheet->GetNextSheet();
5226 oldSheet->Unlink();
5227
5228 return oldSheet;
5229 }
5230 else
5231 return NULL;
5232 }
5233
5234 /// Submit command to insert paragraphs
5235 bool wxRichTextBuffer::InsertParagraphsWithUndo(long pos, const wxRichTextParagraphLayoutBox& paragraphs, wxRichTextCtrl* ctrl, int flags)
5236 {
5237 wxRichTextAction* action = new wxRichTextAction(NULL, _("Insert Text"), wxRICHTEXT_INSERT, this, ctrl, false);
5238
5239 wxTextAttr attr(GetDefaultStyle());
5240
5241 wxTextAttr* p = NULL;
5242 wxTextAttr paraAttr;
5243 if (flags & wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE)
5244 {
5245 paraAttr = GetStyleForNewParagraph(pos);
5246 if (!paraAttr.IsDefault())
5247 p = & paraAttr;
5248 }
5249 else
5250 p = & attr;
5251
5252 action->GetNewParagraphs() = paragraphs;
5253
5254 if (p && !p->IsDefault())
5255 {
5256 for (wxRichTextObjectList::compatibility_iterator node = action->GetNewParagraphs().GetChildren().GetFirst(); node; node = node->GetNext())
5257 {
5258 wxRichTextObject* child = node->GetData();
5259 child->SetAttributes(*p);
5260 }
5261 }
5262
5263 action->SetPosition(pos);
5264
5265 wxRichTextRange range = wxRichTextRange(pos, pos + paragraphs.GetRange().GetEnd() - 1);
5266 if (!paragraphs.GetPartialParagraph())
5267 range.SetEnd(range.GetEnd()+1);
5268
5269 // Set the range we'll need to delete in Undo
5270 action->SetRange(range);
5271
5272 SubmitAction(action);
5273
5274 return true;
5275 }
5276
5277 /// Submit command to insert the given text
5278 bool wxRichTextBuffer::InsertTextWithUndo(long pos, const wxString& text, wxRichTextCtrl* ctrl, int flags)
5279 {
5280 wxRichTextAction* action = new wxRichTextAction(NULL, _("Insert Text"), wxRICHTEXT_INSERT, this, ctrl, false);
5281
5282 wxTextAttr* p = NULL;
5283 wxTextAttr paraAttr;
5284 if (flags & wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE)
5285 {
5286 // Get appropriate paragraph style
5287 paraAttr = GetStyleForNewParagraph(pos, false, false);
5288 if (!paraAttr.IsDefault())
5289 p = & paraAttr;
5290 }
5291
5292 action->GetNewParagraphs().AddParagraphs(text, p);
5293
5294 int length = action->GetNewParagraphs().GetRange().GetLength();
5295
5296 if (text.length() > 0 && text.Last() != wxT('\n'))
5297 {
5298 // Don't count the newline when undoing
5299 length --;
5300 action->GetNewParagraphs().SetPartialParagraph(true);
5301 }
5302 else if (text.length() > 0 && text.Last() == wxT('\n'))
5303 length --;
5304
5305 action->SetPosition(pos);
5306
5307 // Set the range we'll need to delete in Undo
5308 action->SetRange(wxRichTextRange(pos, pos + length - 1));
5309
5310 SubmitAction(action);
5311
5312 return true;
5313 }
5314
5315 /// Submit command to insert the given text
5316 bool wxRichTextBuffer::InsertNewlineWithUndo(long pos, wxRichTextCtrl* ctrl, int flags)
5317 {
5318 wxRichTextAction* action = new wxRichTextAction(NULL, _("Insert Text"), wxRICHTEXT_INSERT, this, ctrl, false);
5319
5320 wxTextAttr* p = NULL;
5321 wxTextAttr paraAttr;
5322 if (flags & wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE)
5323 {
5324 paraAttr = GetStyleForNewParagraph(pos, false, true /* look for next paragraph style */);
5325 if (!paraAttr.IsDefault())
5326 p = & paraAttr;
5327 }
5328
5329 wxTextAttr attr(GetDefaultStyle());
5330
5331 wxRichTextParagraph* newPara = new wxRichTextParagraph(wxEmptyString, this, & attr);
5332 action->GetNewParagraphs().AppendChild(newPara);
5333 action->GetNewParagraphs().UpdateRanges();
5334 action->GetNewParagraphs().SetPartialParagraph(false);
5335 wxRichTextParagraph* para = GetParagraphAtPosition(pos, false);
5336 long pos1 = pos;
5337
5338 if (p)
5339 newPara->SetAttributes(*p);
5340
5341 if (flags & wxRICHTEXT_INSERT_INTERACTIVE)
5342 {
5343 if (para && para->GetRange().GetEnd() == pos)
5344 pos1 ++;
5345
5346 // Now see if we need to number the paragraph.
5347 if (newPara->GetAttributes().HasBulletNumber())
5348 {
5349 wxRichTextAttr numberingAttr;
5350 if (FindNextParagraphNumber(para, numberingAttr))
5351 wxRichTextApplyStyle(newPara->GetAttributes(), (const wxRichTextAttr&) numberingAttr);
5352 }
5353 }
5354
5355 action->SetPosition(pos);
5356
5357 // Use the default character style
5358 // Use the default character style
5359 if (!GetDefaultStyle().IsDefault() && newPara->GetChildren().GetFirst())
5360 {
5361 // Check whether the default style merely reflects the paragraph/basic style,
5362 // in which case don't apply it.
5363 wxTextAttrEx defaultStyle(GetDefaultStyle());
5364 wxTextAttrEx toApply;
5365 if (para)
5366 {
5367 wxRichTextAttr combinedAttr = para->GetCombinedAttributes();
5368 wxTextAttrEx newAttr;
5369 // This filters out attributes that are accounted for by the current
5370 // paragraph/basic style
5371 wxRichTextApplyStyle(toApply, defaultStyle, & combinedAttr);
5372 }
5373 else
5374 toApply = defaultStyle;
5375
5376 if (!toApply.IsDefault())
5377 newPara->GetChildren().GetFirst()->GetData()->SetAttributes(toApply);
5378 }
5379
5380 // Set the range we'll need to delete in Undo
5381 action->SetRange(wxRichTextRange(pos1, pos1));
5382
5383 SubmitAction(action);
5384
5385 return true;
5386 }
5387
5388 /// Submit command to insert the given image
5389 bool wxRichTextBuffer::InsertImageWithUndo(long pos, const wxRichTextImageBlock& imageBlock, wxRichTextCtrl* ctrl, int flags)
5390 {
5391 wxRichTextAction* action = new wxRichTextAction(NULL, _("Insert Image"), wxRICHTEXT_INSERT, this, ctrl, false);
5392
5393 wxTextAttr* p = NULL;
5394 wxTextAttr paraAttr;
5395 if (flags & wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE)
5396 {
5397 paraAttr = GetStyleForNewParagraph(pos);
5398 if (!paraAttr.IsDefault())
5399 p = & paraAttr;
5400 }
5401
5402 wxTextAttr attr(GetDefaultStyle());
5403
5404 wxRichTextParagraph* newPara = new wxRichTextParagraph(this, & attr);
5405 if (p)
5406 newPara->SetAttributes(*p);
5407
5408 wxRichTextImage* imageObject = new wxRichTextImage(imageBlock, newPara);
5409 newPara->AppendChild(imageObject);
5410 action->GetNewParagraphs().AppendChild(newPara);
5411 action->GetNewParagraphs().UpdateRanges();
5412
5413 action->GetNewParagraphs().SetPartialParagraph(true);
5414
5415 action->SetPosition(pos);
5416
5417 // Set the range we'll need to delete in Undo
5418 action->SetRange(wxRichTextRange(pos, pos));
5419
5420 SubmitAction(action);
5421
5422 return true;
5423 }
5424
5425 /// Get the style that is appropriate for a new paragraph at this position.
5426 /// If the previous paragraph has a paragraph style name, look up the next-paragraph
5427 /// style.
5428 wxTextAttr wxRichTextBuffer::GetStyleForNewParagraph(long pos, bool caretPosition, bool lookUpNewParaStyle) const
5429 {
5430 wxRichTextParagraph* para = GetParagraphAtPosition(pos, caretPosition);
5431 if (para)
5432 {
5433 wxTextAttr attr;
5434 bool foundAttributes = false;
5435
5436 // Look for a matching paragraph style
5437 if (lookUpNewParaStyle && !para->GetAttributes().GetParagraphStyleName().IsEmpty() && GetStyleSheet())
5438 {
5439 wxRichTextParagraphStyleDefinition* paraDef = GetStyleSheet()->FindParagraphStyle(para->GetAttributes().GetParagraphStyleName());
5440 if (paraDef)
5441 {
5442 // If we're not at the end of the paragraph, then we apply THIS style, and not the designated next style.
5443 if (para->GetRange().GetEnd() == pos && !paraDef->GetNextStyle().IsEmpty())
5444 {
5445 wxRichTextParagraphStyleDefinition* nextParaDef = GetStyleSheet()->FindParagraphStyle(paraDef->GetNextStyle());
5446 if (nextParaDef)
5447 {
5448 foundAttributes = true;
5449 attr = nextParaDef->GetStyleMergedWithBase(GetStyleSheet());
5450 }
5451 }
5452
5453 // If we didn't find the 'next style', use this style instead.
5454 if (!foundAttributes)
5455 {
5456 foundAttributes = true;
5457 attr = paraDef->GetStyleMergedWithBase(GetStyleSheet());
5458 }
5459 }
5460 }
5461
5462 // Also apply list style if present
5463 if (lookUpNewParaStyle && !para->GetAttributes().GetListStyleName().IsEmpty() && GetStyleSheet())
5464 {
5465 wxRichTextListStyleDefinition* listDef = GetStyleSheet()->FindListStyle(para->GetAttributes().GetListStyleName());
5466 if (listDef)
5467 {
5468 int thisIndent = para->GetAttributes().GetLeftIndent();
5469 int thisLevel = para->GetAttributes().HasOutlineLevel() ? para->GetAttributes().GetOutlineLevel() : listDef->FindLevelForIndent(thisIndent);
5470
5471 // Apply the overall list style, and item style for this level
5472 wxRichTextAttr listStyle(listDef->GetCombinedStyleForLevel(thisLevel, GetStyleSheet()));
5473 wxRichTextApplyStyle(attr, listStyle);
5474 attr.SetOutlineLevel(thisLevel);
5475 if (para->GetAttributes().HasBulletNumber())
5476 attr.SetBulletNumber(para->GetAttributes().GetBulletNumber());
5477 }
5478 }
5479
5480 if (!foundAttributes)
5481 {
5482 attr = para->GetAttributes();
5483 int flags = attr.GetFlags();
5484
5485 // Eliminate character styles
5486 flags &= ( (~ wxTEXT_ATTR_FONT) |
5487 (~ wxTEXT_ATTR_TEXT_COLOUR) |
5488 (~ wxTEXT_ATTR_BACKGROUND_COLOUR) );
5489 attr.SetFlags(flags);
5490 }
5491
5492 return attr;
5493 }
5494 else
5495 return wxTextAttr();
5496 }
5497
5498 /// Submit command to delete this range
5499 bool wxRichTextBuffer::DeleteRangeWithUndo(const wxRichTextRange& range, wxRichTextCtrl* ctrl)
5500 {
5501 wxRichTextAction* action = new wxRichTextAction(NULL, _("Delete"), wxRICHTEXT_DELETE, this, ctrl);
5502
5503 action->SetPosition(ctrl->GetCaretPosition());
5504
5505 // Set the range to delete
5506 action->SetRange(range);
5507
5508 // Copy the fragment that we'll need to restore in Undo
5509 CopyFragment(range, action->GetOldParagraphs());
5510
5511 // See if we're deleting a paragraph marker, in which case we need to
5512 // make a note not to copy the attributes from the 2nd paragraph to the 1st.
5513 if (range.GetStart() == range.GetEnd())
5514 {
5515 wxRichTextParagraph* para = GetParagraphAtPosition(range.GetStart());
5516 if (para && para->GetRange().GetEnd() == range.GetEnd())
5517 {
5518 wxRichTextParagraph* nextPara = GetParagraphAtPosition(range.GetStart()+1);
5519 if (nextPara && nextPara != para)
5520 {
5521 action->GetOldParagraphs().GetChildren().GetFirst()->GetData()->SetAttributes(nextPara->GetAttributes());
5522 action->GetOldParagraphs().GetAttributes().SetFlags(action->GetOldParagraphs().GetAttributes().GetFlags() | wxTEXT_ATTR_KEEP_FIRST_PARA_STYLE);
5523 }
5524 }
5525 }
5526
5527 SubmitAction(action);
5528
5529 return true;
5530 }
5531
5532 /// Collapse undo/redo commands
5533 bool wxRichTextBuffer::BeginBatchUndo(const wxString& cmdName)
5534 {
5535 if (m_batchedCommandDepth == 0)
5536 {
5537 wxASSERT(m_batchedCommand == NULL);
5538 if (m_batchedCommand)
5539 {
5540 GetCommandProcessor()->Store(m_batchedCommand);
5541 }
5542 m_batchedCommand = new wxRichTextCommand(cmdName);
5543 }
5544
5545 m_batchedCommandDepth ++;
5546
5547 return true;
5548 }
5549
5550 /// Collapse undo/redo commands
5551 bool wxRichTextBuffer::EndBatchUndo()
5552 {
5553 m_batchedCommandDepth --;
5554
5555 wxASSERT(m_batchedCommandDepth >= 0);
5556 wxASSERT(m_batchedCommand != NULL);
5557
5558 if (m_batchedCommandDepth == 0)
5559 {
5560 GetCommandProcessor()->Store(m_batchedCommand);
5561 m_batchedCommand = NULL;
5562 }
5563
5564 return true;
5565 }
5566
5567 /// Submit immediately, or delay according to whether collapsing is on
5568 bool wxRichTextBuffer::SubmitAction(wxRichTextAction* action)
5569 {
5570 if (BatchingUndo() && m_batchedCommand && !SuppressingUndo())
5571 {
5572 wxRichTextCommand* cmd = new wxRichTextCommand(action->GetName());
5573 cmd->AddAction(action);
5574 cmd->Do();
5575 cmd->GetActions().Clear();
5576 delete cmd;
5577
5578 m_batchedCommand->AddAction(action);
5579 }
5580 else
5581 {
5582 wxRichTextCommand* cmd = new wxRichTextCommand(action->GetName());
5583 cmd->AddAction(action);
5584
5585 // Only store it if we're not suppressing undo.
5586 return GetCommandProcessor()->Submit(cmd, !SuppressingUndo());
5587 }
5588
5589 return true;
5590 }
5591
5592 /// Begin suppressing undo/redo commands.
5593 bool wxRichTextBuffer::BeginSuppressUndo()
5594 {
5595 m_suppressUndo ++;
5596
5597 return true;
5598 }
5599
5600 /// End suppressing undo/redo commands.
5601 bool wxRichTextBuffer::EndSuppressUndo()
5602 {
5603 m_suppressUndo --;
5604
5605 return true;
5606 }
5607
5608 /// Begin using a style
5609 bool wxRichTextBuffer::BeginStyle(const wxTextAttr& style)
5610 {
5611 wxTextAttr newStyle(GetDefaultStyle());
5612
5613 // Save the old default style
5614 m_attributeStack.Append((wxObject*) new wxTextAttr(GetDefaultStyle()));
5615
5616 wxRichTextApplyStyle(newStyle, style);
5617 newStyle.SetFlags(style.GetFlags()|newStyle.GetFlags());
5618
5619 SetDefaultStyle(newStyle);
5620
5621 return true;
5622 }
5623
5624 /// End the style
5625 bool wxRichTextBuffer::EndStyle()
5626 {
5627 if (!m_attributeStack.GetFirst())
5628 {
5629 wxLogDebug(_("Too many EndStyle calls!"));
5630 return false;
5631 }
5632
5633 wxList::compatibility_iterator node = m_attributeStack.GetLast();
5634 wxTextAttr* attr = (wxTextAttr*)node->GetData();
5635 m_attributeStack.Erase(node);
5636
5637 SetDefaultStyle(*attr);
5638
5639 delete attr;
5640 return true;
5641 }
5642
5643 /// End all styles
5644 bool wxRichTextBuffer::EndAllStyles()
5645 {
5646 while (m_attributeStack.GetCount() != 0)
5647 EndStyle();
5648 return true;
5649 }
5650
5651 /// Clear the style stack
5652 void wxRichTextBuffer::ClearStyleStack()
5653 {
5654 for (wxList::compatibility_iterator node = m_attributeStack.GetFirst(); node; node = node->GetNext())
5655 delete (wxTextAttr*) node->GetData();
5656 m_attributeStack.Clear();
5657 }
5658
5659 /// Begin using bold
5660 bool wxRichTextBuffer::BeginBold()
5661 {
5662 wxTextAttr attr;
5663 attr.SetFontWeight(wxBOLD);
5664
5665 return BeginStyle(attr);
5666 }
5667
5668 /// Begin using italic
5669 bool wxRichTextBuffer::BeginItalic()
5670 {
5671 wxTextAttr attr;
5672 attr.SetFontStyle(wxITALIC);
5673
5674 return BeginStyle(attr);
5675 }
5676
5677 /// Begin using underline
5678 bool wxRichTextBuffer::BeginUnderline()
5679 {
5680 wxTextAttr attr;
5681 attr.SetFontUnderlined(true);
5682
5683 return BeginStyle(attr);
5684 }
5685
5686 /// Begin using point size
5687 bool wxRichTextBuffer::BeginFontSize(int pointSize)
5688 {
5689 wxTextAttr attr;
5690 attr.SetFontSize(pointSize);
5691
5692 return BeginStyle(attr);
5693 }
5694
5695 /// Begin using this font
5696 bool wxRichTextBuffer::BeginFont(const wxFont& font)
5697 {
5698 wxTextAttr attr;
5699 attr.SetFont(font);
5700
5701 return BeginStyle(attr);
5702 }
5703
5704 /// Begin using this colour
5705 bool wxRichTextBuffer::BeginTextColour(const wxColour& colour)
5706 {
5707 wxTextAttr attr;
5708 attr.SetFlags(wxTEXT_ATTR_TEXT_COLOUR);
5709 attr.SetTextColour(colour);
5710
5711 return BeginStyle(attr);
5712 }
5713
5714 /// Begin using alignment
5715 bool wxRichTextBuffer::BeginAlignment(wxTextAttrAlignment alignment)
5716 {
5717 wxTextAttr attr;
5718 attr.SetFlags(wxTEXT_ATTR_ALIGNMENT);
5719 attr.SetAlignment(alignment);
5720
5721 return BeginStyle(attr);
5722 }
5723
5724 /// Begin left indent
5725 bool wxRichTextBuffer::BeginLeftIndent(int leftIndent, int leftSubIndent)
5726 {
5727 wxTextAttr attr;
5728 attr.SetFlags(wxTEXT_ATTR_LEFT_INDENT);
5729 attr.SetLeftIndent(leftIndent, leftSubIndent);
5730
5731 return BeginStyle(attr);
5732 }
5733
5734 /// Begin right indent
5735 bool wxRichTextBuffer::BeginRightIndent(int rightIndent)
5736 {
5737 wxTextAttr attr;
5738 attr.SetFlags(wxTEXT_ATTR_RIGHT_INDENT);
5739 attr.SetRightIndent(rightIndent);
5740
5741 return BeginStyle(attr);
5742 }
5743
5744 /// Begin paragraph spacing
5745 bool wxRichTextBuffer::BeginParagraphSpacing(int before, int after)
5746 {
5747 long flags = 0;
5748 if (before != 0)
5749 flags |= wxTEXT_ATTR_PARA_SPACING_BEFORE;
5750 if (after != 0)
5751 flags |= wxTEXT_ATTR_PARA_SPACING_AFTER;
5752
5753 wxTextAttr attr;
5754 attr.SetFlags(flags);
5755 attr.SetParagraphSpacingBefore(before);
5756 attr.SetParagraphSpacingAfter(after);
5757
5758 return BeginStyle(attr);
5759 }
5760
5761 /// Begin line spacing
5762 bool wxRichTextBuffer::BeginLineSpacing(int lineSpacing)
5763 {
5764 wxTextAttr attr;
5765 attr.SetFlags(wxTEXT_ATTR_LINE_SPACING);
5766 attr.SetLineSpacing(lineSpacing);
5767
5768 return BeginStyle(attr);
5769 }
5770
5771 /// Begin numbered bullet
5772 bool wxRichTextBuffer::BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle)
5773 {
5774 wxTextAttr attr;
5775 attr.SetFlags(wxTEXT_ATTR_BULLET_STYLE|wxTEXT_ATTR_LEFT_INDENT);
5776 attr.SetBulletStyle(bulletStyle);
5777 attr.SetBulletNumber(bulletNumber);
5778 attr.SetLeftIndent(leftIndent, leftSubIndent);
5779
5780 return BeginStyle(attr);
5781 }
5782
5783 /// Begin symbol bullet
5784 bool wxRichTextBuffer::BeginSymbolBullet(const wxString& symbol, int leftIndent, int leftSubIndent, int bulletStyle)
5785 {
5786 wxTextAttr attr;
5787 attr.SetFlags(wxTEXT_ATTR_BULLET_STYLE|wxTEXT_ATTR_LEFT_INDENT);
5788 attr.SetBulletStyle(bulletStyle);
5789 attr.SetLeftIndent(leftIndent, leftSubIndent);
5790 attr.SetBulletText(symbol);
5791
5792 return BeginStyle(attr);
5793 }
5794
5795 /// Begin standard bullet
5796 bool wxRichTextBuffer::BeginStandardBullet(const wxString& bulletName, int leftIndent, int leftSubIndent, int bulletStyle)
5797 {
5798 wxTextAttr attr;
5799 attr.SetFlags(wxTEXT_ATTR_BULLET_STYLE|wxTEXT_ATTR_LEFT_INDENT);
5800 attr.SetBulletStyle(bulletStyle);
5801 attr.SetLeftIndent(leftIndent, leftSubIndent);
5802 attr.SetBulletName(bulletName);
5803
5804 return BeginStyle(attr);
5805 }
5806
5807 /// Begin named character style
5808 bool wxRichTextBuffer::BeginCharacterStyle(const wxString& characterStyle)
5809 {
5810 if (GetStyleSheet())
5811 {
5812 wxRichTextCharacterStyleDefinition* def = GetStyleSheet()->FindCharacterStyle(characterStyle);
5813 if (def)
5814 {
5815 wxTextAttr attr = def->GetStyleMergedWithBase(GetStyleSheet());
5816 return BeginStyle(attr);
5817 }
5818 }
5819 return false;
5820 }
5821
5822 /// Begin named paragraph style
5823 bool wxRichTextBuffer::BeginParagraphStyle(const wxString& paragraphStyle)
5824 {
5825 if (GetStyleSheet())
5826 {
5827 wxRichTextParagraphStyleDefinition* def = GetStyleSheet()->FindParagraphStyle(paragraphStyle);
5828 if (def)
5829 {
5830 wxTextAttr attr = def->GetStyleMergedWithBase(GetStyleSheet());
5831 return BeginStyle(attr);
5832 }
5833 }
5834 return false;
5835 }
5836
5837 /// Begin named list style
5838 bool wxRichTextBuffer::BeginListStyle(const wxString& listStyle, int level, int number)
5839 {
5840 if (GetStyleSheet())
5841 {
5842 wxRichTextListStyleDefinition* def = GetStyleSheet()->FindListStyle(listStyle);
5843 if (def)
5844 {
5845 wxTextAttr attr(def->GetCombinedStyleForLevel(level));
5846
5847 attr.SetBulletNumber(number);
5848
5849 return BeginStyle(attr);
5850 }
5851 }
5852 return false;
5853 }
5854
5855 /// Begin URL
5856 bool wxRichTextBuffer::BeginURL(const wxString& url, const wxString& characterStyle)
5857 {
5858 wxTextAttr attr;
5859
5860 if (!characterStyle.IsEmpty() && GetStyleSheet())
5861 {
5862 wxRichTextCharacterStyleDefinition* def = GetStyleSheet()->FindCharacterStyle(characterStyle);
5863 if (def)
5864 {
5865 attr = def->GetStyleMergedWithBase(GetStyleSheet());
5866 }
5867 }
5868 attr.SetURL(url);
5869
5870 return BeginStyle(attr);
5871 }
5872
5873 /// Adds a handler to the end
5874 void wxRichTextBuffer::AddHandler(wxRichTextFileHandler *handler)
5875 {
5876 sm_handlers.Append(handler);
5877 }
5878
5879 /// Inserts a handler at the front
5880 void wxRichTextBuffer::InsertHandler(wxRichTextFileHandler *handler)
5881 {
5882 sm_handlers.Insert( handler );
5883 }
5884
5885 /// Removes a handler
5886 bool wxRichTextBuffer::RemoveHandler(const wxString& name)
5887 {
5888 wxRichTextFileHandler *handler = FindHandler(name);
5889 if (handler)
5890 {
5891 sm_handlers.DeleteObject(handler);
5892 delete handler;
5893 return true;
5894 }
5895 else
5896 return false;
5897 }
5898
5899 /// Finds a handler by filename or, if supplied, type
5900 wxRichTextFileHandler *wxRichTextBuffer::FindHandlerFilenameOrType(const wxString& filename,
5901 wxRichTextFileType imageType)
5902 {
5903 if (imageType != wxRICHTEXT_TYPE_ANY)
5904 return FindHandler(imageType);
5905 else if (!filename.IsEmpty())
5906 {
5907 wxString path, file, ext;
5908 wxFileName::SplitPath(filename, & path, & file, & ext);
5909 return FindHandler(ext, imageType);
5910 }
5911 else
5912 return NULL;
5913 }
5914
5915
5916 /// Finds a handler by name
5917 wxRichTextFileHandler* wxRichTextBuffer::FindHandler(const wxString& name)
5918 {
5919 wxList::compatibility_iterator node = sm_handlers.GetFirst();
5920 while (node)
5921 {
5922 wxRichTextFileHandler *handler = (wxRichTextFileHandler*)node->GetData();
5923 if (handler->GetName().Lower() == name.Lower()) return handler;
5924
5925 node = node->GetNext();
5926 }
5927 return NULL;
5928 }
5929
5930 /// Finds a handler by extension and type
5931 wxRichTextFileHandler* wxRichTextBuffer::FindHandler(const wxString& extension, wxRichTextFileType type)
5932 {
5933 wxList::compatibility_iterator node = sm_handlers.GetFirst();
5934 while (node)
5935 {
5936 wxRichTextFileHandler *handler = (wxRichTextFileHandler*)node->GetData();
5937 if ( handler->GetExtension().Lower() == extension.Lower() &&
5938 (type == wxRICHTEXT_TYPE_ANY || handler->GetType() == type) )
5939 return handler;
5940 node = node->GetNext();
5941 }
5942 return 0;
5943 }
5944
5945 /// Finds a handler by type
5946 wxRichTextFileHandler* wxRichTextBuffer::FindHandler(wxRichTextFileType type)
5947 {
5948 wxList::compatibility_iterator node = sm_handlers.GetFirst();
5949 while (node)
5950 {
5951 wxRichTextFileHandler *handler = (wxRichTextFileHandler *)node->GetData();
5952 if (handler->GetType() == type) return handler;
5953 node = node->GetNext();
5954 }
5955 return NULL;
5956 }
5957
5958 void wxRichTextBuffer::InitStandardHandlers()
5959 {
5960 if (!FindHandler(wxRICHTEXT_TYPE_TEXT))
5961 AddHandler(new wxRichTextPlainTextHandler);
5962 }
5963
5964 void wxRichTextBuffer::CleanUpHandlers()
5965 {
5966 wxList::compatibility_iterator node = sm_handlers.GetFirst();
5967 while (node)
5968 {
5969 wxRichTextFileHandler* handler = (wxRichTextFileHandler*)node->GetData();
5970 wxList::compatibility_iterator next = node->GetNext();
5971 delete handler;
5972 node = next;
5973 }
5974
5975 sm_handlers.Clear();
5976 }
5977
5978 wxString wxRichTextBuffer::GetExtWildcard(bool combine, bool save, wxArrayInt* types)
5979 {
5980 if (types)
5981 types->Clear();
5982
5983 wxString wildcard;
5984
5985 wxList::compatibility_iterator node = GetHandlers().GetFirst();
5986 int count = 0;
5987 while (node)
5988 {
5989 wxRichTextFileHandler* handler = (wxRichTextFileHandler*) node->GetData();
5990 if (handler->IsVisible() && ((save && handler->CanSave()) || (!save && handler->CanLoad())))
5991 {
5992 if (combine)
5993 {
5994 if (count > 0)
5995 wildcard += wxT(";");
5996 wildcard += wxT("*.") + handler->GetExtension();
5997 }
5998 else
5999 {
6000 if (count > 0)
6001 wildcard += wxT("|");
6002 wildcard += handler->GetName();
6003 wildcard += wxT(" ");
6004 wildcard += _("files");
6005 wildcard += wxT(" (*.");
6006 wildcard += handler->GetExtension();
6007 wildcard += wxT(")|*.");
6008 wildcard += handler->GetExtension();
6009 if (types)
6010 types->Add(handler->GetType());
6011 }
6012 count ++;
6013 }
6014
6015 node = node->GetNext();
6016 }
6017
6018 if (combine)
6019 wildcard = wxT("(") + wildcard + wxT(")|") + wildcard;
6020 return wildcard;
6021 }
6022
6023 /// Load a file
6024 bool wxRichTextBuffer::LoadFile(const wxString& filename, wxRichTextFileType type)
6025 {
6026 wxRichTextFileHandler* handler = FindHandlerFilenameOrType(filename, type);
6027 if (handler)
6028 {
6029 SetDefaultStyle(wxTextAttr());
6030 handler->SetFlags(GetHandlerFlags());
6031 bool success = handler->LoadFile(this, filename);
6032 Invalidate(wxRICHTEXT_ALL);
6033 return success;
6034 }
6035 else
6036 return false;
6037 }
6038
6039 /// Save a file
6040 bool wxRichTextBuffer::SaveFile(const wxString& filename, wxRichTextFileType type)
6041 {
6042 wxRichTextFileHandler* handler = FindHandlerFilenameOrType(filename, type);
6043 if (handler)
6044 {
6045 handler->SetFlags(GetHandlerFlags());
6046 return handler->SaveFile(this, filename);
6047 }
6048 else
6049 return false;
6050 }
6051
6052 /// Load from a stream
6053 bool wxRichTextBuffer::LoadFile(wxInputStream& stream, wxRichTextFileType type)
6054 {
6055 wxRichTextFileHandler* handler = FindHandler(type);
6056 if (handler)
6057 {
6058 SetDefaultStyle(wxTextAttr());
6059 handler->SetFlags(GetHandlerFlags());
6060 bool success = handler->LoadFile(this, stream);
6061 Invalidate(wxRICHTEXT_ALL);
6062 return success;
6063 }
6064 else
6065 return false;
6066 }
6067
6068 /// Save to a stream
6069 bool wxRichTextBuffer::SaveFile(wxOutputStream& stream, wxRichTextFileType type)
6070 {
6071 wxRichTextFileHandler* handler = FindHandler(type);
6072 if (handler)
6073 {
6074 handler->SetFlags(GetHandlerFlags());
6075 return handler->SaveFile(this, stream);
6076 }
6077 else
6078 return false;
6079 }
6080
6081 /// Copy the range to the clipboard
6082 bool wxRichTextBuffer::CopyToClipboard(const wxRichTextRange& range)
6083 {
6084 bool success = false;
6085 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
6086
6087 if (!wxTheClipboard->IsOpened() && wxTheClipboard->Open())
6088 {
6089 wxTheClipboard->Clear();
6090
6091 // Add composite object
6092
6093 wxDataObjectComposite* compositeObject = new wxDataObjectComposite();
6094
6095 {
6096 wxString text = GetTextForRange(range);
6097
6098 #ifdef __WXMSW__
6099 text = wxTextFile::Translate(text, wxTextFileType_Dos);
6100 #endif
6101
6102 compositeObject->Add(new wxTextDataObject(text), false /* not preferred */);
6103 }
6104
6105 // Add rich text buffer data object. This needs the XML handler to be present.
6106
6107 if (FindHandler(wxRICHTEXT_TYPE_XML))
6108 {
6109 wxRichTextBuffer* richTextBuf = new wxRichTextBuffer;
6110 CopyFragment(range, *richTextBuf);
6111
6112 compositeObject->Add(new wxRichTextBufferDataObject(richTextBuf), true /* preferred */);
6113 }
6114
6115 if (wxTheClipboard->SetData(compositeObject))
6116 success = true;
6117
6118 wxTheClipboard->Close();
6119 }
6120
6121 #else
6122 wxUnusedVar(range);
6123 #endif
6124 return success;
6125 }
6126
6127 /// Paste the clipboard content to the buffer
6128 bool wxRichTextBuffer::PasteFromClipboard(long position)
6129 {
6130 bool success = false;
6131 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
6132 if (CanPasteFromClipboard())
6133 {
6134 if (wxTheClipboard->Open())
6135 {
6136 if (wxTheClipboard->IsSupported(wxDataFormat(wxRichTextBufferDataObject::GetRichTextBufferFormatId())))
6137 {
6138 wxRichTextBufferDataObject data;
6139 wxTheClipboard->GetData(data);
6140 wxRichTextBuffer* richTextBuffer = data.GetRichTextBuffer();
6141 if (richTextBuffer)
6142 {
6143 InsertParagraphsWithUndo(position+1, *richTextBuffer, GetRichTextCtrl(), 0);
6144 if (GetRichTextCtrl())
6145 GetRichTextCtrl()->ShowPosition(position + richTextBuffer->GetRange().GetEnd());
6146 delete richTextBuffer;
6147 }
6148 }
6149 else if (wxTheClipboard->IsSupported(wxDF_TEXT) || wxTheClipboard->IsSupported(wxDF_UNICODETEXT))
6150 {
6151 wxTextDataObject data;
6152 wxTheClipboard->GetData(data);
6153 wxString text(data.GetText());
6154 #ifdef __WXMSW__
6155 wxString text2;
6156 text2.Alloc(text.Length()+1);
6157 size_t i;
6158 for (i = 0; i < text.Length(); i++)
6159 {
6160 wxChar ch = text[i];
6161 if (ch != wxT('\r'))
6162 text2 += ch;
6163 }
6164 #else
6165 wxString text2 = text;
6166 #endif
6167 InsertTextWithUndo(position+1, text2, GetRichTextCtrl(), wxRICHTEXT_INSERT_WITH_PREVIOUS_PARAGRAPH_STYLE);
6168
6169 if (GetRichTextCtrl())
6170 GetRichTextCtrl()->ShowPosition(position + text2.Length());
6171
6172 success = true;
6173 }
6174 else if (wxTheClipboard->IsSupported(wxDF_BITMAP))
6175 {
6176 wxBitmapDataObject data;
6177 wxTheClipboard->GetData(data);
6178 wxBitmap bitmap(data.GetBitmap());
6179 wxImage image(bitmap.ConvertToImage());
6180
6181 wxRichTextAction* action = new wxRichTextAction(NULL, _("Insert Image"), wxRICHTEXT_INSERT, this, GetRichTextCtrl(), false);
6182
6183 action->GetNewParagraphs().AddImage(image);
6184
6185 if (action->GetNewParagraphs().GetChildCount() == 1)
6186 action->GetNewParagraphs().SetPartialParagraph(true);
6187
6188 action->SetPosition(position+1);
6189
6190 // Set the range we'll need to delete in Undo
6191 action->SetRange(wxRichTextRange(position+1, position+1));
6192
6193 SubmitAction(action);
6194
6195 success = true;
6196 }
6197 wxTheClipboard->Close();
6198 }
6199 }
6200 #else
6201 wxUnusedVar(position);
6202 #endif
6203 return success;
6204 }
6205
6206 /// Can we paste from the clipboard?
6207 bool wxRichTextBuffer::CanPasteFromClipboard() const
6208 {
6209 bool canPaste = false;
6210 #if wxUSE_CLIPBOARD && wxUSE_DATAOBJ
6211 if (!wxTheClipboard->IsOpened() && wxTheClipboard->Open())
6212 {
6213 if (wxTheClipboard->IsSupported(wxDF_TEXT) || wxTheClipboard->IsSupported(wxDF_UNICODETEXT) ||
6214 wxTheClipboard->IsSupported(wxDataFormat(wxRichTextBufferDataObject::GetRichTextBufferFormatId())) ||
6215 wxTheClipboard->IsSupported(wxDF_BITMAP))
6216 {
6217 canPaste = true;
6218 }
6219 wxTheClipboard->Close();
6220 }
6221 #endif
6222 return canPaste;
6223 }
6224
6225 /// Dumps contents of buffer for debugging purposes
6226 void wxRichTextBuffer::Dump()
6227 {
6228 wxString text;
6229 {
6230 wxStringOutputStream stream(& text);
6231 wxTextOutputStream textStream(stream);
6232 Dump(textStream);
6233 }
6234
6235 wxLogDebug(text);
6236 }
6237
6238 /// Add an event handler
6239 bool wxRichTextBuffer::AddEventHandler(wxEvtHandler* handler)
6240 {
6241 m_eventHandlers.Append(handler);
6242 return true;
6243 }
6244
6245 /// Remove an event handler
6246 bool wxRichTextBuffer::RemoveEventHandler(wxEvtHandler* handler, bool deleteHandler)
6247 {
6248 wxList::compatibility_iterator node = m_eventHandlers.Find(handler);
6249 if (node)
6250 {
6251 m_eventHandlers.Erase(node);
6252 if (deleteHandler)
6253 delete handler;
6254
6255 return true;
6256 }
6257 else
6258 return false;
6259 }
6260
6261 /// Clear event handlers
6262 void wxRichTextBuffer::ClearEventHandlers()
6263 {
6264 m_eventHandlers.Clear();
6265 }
6266
6267 /// Send event to event handlers. If sendToAll is true, will send to all event handlers,
6268 /// otherwise will stop at the first successful one.
6269 bool wxRichTextBuffer::SendEvent(wxEvent& event, bool sendToAll)
6270 {
6271 bool success = false;
6272 for (wxList::compatibility_iterator node = m_eventHandlers.GetFirst(); node; node = node->GetNext())
6273 {
6274 wxEvtHandler* handler = (wxEvtHandler*) node->GetData();
6275 if (handler->ProcessEvent(event))
6276 {
6277 success = true;
6278 if (!sendToAll)
6279 return true;
6280 }
6281 }
6282 return success;
6283 }
6284
6285 /// Set style sheet and notify of the change
6286 bool wxRichTextBuffer::SetStyleSheetAndNotify(wxRichTextStyleSheet* sheet)
6287 {
6288 wxRichTextStyleSheet* oldSheet = GetStyleSheet();
6289
6290 wxWindowID id = wxID_ANY;
6291 if (GetRichTextCtrl())
6292 id = GetRichTextCtrl()->GetId();
6293
6294 wxRichTextEvent event(wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING, id);
6295 event.SetEventObject(GetRichTextCtrl());
6296 event.SetOldStyleSheet(oldSheet);
6297 event.SetNewStyleSheet(sheet);
6298 event.Allow();
6299
6300 if (SendEvent(event) && !event.IsAllowed())
6301 {
6302 if (sheet != oldSheet)
6303 delete sheet;
6304
6305 return false;
6306 }
6307
6308 if (oldSheet && oldSheet != sheet)
6309 delete oldSheet;
6310
6311 SetStyleSheet(sheet);
6312
6313 event.SetEventType(wxEVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED);
6314 event.SetOldStyleSheet(NULL);
6315 event.Allow();
6316
6317 return SendEvent(event);
6318 }
6319
6320 /// Set renderer, deleting old one
6321 void wxRichTextBuffer::SetRenderer(wxRichTextRenderer* renderer)
6322 {
6323 if (sm_renderer)
6324 delete sm_renderer;
6325 sm_renderer = renderer;
6326 }
6327
6328 bool wxRichTextStdRenderer::DrawStandardBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxTextAttr& bulletAttr, const wxRect& rect)
6329 {
6330 if (bulletAttr.GetTextColour().Ok())
6331 {
6332 wxCheckSetPen(dc, wxPen(bulletAttr.GetTextColour()));
6333 wxCheckSetBrush(dc, wxBrush(bulletAttr.GetTextColour()));
6334 }
6335 else
6336 {
6337 wxCheckSetPen(dc, *wxBLACK_PEN);
6338 wxCheckSetBrush(dc, *wxBLACK_BRUSH);
6339 }
6340
6341 wxFont font;
6342 if (bulletAttr.HasFont())
6343 {
6344 font = paragraph->GetBuffer()->GetFontTable().FindFont(bulletAttr);
6345 }
6346 else
6347 font = (*wxNORMAL_FONT);
6348
6349 wxCheckSetFont(dc, font);
6350
6351 int charHeight = dc.GetCharHeight();
6352
6353 int bulletWidth = (int) (((float) charHeight) * wxRichTextBuffer::GetBulletProportion());
6354 int bulletHeight = bulletWidth;
6355
6356 int x = rect.x;
6357
6358 // Calculate the top position of the character (as opposed to the whole line height)
6359 int y = rect.y + (rect.height - charHeight);
6360
6361 // Calculate where the bullet should be positioned
6362 y = y + (charHeight+1)/2 - (bulletHeight+1)/2;
6363
6364 // The margin between a bullet and text.
6365 int margin = paragraph->ConvertTenthsMMToPixels(dc, wxRichTextBuffer::GetBulletRightMargin());
6366
6367 if (bulletAttr.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT)
6368 x = rect.x + rect.width - bulletWidth - margin;
6369 else if (bulletAttr.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE)
6370 x = x + (rect.width)/2 - bulletWidth/2;
6371
6372 if (bulletAttr.GetBulletName() == wxT("standard/square"))
6373 {
6374 dc.DrawRectangle(x, y, bulletWidth, bulletHeight);
6375 }
6376 else if (bulletAttr.GetBulletName() == wxT("standard/diamond"))
6377 {
6378 wxPoint pts[5];
6379 pts[0].x = x; pts[0].y = y + bulletHeight/2;
6380 pts[1].x = x + bulletWidth/2; pts[1].y = y;
6381 pts[2].x = x + bulletWidth; pts[2].y = y + bulletHeight/2;
6382 pts[3].x = x + bulletWidth/2; pts[3].y = y + bulletHeight;
6383
6384 dc.DrawPolygon(4, pts);
6385 }
6386 else if (bulletAttr.GetBulletName() == wxT("standard/triangle"))
6387 {
6388 wxPoint pts[3];
6389 pts[0].x = x; pts[0].y = y;
6390 pts[1].x = x + bulletWidth; pts[1].y = y + bulletHeight/2;
6391 pts[2].x = x; pts[2].y = y + bulletHeight;
6392
6393 dc.DrawPolygon(3, pts);
6394 }
6395 else // "standard/circle", and catch-all
6396 {
6397 dc.DrawEllipse(x, y, bulletWidth, bulletHeight);
6398 }
6399
6400 return true;
6401 }
6402
6403 bool wxRichTextStdRenderer::DrawTextBullet(wxRichTextParagraph* paragraph, wxDC& dc, const wxTextAttr& attr, const wxRect& rect, const wxString& text)
6404 {
6405 if (!text.empty())
6406 {
6407 wxFont font;
6408 if ((attr.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_SYMBOL) && !attr.GetBulletFont().IsEmpty() && attr.HasFont())
6409 {
6410 wxTextAttr fontAttr;
6411 fontAttr.SetFontSize(attr.GetFontSize());
6412 fontAttr.SetFontStyle(attr.GetFontStyle());
6413 fontAttr.SetFontWeight(attr.GetFontWeight());
6414 fontAttr.SetFontUnderlined(attr.GetFontUnderlined());
6415 fontAttr.SetFontFaceName(attr.GetBulletFont());
6416 font = paragraph->GetBuffer()->GetFontTable().FindFont(fontAttr);
6417 }
6418 else if (attr.HasFont())
6419 font = paragraph->GetBuffer()->GetFontTable().FindFont(attr);
6420 else
6421 font = (*wxNORMAL_FONT);
6422
6423 wxCheckSetFont(dc, font);
6424
6425 if (attr.GetTextColour().Ok())
6426 dc.SetTextForeground(attr.GetTextColour());
6427
6428 dc.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT);
6429
6430 int charHeight = dc.GetCharHeight();
6431 wxCoord tw, th;
6432 dc.GetTextExtent(text, & tw, & th);
6433
6434 int x = rect.x;
6435
6436 // Calculate the top position of the character (as opposed to the whole line height)
6437 int y = rect.y + (rect.height - charHeight);
6438
6439 // The margin between a bullet and text.
6440 int margin = paragraph->ConvertTenthsMMToPixels(dc, wxRichTextBuffer::GetBulletRightMargin());
6441
6442 if (attr.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT)
6443 x = (rect.x + rect.width) - tw - margin;
6444 else if (attr.GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE)
6445 x = x + (rect.width)/2 - tw/2;
6446
6447 dc.DrawText(text, x, y);
6448
6449 return true;
6450 }
6451 else
6452 return false;
6453 }
6454
6455 bool wxRichTextStdRenderer::DrawBitmapBullet(wxRichTextParagraph* WXUNUSED(paragraph), wxDC& WXUNUSED(dc), const wxTextAttr& WXUNUSED(attr), const wxRect& WXUNUSED(rect))
6456 {
6457 // Currently unimplemented. The intention is to store bitmaps by name in a media store associated
6458 // with the buffer. The store will allow retrieval from memory, disk or other means.
6459 return false;
6460 }
6461
6462 /// Enumerate the standard bullet names currently supported
6463 bool wxRichTextStdRenderer::EnumerateStandardBulletNames(wxArrayString& bulletNames)
6464 {
6465 bulletNames.Add(wxT("standard/circle"));
6466 bulletNames.Add(wxT("standard/square"));
6467 bulletNames.Add(wxT("standard/diamond"));
6468 bulletNames.Add(wxT("standard/triangle"));
6469
6470 return true;
6471 }
6472
6473 /*
6474 * Module to initialise and clean up handlers
6475 */
6476
6477 class wxRichTextModule: public wxModule
6478 {
6479 DECLARE_DYNAMIC_CLASS(wxRichTextModule)
6480 public:
6481 wxRichTextModule() {}
6482 bool OnInit()
6483 {
6484 wxRichTextBuffer::SetRenderer(new wxRichTextStdRenderer);
6485 wxRichTextBuffer::InitStandardHandlers();
6486 wxRichTextParagraph::InitDefaultTabs();
6487 return true;
6488 }
6489 void OnExit()
6490 {
6491 wxRichTextBuffer::CleanUpHandlers();
6492 wxRichTextDecimalToRoman(-1);
6493 wxRichTextParagraph::ClearDefaultTabs();
6494 wxRichTextCtrl::ClearAvailableFontNames();
6495 wxRichTextBuffer::SetRenderer(NULL);
6496 }
6497 };
6498
6499 IMPLEMENT_DYNAMIC_CLASS(wxRichTextModule, wxModule)
6500
6501
6502 // If the richtext lib is dynamically loaded after the app has already started
6503 // (such as from wxPython) then the built-in module system will not init this
6504 // module. Provide this function to do it manually.
6505 void wxRichTextModuleInit()
6506 {
6507 wxModule* module = new wxRichTextModule;
6508 module->Init();
6509 wxModule::RegisterModule(module);
6510 }
6511
6512
6513 /*!
6514 * Commands for undo/redo
6515 *
6516 */
6517
6518 wxRichTextCommand::wxRichTextCommand(const wxString& name, wxRichTextCommandId id, wxRichTextBuffer* buffer,
6519 wxRichTextCtrl* ctrl, bool ignoreFirstTime): wxCommand(true, name)
6520 {
6521 /* wxRichTextAction* action = */ new wxRichTextAction(this, name, id, buffer, ctrl, ignoreFirstTime);
6522 }
6523
6524 wxRichTextCommand::wxRichTextCommand(const wxString& name): wxCommand(true, name)
6525 {
6526 }
6527
6528 wxRichTextCommand::~wxRichTextCommand()
6529 {
6530 ClearActions();
6531 }
6532
6533 void wxRichTextCommand::AddAction(wxRichTextAction* action)
6534 {
6535 if (!m_actions.Member(action))
6536 m_actions.Append(action);
6537 }
6538
6539 bool wxRichTextCommand::Do()
6540 {
6541 for (wxList::compatibility_iterator node = m_actions.GetFirst(); node; node = node->GetNext())
6542 {
6543 wxRichTextAction* action = (wxRichTextAction*) node->GetData();
6544 action->Do();
6545 }
6546
6547 return true;
6548 }
6549
6550 bool wxRichTextCommand::Undo()
6551 {
6552 for (wxList::compatibility_iterator node = m_actions.GetLast(); node; node = node->GetPrevious())
6553 {
6554 wxRichTextAction* action = (wxRichTextAction*) node->GetData();
6555 action->Undo();
6556 }
6557
6558 return true;
6559 }
6560
6561 void wxRichTextCommand::ClearActions()
6562 {
6563 WX_CLEAR_LIST(wxList, m_actions);
6564 }
6565
6566 /*!
6567 * Individual action
6568 *
6569 */
6570
6571 wxRichTextAction::wxRichTextAction(wxRichTextCommand* cmd, const wxString& name, wxRichTextCommandId id, wxRichTextBuffer* buffer,
6572 wxRichTextCtrl* ctrl, bool ignoreFirstTime)
6573 {
6574 m_buffer = buffer;
6575 m_ignoreThis = ignoreFirstTime;
6576 m_cmdId = id;
6577 m_position = -1;
6578 m_ctrl = ctrl;
6579 m_name = name;
6580 m_newParagraphs.SetDefaultStyle(buffer->GetDefaultStyle());
6581 m_newParagraphs.SetBasicStyle(buffer->GetBasicStyle());
6582 if (cmd)
6583 cmd->AddAction(this);
6584 }
6585
6586 wxRichTextAction::~wxRichTextAction()
6587 {
6588 }
6589
6590 void wxRichTextAction::CalculateRefreshOptimizations(wxArrayInt& optimizationLineCharPositions, wxArrayInt& optimizationLineYPositions)
6591 {
6592 // Store a list of line start character and y positions so we can figure out which area
6593 // we need to refresh
6594
6595 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6596 // NOTE: we're assuming that the buffer is laid out correctly at this point.
6597 // If we had several actions, which only invalidate and leave layout until the
6598 // paint handler is called, then this might not be true. So we may need to switch
6599 // optimisation on only when we're simply adding text and not simultaneously
6600 // deleting a selection, for example. Or, we make sure the buffer is laid out correctly
6601 // first, but of course this means we'll be doing it twice.
6602 if (!m_buffer->GetDirty() && m_ctrl) // can only do optimisation if the buffer is already laid out correctly
6603 {
6604 wxSize clientSize = m_ctrl->GetClientSize();
6605 wxPoint firstVisiblePt = m_ctrl->GetFirstVisiblePoint();
6606 int lastY = firstVisiblePt.y + clientSize.y;
6607
6608 wxRichTextParagraph* para = m_buffer->GetParagraphAtPosition(GetRange().GetStart());
6609 wxRichTextObjectList::compatibility_iterator node = m_buffer->GetChildren().Find(para);
6610 while (node)
6611 {
6612 wxRichTextParagraph* child = (wxRichTextParagraph*) node->GetData();
6613 wxRichTextLineList::compatibility_iterator node2 = child->GetLines().GetFirst();
6614 while (node2)
6615 {
6616 wxRichTextLine* line = node2->GetData();
6617 wxPoint pt = line->GetAbsolutePosition();
6618 wxRichTextRange range = line->GetAbsoluteRange();
6619
6620 if (pt.y > lastY)
6621 {
6622 node2 = wxRichTextLineList::compatibility_iterator();
6623 node = wxRichTextObjectList::compatibility_iterator();
6624 }
6625 else if (range.GetStart() > GetPosition() && pt.y >= firstVisiblePt.y)
6626 {
6627 optimizationLineCharPositions.Add(range.GetStart());
6628 optimizationLineYPositions.Add(pt.y);
6629 }
6630
6631 if (node2)
6632 node2 = node2->GetNext();
6633 }
6634
6635 if (node)
6636 node = node->GetNext();
6637 }
6638 }
6639 #endif
6640 }
6641
6642 bool wxRichTextAction::Do()
6643 {
6644 m_buffer->Modify(true);
6645
6646 switch (m_cmdId)
6647 {
6648 case wxRICHTEXT_INSERT:
6649 {
6650 // Store a list of line start character and y positions so we can figure out which area
6651 // we need to refresh
6652 wxArrayInt optimizationLineCharPositions;
6653 wxArrayInt optimizationLineYPositions;
6654
6655 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6656 CalculateRefreshOptimizations(optimizationLineCharPositions, optimizationLineYPositions);
6657 #endif
6658
6659 m_buffer->InsertFragment(GetRange().GetStart(), m_newParagraphs);
6660 m_buffer->UpdateRanges();
6661 m_buffer->Invalidate(wxRichTextRange(wxMax(0, GetRange().GetStart()-1), GetRange().GetEnd()));
6662
6663 long newCaretPosition = GetPosition() + m_newParagraphs.GetRange().GetLength();
6664
6665 // Character position to caret position
6666 newCaretPosition --;
6667
6668 // Don't take into account the last newline
6669 if (m_newParagraphs.GetPartialParagraph())
6670 newCaretPosition --;
6671 else
6672 if (m_newParagraphs.GetChildren().GetCount() > 1)
6673 {
6674 wxRichTextObject* p = (wxRichTextObject*) m_newParagraphs.GetChildren().GetLast()->GetData();
6675 if (p->GetRange().GetLength() == 1)
6676 newCaretPosition --;
6677 }
6678
6679 newCaretPosition = wxMin(newCaretPosition, (m_buffer->GetRange().GetEnd()-1));
6680
6681 UpdateAppearance(newCaretPosition, true /* send update event */, & optimizationLineCharPositions, & optimizationLineYPositions, true /* do */);
6682
6683 wxRichTextEvent cmdEvent(
6684 wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED,
6685 m_ctrl ? m_ctrl->GetId() : -1);
6686 cmdEvent.SetEventObject(m_ctrl ? (wxObject*) m_ctrl : (wxObject*) m_buffer);
6687 cmdEvent.SetRange(GetRange());
6688 cmdEvent.SetPosition(GetRange().GetStart());
6689
6690 m_buffer->SendEvent(cmdEvent);
6691
6692 break;
6693 }
6694 case wxRICHTEXT_DELETE:
6695 {
6696 wxArrayInt optimizationLineCharPositions;
6697 wxArrayInt optimizationLineYPositions;
6698
6699 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6700 CalculateRefreshOptimizations(optimizationLineCharPositions, optimizationLineYPositions);
6701 #endif
6702
6703 m_buffer->DeleteRange(GetRange());
6704 m_buffer->UpdateRanges();
6705 m_buffer->Invalidate(wxRichTextRange(GetRange().GetStart(), GetRange().GetStart()));
6706
6707 long caretPos = GetRange().GetStart()-1;
6708 if (caretPos >= m_buffer->GetRange().GetEnd())
6709 caretPos --;
6710
6711 UpdateAppearance(caretPos, true /* send update event */, & optimizationLineCharPositions, & optimizationLineYPositions, true /* do */);
6712
6713 wxRichTextEvent cmdEvent(
6714 wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED,
6715 m_ctrl ? m_ctrl->GetId() : -1);
6716 cmdEvent.SetEventObject(m_ctrl ? (wxObject*) m_ctrl : (wxObject*) m_buffer);
6717 cmdEvent.SetRange(GetRange());
6718 cmdEvent.SetPosition(GetRange().GetStart());
6719
6720 m_buffer->SendEvent(cmdEvent);
6721
6722 break;
6723 }
6724 case wxRICHTEXT_CHANGE_STYLE:
6725 {
6726 ApplyParagraphs(GetNewParagraphs());
6727 m_buffer->Invalidate(GetRange());
6728
6729 UpdateAppearance(GetPosition());
6730
6731 wxRichTextEvent cmdEvent(
6732 wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED,
6733 m_ctrl ? m_ctrl->GetId() : -1);
6734 cmdEvent.SetEventObject(m_ctrl ? (wxObject*) m_ctrl : (wxObject*) m_buffer);
6735 cmdEvent.SetRange(GetRange());
6736 cmdEvent.SetPosition(GetRange().GetStart());
6737
6738 m_buffer->SendEvent(cmdEvent);
6739
6740 break;
6741 }
6742 default:
6743 break;
6744 }
6745
6746 return true;
6747 }
6748
6749 bool wxRichTextAction::Undo()
6750 {
6751 m_buffer->Modify(true);
6752
6753 switch (m_cmdId)
6754 {
6755 case wxRICHTEXT_INSERT:
6756 {
6757 wxArrayInt optimizationLineCharPositions;
6758 wxArrayInt optimizationLineYPositions;
6759
6760 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6761 CalculateRefreshOptimizations(optimizationLineCharPositions, optimizationLineYPositions);
6762 #endif
6763
6764 m_buffer->DeleteRange(GetRange());
6765 m_buffer->UpdateRanges();
6766 m_buffer->Invalidate(wxRichTextRange(GetRange().GetStart(), GetRange().GetStart()));
6767
6768 long newCaretPosition = GetPosition() - 1;
6769
6770 UpdateAppearance(newCaretPosition, true, /* send update event */ & optimizationLineCharPositions, & optimizationLineYPositions, false /* undo */);
6771
6772 wxRichTextEvent cmdEvent(
6773 wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED,
6774 m_ctrl ? m_ctrl->GetId() : -1);
6775 cmdEvent.SetEventObject(m_ctrl ? (wxObject*) m_ctrl : (wxObject*) m_buffer);
6776 cmdEvent.SetRange(GetRange());
6777 cmdEvent.SetPosition(GetRange().GetStart());
6778
6779 m_buffer->SendEvent(cmdEvent);
6780
6781 break;
6782 }
6783 case wxRICHTEXT_DELETE:
6784 {
6785 wxArrayInt optimizationLineCharPositions;
6786 wxArrayInt optimizationLineYPositions;
6787
6788 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6789 CalculateRefreshOptimizations(optimizationLineCharPositions, optimizationLineYPositions);
6790 #endif
6791
6792 m_buffer->InsertFragment(GetRange().GetStart(), m_oldParagraphs);
6793 m_buffer->UpdateRanges();
6794 m_buffer->Invalidate(GetRange());
6795
6796 UpdateAppearance(GetPosition(), true, /* send update event */ & optimizationLineCharPositions, & optimizationLineYPositions, false /* undo */);
6797
6798 wxRichTextEvent cmdEvent(
6799 wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED,
6800 m_ctrl ? m_ctrl->GetId() : -1);
6801 cmdEvent.SetEventObject(m_ctrl ? (wxObject*) m_ctrl : (wxObject*) m_buffer);
6802 cmdEvent.SetRange(GetRange());
6803 cmdEvent.SetPosition(GetRange().GetStart());
6804
6805 m_buffer->SendEvent(cmdEvent);
6806
6807 break;
6808 }
6809 case wxRICHTEXT_CHANGE_STYLE:
6810 {
6811 ApplyParagraphs(GetOldParagraphs());
6812 m_buffer->Invalidate(GetRange());
6813
6814 UpdateAppearance(GetPosition());
6815
6816 wxRichTextEvent cmdEvent(
6817 wxEVT_COMMAND_RICHTEXT_STYLE_CHANGED,
6818 m_ctrl ? m_ctrl->GetId() : -1);
6819 cmdEvent.SetEventObject(m_ctrl ? (wxObject*) m_ctrl : (wxObject*) m_buffer);
6820 cmdEvent.SetRange(GetRange());
6821 cmdEvent.SetPosition(GetRange().GetStart());
6822
6823 m_buffer->SendEvent(cmdEvent);
6824
6825 break;
6826 }
6827 default:
6828 break;
6829 }
6830
6831 return true;
6832 }
6833
6834 /// Update the control appearance
6835 void wxRichTextAction::UpdateAppearance(long caretPosition, bool sendUpdateEvent, wxArrayInt* optimizationLineCharPositions, wxArrayInt* optimizationLineYPositions, bool isDoCmd)
6836 {
6837 if (m_ctrl)
6838 {
6839 m_ctrl->SetCaretPosition(caretPosition);
6840 if (!m_ctrl->IsFrozen())
6841 {
6842 m_ctrl->LayoutContent();
6843
6844 #if wxRICHTEXT_USE_OPTIMIZED_DRAWING
6845 // Find refresh rectangle if we are in a position to optimise refresh
6846 if ((m_cmdId == wxRICHTEXT_INSERT || m_cmdId == wxRICHTEXT_DELETE) && optimizationLineCharPositions)
6847 {
6848 size_t i;
6849
6850 wxSize clientSize = m_ctrl->GetClientSize();
6851 wxPoint firstVisiblePt = m_ctrl->GetFirstVisiblePoint();
6852
6853 // Start/end positions
6854 int firstY = 0;
6855 int lastY = firstVisiblePt.y + clientSize.y;
6856
6857 bool foundEnd = false;
6858
6859 // position offset - how many characters were inserted
6860 int positionOffset = GetRange().GetLength();
6861
6862 // Determine whether this is Do or Undo, and adjust positionOffset accordingly
6863 if ((m_cmdId == wxRICHTEXT_DELETE && isDoCmd) || (m_cmdId == wxRICHTEXT_INSERT && !isDoCmd))
6864 positionOffset = - positionOffset;
6865
6866 // find the first line which is being drawn at the same position as it was
6867 // before. Since we're talking about a simple insertion, we can assume
6868 // that the rest of the window does not need to be redrawn.
6869
6870 wxRichTextParagraph* para = m_buffer->GetParagraphAtPosition(GetPosition());
6871 if (para)
6872 {
6873 // Find line containing GetPosition().
6874 wxRichTextLine* line = NULL;
6875 wxRichTextLineList::compatibility_iterator node2 = para->GetLines().GetFirst();
6876 while (node2)
6877 {
6878 wxRichTextLine* l = node2->GetData();
6879 wxRichTextRange range = l->GetAbsoluteRange();
6880 if (range.Contains(GetRange().GetStart()-1))
6881 {
6882 line = l;
6883 break;
6884 }
6885 node2 = node2->GetNext();
6886 }
6887
6888 if (line)
6889 {
6890 // Step back a couple of lines to where we can be sure of reformatting correctly
6891 wxRichTextLineList::compatibility_iterator lineNode = para->GetLines().Find(line);
6892 if (lineNode)
6893 {
6894 lineNode = lineNode->GetPrevious();
6895 if (lineNode)
6896 {
6897 line = (wxRichTextLine*) lineNode->GetData();
6898 lineNode = lineNode->GetPrevious();
6899 if (lineNode)
6900 line = (wxRichTextLine*) lineNode->GetData();
6901 }
6902 }
6903
6904 firstY = line->GetAbsolutePosition().y;
6905 }
6906 }
6907
6908 wxRichTextObjectList::compatibility_iterator node = m_buffer->GetChildren().Find(para);
6909 while (node)
6910 {
6911 wxRichTextParagraph* child = (wxRichTextParagraph*) node->GetData();
6912 wxRichTextLineList::compatibility_iterator node2 = child->GetLines().GetFirst();
6913 while (node2)
6914 {
6915 wxRichTextLine* line = node2->GetData();
6916 wxPoint pt = line->GetAbsolutePosition();
6917 wxRichTextRange range = line->GetAbsoluteRange();
6918
6919 // we want to find the first line that is in the same position
6920 // as before. This will mean we're at the end of the changed text.
6921
6922 if (pt.y > lastY) // going past the end of the window, no more info
6923 {
6924 node2 = wxRichTextLineList::compatibility_iterator();
6925 node = wxRichTextObjectList::compatibility_iterator();
6926 }
6927 // Detect last line in the buffer
6928 else if (!node2->GetNext() && para->GetRange().Contains(m_buffer->GetRange().GetEnd()))
6929 {
6930 foundEnd = true;
6931 lastY = pt.y + line->GetSize().y;
6932
6933 node2 = wxRichTextLineList::compatibility_iterator();
6934 node = wxRichTextObjectList::compatibility_iterator();
6935
6936 break;
6937 }
6938 else
6939 {
6940 // search for this line being at the same position as before
6941 for (i = 0; i < optimizationLineCharPositions->GetCount(); i++)
6942 {
6943 if (((*optimizationLineCharPositions)[i] + positionOffset == range.GetStart()) &&
6944 ((*optimizationLineYPositions)[i] == pt.y))
6945 {
6946 // Stop, we're now the same as we were
6947 foundEnd = true;
6948
6949 lastY = pt.y;
6950
6951 node2 = wxRichTextLineList::compatibility_iterator();
6952 node = wxRichTextObjectList::compatibility_iterator();
6953
6954 break;
6955 }
6956 }
6957 }
6958
6959 if (node2)
6960 node2 = node2->GetNext();
6961 }
6962
6963 if (node)
6964 node = node->GetNext();
6965 }
6966
6967 firstY = wxMax(firstVisiblePt.y, firstY);
6968 if (!foundEnd)
6969 lastY = firstVisiblePt.y + clientSize.y;
6970
6971 // Convert to device coordinates
6972 wxRect rect(m_ctrl->GetPhysicalPoint(wxPoint(firstVisiblePt.x, firstY)), wxSize(clientSize.x, lastY - firstY));
6973 m_ctrl->RefreshRect(rect);
6974 }
6975 else
6976 #endif
6977 m_ctrl->Refresh(false);
6978
6979 #if wxRICHTEXT_USE_OWN_CARET
6980 m_ctrl->PositionCaret();
6981 #endif
6982 if (sendUpdateEvent)
6983 wxTextCtrl::SendTextUpdatedEvent(m_ctrl);
6984 }
6985 }
6986 }
6987
6988 /// Replace the buffer paragraphs with the new ones.
6989 void wxRichTextAction::ApplyParagraphs(const wxRichTextParagraphLayoutBox& fragment)
6990 {
6991 wxRichTextObjectList::compatibility_iterator node = fragment.GetChildren().GetFirst();
6992 while (node)
6993 {
6994 wxRichTextParagraph* para = wxDynamicCast(node->GetData(), wxRichTextParagraph);
6995 wxASSERT (para != NULL);
6996
6997 // We'll replace the existing paragraph by finding the paragraph at this position,
6998 // delete its node data, and setting a copy as the new node data.
6999 // TODO: make more efficient by simply swapping old and new paragraph objects.
7000
7001 wxRichTextParagraph* existingPara = m_buffer->GetParagraphAtPosition(para->GetRange().GetStart());
7002 if (existingPara)
7003 {
7004 wxRichTextObjectList::compatibility_iterator bufferParaNode = m_buffer->GetChildren().Find(existingPara);
7005 if (bufferParaNode)
7006 {
7007 wxRichTextParagraph* newPara = new wxRichTextParagraph(*para);
7008 newPara->SetParent(m_buffer);
7009
7010 bufferParaNode->SetData(newPara);
7011
7012 delete existingPara;
7013 }
7014 }
7015
7016 node = node->GetNext();
7017 }
7018 }
7019
7020
7021 /*!
7022 * wxRichTextRange
7023 * This stores beginning and end positions for a range of data.
7024 */
7025
7026 /// Limit this range to be within 'range'
7027 bool wxRichTextRange::LimitTo(const wxRichTextRange& range)
7028 {
7029 if (m_start < range.m_start)
7030 m_start = range.m_start;
7031
7032 if (m_end > range.m_end)
7033 m_end = range.m_end;
7034
7035 return true;
7036 }
7037
7038 /*!
7039 * wxRichTextImage implementation
7040 * This object represents an image.
7041 */
7042
7043 IMPLEMENT_DYNAMIC_CLASS(wxRichTextImage, wxRichTextObject)
7044
7045 wxRichTextImage::wxRichTextImage(const wxImage& image, wxRichTextObject* parent, wxTextAttr* charStyle):
7046 wxRichTextObject(parent)
7047 {
7048 m_image = image;
7049 if (charStyle)
7050 SetAttributes(*charStyle);
7051 }
7052
7053 wxRichTextImage::wxRichTextImage(const wxRichTextImageBlock& imageBlock, wxRichTextObject* parent, wxTextAttr* charStyle):
7054 wxRichTextObject(parent)
7055 {
7056 m_imageBlock = imageBlock;
7057 m_imageBlock.Load(m_image);
7058 if (charStyle)
7059 SetAttributes(*charStyle);
7060 }
7061
7062 /// Load wxImage from the block
7063 bool wxRichTextImage::LoadFromBlock()
7064 {
7065 m_imageBlock.Load(m_image);
7066 return m_imageBlock.Ok();
7067 }
7068
7069 /// Make block from the wxImage
7070 bool wxRichTextImage::MakeBlock()
7071 {
7072 wxBitmapType type = m_imageBlock.GetImageType();
7073 if ( type == wxBITMAP_TYPE_ANY || type == wxBITMAP_TYPE_INVALID )
7074 m_imageBlock.SetImageType(type = wxBITMAP_TYPE_PNG);
7075
7076 m_imageBlock.MakeImageBlock(m_image, type);
7077 return m_imageBlock.Ok();
7078 }
7079
7080
7081 /// Draw the item
7082 bool wxRichTextImage::Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextRange& selectionRange, const wxRect& rect, int WXUNUSED(descent), int WXUNUSED(style))
7083 {
7084 if (!m_image.Ok() && m_imageBlock.Ok())
7085 LoadFromBlock();
7086
7087 if (!m_image.Ok())
7088 return false;
7089
7090 if (m_image.Ok() && !m_bitmap.Ok())
7091 m_bitmap = wxBitmap(m_image);
7092
7093 int y = rect.y + (rect.height - m_image.GetHeight());
7094
7095 if (m_bitmap.Ok())
7096 dc.DrawBitmap(m_bitmap, rect.x, y, true);
7097
7098 if (selectionRange.Contains(range.GetStart()))
7099 {
7100 wxCheckSetBrush(dc, *wxBLACK_BRUSH);
7101 wxCheckSetPen(dc, *wxBLACK_PEN);
7102 dc.SetLogicalFunction(wxINVERT);
7103 dc.DrawRectangle(rect);
7104 dc.SetLogicalFunction(wxCOPY);
7105 }
7106
7107 return true;
7108 }
7109
7110 /// Lay the item out
7111 bool wxRichTextImage::Layout(wxDC& WXUNUSED(dc), const wxRect& rect, int WXUNUSED(style))
7112 {
7113 if (!m_image.Ok())
7114 LoadFromBlock();
7115
7116 if (m_image.Ok())
7117 {
7118 SetCachedSize(wxSize(m_image.GetWidth(), m_image.GetHeight()));
7119 SetPosition(rect.GetPosition());
7120 }
7121
7122 return true;
7123 }
7124
7125 /// Get/set the object size for the given range. Returns false if the range
7126 /// is invalid for this object.
7127 bool wxRichTextImage::GetRangeSize(const wxRichTextRange& range, wxSize& size, int& WXUNUSED(descent), wxDC& WXUNUSED(dc), int WXUNUSED(flags), wxPoint WXUNUSED(position), wxArrayInt* partialExtents) const
7128 {
7129 if (!range.IsWithin(GetRange()))
7130 return false;
7131
7132 if (!m_image.Ok())
7133 ((wxRichTextImage*) this)->LoadFromBlock();
7134
7135 if (partialExtents)
7136 {
7137 if (m_image.Ok())
7138 partialExtents->Add(m_image.GetWidth());
7139 else
7140 partialExtents->Add(0);
7141 }
7142
7143 if (!m_image.Ok())
7144 return false;
7145
7146 size.x = m_image.GetWidth();
7147 size.y = m_image.GetHeight();
7148
7149 return true;
7150 }
7151
7152 /// Copy
7153 void wxRichTextImage::Copy(const wxRichTextImage& obj)
7154 {
7155 wxRichTextObject::Copy(obj);
7156
7157 m_image = obj.m_image;
7158 m_imageBlock = obj.m_imageBlock;
7159 }
7160
7161 /*!
7162 * Utilities
7163 *
7164 */
7165
7166 /// Compare two attribute objects
7167 bool wxTextAttrEq(const wxTextAttr& attr1, const wxTextAttr& attr2)
7168 {
7169 return (attr1 == attr2);
7170 }
7171
7172 // Partial equality test taking flags into account
7173 bool wxTextAttrEqPartial(const wxTextAttr& attr1, const wxTextAttr& attr2, int flags)
7174 {
7175 return attr1.EqPartial(attr2, flags);
7176 }
7177
7178 /// Compare tabs
7179 bool wxRichTextTabsEq(const wxArrayInt& tabs1, const wxArrayInt& tabs2)
7180 {
7181 if (tabs1.GetCount() != tabs2.GetCount())
7182 return false;
7183
7184 size_t i;
7185 for (i = 0; i < tabs1.GetCount(); i++)
7186 {
7187 if (tabs1[i] != tabs2[i])
7188 return false;
7189 }
7190 return true;
7191 }
7192
7193 bool wxRichTextApplyStyle(wxTextAttr& destStyle, const wxTextAttr& style, wxTextAttr* compareWith)
7194 {
7195 return destStyle.Apply(style, compareWith);
7196 }
7197
7198 // Remove attributes
7199 bool wxRichTextRemoveStyle(wxTextAttr& destStyle, const wxTextAttr& style)
7200 {
7201 return wxTextAttr::RemoveStyle(destStyle, style);
7202 }
7203
7204 /// Combine two bitlists, specifying the bits of interest with separate flags.
7205 bool wxRichTextCombineBitlists(int& valueA, int valueB, int& flagsA, int flagsB)
7206 {
7207 return wxTextAttr::CombineBitlists(valueA, valueB, flagsA, flagsB);
7208 }
7209
7210 /// Compare two bitlists
7211 bool wxRichTextBitlistsEqPartial(int valueA, int valueB, int flags)
7212 {
7213 return wxTextAttr::BitlistsEqPartial(valueA, valueB, flags);
7214 }
7215
7216 /// Split into paragraph and character styles
7217 bool wxRichTextSplitParaCharStyles(const wxTextAttr& style, wxTextAttr& parStyle, wxTextAttr& charStyle)
7218 {
7219 return wxTextAttr::SplitParaCharStyles(style, parStyle, charStyle);
7220 }
7221
7222 /// Convert a decimal to Roman numerals
7223 wxString wxRichTextDecimalToRoman(long n)
7224 {
7225 static wxArrayInt decimalNumbers;
7226 static wxArrayString romanNumbers;
7227
7228 // Clean up arrays
7229 if (n == -1)
7230 {
7231 decimalNumbers.Clear();
7232 romanNumbers.Clear();
7233 return wxEmptyString;
7234 }
7235
7236 if (decimalNumbers.GetCount() == 0)
7237 {
7238 #define wxRichTextAddDecRom(n, r) decimalNumbers.Add(n); romanNumbers.Add(r);
7239
7240 wxRichTextAddDecRom(1000, wxT("M"));
7241 wxRichTextAddDecRom(900, wxT("CM"));
7242 wxRichTextAddDecRom(500, wxT("D"));
7243 wxRichTextAddDecRom(400, wxT("CD"));
7244 wxRichTextAddDecRom(100, wxT("C"));
7245 wxRichTextAddDecRom(90, wxT("XC"));
7246 wxRichTextAddDecRom(50, wxT("L"));
7247 wxRichTextAddDecRom(40, wxT("XL"));
7248 wxRichTextAddDecRom(10, wxT("X"));
7249 wxRichTextAddDecRom(9, wxT("IX"));
7250 wxRichTextAddDecRom(5, wxT("V"));
7251 wxRichTextAddDecRom(4, wxT("IV"));
7252 wxRichTextAddDecRom(1, wxT("I"));
7253 }
7254
7255 int i = 0;
7256 wxString roman;
7257
7258 while (n > 0 && i < 13)
7259 {
7260 if (n >= decimalNumbers[i])
7261 {
7262 n -= decimalNumbers[i];
7263 roman += romanNumbers[i];
7264 }
7265 else
7266 {
7267 i ++;
7268 }
7269 }
7270 if (roman.IsEmpty())
7271 roman = wxT("0");
7272 return roman;
7273 }
7274
7275 /*!
7276 * wxRichTextFileHandler
7277 * Base class for file handlers
7278 */
7279
7280 IMPLEMENT_CLASS(wxRichTextFileHandler, wxObject)
7281
7282 #if wxUSE_FFILE && wxUSE_STREAMS
7283 bool wxRichTextFileHandler::LoadFile(wxRichTextBuffer *buffer, const wxString& filename)
7284 {
7285 wxFFileInputStream stream(filename);
7286 if (stream.Ok())
7287 return LoadFile(buffer, stream);
7288
7289 return false;
7290 }
7291
7292 bool wxRichTextFileHandler::SaveFile(wxRichTextBuffer *buffer, const wxString& filename)
7293 {
7294 wxFFileOutputStream stream(filename);
7295 if (stream.Ok())
7296 return SaveFile(buffer, stream);
7297
7298 return false;
7299 }
7300 #endif // wxUSE_FFILE && wxUSE_STREAMS
7301
7302 /// Can we handle this filename (if using files)? By default, checks the extension.
7303 bool wxRichTextFileHandler::CanHandle(const wxString& filename) const
7304 {
7305 wxString path, file, ext;
7306 wxFileName::SplitPath(filename, & path, & file, & ext);
7307
7308 return (ext.Lower() == GetExtension());
7309 }
7310
7311 /*!
7312 * wxRichTextTextHandler
7313 * Plain text handler
7314 */
7315
7316 IMPLEMENT_CLASS(wxRichTextPlainTextHandler, wxRichTextFileHandler)
7317
7318 #if wxUSE_STREAMS
7319 bool wxRichTextPlainTextHandler::DoLoadFile(wxRichTextBuffer *buffer, wxInputStream& stream)
7320 {
7321 if (!stream.IsOk())
7322 return false;
7323
7324 wxString str;
7325 int lastCh = 0;
7326
7327 while (!stream.Eof())
7328 {
7329 int ch = stream.GetC();
7330
7331 if (!stream.Eof())
7332 {
7333 if (ch == 10 && lastCh != 13)
7334 str += wxT('\n');
7335
7336 if (ch > 0 && ch != 10)
7337 str += wxChar(ch);
7338
7339 lastCh = ch;
7340 }
7341 }
7342
7343 buffer->ResetAndClearCommands();
7344 buffer->Clear();
7345 buffer->AddParagraphs(str);
7346 buffer->UpdateRanges();
7347
7348 return true;
7349 }
7350
7351 bool wxRichTextPlainTextHandler::DoSaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream)
7352 {
7353 if (!stream.IsOk())
7354 return false;
7355
7356 wxString text = buffer->GetText();
7357
7358 wxString newLine = wxRichTextLineBreakChar;
7359 text.Replace(newLine, wxT("\n"));
7360
7361 wxCharBuffer buf = text.ToAscii();
7362
7363 stream.Write((const char*) buf, text.length());
7364 return true;
7365 }
7366 #endif // wxUSE_STREAMS
7367
7368 /*
7369 * Stores information about an image, in binary in-memory form
7370 */
7371
7372 wxRichTextImageBlock::wxRichTextImageBlock()
7373 {
7374 Init();
7375 }
7376
7377 wxRichTextImageBlock::wxRichTextImageBlock(const wxRichTextImageBlock& block):wxObject()
7378 {
7379 Init();
7380 Copy(block);
7381 }
7382
7383 wxRichTextImageBlock::~wxRichTextImageBlock()
7384 {
7385 if (m_data)
7386 {
7387 delete[] m_data;
7388 m_data = NULL;
7389 }
7390 }
7391
7392 void wxRichTextImageBlock::Init()
7393 {
7394 m_data = NULL;
7395 m_dataSize = 0;
7396 m_imageType = wxBITMAP_TYPE_INVALID;
7397 }
7398
7399 void wxRichTextImageBlock::Clear()
7400 {
7401 delete[] m_data;
7402 m_data = NULL;
7403 m_dataSize = 0;
7404 m_imageType = wxBITMAP_TYPE_INVALID;
7405 }
7406
7407
7408 // Load the original image into a memory block.
7409 // If the image is not a JPEG, we must convert it into a JPEG
7410 // to conserve space.
7411 // If it's not a JPEG we can make use of 'image', already scaled, so we don't have to
7412 // load the image a 2nd time.
7413
7414 bool wxRichTextImageBlock::MakeImageBlock(const wxString& filename, wxBitmapType imageType,
7415 wxImage& image, bool convertToJPEG)
7416 {
7417 m_imageType = imageType;
7418
7419 wxString filenameToRead(filename);
7420 bool removeFile = false;
7421
7422 if (imageType == wxBITMAP_TYPE_INVALID)
7423 return false; // Could not determine image type
7424
7425 if ((imageType != wxBITMAP_TYPE_JPEG) && convertToJPEG)
7426 {
7427 wxString tempFile =
7428 wxFileName::CreateTempFileName(_("image"));
7429
7430 wxASSERT(!tempFile.IsEmpty());
7431
7432 image.SaveFile(tempFile, wxBITMAP_TYPE_JPEG);
7433 filenameToRead = tempFile;
7434 removeFile = true;
7435
7436 m_imageType = wxBITMAP_TYPE_JPEG;
7437 }
7438 wxFile file;
7439 if (!file.Open(filenameToRead))
7440 return false;
7441
7442 m_dataSize = (size_t) file.Length();
7443 file.Close();
7444
7445 if (m_data)
7446 delete[] m_data;
7447 m_data = ReadBlock(filenameToRead, m_dataSize);
7448
7449 if (removeFile)
7450 wxRemoveFile(filenameToRead);
7451
7452 return (m_data != NULL);
7453 }
7454
7455 // Make an image block from the wxImage in the given
7456 // format.
7457 bool wxRichTextImageBlock::MakeImageBlock(wxImage& image, wxBitmapType imageType, int quality)
7458 {
7459 m_imageType = imageType;
7460 image.SetOption(wxT("quality"), quality);
7461
7462 if (imageType == wxBITMAP_TYPE_INVALID)
7463 return false; // Could not determine image type
7464
7465 wxString tempFile = wxFileName::CreateTempFileName(_("image")) ;
7466 wxASSERT(!tempFile.IsEmpty());
7467
7468 if (!image.SaveFile(tempFile, m_imageType))
7469 {
7470 if (wxFileExists(tempFile))
7471 wxRemoveFile(tempFile);
7472 return false;
7473 }
7474
7475 wxFile file;
7476 if (!file.Open(tempFile))
7477 return false;
7478
7479 m_dataSize = (size_t) file.Length();
7480 file.Close();
7481
7482 if (m_data)
7483 delete[] m_data;
7484 m_data = ReadBlock(tempFile, m_dataSize);
7485
7486 wxRemoveFile(tempFile);
7487
7488 return (m_data != NULL);
7489 }
7490
7491
7492 // Write to a file
7493 bool wxRichTextImageBlock::Write(const wxString& filename)
7494 {
7495 return WriteBlock(filename, m_data, m_dataSize);
7496 }
7497
7498 void wxRichTextImageBlock::Copy(const wxRichTextImageBlock& block)
7499 {
7500 m_imageType = block.m_imageType;
7501 if (m_data)
7502 {
7503 delete[] m_data;
7504 m_data = NULL;
7505 }
7506 m_dataSize = block.m_dataSize;
7507 if (m_dataSize == 0)
7508 return;
7509
7510 m_data = new unsigned char[m_dataSize];
7511 unsigned int i;
7512 for (i = 0; i < m_dataSize; i++)
7513 m_data[i] = block.m_data[i];
7514 }
7515
7516 //// Operators
7517 void wxRichTextImageBlock::operator=(const wxRichTextImageBlock& block)
7518 {
7519 Copy(block);
7520 }
7521
7522 // Load a wxImage from the block
7523 bool wxRichTextImageBlock::Load(wxImage& image)
7524 {
7525 if (!m_data)
7526 return false;
7527
7528 // Read in the image.
7529 #if wxUSE_STREAMS
7530 wxMemoryInputStream mstream(m_data, m_dataSize);
7531 bool success = image.LoadFile(mstream, GetImageType());
7532 #else
7533 wxString tempFile = wxFileName::CreateTempFileName(_("image"));
7534 wxASSERT(!tempFile.IsEmpty());
7535
7536 if (!WriteBlock(tempFile, m_data, m_dataSize))
7537 {
7538 return false;
7539 }
7540 success = image.LoadFile(tempFile, GetImageType());
7541 wxRemoveFile(tempFile);
7542 #endif
7543
7544 return success;
7545 }
7546
7547 // Write data in hex to a stream
7548 bool wxRichTextImageBlock::WriteHex(wxOutputStream& stream)
7549 {
7550 const int bufSize = 512;
7551 char buf[bufSize+1];
7552
7553 int left = m_dataSize;
7554 int n, i, j;
7555 j = 0;
7556 while (left > 0)
7557 {
7558 if (left*2 > bufSize)
7559 {
7560 n = bufSize; left -= (bufSize/2);
7561 }
7562 else
7563 {
7564 n = left*2; left = 0;
7565 }
7566
7567 char* b = buf;
7568 for (i = 0; i < (n/2); i++)
7569 {
7570 wxDecToHex(m_data[j], b, b+1);
7571 b += 2; j ++;
7572 }
7573
7574 buf[n] = 0;
7575 stream.Write((const char*) buf, n);
7576 }
7577 return true;
7578 }
7579
7580 // Read data in hex from a stream
7581 bool wxRichTextImageBlock::ReadHex(wxInputStream& stream, int length, wxBitmapType imageType)
7582 {
7583 int dataSize = length/2;
7584
7585 if (m_data)
7586 delete[] m_data;
7587
7588 // create a null terminated temporary string:
7589 char str[3];
7590 str[2] = '\0';
7591
7592 m_data = new unsigned char[dataSize];
7593 int i;
7594 for (i = 0; i < dataSize; i ++)
7595 {
7596 str[0] = (char)stream.GetC();
7597 str[1] = (char)stream.GetC();
7598
7599 m_data[i] = (unsigned char)wxHexToDec(str);
7600 }
7601
7602 m_dataSize = dataSize;
7603 m_imageType = imageType;
7604
7605 return true;
7606 }
7607
7608 // Allocate and read from stream as a block of memory
7609 unsigned char* wxRichTextImageBlock::ReadBlock(wxInputStream& stream, size_t size)
7610 {
7611 unsigned char* block = new unsigned char[size];
7612 if (!block)
7613 return NULL;
7614
7615 stream.Read(block, size);
7616
7617 return block;
7618 }
7619
7620 unsigned char* wxRichTextImageBlock::ReadBlock(const wxString& filename, size_t size)
7621 {
7622 wxFileInputStream stream(filename);
7623 if (!stream.Ok())
7624 return NULL;
7625
7626 return ReadBlock(stream, size);
7627 }
7628
7629 // Write memory block to stream
7630 bool wxRichTextImageBlock::WriteBlock(wxOutputStream& stream, unsigned char* block, size_t size)
7631 {
7632 stream.Write((void*) block, size);
7633 return stream.IsOk();
7634
7635 }
7636
7637 // Write memory block to file
7638 bool wxRichTextImageBlock::WriteBlock(const wxString& filename, unsigned char* block, size_t size)
7639 {
7640 wxFileOutputStream outStream(filename);
7641 if (!outStream.Ok())
7642 return false;
7643
7644 return WriteBlock(outStream, block, size);
7645 }
7646
7647 // Gets the extension for the block's type
7648 wxString wxRichTextImageBlock::GetExtension() const
7649 {
7650 wxImageHandler* handler = wxImage::FindHandler(GetImageType());
7651 if (handler)
7652 return handler->GetExtension();
7653 else
7654 return wxEmptyString;
7655 }
7656
7657 #if wxUSE_DATAOBJ
7658
7659 /*!
7660 * The data object for a wxRichTextBuffer
7661 */
7662
7663 const wxChar *wxRichTextBufferDataObject::ms_richTextBufferFormatId = wxT("wxShape");
7664
7665 wxRichTextBufferDataObject::wxRichTextBufferDataObject(wxRichTextBuffer* richTextBuffer)
7666 {
7667 m_richTextBuffer = richTextBuffer;
7668
7669 // this string should uniquely identify our format, but is otherwise
7670 // arbitrary
7671 m_formatRichTextBuffer.SetId(GetRichTextBufferFormatId());
7672
7673 SetFormat(m_formatRichTextBuffer);
7674 }
7675
7676 wxRichTextBufferDataObject::~wxRichTextBufferDataObject()
7677 {
7678 delete m_richTextBuffer;
7679 }
7680
7681 // after a call to this function, the richTextBuffer is owned by the caller and it
7682 // is responsible for deleting it!
7683 wxRichTextBuffer* wxRichTextBufferDataObject::GetRichTextBuffer()
7684 {
7685 wxRichTextBuffer* richTextBuffer = m_richTextBuffer;
7686 m_richTextBuffer = NULL;
7687
7688 return richTextBuffer;
7689 }
7690
7691 wxDataFormat wxRichTextBufferDataObject::GetPreferredFormat(Direction WXUNUSED(dir)) const
7692 {
7693 return m_formatRichTextBuffer;
7694 }
7695
7696 size_t wxRichTextBufferDataObject::GetDataSize() const
7697 {
7698 if (!m_richTextBuffer)
7699 return 0;
7700
7701 wxString bufXML;
7702
7703 {
7704 wxStringOutputStream stream(& bufXML);
7705 if (!m_richTextBuffer->SaveFile(stream, wxRICHTEXT_TYPE_XML))
7706 {
7707 wxLogError(wxT("Could not write the buffer to an XML stream.\nYou may have forgotten to add the XML file handler."));
7708 return 0;
7709 }
7710 }
7711
7712 #if wxUSE_UNICODE
7713 wxCharBuffer buffer = bufXML.mb_str(wxConvUTF8);
7714 return strlen(buffer) + 1;
7715 #else
7716 return bufXML.Length()+1;
7717 #endif
7718 }
7719
7720 bool wxRichTextBufferDataObject::GetDataHere(void *pBuf) const
7721 {
7722 if (!pBuf || !m_richTextBuffer)
7723 return false;
7724
7725 wxString bufXML;
7726
7727 {
7728 wxStringOutputStream stream(& bufXML);
7729 if (!m_richTextBuffer->SaveFile(stream, wxRICHTEXT_TYPE_XML))
7730 {
7731 wxLogError(wxT("Could not write the buffer to an XML stream.\nYou may have forgotten to add the XML file handler."));
7732 return 0;
7733 }
7734 }
7735
7736 #if wxUSE_UNICODE
7737 wxCharBuffer buffer = bufXML.mb_str(wxConvUTF8);
7738 size_t len = strlen(buffer);
7739 memcpy((char*) pBuf, (const char*) buffer, len);
7740 ((char*) pBuf)[len] = 0;
7741 #else
7742 size_t len = bufXML.Length();
7743 memcpy((char*) pBuf, (const char*) bufXML.c_str(), len);
7744 ((char*) pBuf)[len] = 0;
7745 #endif
7746
7747 return true;
7748 }
7749
7750 bool wxRichTextBufferDataObject::SetData(size_t WXUNUSED(len), const void *buf)
7751 {
7752 delete m_richTextBuffer;
7753 m_richTextBuffer = NULL;
7754
7755 wxString bufXML((const char*) buf, wxConvUTF8);
7756
7757 m_richTextBuffer = new wxRichTextBuffer;
7758
7759 wxStringInputStream stream(bufXML);
7760 if (!m_richTextBuffer->LoadFile(stream, wxRICHTEXT_TYPE_XML))
7761 {
7762 wxLogError(wxT("Could not read the buffer from an XML stream.\nYou may have forgotten to add the XML file handler."));
7763
7764 delete m_richTextBuffer;
7765 m_richTextBuffer = NULL;
7766
7767 return false;
7768 }
7769 return true;
7770 }
7771
7772 #endif
7773 // wxUSE_DATAOBJ
7774
7775
7776 /*
7777 * wxRichTextFontTable
7778 * Manages quick access to a pool of fonts for rendering rich text
7779 */
7780
7781 WX_DECLARE_STRING_HASH_MAP_WITH_DECL(wxFont, wxRichTextFontTableHashMap, class WXDLLIMPEXP_RICHTEXT);
7782
7783 class wxRichTextFontTableData: public wxObjectRefData
7784 {
7785 public:
7786 wxRichTextFontTableData() {}
7787
7788 wxFont FindFont(const wxTextAttr& fontSpec);
7789
7790 wxRichTextFontTableHashMap m_hashMap;
7791 };
7792
7793 wxFont wxRichTextFontTableData::FindFont(const wxTextAttr& fontSpec)
7794 {
7795 wxString facename(fontSpec.GetFontFaceName());
7796 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()));
7797 wxRichTextFontTableHashMap::iterator entry = m_hashMap.find(spec);
7798
7799 if ( entry == m_hashMap.end() )
7800 {
7801 wxFont font(fontSpec.GetFontSize(), wxDEFAULT, fontSpec.GetFontStyle(), fontSpec.GetFontWeight(), fontSpec.GetFontUnderlined(), facename.c_str());
7802 m_hashMap[spec] = font;
7803 return font;
7804 }
7805 else
7806 {
7807 return entry->second;
7808 }
7809 }
7810
7811 IMPLEMENT_DYNAMIC_CLASS(wxRichTextFontTable, wxObject)
7812
7813 wxRichTextFontTable::wxRichTextFontTable()
7814 {
7815 m_refData = new wxRichTextFontTableData;
7816 }
7817
7818 wxRichTextFontTable::wxRichTextFontTable(const wxRichTextFontTable& table)
7819 : wxObject()
7820 {
7821 (*this) = table;
7822 }
7823
7824 wxRichTextFontTable::~wxRichTextFontTable()
7825 {
7826 UnRef();
7827 }
7828
7829 bool wxRichTextFontTable::operator == (const wxRichTextFontTable& table) const
7830 {
7831 return (m_refData == table.m_refData);
7832 }
7833
7834 void wxRichTextFontTable::operator= (const wxRichTextFontTable& table)
7835 {
7836 Ref(table);
7837 }
7838
7839 wxFont wxRichTextFontTable::FindFont(const wxTextAttr& fontSpec)
7840 {
7841 wxRichTextFontTableData* data = (wxRichTextFontTableData*) m_refData;
7842 if (data)
7843 return data->FindFont(fontSpec);
7844 else
7845 return wxFont();
7846 }
7847
7848 void wxRichTextFontTable::Clear()
7849 {
7850 wxRichTextFontTableData* data = (wxRichTextFontTableData*) m_refData;
7851 if (data)
7852 data->m_hashMap.clear();
7853 }
7854
7855 #endif
7856 // wxUSE_RICHTEXT