Package | Description |
---|---|
com.sun.javafx.print | |
com.sun.javafx.scene.control.skin | |
com.sun.javafx.stage | |
com.sun.javafx.tk | |
com.sun.javafx.tk.quantum | |
com.sun.prism.j2d.print | |
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 |
PrinterJobImpl.showPageDialog(Window owner) |
boolean |
PrinterJobImpl.showPrintDialog(Window owner) |
Constructor and Description |
---|
CustomColorDialog(Window owner) |
Modifier and Type | Class and Description |
---|---|
class |
EmbeddedWindow
User: Artem
Date: Dec 21, 2010
Time: 4:30:56 PM
|
Modifier and Type | Method and Description |
---|---|
AccessControlContext |
WindowHelper.WindowAccessor.getAccessControlContext(Window window) |
float |
WindowHelper.WindowAccessor.getRenderScale(Window window) |
float |
WindowHelper.WindowAccessor.getUIScale(Window window) |
static void |
WindowHelper.notifyLocationChanged(Window window,
double x,
double y) |
void |
WindowHelper.WindowAccessor.notifyLocationChanged(Window window,
double x,
double y) |
void |
WindowHelper.WindowAccessor.notifyScreenChanged(Window window,
Object from,
Object to) |
static void |
WindowHelper.notifySizeChanged(Window window,
double width,
double height) |
void |
WindowHelper.WindowAccessor.notifySizeChanged(Window window,
double width,
double height) |
ReadOnlyObjectProperty<Screen> |
WindowHelper.WindowAccessor.screenProperty(Window window) |
Constructor and Description |
---|
WindowCloseRequestHandler(Window window) |
WindowEventDispatcher(Window window) |
WindowPeerListener(Window window) |
Modifier and Type | Method and Description |
---|---|
abstract TKStage |
Toolkit.createTKPopupStage(Window peerWindow,
StageStyle popupStyle,
TKStage owner,
AccessControlContext acc) |
TKStage |
DummyToolkit.createTKPopupStage(Window peerWindow,
StageStyle popupStyle,
TKStage owner,
AccessControlContext acc) |
abstract TKStage |
Toolkit.createTKStage(Window peerWindow,
boolean securityDialog,
StageStyle stageStyle,
boolean primary,
Modality modality,
TKStage owner,
boolean rtl,
AccessControlContext acc) |
TKStage |
DummyToolkit.createTKStage(Window peerWindow,
boolean securityDialog,
StageStyle stageStyle,
boolean primary,
Modality modality,
TKStage owner,
boolean rtl,
AccessControlContext acc) |
Modifier and Type | Method and Description |
---|---|
TKStage |
QuantumToolkit.createTKPopupStage(Window peerWindow,
StageStyle popupStyle,
TKStage owner,
AccessControlContext acc) |
TKStage |
QuantumToolkit.createTKStage(Window peerWindow,
boolean securityDialog,
StageStyle stageStyle,
boolean primary,
Modality modality,
TKStage owner,
boolean rtl,
AccessControlContext acc) |
Modifier and Type | Method and Description |
---|---|
boolean |
J2DPrinterJob.showPageDialog(Window owner) |
boolean |
J2DPrinterJob.showPrintDialog(Window owner) |
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() |
Modifier and Type | Method and Description |
---|---|
ReadOnlyObjectProperty<Window> |
Scene.windowProperty() |
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() |
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() |
Modifier and Type | Method and Description |
---|---|
void |
WindowBuilder.applyTo(Window x)
Deprecated.
|
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 © 2020. All rights reserved.