Create a new ContextMenu initialized with the given items
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
Specifies the popup anchor point which is used in popup positioning.
Specifies the popup anchor point which is used in popup positioning.
Specifies the x coordinate of the popup anchor point on the screen.
Specifies the x coordinate of the popup anchor point on the screen.
Specifies the y coordinate of the popup anchor point on the screen.
Specifies the y coordinate of the popup anchor point on the screen.
This convenience variable indicates whether, when the popup is shown, it should automatically correct its position such that it doesn't end up positioned off the screen.
This convenience variable indicates whether, when the popup is shown, it should automatically correct its position such that it doesn't end up positioned off the screen.
Specifies whether Popups should auto hide.
Specifies whether Popups should auto hide.
Construct an event dispatch chain for this target.
Construct an event dispatch chain for this target.
Sets x and y properties on this Window so that it is centered on the screen.
Sets x and y properties on this Window so that it is centered on the screen.
Specifies whether the event, which caused the Popup to hide, should be consumed.
Specifies whether the event, which caused the Popup to hide, should be consumed.
2.2
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.
Specifies the event dispatcher for this node.
Specifies the event dispatcher for this node.
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.
Whether or not this Window has the keyboard or input focus.
Whether or not this Window has the keyboard or input focus.
Whether or not this Window has the keyboard or input focus.
Whether or not this Window has the keyboard or input focus.
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
The height of this Stage.
The height of this Stage.
Attempts to hide this Window by setting the visibility to false.
Attempts to hide this Window by setting the visibility to false.
Specifies whether the PopupWindow should be hidden when an unhandled escape key is pressed while the popup has focus.
Specifies whether the PopupWindow should be hidden when an unhandled escape key is pressed while the popup has focus.
The id of this Node.
The id of this Node.
The menu items on the context menu.
Property for overriding the control's computed maximum height.
Property for overriding the control's computed maximum height.
Property for overriding the control's computed maximum width.
Property for overriding the control's computed maximum width.
Property for overriding the control's computed minimum height.
Property for overriding the control's computed minimum height.
Property for overriding the control's computed minimum width.
Property for overriding the control's computed minimum width.
Callback function to be informed when an item contained within this ContextMenu has been activated.
Called after autoHide is run.
Called after autoHide is run.
Called when there is an external request to close this Window.
Called when there is an external request to close this Window.
Called just after the Window has been hidden.
Called just after the Window has been hidden.
Called just prior to the Window being hidden.
Called just prior to the Window being hidden.
Called just prior to the Window being shown, even if the menu has no items to show.
Called just prior to the Window being shown, even if the menu has no items to show.
Called just after the Window is shown.
Called just after the Window is shown.
Defines the opacity of the Stage as a value between 0.0 and 1.0.
Defines the opacity of the Stage as a value between 0.0 and 1.0.
The node which is the owner of this popup.
The node which is the owner of this popup.
The window which is the parent of this popup.
The window which is the parent of this popup.
Property for overriding the control's computed preferred height.
Property for overriding the control's computed preferred height.
Property for overriding the control's computed preferred width.
Property for overriding the control's computed preferred width.
8.0
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
Requests that this Window get the input focus.
Requests that this Window get the input focus.
The Scene to be rendered on this Stage.
The Scene to be rendered on this Stage.
Shows the ContextMenu
relative to the given anchor node, on the side specified by the hpos and vpos parameters,
and offset by the given dx and dy values for the x-axis and y-axis, respectively.
Show the Popup at the specified x,y location relative to the screen
Show the Popup at the specified x,y location relative to the screen
Show the popup.
Show the popup.
Show the Popup at the specified x,y location relative to the screen
Show the Popup at the specified x,y location relative to the screen
Whether or not this Stage is showing (that is, open on the user's system).
Whether or not this Stage is showing (that is, open on the user's system).
Set the width and height of this Window to match the size of the content of this Window's Scene.
Set the width and height of this Window to match the size of the content of this Window's Scene.
Skin is responsible for rendering this Control
.
Skin is responsible for rendering this Control
.
A string representation of the CSS style associated with this specific Node.
A string representation of the CSS style associated with this specific Node.
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.
The width of this Stage.
The width of this Stage.
The horizontal location of this Stage on the screen.
The horizontal location of this Stage on the screen.
The vertical location of this Stage on the screen.
The vertical location of this Stage on the screen.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ContextMenu.html.