Uses of Class
javafx.stage.Window
Packages that use Window
Package
Description
Provides the public classes for the JavaFX Printing API.
Provides the core set of base
classes for the JavaFX Scene Graph API.
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
Provides the top-level container classes for JavaFX content.
-
Uses of Window in javafx.print
Methods in javafx.print with parameters of type WindowModifier and TypeMethodDescriptionboolean
PrinterJob.showPageSetupDialog
(Window owner) Displays a Page Setup dialog.boolean
PrinterJob.showPrintDialog
(Window owner) Displays a Print Dialog. -
Uses of Window in javafx.scene
Methods in javafx.scene that return WindowModifier and TypeMethodDescriptionfinal Window
Scene.getWindow()
Gets the value of thewindow
property.Methods in javafx.scene that return types with arguments of type WindowModifier and TypeMethodDescriptionfinal ReadOnlyObjectProperty
<Window> Scene.windowProperty()
TheWindow
for thisScene
-
Uses of Window in javafx.scene.control
Subclasses of Window in javafx.scene.controlModifier and TypeClassDescriptionclass
A popup control containing an ObservableList of menu items.class
An extension of PopupWindow that allows for CSS styling.class
Tooltips are common UI elements which are typically used for showing additional information about a Node in the scenegraph when the Node is hovered over by the mouse.Methods in javafx.scene.control that return WindowModifier and TypeMethodDescriptionfinal Window
Dialog.getOwner()
Retrieves the owner Window for this dialog, or null for an unowned dialog.Methods in javafx.scene.control with parameters of type Window -
Uses of Window in javafx.stage
Subclasses of Window in javafx.stageModifier and TypeClassDescriptionclass
A Popup is a special window-like container for a scene graph.class
PopupWindow is the parent for a variety of different types of popup based windows includingPopup
andTooltip
andContextMenu
.class
The JavaFXStage
class is the top level JavaFX container.Methods in javafx.stage that return WindowModifier and TypeMethodDescriptionfinal Window
Stage.getOwner()
Retrieves the owner Window for this stage, or null for an unowned stage.final Window
PopupWindow.getOwnerWindow()
Gets the value of theownerWindow
property.Methods in javafx.stage that return types with arguments of type WindowModifier and TypeMethodDescriptionstatic ObservableList
<Window> Window.getWindows()
Returns a list containing a reference to the currently showing JavaFX windows.final ReadOnlyObjectProperty
<Window> PopupWindow.ownerWindowProperty()
The window which is the parent of this popup.Methods in javafx.stage with parameters of type WindowModifier and TypeMethodDescriptionfinal void
Specifies the owner Window for this stage, or null for a top-level, unowned stage.void
Show the popup.void
Shows the popup at the specified location on the screen.DirectoryChooser.showDialog
(Window ownerWindow) Shows a new directory selection dialog.FileChooser.showOpenDialog
(Window ownerWindow) Shows a new file open dialog.FileChooser.showOpenMultipleDialog
(Window ownerWindow) Shows a new file open dialog in which multiple files can be selected.FileChooser.showSaveDialog
(Window ownerWindow) Shows a new file save dialog.Constructors in javafx.stage with parameters of type WindowModifierConstructorDescriptionWindowEvent
(Window source, EventType<? extends Event> eventType) Construct a newEvent
with the specified event source, target and type.