Uses of Class
tripleplay.ui.Root

Packages that use Root
Package
Description
 
  • Uses of Root in tripleplay.ui

    Subclasses of Root in tripleplay.ui
    Modifier and Type
    Class
    Description
    class 
    A root that renders everything into a single texture.
    Fields in tripleplay.ui with type parameters of type Root
    Modifier and Type
    Field
    Description
    final react.SignalView<Root>
    A signal emitted when this root is validated.
    Methods in tripleplay.ui with type parameters of type Root
    Modifier and Type
    Method
    Description
    <R extends Root>
    R
    Interface.addRoot(R root)
    Adds a root to this interface.
    Methods in tripleplay.ui that return Root
    Modifier and Type
    Method
    Description
    Interface.createRoot(Layout layout, Stylesheet sheet)
    Creates a root element with the specified layout and stylesheet.
    Interface.createRoot(Layout layout, Stylesheet sheet, GroupLayer parent)
    Creates a root element with the specified layout and stylesheet and adds its layer to the specified parent.
    Root.pack()
    Sizes this root element to its preferred size.
    Root.pack(float widthHint, float heightHint)
    Sizes this element to its preferred size, computed using the supplied hints.
    Root.packToHeight(float height)
    Sizes this root element to the specified height and its preferred width.
    Root.packToWidth(float width)
    Sizes this root element to the specified width and its preferred height.
    Root.setAbsorbsClicks(boolean absorbsClicks)
    By default, all clicks that fall within a root's bounds are dispatched to the root's layer if they do not land on an interactive child element.
    Root.setBounds(float x, float y, float width, float height)
    Sets the size of this root element and its translation from its parent.
    CapturedRoot.setSize(float width, float height)
     
    Root.setSize(float width, float height)
    Sets the size of this root element.
    Root.setSize(pythagoras.f.IDimension size)
    Sets the size of this root element.
    Methods in tripleplay.ui that return types with arguments of type Root
    Modifier and Type
    Method
    Description
    Interface.roots()
    Returns an iterable over the current roots.
    Methods in tripleplay.ui with parameters of type Root
    Modifier and Type
    Method
    Description
    boolean
    Interface.disposeRoot(Root root)
    Removes the supplied root element from this interface and disposes its layer, iff it's currently added.
    boolean
    Interface.removeRoot(Root root)
    Removes the supplied root element from this interface, iff it's currently added.