Stage
class is the top level JavaFX container.
The primary Stage is constructed by the platform. Additional Stage
objects may be constructed by the application.
Stage objects must be constructed and modified on the JavaFX Application Thread.
The JavaFX Application Thread is created as part of the startup process for
the JavaFX runtime. See the javafx.
class and
the Platform#startup(Runnable)
method for more information.
Some Stage
properties are read-only, even though they have
corresponding set methods, because they can be changed externally by the
underlying platform, and therefore must not be bindable.
Further, these properties might be ignored on some platforms, depending on
whether or not there is a window manager and how it is configured.
For example, a platform without a window manager might ignore the
iconified
property.
Style
A stage has one of the following styles:
StageStyle#DECORATED
- a stage with a solid white background and
platform decorations.StageStyle#UNDECORATED
- a stage with a solid white background
and no decorations.StageStyle#TRANSPARENT
- a stage with a transparent background
and no decorations.StageStyle#UTILITY
- a stage with a solid white background and
minimal platform decorations.The style must be initialized before the stage is made visible.
On some platforms decorations might not be available. For example, on some mobile or embedded devices. In these cases a request for a DECORATED or UTILITY window will be accepted, but no decorations will be shown.
Owner
A stage can optionally have an owner Window. When a window is a stage's owner, it is said to be the parent of that stage.
Owned Stages are tied to the parent Window. An owned stage will always be on top of its parent window. When a parent window is closed or iconified, then all owned windows will be affected as well. Owned Stages cannot be independantly iconified.
The owner must be initialized before the stage is made visible.
Modality
A stage has one of the following modalities:
Modality#NONE
- a stage that does not block any other window.Modality#WINDOW_MODAL
- a stage that blocks input events from
being delivered to all windows from its owner (parent) to its root.
Its root is the closest ancestor window without an owner.Modality#APPLICATION_MODAL
- a stage that blocks input events from
being delivered to all windows from the same application, except for those
from its child hierarchy.When a window is blocked by a modal stage its Z-order relative to its ancestors
is preserved, and it receives no input events and no window activation events,
but continues to animate and render normally.
Note that showing a modal stage does not necessarily block the caller. The
show
method returns immediately regardless of the modality of the stage.
Use the showAndWait
method if you need to block the caller until
the modal stage is hidden (closed).
The modality must be initialized before the stage is made visible.
Example:
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.text.Font;
import javafx.scene.text.Text;
import javafx.stage.Stage;
public class HelloWorld extends Application {
@Override public void start(Stage stage) {
Text text = new Text(10, 40, "Hello World!");
text.setFont(new Font(40));
Scene scene = new Scene(new Group(text));
stage.setTitle("Welcome to JavaFX!");
stage.setScene(scene);
stage.sizeToScene();
stage.show();
}
public static void main(String[] args) {
Application.launch(args);
}
}
produces the following on Windows:
produces the following on Mac OSX:
produces the following on Linux:
Modifier and Type | Class and Description |
---|---|
private class |
Modifier and Type | Field and Description |
---|---|
private ReadOnlyBooleanWrapper | alwaysOnTop
Defines whether this |
private ReadOnlyBooleanWrapper | fullScreen
Specifies whether this |
private final ObjectProperty | |
private final ObjectProperty | fullScreenExitHint
Specifies the text to show when a user enters full screen mode, usually used to indicate the way a user should go about exiting out of full screen mode. |
private ReadOnlyBooleanWrapper | iconified
Defines whether the |
private ObservableList | icons
Defines the icon images to be used in the window decorations and when minimized. |
private boolean | |
private boolean | |
private DoubleProperty | maxHeight
Defines the maximum height of this |
private ReadOnlyBooleanWrapper | maximized
Defines whether the |
private DoubleProperty | maxWidth
Defines the maximum width of this |
private DoubleProperty | minHeight
Defines the minimum height of this |
private DoubleProperty | minWidth
Defines the minimum width of this |
private Modality | |
private Window | |
private boolean | |
private BooleanProperty | resizable
Defines whether the |
private static final StagePeerListener. | |
private StageStyle | |
private StringProperty | title
Defines the title of the |
Access | Constructor and Description |
---|---|
public | |
public |
Modifier and Type | Method and Description |
---|---|
public final ReadOnlyBooleanProperty | |
private ReadOnlyBooleanWrapper | |
public void | |
private void | |
private void | |
public final ObjectProperty | |
public final ObjectProperty | Returns: the property.Get the property for the Full Screen exit key combination. |
public final ReadOnlyBooleanProperty | |
private ReadOnlyBooleanWrapper | |
public final String | |
public final KeyCombination | Returns: the current setting (null for system default)Get the current sequence used to exit Full Screen mode. |
public final ObservableList | Returns: An observable list of icons of this windowGets the icon images to be used in the window decorations and when minimized. |
public final double | |
public final double | |
public final double | |
public final double | |
public final Modality | |
public final Window | Returns: the owner Window.Retrieves the owner Window for this stage, or null for an unowned stage. |
public final StageStyle | |
public final String | |
pack-priv Window | |
public final ReadOnlyBooleanProperty | |
private final ReadOnlyBooleanWrapper | |
public final void | |
public final void | |
public final void | |
public final boolean | |
public final boolean | |
public final boolean | |
private boolean | |
public final boolean | |
pack-priv boolean | |
public final boolean | |
pack-priv boolean | isSizeToSceneAllowed()
Overrides javafx. Determines whether the |
public final DoubleProperty | |
public final ReadOnlyBooleanProperty | |
private final ReadOnlyBooleanWrapper | |
public final DoubleProperty | |
public final DoubleProperty | |
public final DoubleProperty | |
public final BooleanProperty | |
public final void | |
public final void | |
public final void | |
public final void | setFullScreenExitKeyCombination(KeyCombination
the key combination to exit on keyCombination)Specifies the KeyCombination that will allow the user to exit full screen mode. |
public final void | |
pack-priv void | |
public final void | |
public final void | |
public final void | |
public final void | |
public final void | |
pack-priv void | |
public final void | |
public final void | setScene(Scene
the value for the value)scene propertyOverrides javafx. Specify the scene to be used on this stage. |
public final void | |
public final void | show()
Overrides javafx. Attempts to show this Window by setting visibility to true |
public void | showAndWait()
Shows this stage and waits for it to be hidden (closed) before returning to the caller. |
public final StringProperty | |
public void | |
public void |
alwaysOnTop | back to summary |
---|---|
private ReadOnlyBooleanWrapper alwaysOnTop Defines whether this If some other window is already always-on-top then the relative order between these windows is unspecified (depends on platform). This property is read-only because it can be changed externally by the underlying platform. Further, setting this property might be ignored on some platforms.
|
fullScreen | back to summary |
---|---|
private ReadOnlyBooleanWrapper fullScreen Specifies whether this The implementation of full-screen mode is platform and profile-dependent.
When set to
The full-screen mode will be exited (and the Screen the Stage will enter full-screen mode on by
setting its position to be within the bounds of that Screen
prior to entering full-screen mode.
However once in full-screen mode,
In case that more This property is read-only because it can be changed externally by the underlying platform. Further, setting this property might be ignored on some platforms.
The user can unconditionally exit full-screen mode
at any time by pressing
|
fullScreenExitCombination | back to summary |
---|---|
private final ObjectProperty<KeyCombination> fullScreenExitCombination |
fullScreenExitHint | back to summary |
---|---|
private final ObjectProperty<String> fullScreenExitHint Specifies the text to show when a user enters full screen mode, usually used to indicate the way a user should go about exiting out of full screen mode. A value of null will result in the default per-locale message being displayed. If set to the empty string, then no message will be displayed.
|
iconified | back to summary |
---|---|
private ReadOnlyBooleanWrapper iconified Defines whether the
In case that more
On some mobile and embedded platforms setting this property to true will
hide the This property is read-only because it can be changed externally by the underlying platform. Further, setting this property might be ignored on some platforms.
|
icons | back to summary |
---|---|
private ObservableList<Image> icons Defines the icon images to be used in the window decorations and when minimized. The images should be different sizes of the same image and the best size will be chosen, eg. 16x16, 32,32.
|
important | back to summary |
---|---|
private boolean important |
inNestedEventLoop | back to summary |
---|---|
private boolean inNestedEventLoop |
maxHeight | back to summary |
---|---|
private DoubleProperty maxHeight Defines the maximum height of this
|
maximized | back to summary |
---|---|
private ReadOnlyBooleanWrapper maximized Defines whether the
In case that more This property is read-only because it can be changed externally by the underlying platform. Further, setting this property might be ignored on some platforms.
|
maxWidth | back to summary |
---|---|
private DoubleProperty maxWidth Defines the maximum width of this
|
minHeight | back to summary |
---|---|
private DoubleProperty minHeight Defines the minimum height of this
|
minWidth | back to summary |
---|---|
private DoubleProperty minWidth Defines the minimum width of this
|
modality | back to summary |
---|---|
private Modality modality |
owner | back to summary |
---|---|
private Window owner |
primary | back to summary |
---|---|
private boolean primary |
resizable | back to summary |
---|---|
private BooleanProperty resizable Defines whether the Warning Since 8.0 the property cannot be bound and will throw
|
STAGE_ACCESSOR | back to summary |
---|---|
private static final StagePeerListener. |
style | back to summary |
---|---|
private StageStyle style |
title | back to summary |
---|---|
private StringProperty title Defines the title of the
|
Stage | back to summary |
---|---|
public Stage() Creates a new instance of decorated
|
Stage | back to summary |
---|---|
public Stage(StageStyle style) Creates a new instance of
|
alwaysOnTopProperty | back to summary |
---|---|
public final ReadOnlyBooleanProperty alwaysOnTopProperty() |
alwaysOnTopPropertyImpl | back to summary |
---|---|
private ReadOnlyBooleanWrapper alwaysOnTopPropertyImpl() |
close | back to summary |
---|---|
public void close() Closes this |
doVisibleChanged | back to summary |
---|---|
private void doVisibleChanged(boolean value) |
doVisibleChanging | back to summary |
---|---|
private void doVisibleChanging(boolean value) |
fullScreenExitHintProperty | back to summary |
---|---|
public final ObjectProperty |
fullScreenExitKeyProperty | back to summary |
---|---|
public final ObjectProperty Get the property for the Full Screen exit key combination.
|
fullScreenProperty | back to summary |
---|---|
public final ReadOnlyBooleanProperty fullScreenProperty() |
fullScreenPropertyImpl | back to summary |
---|---|
private ReadOnlyBooleanWrapper fullScreenPropertyImpl() |
getFullScreenExitHint | back to summary |
---|---|
public final String getFullScreenExitHint() |
getFullScreenExitKeyCombination | back to summary |
---|---|
public final KeyCombination getFullScreenExitKeyCombination() Get the current sequence used to exit Full Screen mode.
|
getIcons | back to summary |
---|---|
public final ObservableList Gets the icon images to be used in the window decorations and when minimized. The images should be different sizes of the same image and the best size will be chosen, eg. 16x16, 32,32.
|
getMaxHeight | back to summary |
---|---|
public final double getMaxHeight() |
getMaxWidth | back to summary |
---|---|
public final double getMaxWidth() |
getMinHeight | back to summary |
---|---|
public final double getMinHeight() |
getMinWidth | back to summary |
---|---|
public final double getMinWidth() |
getModality | back to summary |
---|---|
public final Modality getModality() Retrieves the modality attribute for this stage.
|
getOwner | back to summary |
---|---|
public final Window getOwner() Retrieves the owner Window for this stage, or null for an unowned stage.
|
getStyle | back to summary |
---|---|
public final StageStyle getStyle() Retrieves the style attribute for this stage.
|
getTitle | back to summary |
---|---|
public final String getTitle() |
getWindowOwner | back to summary |
---|---|
pack-priv Window getWindowOwner() Overrides javafx.
|
iconifiedProperty | back to summary |
---|---|
public final ReadOnlyBooleanProperty iconifiedProperty() |
iconifiedPropertyImpl | back to summary |
---|---|
private final ReadOnlyBooleanWrapper iconifiedPropertyImpl() |
initModality | back to summary |
---|---|
public final void initModality(Modality modality) Specifies the modality for this stage. This must be done prior to making the stage visible. The modality is one of: Modality.NONE, Modality.WINDOW_MODAL, or Modality.APPLICATION_MODAL.
|
initOwner | back to summary |
---|---|
public final void initOwner(Window owner) Specifies the owner Window for this stage, or null for a top-level, unowned stage. This must be done prior to making the stage visible.
|
initStyle | back to summary |
---|---|
public final void initStyle(StageStyle style) Specifies the style for this stage. This must be done prior to making the stage visible. The style is one of: StageStyle.DECORATED, StageStyle.UNDECORATED, StageStyle.TRANSPARENT, or StageStyle.UTILITY.
|
isAlwaysOnTop | back to summary |
---|---|
public final boolean isAlwaysOnTop() |
isFullScreen | back to summary |
---|---|
public final boolean isFullScreen() |
isIconified | back to summary |
---|---|
public final boolean isIconified() |
isImportant | back to summary |
---|---|
private boolean isImportant() |
isMaximized | back to summary |
---|---|
public final boolean isMaximized() |
isPrimary | back to summary |
---|---|
pack-priv boolean isPrimary() |
isResizable | back to summary |
---|---|
public final boolean isResizable() |
isSizeToSceneAllowed | back to summary |
---|---|
pack-priv boolean isSizeToSceneAllowed() Overrides javafx. Doc from javafx. Determines whether the
If this Stage is
|
maxHeightProperty | back to summary |
---|---|
public final DoubleProperty maxHeightProperty() |
maximizedProperty | back to summary |
---|---|
public final ReadOnlyBooleanProperty maximizedProperty() |
maximizedPropertyImpl | back to summary |
---|---|
private final ReadOnlyBooleanWrapper maximizedPropertyImpl() |
maxWidthProperty | back to summary |
---|---|
public final DoubleProperty maxWidthProperty() |
minHeightProperty | back to summary |
---|---|
public final DoubleProperty minHeightProperty() |
minWidthProperty | back to summary |
---|---|
public final DoubleProperty minWidthProperty() |
resizableProperty | back to summary |
---|---|
public final BooleanProperty resizableProperty() |
setAlwaysOnTop | back to summary |
---|---|
public final void setAlwaysOnTop(boolean value) |
setFullScreen | back to summary |
---|---|
public final void setFullScreen(boolean value) |
setFullScreenExitHint | back to summary |
---|---|
public final void setFullScreenExitHint(String value) |
setFullScreenExitKeyCombination | back to summary |
---|---|
public final void setFullScreenExitKeyCombination(KeyCombination keyCombination) Specifies the KeyCombination that will allow the user to exit full screen mode. A value of KeyCombination.NO_MATCH will not match any KeyEvent and will make it so the user is not able to escape from Full Screen mode. A value of null indicates that the default platform specific key combination should be used. An internal copy of this value is made when entering full-screen mode and will be used to trigger the exit from the mode.
|
setIconified | back to summary |
---|---|
public final void setIconified(boolean value) |
setImportant | back to summary |
---|---|
pack-priv void setImportant(boolean important) |
setMaxHeight | back to summary |
---|---|
public final void setMaxHeight(double value) |
setMaximized | back to summary |
---|---|
public final void setMaximized(boolean value) |
setMaxWidth | back to summary |
---|---|
public final void setMaxWidth(double value) |
setMinHeight | back to summary |
---|---|
public final void setMinHeight(double value) |
setMinWidth | back to summary |
---|---|
public final void setMinWidth(double value) |
setPrimary | back to summary |
---|---|
pack-priv void setPrimary(boolean primary) |
setResizable | back to summary |
---|---|
public final void setResizable(boolean value) |
setScene | back to summary |
---|---|
public final void setScene(Scene value) Overrides javafx. Specify the scene to be used on this stage.
|
setTitle | back to summary |
---|---|
public final void setTitle(String value) |
show | back to summary |
---|---|
public final void show() Overrides javafx. Doc from javafx. Attempts to show this Window by setting visibility to true
|
showAndWait | back to summary |
---|---|
public void showAndWait() 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. A Stage is hidden (closed) by one of the following means:
After the Stage is hidden, and the application has returned from the event handler to the event loop, the nested event loop terminates and this method returns to the caller. For example, consider the following sequence of operations for different event handlers, assumed to execute in the order shown below: void evtHander1(...) { stage1.showAndWait(); doSomethingAfterStage1Closed(...) } void evtHander2(...) { stage1.hide(); doSomethingElseHere(...) }evtHandler1 will block at the call to showAndWait. It will resume execution after stage1 is hidden and the current event handler, in this case evtHandler2, returns to the event loop. This means that doSomethingElseHere will execute before doSomethingAfterStage1Closed. More than one stage may be shown with showAndWait. Each call will start a new nested event loop. The stages may be hidden in any order, but a particular nested event loop (and thus the showAndWait method for the associated stage) will only terminate after all inner event loops have also terminated. For example, consider the following sequence of operations for different event handlers, assumed to execute in the order shown below: void evtHander1() { stage1.showAndWait(); doSomethingAfterStage1Closed(...) } void evtHander2() { stage2.showAndWait(); doSomethingAfterStage2Closed(...) } void evtHander3() { stage1.hide(); doSomethingElseHere(...) } void evtHander4() { stage2.hide(); doSomethingElseHereToo(...) }evtHandler1 will block at the call to stage1.showAndWait, starting up a nested event loop just like in the previous example. evtHandler2 will then block at the call to stage2.showAndWait, starting up another (inner) nested event loop. The first call to stage1.showAndWait will resume execution after stage1 is hidden, but only after the inner nested event loop started by stage2.showAndWait has terminated. This means that the call to stage1.showAndWait won't return until after evtHandler2 has returned. The order of execution is: stage1.showAndWait, stage2.showAndWait, stage1.hide, doSomethingElseHere, stage2.hide, doSomethingElseHereToo, doSomethingAfterStage2Closed, doSomethingAfterStage1Closed.
This method must not be called on the primary stage or on a stage that
is already visible.
Additionally, it must either be called from an input event handler or
from the run method of a Runnable passed to
|
titleProperty | back to summary |
---|---|
public final StringProperty titleProperty() |
toBack | back to summary |
---|---|
public void toBack() Sends this
Some platforms do not allow applications to control the stacking order
at all, in which case this method does nothing.
Other platforms have restrictions on stacking order, so might not
place a window below another application's windows
nor allow a window that is owned by another window to appear below their
owner.
Every attempt will be made to move this |
toFront | back to summary |
---|---|
public void toFront() Brings this
Some platforms do not allow applications to control the stacking order
at all, in which case this method does nothing.
Other platforms have restrictions on stacking order, so might not
place a window above another application's windows
nor allow a window that owns other windows to appear on top of those
owned windows.
Every attempt will be made to move this |
Modifier and Type | Field and Description |
---|---|
private boolean |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public void | bind(ObservableValue<? extends Boolean>
The observable this rawObservable)Property should be bound to.Overrides javafx. Implements javafx. Create a unidirection binding for this |
protected void | invalidated()
Overrides javafx. The method |
pack-priv void |
noInvalidate | back to summary |
---|---|
private boolean noInvalidate |
ResizableProperty | back to summary |
---|---|
public ResizableProperty() |
bind | back to summary |
---|---|
public void bind(ObservableValue<? extends Boolean> rawObservable) Overrides javafx. Implements javafx. Doc from javafx. Create a unidirection binding for this Note that JavaFX has all the bind calls implemented through weak listeners. This means the bound property can be garbage collected and stopped from being updated. Note:
|
invalidated | back to summary |
---|---|
protected void invalidated() Overrides javafx. Doc from javafx. The method
|
setNoInvalidate | back to summary |
---|---|
pack-priv void setNoInvalidate(boolean value) |