Wraps JavaFX ActionEvent.
Wrapper class for Event.
Represents a chain of EventDispatcher
objects, which can dispatch
an Event
.
Represents a chain of EventDispatcher
objects, which can dispatch
an Event
. The event is dispatched by passing it from one
EventDispatcher
to the next in the chain until the end of chain is
reached. Each EventDispatcher
in the chain can influence the event
path and the event itself. The chain is usually formed by following some
parent - child hierarchy from the root to the event target and appending
all EventDispatcher
objects encountered to the chain.
Wraps a JavaFX EventDispatchChain.
An represents an event dispatching and processing entity.
An represents an event dispatching and processing
entity. It is used when an needs to be dispatched to the
associated EventTarget
through the EventDispatchChain
specified by the target. Each in the chain can
influence the event path and the event itself. One
can appear in multiple chains.
Wraps a JavaFX EventDispatcher.
Trait used for handle events manipulation.
Trait used for handle events manipulation. JavaFX class wrapped must have methods defined in scalafx.event.EventHandlerDelegate.EventHandled Type:
def addEventHandler [E <: jfxe.Event](eventType: jfxe.EventType[E], eventHandler: jfxe.EventHandler[_ >: E]) def removeEventHandler[E <: jfxe.Event](eventType: jfxe.EventType[E], eventHandler: jfxe.EventHandler[_ >: E]) def addEventFilter [E <: jfxe.Event](eventType: jfxe.EventType[E], eventHandler: jfxe.EventHandler[_ >: E]) def removeEventFilter [E <: jfxe.Event](eventType: jfxe.EventType[E], eventHandler: jfxe.EventHandler[_ >: E]) def buildEventDispatchChain(chain: jfxe.EventDispatchChain): jfxe.EventDispatchChain
Contains implicit methods to convert from
javafx.event
Classes to their ScalaFX counterparts.
Wraps a JavaFX EventTarget.
Wraps JavaFX WeakEventHandler.
Companion Object for scalafx.event.ActionEvent.
Companion Object for EventHandler interface.
Object Companion for scalafx.event.WeakEventHandler
Wraps
javafx.event
package.