|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592 |
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2017 - ROLI Ltd.
-
- JUCE is an open source library subject to commercial or open-source
- licensing.
-
- By using JUCE, you agree to the terms of both the JUCE 5 End-User License
- Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
- 27th April 2017).
-
- End User License Agreement: www.juce.com/juce-5-licence
- Privacy Policy: www.juce.com/juce-5-privacy-policy
-
- Or: You may also use this code under the terms of the GPL v3 (see
- www.gnu.org/licenses).
-
- JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
- EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
- DISCLAIMED.
-
- ==============================================================================
- */
-
- namespace juce
- {
-
- TextLayout::Glyph::Glyph (const int glyph, Point<float> anch, float w) noexcept
- : glyphCode (glyph), anchor (anch), width (w)
- {
- }
-
- TextLayout::Glyph::Glyph (const Glyph& other) noexcept
- : glyphCode (other.glyphCode), anchor (other.anchor), width (other.width)
- {
- }
-
- TextLayout::Glyph& TextLayout::Glyph::operator= (const Glyph& other) noexcept
- {
- glyphCode = other.glyphCode;
- anchor = other.anchor;
- width = other.width;
- return *this;
- }
-
- TextLayout::Glyph::~Glyph() noexcept {}
-
- //==============================================================================
- TextLayout::Run::Run() noexcept
- : colour (0xff000000)
- {
- }
-
- TextLayout::Run::Run (Range<int> range, int numGlyphsToPreallocate)
- : colour (0xff000000), stringRange (range)
- {
- glyphs.ensureStorageAllocated (numGlyphsToPreallocate);
- }
-
- TextLayout::Run::Run (const Run& other)
- : font (other.font),
- colour (other.colour),
- glyphs (other.glyphs),
- stringRange (other.stringRange)
- {
- }
-
- TextLayout::Run::~Run() noexcept {}
-
- //==============================================================================
- TextLayout::Line::Line() noexcept
- : ascent (0.0f), descent (0.0f), leading (0.0f)
- {
- }
-
- TextLayout::Line::Line (Range<int> range, Point<float> o, float asc, float desc,
- float lead, int numRunsToPreallocate)
- : stringRange (range), lineOrigin (o),
- ascent (asc), descent (desc), leading (lead)
- {
- runs.ensureStorageAllocated (numRunsToPreallocate);
- }
-
- TextLayout::Line::Line (const Line& other)
- : stringRange (other.stringRange), lineOrigin (other.lineOrigin),
- ascent (other.ascent), descent (other.descent), leading (other.leading)
- {
- runs.addCopiesOf (other.runs);
- }
-
- TextLayout::Line::~Line() noexcept
- {
- }
-
- Range<float> TextLayout::Line::getLineBoundsX() const noexcept
- {
- Range<float> range;
- bool isFirst = true;
-
- for (auto* run : runs)
- {
- for (auto& glyph : run->glyphs)
- {
- Range<float> runRange (glyph.anchor.x, glyph.anchor.x + glyph.width);
-
- if (isFirst)
- {
- isFirst = false;
- range = runRange;
- }
- else
- {
- range = range.getUnionWith (runRange);
- }
- }
- }
-
- return range + lineOrigin.x;
- }
-
- Range<float> TextLayout::Line::getLineBoundsY() const noexcept
- {
- return { lineOrigin.y - ascent,
- lineOrigin.y + descent };
- }
-
- Rectangle<float> TextLayout::Line::getLineBounds() const noexcept
- {
- auto x = getLineBoundsX();
- auto y = getLineBoundsY();
-
- return { x.getStart(), y.getStart(), x.getLength(), y.getLength() };
- }
-
- //==============================================================================
- TextLayout::TextLayout()
- : width (0), height (0), justification (Justification::topLeft)
- {
- }
-
- TextLayout::TextLayout (const TextLayout& other)
- : width (other.width), height (other.height),
- justification (other.justification)
- {
- lines.addCopiesOf (other.lines);
- }
-
- TextLayout::TextLayout (TextLayout&& other) noexcept
- : lines (static_cast<OwnedArray<Line>&&> (other.lines)),
- width (other.width), height (other.height),
- justification (other.justification)
- {
- }
-
- TextLayout& TextLayout::operator= (TextLayout&& other) noexcept
- {
- lines = static_cast<OwnedArray<Line>&&> (other.lines);
- width = other.width;
- height = other.height;
- justification = other.justification;
- return *this;
- }
-
- TextLayout& TextLayout::operator= (const TextLayout& other)
- {
- width = other.width;
- height = other.height;
- justification = other.justification;
- lines.clear();
- lines.addCopiesOf (other.lines);
- return *this;
- }
-
- TextLayout::~TextLayout()
- {
- }
-
- TextLayout::Line& TextLayout::getLine (const int index) const
- {
- return *lines.getUnchecked (index);
- }
-
- void TextLayout::ensureStorageAllocated (int numLinesNeeded)
- {
- lines.ensureStorageAllocated (numLinesNeeded);
- }
-
- void TextLayout::addLine (Line* line)
- {
- lines.add (line);
- }
-
- void TextLayout::draw (Graphics& g, Rectangle<float> area) const
- {
- auto origin = justification.appliedToRectangle (Rectangle<float> (width, getHeight()), area).getPosition();
-
- auto& context = g.getInternalContext();
-
- for (auto* line : lines)
- {
- auto lineOrigin = origin + line->lineOrigin;
-
- for (auto* run : line->runs)
- {
- context.setFont (run->font);
- context.setFill (run->colour);
-
- for (auto& glyph : run->glyphs)
- context.drawGlyph (glyph.glyphCode, AffineTransform::translation (lineOrigin.x + glyph.anchor.x,
- lineOrigin.y + glyph.anchor.y));
-
- if (run->font.isUnderlined())
- {
- Range<float> runExtent;
-
- for (auto& glyph : run->glyphs)
- {
- Range<float> glyphRange (glyph.anchor.x, glyph.anchor.x + glyph.width);
-
- runExtent = runExtent.isEmpty() ? glyphRange
- : runExtent.getUnionWith (glyphRange);
- }
-
- auto lineThickness = run->font.getDescent() * 0.3f;
-
- context.fillRect ({ runExtent.getStart() + lineOrigin.x, lineOrigin.y + lineThickness * 2.0f,
- runExtent.getLength(), lineThickness });
- }
- }
- }
- }
-
- void TextLayout::createLayout (const AttributedString& text, float maxWidth)
- {
- createLayout (text, maxWidth, 1.0e7f);
- }
-
- void TextLayout::createLayout (const AttributedString& text, float maxWidth, float maxHeight)
- {
- lines.clear();
- width = maxWidth;
- height = maxHeight;
- justification = text.getJustification();
-
- if (! createNativeLayout (text))
- createStandardLayout (text);
-
- recalculateSize();
- }
-
- void TextLayout::createLayoutWithBalancedLineLengths (const AttributedString& text, float maxWidth)
- {
- createLayoutWithBalancedLineLengths (text, maxWidth, 1.0e7f);
- }
-
- void TextLayout::createLayoutWithBalancedLineLengths (const AttributedString& text, float maxWidth, float maxHeight)
- {
- auto minimumWidth = maxWidth / 2.0f;
- auto bestWidth = maxWidth;
- float bestLineProportion = 0.0f;
-
- while (maxWidth > minimumWidth)
- {
- createLayout (text, maxWidth, maxHeight);
-
- if (getNumLines() < 2)
- return;
-
- auto line1 = lines.getUnchecked (lines.size() - 1)->getLineBoundsX().getLength();
- auto line2 = lines.getUnchecked (lines.size() - 2)->getLineBoundsX().getLength();
- auto shortest = jmin (line1, line2);
- auto longest = jmax (line1, line2);
- auto prop = shortest > 0 ? longest / shortest : 1.0f;
-
- if (prop > 0.9f && prop < 1.1f)
- return;
-
- if (prop > bestLineProportion)
- {
- bestLineProportion = prop;
- bestWidth = maxWidth;
- }
-
- maxWidth -= 10.0f;
- }
-
- if (bestWidth != maxWidth)
- createLayout (text, bestWidth, maxHeight);
- }
-
- //==============================================================================
- namespace TextLayoutHelpers
- {
- struct Token
- {
- Token (const String& t, const Font& f, Colour c, bool whitespace)
- : text (t), font (f), colour (c),
- area (font.getStringWidthFloat (t), f.getHeight()),
- isWhitespace (whitespace),
- isNewLine (t.containsChar ('\n') || t.containsChar ('\r'))
- {}
-
- const String text;
- const Font font;
- const Colour colour;
- Rectangle<float> area;
- int line;
- float lineHeight;
- const bool isWhitespace, isNewLine;
-
- Token& operator= (const Token&) = delete;
- };
-
- struct TokenList
- {
- TokenList() noexcept {}
-
- void createLayout (const AttributedString& text, TextLayout& layout)
- {
- layout.ensureStorageAllocated (totalLines);
-
- addTextRuns (text);
- layoutRuns (layout.getWidth(), text.getLineSpacing(), text.getWordWrap());
-
- int charPosition = 0;
- int lineStartPosition = 0;
- int runStartPosition = 0;
-
- ScopedPointer<TextLayout::Line> currentLine;
- ScopedPointer<TextLayout::Run> currentRun;
-
- bool needToSetLineOrigin = true;
-
- for (int i = 0; i < tokens.size(); ++i)
- {
- auto& t = *tokens.getUnchecked (i);
-
- Array<int> newGlyphs;
- Array<float> xOffsets;
- t.font.getGlyphPositions (getTrimmedEndIfNotAllWhitespace (t.text), newGlyphs, xOffsets);
-
- if (currentRun == nullptr) currentRun = new TextLayout::Run();
- if (currentLine == nullptr) currentLine = new TextLayout::Line();
-
- if (newGlyphs.size() > 0)
- {
- currentRun->glyphs.ensureStorageAllocated (currentRun->glyphs.size() + newGlyphs.size());
- auto tokenOrigin = t.area.getPosition().translated (0, t.font.getAscent());
-
- if (needToSetLineOrigin)
- {
- needToSetLineOrigin = false;
- currentLine->lineOrigin = tokenOrigin;
- }
-
- auto glyphOffset = tokenOrigin - currentLine->lineOrigin;
-
- for (int j = 0; j < newGlyphs.size(); ++j)
- {
- auto x = xOffsets.getUnchecked (j);
- currentRun->glyphs.add (TextLayout::Glyph (newGlyphs.getUnchecked(j),
- glyphOffset.translated (x, 0),
- xOffsets.getUnchecked (j + 1) - x));
- }
-
- charPosition += newGlyphs.size();
- }
-
- if (t.isWhitespace || t.isNewLine)
- ++charPosition;
-
- if (auto* nextToken = tokens[i + 1])
- {
- if (t.font != nextToken->font || t.colour != nextToken->colour)
- {
- addRun (*currentLine, currentRun.release(), t, runStartPosition, charPosition);
- runStartPosition = charPosition;
- }
-
- if (t.line != nextToken->line)
- {
- if (currentRun == nullptr)
- currentRun = new TextLayout::Run();
-
- addRun (*currentLine, currentRun.release(), t, runStartPosition, charPosition);
- currentLine->stringRange = Range<int> (lineStartPosition, charPosition);
-
- if (! needToSetLineOrigin)
- layout.addLine (currentLine.release());
-
- runStartPosition = charPosition;
- lineStartPosition = charPosition;
- needToSetLineOrigin = true;
- }
- }
- else
- {
- addRun (*currentLine, currentRun.release(), t, runStartPosition, charPosition);
- currentLine->stringRange = Range<int> (lineStartPosition, charPosition);
-
- if (! needToSetLineOrigin)
- layout.addLine (currentLine.release());
-
- needToSetLineOrigin = true;
- }
- }
-
- if ((text.getJustification().getFlags() & (Justification::right | Justification::horizontallyCentred)) != 0)
- {
- auto totalW = layout.getWidth();
- bool isCentred = (text.getJustification().getFlags() & Justification::horizontallyCentred) != 0;
-
- for (int i = 0; i < layout.getNumLines(); ++i)
- {
- auto dx = totalW - layout.getLine(i).getLineBoundsX().getLength();
-
- if (isCentred)
- dx /= 2.0f;
-
- layout.getLine(i).lineOrigin.x += dx;
- }
- }
- }
-
- private:
- static void addRun (TextLayout::Line& glyphLine, TextLayout::Run* glyphRun,
- const Token& t, const int start, const int end)
- {
- glyphRun->stringRange = { start, end };
- glyphRun->font = t.font;
- glyphRun->colour = t.colour;
- glyphLine.ascent = jmax (glyphLine.ascent, t.font.getAscent());
- glyphLine.descent = jmax (glyphLine.descent, t.font.getDescent());
- glyphLine.runs.add (glyphRun);
- }
-
- static int getCharacterType (const juce_wchar c) noexcept
- {
- if (c == '\r' || c == '\n')
- return 0;
-
- return CharacterFunctions::isWhitespace (c) ? 2 : 1;
- }
-
- void appendText (const String& stringText, const Font& font, Colour colour)
- {
- auto t = stringText.getCharPointer();
- String currentString;
- int lastCharType = 0;
-
- for (;;)
- {
- auto c = t.getAndAdvance();
-
- if (c == 0)
- break;
-
- auto charType = getCharacterType (c);
-
- if (charType == 0 || charType != lastCharType)
- {
- if (currentString.isNotEmpty())
- tokens.add (new Token (currentString, font, colour,
- lastCharType == 2 || lastCharType == 0));
-
- currentString = String::charToString (c);
-
- if (c == '\r' && *t == '\n')
- currentString += t.getAndAdvance();
- }
- else
- {
- currentString += c;
- }
-
- lastCharType = charType;
- }
-
- if (currentString.isNotEmpty())
- tokens.add (new Token (currentString, font, colour, lastCharType == 2));
- }
-
- void layoutRuns (const float maxWidth, const float extraLineSpacing, const AttributedString::WordWrap wordWrap)
- {
- float x = 0, y = 0, h = 0;
- int i;
-
- for (i = 0; i < tokens.size(); ++i)
- {
- auto& t = *tokens.getUnchecked(i);
- t.area.setPosition (x, y);
- t.line = totalLines;
- x += t.area.getWidth();
- h = jmax (h, t.area.getHeight() + extraLineSpacing);
-
- auto* nextTok = tokens[i + 1];
-
- if (nextTok == nullptr)
- break;
-
- const bool tokenTooLarge = (x + nextTok->area.getWidth() > maxWidth);
-
- if (t.isNewLine || ((! nextTok->isWhitespace) && (tokenTooLarge && wordWrap != AttributedString::none)))
- {
- setLastLineHeight (i + 1, h);
- x = 0;
- y += h;
- h = 0;
- ++totalLines;
- }
- }
-
- setLastLineHeight (jmin (i + 1, tokens.size()), h);
- ++totalLines;
- }
-
- void setLastLineHeight (int i, const float height) noexcept
- {
- while (--i >= 0)
- {
- auto& tok = *tokens.getUnchecked (i);
-
- if (tok.line == totalLines)
- tok.lineHeight = height;
- else
- break;
- }
- }
-
- void addTextRuns (const AttributedString& text)
- {
- auto numAttributes = text.getNumAttributes();
- tokens.ensureStorageAllocated (jmax (64, numAttributes));
-
- for (int i = 0; i < numAttributes; ++i)
- {
- auto& attr = text.getAttribute (i);
-
- appendText (text.getText().substring (attr.range.getStart(), attr.range.getEnd()),
- attr.font, attr.colour);
- }
- }
-
- static String getTrimmedEndIfNotAllWhitespace (const String& s)
- {
- auto trimmed = s.trimEnd();
-
- if (trimmed.isEmpty() && s.isNotEmpty())
- trimmed = s.replaceCharacters ("\r\n\t", " ");
-
- return trimmed;
- }
-
- OwnedArray<Token> tokens;
- int totalLines = 0;
-
- JUCE_DECLARE_NON_COPYABLE (TokenList)
- };
- }
-
- //==============================================================================
- void TextLayout::createStandardLayout (const AttributedString& text)
- {
- TextLayoutHelpers::TokenList l;
- l.createLayout (text, *this);
- }
-
- void TextLayout::recalculateSize()
- {
- if (! lines.isEmpty())
- {
- auto bounds = lines.getFirst()->getLineBounds();
-
- for (auto* line : lines)
- bounds = bounds.getUnion (line->getLineBounds());
-
- for (auto* line : lines)
- line->lineOrigin.x -= bounds.getX();
-
- width = bounds.getWidth();
- height = bounds.getHeight();
- }
- else
- {
- width = 0;
- height = 0;
- }
- }
-
- } // namespace juce
|