|
- /*
- ==============================================================================
-
- 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
- {
-
- //==============================================================================
- /**
- A Pre-formatted piece of text, which may contain multiple fonts and colours.
-
- A TextLayout is created from an AttributedString, and once created can be
- quickly drawn into a Graphics context.
-
- @see AttributedString
- */
- class JUCE_API TextLayout
- {
- public:
- /** Creates an empty layout.
- Having created a TextLayout, you can populate it using createLayout() or
- createLayoutWithBalancedLineLengths().
- */
- TextLayout();
- TextLayout (const TextLayout&);
- TextLayout& operator= (const TextLayout&);
- TextLayout (TextLayout&&) noexcept;
- TextLayout& operator= (TextLayout&&) noexcept;
-
- /** Destructor. */
- ~TextLayout();
-
- //==============================================================================
- /** Creates a layout from the given attributed string.
- This will replace any data that is currently stored in the layout.
- */
- void createLayout (const AttributedString&, float maxWidth);
-
- /** Creates a layout from the given attributed string, given some size constraints.
- This will replace any data that is currently stored in the layout.
- */
- void createLayout (const AttributedString&, float maxWidth, float maxHeight);
-
- /** Creates a layout, attempting to choose a width which results in lines
- of a similar length.
-
- This will be slower than the normal createLayout method, but produces a
- tidier result.
- */
- void createLayoutWithBalancedLineLengths (const AttributedString&, float maxWidth);
-
- /** Creates a layout, attempting to choose a width which results in lines
- of a similar length.
-
- This will be slower than the normal createLayout method, but produces a
- tidier result.
- */
- void createLayoutWithBalancedLineLengths (const AttributedString&, float maxWidth, float maxHeight);
-
- /** Draws the layout within the specified area.
- The position of the text within the rectangle is controlled by the justification
- flags set in the original AttributedString that was used to create this layout.
- */
- void draw (Graphics&, Rectangle<float> area) const;
-
- //==============================================================================
- /** A positioned glyph. */
- class JUCE_API Glyph
- {
- public:
- Glyph (int glyphCode, Point<float> anchor, float width) noexcept;
- Glyph (const Glyph&) noexcept;
- Glyph& operator= (const Glyph&) noexcept;
- ~Glyph() noexcept;
-
- /** The code number of this glyph. */
- int glyphCode;
-
- /** The glyph's anchor point - this is relative to the line's origin.
- @see TextLayout::Line::lineOrigin
- */
- Point<float> anchor;
-
- float width;
-
- private:
- JUCE_LEAK_DETECTOR (Glyph)
- };
-
- //==============================================================================
- /** A sequence of glyphs with a common font and colour. */
- class JUCE_API Run
- {
- public:
- Run() noexcept;
- Run (const Run&);
- Run (Range<int> stringRange, int numGlyphsToPreallocate);
- ~Run() noexcept;
-
- Font font; /**< The run's font. */
- Colour colour; /**< The run's colour. */
- Array<Glyph> glyphs; /**< The glyphs in this run. */
- Range<int> stringRange; /**< The character range that this run represents in the
- original string that was used to create it. */
- private:
- Run& operator= (const Run&);
- JUCE_LEAK_DETECTOR (Run)
- };
-
- //==============================================================================
- /** A line containing a sequence of glyph-runs. */
- class JUCE_API Line
- {
- public:
- Line() noexcept;
- Line (const Line&);
- Line (Range<int> stringRange, Point<float> lineOrigin,
- float ascent, float descent, float leading, int numRunsToPreallocate);
- ~Line() noexcept;
-
- /** Returns the X position range which contains all the glyphs in this line. */
- Range<float> getLineBoundsX() const noexcept;
-
- /** Returns the Y position range which contains all the glyphs in this line. */
- Range<float> getLineBoundsY() const noexcept;
-
- /** Returns the smallest rectangle which contains all the glyphs in this line. */
- Rectangle<float> getLineBounds() const noexcept;
-
- OwnedArray<Run> runs; /**< The glyph-runs in this line. */
- Range<int> stringRange; /**< The character range that this line represents in the
- original string that was used to create it. */
- Point<float> lineOrigin; /**< The line's baseline origin. */
- float ascent, descent, leading;
-
- private:
- Line& operator= (const Line&);
- JUCE_LEAK_DETECTOR (Line)
- };
-
- //==============================================================================
- /** Returns the maximum width of the content. */
- float getWidth() const noexcept { return width; }
-
- /** Returns the maximum height of the content. */
- float getHeight() const noexcept { return height; }
-
- /** Returns the number of lines in the layout. */
- int getNumLines() const noexcept { return lines.size(); }
-
- /** Returns one of the lines. */
- Line& getLine (int index) const;
-
- /** Adds a line to the layout. The layout will take ownership of this line object
- and will delete it when it is no longer needed. */
- void addLine (Line*);
-
- /** Pre-allocates space for the specified number of lines. */
- void ensureStorageAllocated (int numLinesNeeded);
-
- private:
- OwnedArray<Line> lines;
- float width, height;
- Justification justification;
-
- void createStandardLayout (const AttributedString&);
- bool createNativeLayout (const AttributedString&);
- void recalculateSize();
-
- JUCE_LEAK_DETECTOR (TextLayout)
- };
-
- } // namespace juce
|