Package | Description |
---|---|
com.sun.javafx.scene.control | |
com.sun.javafx.scene.control.skin | |
com.sun.javafx.webkit.theme | |
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.
|
Modifier and Type | Class and Description |
---|---|
class |
GlobalMenuAdapter |
Modifier and Type | Field and Description |
---|---|
private Menu |
GlobalMenuAdapter.menu |
Modifier and Type | Method and Description |
---|---|
static MenuBase |
GlobalMenuAdapter.adapt(Menu menu) |
Constructor and Description |
---|
GlobalMenuAdapter(Menu menu) |
Modifier and Type | Field and Description |
---|---|
private Menu |
MenuBarSkin.MenuBarButton.menu |
private Menu |
MenuBarSkin.openMenu |
private Menu |
ContextMenuContent.openSubmenu |
Modifier and Type | Method and Description |
---|---|
private Menu |
MenuBarSkin.findNextSibling() |
private Menu |
MenuBarSkin.findPreviousSibling() |
(package private) Menu |
ContextMenuContent.getOpenSubMenu() |
Modifier and Type | Method and Description |
---|---|
private boolean |
MenuBarSkin.isMenuEmpty(Menu menu) |
private boolean |
MenuBarSkin.menuContainsCustomMenuItem(Menu menu) |
private void |
ContextMenuContent.showMenu(Menu menu) |
private void |
ContextMenuContent.showSubmenu(Menu menu) |
private void |
MenuBarSkin.updateActionListeners(Menu m,
boolean add) |
Constructor and Description |
---|
MenuBarButton(MenuBarSkin menuBarSkin,
Menu menu) |
Modifier and Type | Class and Description |
---|---|
private static class |
ContextMenuImpl.MenuImpl |
Modifier and Type | Field and Description |
---|---|
private ObservableList<Menu> |
MenuBar.menus
*
Instance variables *
*
|
private java.util.Collection<? extends Menu> |
MenuBarBuilder.menus
Deprecated.
|
private ReadOnlyObjectWrapper<Menu> |
MenuItem.parentMenu
This is the
Menu in which this MenuItem exists. |
Modifier and Type | Method and Description |
---|---|
Menu |
MenuBuilder.build()
Deprecated.
Make an instance of
Menu based on the properties set on this builder. |
Menu |
MenuItem.getParentMenu() |
Modifier and Type | Method and Description |
---|---|
ObservableList<Menu> |
MenuBar.getMenus()
The menus to show within this MenuBar.
|
ReadOnlyObjectProperty<Menu> |
MenuItem.parentMenuProperty() |
private ReadOnlyObjectWrapper<Menu> |
MenuItem.parentMenuPropertyImpl() |
Modifier and Type | Method and Description |
---|---|
void |
MenuBuilder.applyTo(Menu x)
Deprecated.
|
B |
MenuBarBuilder.menus(Menu... x)
Deprecated.
Add the given items to the List of items in the
menus property for the instance constructed by this builder. |
protected void |
MenuItem.setParentMenu(Menu value) |
Modifier and Type | Method and Description |
---|---|
B |
MenuBarBuilder.menus(java.util.Collection<? extends Menu> x)
Deprecated.
Add the given items to the List of items in the
menus property for the instance constructed by this builder. |
Constructor and Description |
---|
MenuBar(Menu... menus)
Creates a new MenuBar populated with the given menus.
|