Package | Description |
---|---|
javafx.print |
Provides the public classes for the JavaFX Printing API.
|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.scene.control |
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.
|
javafx.stage |
Provides the top-level container classes for JavaFX content.
|
Modifier and Type | Method and Description |
---|---|
boolean |
PrinterJob.showPageSetupDialog(Window owner)
Displays a Page Setup dialog.
|
boolean |
PrinterJob.showPrintDialog(Window owner)
Displays a Print Dialog.
|
Modifier and Type | Method and Description |
---|---|
Window |
Scene.getWindow()
Gets the value of the property window.
|
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Window> |
Scene.windowProperty()
The
Window for this Scene |
Modifier and Type | Method and Description |
---|---|
void |
Scene.impl_setWindow(Window value)
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
Modifier and Type | Class and Description |
---|---|
class |
ContextMenu
A popup control containing an ObservableList of menu items.
|
class |
PopupControl
An extension of PopupWindow that allows for CSS styling.
|
class |
Tooltip
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.
|
Modifier and Type | Method and Description |
---|---|
Window |
Dialog.getOwner()
Retrieves the owner Window for this dialog, or null for an unowned dialog.
|
Modifier and Type | Method and Description |
---|---|
void |
Dialog.initOwner(Window window)
Specifies the owner
Window for this dialog, or null for a top-level,
unowned dialog. |
Modifier and Type | Class and Description |
---|---|
class |
Popup
A Popup is a special window-like container for a scene graph.
|
class |
PopupWindow
PopupWindow is the parent for a variety of different types of popup
based windows including
Popup and Tooltip
and ContextMenu . |
class |
Stage
The JavaFX
Stage class is the top level JavaFX container. |
Modifier and Type | Method and Description |
---|---|
Window |
Stage.getOwner()
Retrieves the owner Window for this stage, or null for an unowned stage.
|
Window |
PopupWindow.getOwnerWindow()
Gets the value of the property ownerWindow.
|
Modifier and Type | Method and Description |
---|---|
static Iterator<Window> |
Window.impl_getWindows()
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
ReadOnlyObjectProperty<Window> |
PopupWindow.ownerWindowProperty()
The window which is the parent of this popup.
|
Modifier and Type | Method and Description |
---|---|
void |
Stage.initOwner(Window owner)
Specifies the owner Window for this stage, or null for a top-level,
unowned stage.
|
void |
PopupWindow.show(Window owner)
Show the popup.
|
void |
PopupWindow.show(Window ownerWindow,
double anchorX,
double anchorY)
Shows the popup at the specified location on the screen.
|
File |
DirectoryChooser.showDialog(Window ownerWindow)
Shows a new directory selection dialog.
|
File |
FileChooser.showOpenDialog(Window ownerWindow)
Shows a new file open dialog.
|
List<File> |
FileChooser.showOpenMultipleDialog(Window ownerWindow)
Shows a new file open dialog in which multiple files can be selected.
|
File |
FileChooser.showSaveDialog(Window ownerWindow)
Shows a new file save dialog.
|
Constructor and Description |
---|
WindowEvent(Window source,
EventType<? extends Event> eventType)
Construct a new
Event with the specified event source, target
and type. |
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.