Object

io.youi

ui

Related Doc: package youi

Permalink

object ui extends Container

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ui
  2. Container
  3. HTMLContainer
  4. AbstractContainer
  5. HTMLComponent
  6. Component
  7. ComponentTheme
  8. Theme
  9. TaskSupport
  10. Updates
  11. Updatable
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val background: Var[Paint]

    Permalink
    Definition Classes
    ComponentTheme
  6. def backingStoreRatio: Double

    Permalink
  7. val border: Var[Border]

    Permalink
    Definition Classes
    ComponentTheme
  8. val cache: Var[Boolean]

    Permalink
    Definition Classes
    ComponentTheme
  9. def childComponents: Vector[Component]

    Permalink
    Attributes
    protected
    Definition Classes
    AbstractContainerComponent
  10. lazy val children: Var[Vector[Component]]

    Permalink
    Definition Classes
    HTMLContainerAbstractContainer
  11. def childrenChanged(removed: Vector[Component], added: Vector[Component]): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    AbstractContainer
  12. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def createInstance(task: Task): TaskInstance

    Permalink
    Attributes
    protected
    Definition Classes
    TaskSupport
  14. val cursor: Var[Cursor]

    Permalink
    Definition Classes
    ComponentTheme
  15. def defaultThemeParent: Option[Theme]

    Permalink
    Attributes
    protected
    Definition Classes
    ComponentThemeTheme
  16. lazy val delta: Channel[Double]

    Permalink
    Definition Classes
    Updates
  17. def devicePixelRatio: Double

    Permalink
  18. lazy val displayRatio: Val[Double]

    Permalink
  19. val e: HTMLExtras[Element]

    Permalink
    Attributes
    protected
    Definition Classes
    HTMLComponent
  20. val element: Element

    Permalink
    Attributes
    protected
    Definition Classes
    HTMLContainerHTMLComponent
  21. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  23. lazy val event: Events

    Permalink

    Events functionality for monitoring and even firing events on this component.

    Events functionality for monitoring and even firing events on this component.

    Definition Classes
    Component
  24. def every(delay: FiniteDuration, until: Option[FiniteDuration] = None)(f: ⇒ Unit): Unit

    Permalink
    Definition Classes
    Updates
  25. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  27. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  28. lazy val id: Var[String]

    Permalink

    Generated unique identifier for this element.

    Generated unique identifier for this element.

    Definition Classes
    Component
  29. def init(): Unit

    Permalink

    Called automatically the first time this Component is connected to the document.

    Called automatically the first time this Component is connected to the document.

    Attributes
    protected
    Definition Classes
    AbstractContainerComponent
  30. def initialized: Boolean

    Permalink

    True if this Component's init method has been invoked.

    True if this Component's init method has been invoked.

    Definition Classes
    Component
  31. val interactive: Var[Boolean]

    Permalink
    Definition Classes
    ComponentTheme
  32. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  33. lazy val layout: Var[Layout]

    Permalink
    Definition Classes
    HTMLContainerAbstractContainer
  34. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  35. def nextFrame(f: ⇒ Unit): Unit

    Permalink
    Definition Classes
    Updates
  36. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  37. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  38. def once(delay: FiniteDuration)(f: ⇒ Unit): Unit

    Permalink
    Definition Classes
    Updates
  39. val opacity: Var[Double]

    Permalink
    Definition Classes
    ComponentTheme
  40. object padding

    Permalink
    Definition Classes
    ComponentTheme
  41. lazy val parent: Var[Option[Component]]

    Permalink

    Parent to this element.

    Parent to this element.

    Definition Classes
    Component
  42. lazy val parentTheme: Var[Option[Theme]]

    Permalink
    Attributes
    protected
    Definition Classes
    Theme
  43. lazy val position: ComponentPosition

    Permalink

    Position information for placement of this component on the screen.

    Position information for placement of this component on the screen.

    Definition Classes
    Component
  44. def prop[T](get: ⇒ T, set: (T) ⇒ Unit = (_: T) => (), updatesTransform: Boolean = false, updatesRendering: Boolean = false): Var[T]

    Permalink
    Attributes
    protected[io.youi]
    Definition Classes
    ComponentTheme
  45. lazy val ratio: Var[Double]

    Permalink
  46. object sibling

    Permalink
    Definition Classes
    Component
  47. lazy val size: ComponentSize

    Permalink

    Size information for determining the dimensions of this component.

    Size information for determining the dimensions of this component.

    Definition Classes
    Component
  48. def start(task: Task): TaskInstance

    Permalink
    Definition Classes
    TaskSupport
  49. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  50. lazy val theme: Var[_ <: ContainerTheme]

    Permalink

    Theme associated with this Component.

    Theme associated with this Component.

    Definition Classes
    ContainerComponent
  51. lazy val title: Var[String]

    Permalink
  52. def toString(): String

    Permalink
    Definition Classes
    Component → AnyRef → Any
  53. def type: String

    Permalink

    The type of Component.

    The type of Component. This is useful for client-side introspection and logging. Each custom Component instance should represent a unique type.

    Definition Classes
    ContainerComponent
  54. def updatables: List[Updatable]

    Permalink

    List of Updatable instances this Component represents.

    List of Updatable instances this Component represents.

    Attributes
    protected
    Definition Classes
    Component
  55. def update(delta: Double): Unit

    Permalink
    Definition Classes
    AbstractContainerComponentUpdatesUpdatable
  56. def updateRendering(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    ComponentTheme
  57. def updateTasks(): Boolean

    Permalink
    Definition Classes
    TaskSupport
  58. def updateTransform(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    ComponentTheme
  59. val visible: Var[Boolean]

    Permalink
    Definition Classes
    ComponentTheme
  60. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  61. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  62. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Container

Inherited from HTMLContainer[Component]

Inherited from AbstractContainer[Component]

Inherited from HTMLComponent[Element]

Inherited from Component

Inherited from ComponentTheme

Inherited from Theme

Inherited from TaskSupport

Inherited from Updates

Inherited from Updatable

Inherited from AnyRef

Inherited from Any

Ungrouped