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
Defines whether this Stage
is kept on top of other windows.
Defines whether this Stage
is kept on top of other windows.
If some other window is already always-on-top then the relative order between these windows is unspecified (depends on platform).
There are differences in behavior between applications if a security manager is present. Applications with permissions are allowed to set "always on top" flag on a Stage. In applications without the proper permissions, an attempt to set the flag will be ignored and the property value will be restored to "false".
The property is read only because it can be changed externally by the underlying platform and therefore must not be bindable.
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.
Closes this Stage.
Closes this Stage.
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.
Specifies whether this Stage should be a full-screen, undecorated window.
Specifies whether this Stage should be a full-screen, undecorated window.
Specifies the Full Screen exit key combination
Specifies the Full Screen exit key combination
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.
Defines whether the Stage is iconified or not.
Defines whether the Stage is iconified or not.
Gets the icon images to be used in the window decorations and when minimized.
Gets the icon images to be used in the window decorations and when minimized.
Specifies the modality for this stage.
Specifies the modality for this stage.
Specifies the owner Window for this stage, or null for a top-level, unowned stage.
Specifies the owner Window for this stage, or null for a top-level, unowned stage.
Specifies the style for this stage.
Specifies the style for this stage.
Defines the maximum height of this Stage.
Defines the maximum height of this Stage.
Defines the maximum width of this Stage.
Defines the maximum width of this Stage.
Defines whether the Stage is maximized or not.
Defines whether the Stage is maximized or not.
Defines the minimum height of this Stage.
Defines the minimum height of this Stage.
Defines the minimum width of this Stage.
Defines the minimum width of this Stage.
Retrieves the modality attribute for this stage.
Retrieves the modality attribute for this stage.
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.
Retrieves a scala.Some with the owner Window for this stage, or scala.None for an unowned stage.
Retrieves a scala.Some with the owner Window for this stage, or scala.None for an unowned stage.
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.
Defines whether the Stage is resizable or not by the user.
Defines whether the Stage is resizable or not by the user.
The Scene to be rendered on this Stage.
The Scene to be rendered on this Stage.
Specify the scene to be used on this stage.
Specify the scene to be used on this stage.
Attempts to show this Window by setting visibility to true.
Attempts to show this Window by setting visibility to true.
Shows this stage and waits for it to be hidden (closed) before returning to the caller.
Shows this stage and waits for it to be hidden (closed) before returning to the caller. This method temporarily blocks processing of the current event, and starts a nested event loop to handle other events. This method must be called on the FX Application thread.
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).
Attempts to show or hide this Window.
Attempts to show or hide this Window.
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.
Retrieves the style attribute for this stage.
Retrieves the style attribute for this stage.
Defines the title of the Stage.
Defines the title of the Stage.
Send the Window to the background.
Send the Window to the background.
Bring the Window to the foreground.
Bring the Window to the foreground.
Returns the original delegate's toString()
adding a [SFX]
prefix.
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.
Simple helper class for construction of primary application stages.
The primary stage has to wrap an instance of a JavaFX primary stage created by JavaFX when application is initialized.