Class GlyphLayout

java.lang.Object
gaiasky.util.gdx.g2d.GlyphLayout
All Implemented Interfaces:
com.badlogic.gdx.utils.Pool.Poolable

public class GlyphLayout extends Object implements com.badlogic.gdx.utils.Pool.Poolable
Stores runs of glyphs for a piece of text. The text may contain newlines and color markup tags.
  • Field Details

    • runs

      public final com.badlogic.gdx.utils.Array<GlyphLayout.GlyphRun> runs
    • width

      public float width
    • height

      public float height
  • Constructor Details

  • Method Details

    • setText

      public void setText(BitmapFont font, CharSequence str)
      Calls setText with the whole string, the font's current color, and no alignment or wrapping.
    • setText

      public void setText(BitmapFont font, CharSequence str, com.badlogic.gdx.graphics.Color color, float targetWidth, int halign, boolean wrap)
      Calls setText with the whole string and no truncation.
    • setText

      public void setText(BitmapFont font, CharSequence str, int start, int end, com.badlogic.gdx.graphics.Color color, float targetWidth, int halign, boolean wrap, String truncate)
      Parameters:
      color - The default color to use for the text (the BitmapFont color is not used). If BitmapFont.BitmapFontData.markupEnabled is true, color markup tags in the specified string may change the color for portions of the text.
      targetWidth - The width used for alignment, line wrapping, and truncation. May be zero if those features are not used.
      halign - Horizontal alignment of the text, see Align.
      truncate - If not null and the width of the glyphs exceed targetWidth, the glyphs are truncated and the glyphs for the specified truncate string are placed at the end. Empty string can be used to truncate without adding glyphs. Truncate should not be used with text that contains multiple lines. Wrap is ignored if truncate is not null.
    • reset

      public void reset()
      Specified by:
      reset in interface com.badlogic.gdx.utils.Pool.Poolable
    • toString

      public String toString()
      Overrides:
      toString in class Object