scalafx.event

EventIncludes

Related Docs: object EventIncludes | package event

trait EventIncludes extends AnyRef

Contains implicit methods to convert from javafx.event Classes to their ScalaFX counterparts.

Source
EventIncludes.scala
Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. EventIncludes
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

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

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

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  8. implicit def eventClosureWrapperWithParam[J <: javafx.event.Event, S <: SFXDelegate[J], R](handler: (S) ⇒ R)(implicit jfx2sfx: (J) ⇒ S): EventHandler[J]

    Converts a closure to a JavaFX EventHandler.

    Converts a closure to a JavaFX EventHandler. It is used when the event properties will be used.

    Enables following use:

          button.onAction = (e:ActionEvent) => {
            println("Handling button action: " + e)
            doSomething(e)
          }
    

    J

    JavaFX Event subclass.

    handler

    Closure that that takes scalafx.event.Event as argument.

    returns

    JavaFX EventHandler which handle method will call handler

  9. implicit def eventClosureWrapperWithZeroParam[T <: javafx.event.Event, R](handler: () ⇒ R): EventHandler[T]

    Converts a closure to a JavaFX EventHandler.

    Converts a closure to a JavaFX EventHandler. It is used when information about event is not be used.

    Enables following use:

           button.onAction = () => {
             println("Handling button action")
             doSomething()
           }
    

    T

    JavaFX Event subclass.

    handler

    Closure that will not handle event.

    returns

    JavaFX EventHandler which handle method will call handler

  10. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  12. def handle[J <: javafx.event.Event, R](handler: ⇒ R): EventHandler[J]

    Create a simple event handler when information about event is not be used.

    Create a simple event handler when information about event is not be used.

    Enables following use:

           button.onAction = handle {
             println("Handling button action")
             doSomething()
           }
    

    J

    JavaFX Event subclass.

    handler

    code executed when event is handled.

    returns

    JavaFX EventHandler which will wrap the input code handler.

  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. implicit def jfxActionEvent2sfx(ae: javafx.event.ActionEvent): ActionEvent

    Converts a javafx.event.ActionEvent instance to its ScalaFX counterpart.

    Converts a javafx.event.ActionEvent instance to its ScalaFX counterpart.

    ae

    JavaFX ActionEvent

    returns

    ScalaFX ActionEvent

  16. implicit def jfxEvent2sfx(e: javafx.event.Event): Event

    Converts a javafx.event.Event instance to its ScalaFX counterpart.

    Converts a javafx.event.Event instance to its ScalaFX counterpart.

    e

    JavaFX Event

    returns

    ScalaFX Event

  17. implicit def jfxEventDispatchChain2sfx(e: javafx.event.EventDispatchChain): EventDispatchChain

  18. implicit def jfxEventDispatcher2sfx(e: javafx.event.EventDispatcher): EventDispatcher

  19. implicit def jfxEventTarget2sfx(e: javafx.event.EventTarget): EventTarget

  20. implicit def jfxEventType2sfx[T <: javafx.event.Event](e: javafx.event.EventType[T]): EventType[T]

    Converts a javafx.event.EventType instance to its ScalaFX counterpart.

    Converts a javafx.event.EventType instance to its ScalaFX counterpart.

    T

    Event Type

    e

    JavaFX EventType

    returns

    ScalaFX EventType

  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  25. def toString(): String

    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped