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