Package | Description |
---|---|
com.sun.javafx.scene.control | |
com.sun.javafx.scene.control.behavior | |
com.sun.javafx.scene.control.skin | |
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 | Method and Description |
---|---|
static void |
ControlAcceleratorSupport.addAcceleratorsIntoScene(ObservableList<MenuItem> items,
Tab anchor) |
static void |
ControlAcceleratorSupport.removeAcceleratorsFromScene(java.util.List<? extends MenuItem> items,
Tab anchor) |
Modifier and Type | Method and Description |
---|---|
boolean |
TabPaneBehavior.canCloseTab(Tab tab) |
void |
TabPaneBehavior.closeTab(Tab tab) |
void |
TabPaneBehavior.selectTab(Tab tab) |
Modifier and Type | Field and Description |
---|---|
private Tab |
TabPaneSkin.selectedTab |
private Tab |
TabPaneSkin.TabHeaderSkin.tab |
private Tab |
TabPaneSkin.TabContentRegion.tab |
(package private) Tab |
TabPaneSkin.TabMenuItem.tab |
Modifier and Type | Method and Description |
---|---|
Tab |
TabPaneSkin.TabHeaderSkin.getTab() |
Tab |
TabPaneSkin.TabContentRegion.getTab() |
Tab |
TabPaneSkin.TabMenuItem.getTab() |
Modifier and Type | Method and Description |
---|---|
private void |
TabPaneSkin.TabHeaderArea.addTab(Tab tab,
int addToIndex) |
private void |
TabPaneSkin.addTabContent(Tab tab) |
private TabPaneSkin.TabHeaderSkin |
TabPaneSkin.TabHeaderArea.getTabHeaderSkin(Tab tab) |
private void |
TabPaneSkin.TabHeaderSkin.removeListeners(Tab tab) |
private void |
TabPaneSkin.TabContentRegion.removeListeners(Tab tab) |
private void |
TabPaneSkin.TabHeaderArea.removeTab(Tab tab) |
private void |
TabPaneSkin.removeTabContent(Tab tab) |
private void |
TabPaneSkin.stopCurrentAnimation(Tab tab) |
Modifier and Type | Method and Description |
---|---|
private void |
TabPaneSkin.addTabs(java.util.List<? extends Tab> addedList,
int from) |
private void |
TabPaneSkin.removeTabs(java.util.List<? extends Tab> removedList) |
Constructor and Description |
---|
TabContentRegion(Tab tab) |
TabHeaderSkin(Tab tab) |
TabMenuItem(Tab tab) |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<SingleSelectionModel<Tab>> |
TabPane.selectionModel |
private SingleSelectionModel<Tab> |
TabPaneBuilder.selectionModel
Deprecated.
|
private ObservableList<Tab> |
TabPane.tabs |
private java.util.Collection<? extends Tab> |
TabPaneBuilder.tabs
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Tab |
TabBuilder.build()
Deprecated.
Make an instance of
Tab based on the properties set on this builder. |
private Tab |
TabPane.TabPaneSelectionModel.findNearestAvailableTab(int tabIndex,
boolean doSelect) |
protected Tab |
TabPane.TabPaneSelectionModel.getModelItem(int index) |
Modifier and Type | Method and Description |
---|---|
SingleSelectionModel<Tab> |
TabPane.getSelectionModel()
Gets the model used for tab selection.
|
ObservableList<Tab> |
TabPane.getTabs()
The tabs to display in this TabPane.
|
ObjectProperty<SingleSelectionModel<Tab>> |
TabPane.selectionModelProperty()
The selection model used for selecting tabs.
|
Modifier and Type | Method and Description |
---|---|
void |
TabBuilder.applyTo(Tab x)
Deprecated.
|
void |
TabPane.TabPaneSelectionModel.select(Tab tab) |
B |
TabPaneBuilder.tabs(Tab... x)
Deprecated.
Add the given items to the List of items in the
tabs property for the instance constructed by this builder. |
Modifier and Type | Method and Description |
---|---|
B |
TabPaneBuilder.selectionModel(SingleSelectionModel<Tab> x)
Deprecated.
Set the value of the
selectionModel property for the instance constructed by this builder. |
void |
TabPane.setSelectionModel(SingleSelectionModel<Tab> value)
Sets the model used for tab selection.
|
B |
TabPaneBuilder.tabs(java.util.Collection<? extends Tab> x)
Deprecated.
Add the given items to the List of items in the
tabs property for the instance constructed by this builder. |
Constructor and Description |
---|
TabPane(Tab... tabs)
Constructs a new TabPane with the given tabs set to show.
|