Constructor s MenuItem and sets the display text with the specified text and sets the graphic Node to the given node.
Constructs a MenuItem and sets the display text with the specified text
Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"
Registers an event filter to this task.
Registers an event filter to this task. Registered event filters get an event before any associated event handlers.
Event class
the type of the events to receive by the filter
the filter to register that will filter event
Registers an event handler to this task.
Registers an event handler to this task. Any event filters are first processed, then the specified onFoo event handlers, and finally any event handlers registered by this method. As with other events in the scene graph, if an event is consumed, it will not continue dispatching.
Event class
the type of the events to receive by the handler
the handler to register that will manipulate event
Construct an event dispatch chain for this target.
Construct an event dispatch chain for this target.
The CssMetaData of this Styleable.
The CssMetaData of this Styleable.
JavaFX object to be wrapped.
JavaFX object to be wrapped.
Verifies if a object is equals to this delegate.
Verifies if a object is equals to this delegate.
Object to be compared.
if the other object is equals to this delegate or not.
Returns a object that implements scalafx.event.EventHandlerDelegate.EventHandled.
Returns a object that implements scalafx.event.EventHandlerDelegate.EventHandled.
Registers an event filter.
Registers an event filter. Registered event filters get an event before any associated event handlers.
Example of filtering mouse events
pane.filterEvent(MouseEvent.Any) { me: MouseEvent => { me.eventType match { case MouseEvent.MousePressed => { ... } case MouseEvent.MouseDragged => { ... } case _ => { ... } } } }
or
pane.filterEvent(MouseEvent.Any) { () => println("Some mouse event handled") }
type JavaFX delegate of the event
ScalaFX type for J
type wrapper.
type of events that will be handled.
code handling the event, see examples above.
Fires some kind of event.
Fires some kind of event.
The id of this Styleable.
The id of this Styleable.
IMPLEMENTATION NOTE: For this method was adopted the name getId
instead id
to not
conflict with its subclasses already have a method with this name which returns a
StringProperty
.
A string representation of the CSS style associated with this specific Node.
A string representation of the CSS style associated with this specific Node.
IMPLEMENTATION NOTE: For this method was adopted the name getStyle
instead style
to not
conflict with its subclasses already have a method with this name which returns a
StringProperty
.
Registers an event handler.
Registers an event handler. The handler is called when the node receives an Event of the specified type during the bubbling phase of event delivery.
Example of handling mouse events
pane.handleEvent(MouseEvent.Any) { me: MouseEvent => { me.eventType match { case MouseEvent.MousePressed => ... case MouseEvent.MouseDragged => ... case _ => {} } } }
or
pane.handleEvent(MouseEvent.Any) { () => println("Some mouse event handled") }
type JavaFX delegate of the event
ScalaFX type for J
type wrapper.
type of events that will be handled.
code handling the event, see examples above.
Returns a subscription that can be used to cancel/remove this event handler
The delegate hashcode
MnemonicParsing property to enable/disable text parsing.
The event handler that is associated with invocation of an accelerator for a MenuItem.
The event handler that is associated with invocation of an accelerator for a MenuItem. This can happen when a key sequence for an accelerator is pressed. The event handler is also invoked when onShowing event handler is called.
2.2
Returns an observable map of properties on this menu item for use primarily by application developers.
The pseudo-class state of this Styleable.
The pseudo-class state of this Styleable.
Unregisters a previously registered event filter from this task.
Unregisters a previously registered event filter from this task. One filter might have been registered for different event types, so the caller needs to specify the particular event type from which to unregister the filter.
Event class
the event type from which to unregister
the filter to unregister
Unregisters a previously registered event handler from this task.
Unregisters a previously registered event handler from this task. One handler might have been registered for different event types, so the caller needs to specify the particular event type from which to unregister the handler.
Event class
the event type from which to unregister
the handler to unregister
A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine.
A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine.
The parent of this Styleable, or null if there is no parent.
The parent of this Styleable, or null if there is no parent.
Returns the original delegate's toString()
adding a [SFX]
prefix.
The type of this Styleable
that is to be used in selector matching.
The type of this Styleable
that is to be used in selector matching.
Returns a previously set Object property, or null if no such property has been set using the setUserData(java.lang.Object) method.