/* ============================================================================== This file is part of the JUCE framework. Copyright (c) Raw Material Software Limited JUCE is an open source framework subject to commercial or open source licensing. By downloading, installing, or using the JUCE framework, or combining the JUCE framework with any other source code, object code, content or any other copyrightable work, you agree to the terms of the JUCE End User Licence Agreement, and all incorporated terms including the JUCE Privacy Policy and the JUCE Website Terms of Service, as applicable, which will bind you. If you do not agree to the terms of these agreements, we will not license the JUCE framework to you, and you must discontinue the installation or download process and cease use of the JUCE framework. JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/ JUCE Privacy Policy: https://juce.com/juce-privacy-policy JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/ Or: You may also use this code under the terms of the AGPLv3: https://www.gnu.org/licenses/agpl-3.0.en.html THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. ============================================================================== */ namespace juce { namespace { int getLength (const Array& atts) noexcept { return atts.size() != 0 ? atts.getReference (atts.size() - 1).range.getEnd() : 0; } void splitAttributeRanges (Array& atts, int position) { for (int i = atts.size(); --i >= 0;) { const auto& att = atts.getUnchecked (i); auto offset = position - att.range.getStart(); if (offset >= 0) { if (offset > 0 && position < att.range.getEnd()) { atts.insert (i + 1, AttributedString::Attribute (att)); atts.getReference (i).range.setEnd (position); atts.getReference (i + 1).range.setStart (position); } break; } } } inline bool areInvariantsMaintained (const String& text, const Array& atts) { if (atts.isEmpty()) return true; if (atts.getFirst().range.getStart() != 0) return false; if (atts.getLast().range.getEnd() != text.length()) return false; for (auto it = std::next (atts.begin()); it != atts.end(); ++it) if (it->range.getStart() != std::prev (it)->range.getEnd()) return false; return true; } Range splitAttributeRanges (Array& atts, Range newRange) { newRange = newRange.getIntersectionWith ({ 0, getLength (atts) }); if (! newRange.isEmpty()) { splitAttributeRanges (atts, newRange.getStart()); splitAttributeRanges (atts, newRange.getEnd()); } return newRange; } void mergeAdjacentRanges (Array& atts) { for (int i = atts.size() - 1; --i >= 0;) { auto& a1 = atts.getReference (i); auto& a2 = atts.getReference (i + 1); if (a1.colour == a2.colour && a1.font == a2.font) { a1.range.setEnd (a2.range.getEnd()); atts.remove (i + 1); if (i < atts.size() - 1) ++i; } } } void appendRange (Array& atts, int length, const Font* f, const Colour* c) { if (atts.size() == 0) { atts.add ({ Range (0, length), f != nullptr ? *f : FontOptions{}, c != nullptr ? *c : Colour (0xff000000) }); } else { auto start = getLength (atts); atts.add ({ Range (start, start + length), f != nullptr ? *f : atts.getReference (atts.size() - 1).font, c != nullptr ? *c : atts.getReference (atts.size() - 1).colour }); mergeAdjacentRanges (atts); } } void applyFontAndColour (Array& atts, Range range, const Font* f, const Colour* c) { range = splitAttributeRanges (atts, range); for (auto& att : atts) { if (range.getStart() < att.range.getEnd()) { if (range.getEnd() <= att.range.getStart()) break; if (c != nullptr) att.colour = *c; if (f != nullptr) att.font = *f; } } mergeAdjacentRanges (atts); } void truncate (Array& atts, int newLength) { splitAttributeRanges (atts, newLength); for (int i = atts.size(); --i >= 0;) if (atts.getReference (i).range.getStart() >= newLength) atts.remove (i); } } //============================================================================== AttributedString::Attribute::Attribute (Range r, const Font& f, Colour c) noexcept : range (r), font (f), colour (c) { } //============================================================================== void AttributedString::setText (const String& newText) { auto newLength = newText.length(); auto oldLength = getLength (attributes); if (newLength > oldLength) appendRange (attributes, newLength - oldLength, nullptr, nullptr); else if (newLength < oldLength) truncate (attributes, newLength); text = newText; jassert (areInvariantsMaintained (text, attributes)); } void AttributedString::append (const String& textToAppend) { text += textToAppend; appendRange (attributes, textToAppend.length(), nullptr, nullptr); jassert (areInvariantsMaintained (text, attributes)); } void AttributedString::append (const String& textToAppend, const Font& font) { text += textToAppend; appendRange (attributes, textToAppend.length(), &font, nullptr); jassert (areInvariantsMaintained (text, attributes)); } void AttributedString::append (const String& textToAppend, Colour colour) { text += textToAppend; appendRange (attributes, textToAppend.length(), nullptr, &colour); jassert (areInvariantsMaintained (text, attributes)); } void AttributedString::append (const String& textToAppend, const Font& font, Colour colour) { text += textToAppend; appendRange (attributes, textToAppend.length(), &font, &colour); jassert (areInvariantsMaintained (text, attributes)); } void AttributedString::append (const AttributedString& other) { auto originalLength = getLength (attributes); auto originalNumAtts = attributes.size(); text += other.text; attributes.addArray (other.attributes); for (auto i = originalNumAtts; i < attributes.size(); ++i) attributes.getReference (i).range += originalLength; mergeAdjacentRanges (attributes); jassert (areInvariantsMaintained (text, attributes)); } void AttributedString::clear() { text.clear(); attributes.clear(); } void AttributedString::setJustification (Justification newJustification) noexcept { justification = newJustification; } void AttributedString::setWordWrap (WordWrap newWordWrap) noexcept { wordWrap = newWordWrap; } void AttributedString::setReadingDirection (ReadingDirection newReadingDirection) noexcept { readingDirection = newReadingDirection; } void AttributedString::setLineSpacing (const float newLineSpacing) noexcept { lineSpacing = newLineSpacing; } void AttributedString::setColour (Range range, Colour colour) { applyFontAndColour (attributes, range, nullptr, &colour); jassert (areInvariantsMaintained (text, attributes)); } void AttributedString::setFont (Range range, const Font& font) { applyFontAndColour (attributes, range, &font, nullptr); jassert (areInvariantsMaintained (text, attributes)); } void AttributedString::setColour (Colour colour) { setColour ({ 0, getLength (attributes) }, colour); jassert (areInvariantsMaintained (text, attributes)); } void AttributedString::setFont (const Font& font) { setFont ({ 0, getLength (attributes) }, font); jassert (areInvariantsMaintained (text, attributes)); } void AttributedString::draw (Graphics& g, const Rectangle& area) const { if (text.isNotEmpty() && g.clipRegionIntersects (area.getSmallestIntegerContainer())) { jassert (text.length() == getLength (attributes)); TextLayout layout; layout.createLayout (*this, area.getWidth()); layout.draw (g, area); } } } // namespace juce