scalafx.event

EventIncludes

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: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

    Definition Classes
    AnyRef → Any
  10. 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

  11. 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

  12. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  14. 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.

  15. def hashCode(): Int

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

    Definition Classes
    Any
  17. 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

  18. 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

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

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

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

  22. 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

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

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

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

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

    Definition Classes
    AnyRef
  27. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped