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
    @HotSpotIntrinsicCandidate() @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. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  13. def hashCode(): Int

    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  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. implicit def jfxWeakEventHandler2sfx[T <: javafx.event.Event](weh: javafx.event.WeakEventHandler[T]): WeakEventHandler[T]

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

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

    T

    Event Type

    weh

    JavaFX WeakEventHandler

    returns

    ScalaFX WeakEventHandler

    Since

    8.0

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

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

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def toString(): String

    Definition Classes
    AnyRef → Any
  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( ... )
  29. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

  2. def handle[J <: javafx.event.Event, R](handler: ⇒ R): EventHandler[J]

    NOTE: use of handle is deprecated in Scala 2.

    NOTE: use of handle is deprecated in Scala 2.12 and newer, you can use standard Scala syntax:

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

    For Scala 2.11 and older, you can use handle to 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.

    Annotations
    @deprecated
    Deprecated

    (Since version R19) Starting with Scala 2.12 handle{...} can be replaced with idiomatic Scala code _ => {...}

Inherited from AnyRef

Inherited from Any

Ungrouped