Package | Description |
---|---|
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 | Field and Description |
---|---|
private ReadOnlyObjectWrapper<Window> |
Scene.window
The
Window for this Scene |
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 |
private ReadOnlyObjectWrapper<Window> |
Scene.windowPropertyImpl() |
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
|
private void |
Scene.setWindow(Window value) |
private void |
Scene.KeyHandler.windowForSceneChanged(Window oldWindow,
Window window) |
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 Control when the Control is hovered over by
the mouse.
|
Modifier and Type | Method and Description |
---|---|
private Window |
Tooltip.TooltipBehavior.getWindow(Node node)
Gets the top level window associated with this node.
|
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 | Field and Description |
---|---|
private Window |
Stage.owner |
private Window |
PopupWindow.rootWindow |
Modifier and Type | Field and Description |
---|---|
private ReadOnlyObjectWrapper<Window> |
PopupWindow.ownerWindow
The window which is the parent of this popup.
|
private static com.sun.javafx.WeakReferenceQueue<Window> |
Window.windowQueue
A list of all the currently existing windows.
|
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.
|
private static Window |
PopupWindow.getOwnerWindow(Window window) |
private static Window |
PopupWindow.getRootWindow(Window win)
Gets the root (non PopupWindow) Window for the provided window.
|
Modifier and Type | Method and Description |
---|---|
static java.util.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 |
WindowBuilder.applyTo(Window x) |
private void |
PopupWindow.bindOwnerFocusedProperty(Window ownerWindowValue) |
private static Window |
PopupWindow.getOwnerWindow(Window window) |
private static Window |
PopupWindow.getRootWindow(Window win)
Gets the root (non PopupWindow) Window for the provided window.
|
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 screenX,
double screenY)
Show the Popup at the specified x,y location relative to the screen
|
java.io.File |
DirectoryChooser.showDialog(Window ownerWindow)
Shows a new directory selection dialog.
|
private java.util.List<java.io.File> |
FileChooser.showDialog(Window ownerWindow,
com.sun.javafx.tk.FileChooserType fileChooserType) |
private void |
PopupWindow.showImpl(Window owner) |
java.io.File |
FileChooser.showOpenDialog(Window ownerWindow)
Shows a new file open dialog.
|
java.util.List<java.io.File> |
FileChooser.showOpenMultipleDialog(Window ownerWindow)
Shows a new file open dialog in which multiple files can be selected.
|
java.io.File |
FileChooser.showSaveDialog(Window ownerWindow)
Shows a new file save dialog.
|
private void |
PopupWindow.startMonitorOwnerEvents(Window ownerWindowValue) |
private void |
PopupWindow.stopMonitorOwnerEvents(Window ownerWindowValue) |
private void |
PopupWindow.unbindOwnerFocusedProperty(Window ownerWindowValue) |
private void |
PopupWindow.validateOwnerWindow(Window owner) |
private static boolean |
PopupWindow.wouldCreateCycle(Window parent,
Window child) |
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, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.