All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javafx.scene.control.Tab Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package javafx.scene.control;

import javafx.collections.ObservableSet;
import javafx.css.CssMetaData;
import javafx.beans.property.BooleanProperty;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.ObjectPropertyBase;
import javafx.beans.property.SimpleBooleanProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.css.PseudoClass;
import javafx.event.Event;
import javafx.event.EventDispatchChain;
import javafx.event.EventHandler;
import javafx.event.EventTarget;
import javafx.event.EventType;
import javafx.scene.Node;

import javafx.css.Styleable;
import com.sun.javafx.event.EventHandlerManager;

import java.lang.ref.WeakReference;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;

import javafx.beans.DefaultProperty;
import javafx.beans.InvalidationListener;
import javafx.beans.Observable;
import javafx.beans.property.BooleanPropertyBase;
import javafx.beans.property.ReadOnlyBooleanProperty;
import javafx.beans.property.ReadOnlyBooleanWrapper;
import javafx.beans.property.ReadOnlyObjectProperty;
import javafx.beans.property.ReadOnlyObjectWrapper;
import javafx.collections.ObservableMap;

/**
 * 

Tabs are placed within a {@link TabPane}, where each tab represents a single * 'page'.

*

Tabs can contain any {@link Node} such as UI controls or groups * of nodes added to a layout container.

*

When the user clicks * on a Tab in the TabPane the Tab content becomes visible to the user.

* @since JavaFX 2.0 */ @DefaultProperty("content") public class Tab implements EventTarget, Styleable { /*************************************************************************** * * * Constructors * * * **************************************************************************/ /** * Creates a tab with no title. */ public Tab() { this(null); } /** * Creates a tab with a text title. * * @param text The title of the tab. */ public Tab(String text) { setText(text); styleClass.addAll(DEFAULT_STYLE_CLASS); } /*************************************************************************** * * * Properties * * * **************************************************************************/ private StringProperty id; /** * Sets the id of this tab. This simple string identifier is useful for * finding a specific Tab within the {@code TabPane}. The default value is {@code null}. */ public final void setId(String value) { idProperty().set(value); } /** * The id of this tab. * * @return The id of the tab. */ @Override public final String getId() { return id == null ? null : id.get(); } /** * The id of this tab. */ public final StringProperty idProperty() { if (id == null) { id = new SimpleStringProperty(this, "id"); } return id; } private StringProperty style; /** * A string representation of the CSS style associated with this * tab. This is analogous to the "style" attribute of an * HTML element. Note that, like the HTML style attribute, this * variable contains style properties and values and not the * selector portion of a style rule. *

* Parsing this style might not be supported on some limited * platforms. It is recommended to use a standalone CSS file instead. * */ public final void setStyle(String value) { styleProperty().set(value); } /** * The CSS style string associated to this tab. * * @return The CSS style string associated to this tab. */ @Override public final String getStyle() { return style == null ? null : style.get(); } /** * The CSS style string associated to this tab. */ public final StringProperty styleProperty() { if (style == null) { style = new SimpleStringProperty(this, "style"); } return style; } private ReadOnlyBooleanWrapper selected; final void setSelected(boolean value) { selectedPropertyImpl().set(value); } /** *

Represents whether this tab is the currently selected tab, * To change the selected Tab use {@code tabPane.getSelectionModel().select()} *

*/ public final boolean isSelected() { return selected == null ? false : selected.get(); } /** * The currently selected tab. */ public final ReadOnlyBooleanProperty selectedProperty() { return selectedPropertyImpl().getReadOnlyProperty(); } private ReadOnlyBooleanWrapper selectedPropertyImpl() { if (selected == null) { selected = new ReadOnlyBooleanWrapper() { @Override protected void invalidated() { if (getOnSelectionChanged() != null) { Event.fireEvent(Tab.this, new Event(SELECTION_CHANGED_EVENT)); } } @Override public Object getBean() { return Tab.this; } @Override public String getName() { return "selected"; } }; } return selected; } private ReadOnlyObjectWrapper tabPane; final void setTabPane(TabPane value) { tabPanePropertyImpl().set(value); } /** *

A reference to the TabPane that contains this tab instance.

*/ public final TabPane getTabPane() { return tabPane == null ? null : tabPane.get(); } /** * The TabPane that contains this tab. */ public final ReadOnlyObjectProperty tabPaneProperty() { return tabPanePropertyImpl().getReadOnlyProperty(); } private ReadOnlyObjectWrapper tabPanePropertyImpl() { if (tabPane == null) { tabPane = new ReadOnlyObjectWrapper(this, "tabPane") { private WeakReference oldParent; @Override protected void invalidated() { if(oldParent != null && oldParent.get() != null) { oldParent.get().disabledProperty().removeListener(parentDisabledChangedListener); } updateDisabled(); TabPane newParent = get(); if (newParent != null) { newParent.disabledProperty().addListener(parentDisabledChangedListener); } oldParent = new WeakReference(newParent); super.invalidated(); } }; } return tabPane; } private final InvalidationListener parentDisabledChangedListener = new InvalidationListener() { @Override public void invalidated(Observable valueModel) { updateDisabled(); } }; private StringProperty text; /** *

Sets the text to show in the tab to allow the user to differentiate between * the function of each tab. The text is always visible *

*/ public final void setText(String value) { textProperty().set(value); } /** * The text shown in the tab. * * @return The text shown in the tab. */ public final String getText() { return text == null ? null : text.get(); } /** * The text shown in the tab. */ public final StringProperty textProperty() { if (text == null) { text = new SimpleStringProperty(this, "text"); } return text; } private ObjectProperty graphic; /** *

Sets the graphic to show in the tab to allow the user to differentiate * between the function of each tab. By default the graphic does not rotate * based on the TabPane.tabPosition value, but it can be set to rotate by * setting TabPane.rotateGraphic to true.

*/ public final void setGraphic(Node value) { graphicProperty().set(value); } /** * The graphic shown in the tab. * * @return The graphic shown in the tab. */ public final Node getGraphic() { return graphic == null ? null : graphic.get(); } /** * The graphic in the tab. * * @return The graphic in the tab. */ public final ObjectProperty graphicProperty() { if (graphic == null) { graphic = new SimpleObjectProperty(this, "graphic"); } return graphic; } private ObjectProperty content; /** *

The content to show within the main TabPane area. The content * can be any Node such as UI controls or groups of nodes added * to a layout container.

*/ public final void setContent(Node value) { contentProperty().set(value); } /** *

The content associated with the tab.

* * @return The content associated with the tab. */ public final Node getContent() { return content == null ? null : content.get(); } /** *

The content associated with the tab.

*/ public final ObjectProperty contentProperty() { if (content == null) { content = new SimpleObjectProperty(this, "content"); } return content; } private ObjectProperty contextMenu; /** *

Specifies the context menu to show when the user right-clicks on the tab. *

*/ public final void setContextMenu(ContextMenu value) { contextMenuProperty().set(value); } /** * The context menu associated with the tab. * @return The context menu associated with the tab. */ public final ContextMenu getContextMenu() { return contextMenu == null ? null : contextMenu.get(); } /** * The context menu associated with the tab. */ public final ObjectProperty contextMenuProperty() { if (contextMenu == null) { contextMenu = new SimpleObjectProperty(this, "contextMenu"); } return contextMenu; } private BooleanProperty closable; /** *

Sets {@code true} if the tab is closable. If this is set to {@code false}, * then regardless of the TabClosingPolicy, it will not be * possible for the user to close this tab. Therefore, when this * property is {@code false}, no 'close' button will be shown on the tab. * The default is {@code true}.

* */ public final void setClosable(boolean value) { closableProperty().set(value); } /** * Returns {@code true} if this tab is closable. * * @return {@code true} if the tab is closable. */ public final boolean isClosable() { return closable == null ? true : closable.get(); } /** * The closable state for this tab. */ public final BooleanProperty closableProperty() { if (closable == null) { closable = new SimpleBooleanProperty(this, "closable", true); } return closable; } /** *

Called when the tab becomes selected or unselected.

*/ public static final EventType SELECTION_CHANGED_EVENT = new EventType (Event.ANY, "SELECTION_CHANGED_EVENT"); private ObjectProperty> onSelectionChanged; /** * Defines a function to be called when a selection changed has occurred on the tab. */ public final void setOnSelectionChanged(EventHandler value) { onSelectionChangedProperty().set(value); } /** * The event handler that is associated with a selection on the tab. * * @return The event handler that is associated with a tab selection. */ public final EventHandler getOnSelectionChanged() { return onSelectionChanged == null ? null : onSelectionChanged.get(); } /** * The event handler that is associated with a selection on the tab. */ public final ObjectProperty> onSelectionChangedProperty() { if (onSelectionChanged == null) { onSelectionChanged = new ObjectPropertyBase>() { @Override protected void invalidated() { setEventHandler(SELECTION_CHANGED_EVENT, get()); } @Override public Object getBean() { return Tab.this; } @Override public String getName() { return "onSelectionChanged"; } }; } return onSelectionChanged; } /** *

Called when a user closes this tab. This is useful for freeing up memory.

*/ public static final EventType CLOSED_EVENT = new EventType(Event.ANY, "TAB_CLOSED"); private ObjectProperty> onClosed; /** * Defines a function to be called when the tab is closed. */ public final void setOnClosed(EventHandler value) { onClosedProperty().set(value); } /** * The event handler that is associated with the tab when the tab is closed. * * @return The event handler that is associated with the tab when the tab is closed. */ public final EventHandler getOnClosed() { return onClosed == null ? null : onClosed.get(); } /** * The event handler that is associated with the tab when the tab is closed. */ public final ObjectProperty> onClosedProperty() { if (onClosed == null) { onClosed = new ObjectPropertyBase>() { @Override protected void invalidated() { setEventHandler(CLOSED_EVENT, get()); } @Override public Object getBean() { return Tab.this; } @Override public String getName() { return "onClosed"; } }; } return onClosed; } private ObjectProperty tooltip; /** *

Specifies the tooltip to show when the user hovers over the tab.

*/ public final void setTooltip(Tooltip value) { tooltipProperty().setValue(value); } /** * The tooltip associated with this tab. * @return The tooltip associated with this tab. */ public final Tooltip getTooltip() { return tooltip == null ? null : tooltip.getValue(); } /** * The tooltip associated with this tab. */ public final ObjectProperty tooltipProperty() { if (tooltip == null) { tooltip = new SimpleObjectProperty(this, "tooltip"); } return tooltip; } private final ObservableList styleClass = FXCollections.observableArrayList(); private BooleanProperty disable; /** * Sets the disabled state of this tab. * * @param value the state to set this tab * * @defaultValue false * @since JavaFX 2.2 */ public final void setDisable(boolean value) { disableProperty().set(value); } /** * Returns {@code true} if this tab is disable. * @since JavaFX 2.2 */ public final boolean isDisable() { return disable == null ? false : disable.get(); } /** * Sets the disabled state of this tab. A disable tab is no longer interactive * or traversable, but the contents remain interactive. A disable tab * can be selected using {@link TabPane#getSelectionModel()}. * * @defaultValue false * @since JavaFX 2.2 */ public final BooleanProperty disableProperty() { if (disable == null) { disable = new BooleanPropertyBase(false) { @Override protected void invalidated() { updateDisabled(); } @Override public Object getBean() { return Tab.this; } @Override public String getName() { return "disable"; } }; } return disable; } private ReadOnlyBooleanWrapper disabled; private final void setDisabled(boolean value) { disabledPropertyImpl().set(value); } /** * Returns true when the {@code Tab} {@link #disableProperty disable} is set to * {@code true} or if the {@code TabPane} is disabled. * @since JavaFX 2.2 */ public final boolean isDisabled() { return disabled == null ? false : disabled.get(); } /** * Indicates whether or not this {@code Tab} is disabled. A {@code Tab} * will become disabled if {@link #disableProperty disable} is set to {@code true} on either * itself or if the {@code TabPane} is disabled. * * @defaultValue false * @since JavaFX 2.2 */ public final ReadOnlyBooleanProperty disabledProperty() { return disabledPropertyImpl().getReadOnlyProperty(); } private ReadOnlyBooleanWrapper disabledPropertyImpl() { if (disabled == null) { disabled = new ReadOnlyBooleanWrapper() { @Override public Object getBean() { return Tab.this; } @Override public String getName() { return "disabled"; } }; } return disabled; } private void updateDisabled() { setDisabled(isDisable() || (getTabPane() != null && getTabPane().isDisabled())); } /** * Called when there is an external request to close this {@code Tab}. * The installed event handler can prevent tab closing by consuming the * received event. * @since JavaFX 8.0 */ public static final EventType TAB_CLOSE_REQUEST_EVENT = new EventType (Event.ANY, "TAB_CLOSE_REQUEST_EVENT"); /** * Called when there is an external request to close this {@code Tab}. * The installed event handler can prevent tab closing by consuming the * received event. * @since JavaFX 8.0 */ private ObjectProperty> onCloseRequest; public final ObjectProperty> onCloseRequestProperty() { if (onCloseRequest == null) { onCloseRequest = new ObjectPropertyBase>() { @Override protected void invalidated() { setEventHandler(TAB_CLOSE_REQUEST_EVENT, get()); } @Override public Object getBean() { return Tab.this; } @Override public String getName() { return "onCloseRequest"; } }; } return onCloseRequest; } public EventHandler getOnCloseRequest() { if( onCloseRequest == null ) { return null; } return onCloseRequest.get(); } public void setOnCloseRequest(EventHandler value) { onCloseRequestProperty().set(value); } // --- Properties private static final Object USER_DATA_KEY = new Object(); // A map containing a set of properties for this Tab private ObservableMap properties; /** * Returns an observable map of properties on this Tab for use primarily * by application developers. * * @return an observable map of properties on this Tab for use primarily * by application developers * @since JavaFX 2.2 */ public final ObservableMap getProperties() { if (properties == null) { properties = FXCollections.observableMap(new HashMap()); } return properties; } /** * Tests if this Tab has properties. * @return true if this tab has properties. * @since JavaFX 2.2 */ public boolean hasProperties() { return properties != null && !properties.isEmpty(); } // --- UserData /** * Convenience method for setting a single Object property that can be * retrieved at a later date. This is functionally equivalent to calling * the getProperties().put(Object key, Object value) method. This can later * be retrieved by calling {@link Tab#getUserData()}. * * @param value The value to be stored - this can later be retrieved by calling * {@link Tab#getUserData()}. * @since JavaFX 2.2 */ public void setUserData(Object value) { getProperties().put(USER_DATA_KEY, value); } /** * Returns a previously set Object property, or null if no such property * has been set using the {@link Tab#setUserData(java.lang.Object)} method. * * @return The Object that was previously set, or null if no property * has been set or if null was set. * @since JavaFX 2.2 */ public Object getUserData() { return getProperties().get(USER_DATA_KEY); } /** * A list of String identifiers which can be used to logically group * Nodes, specifically for an external style engine. This variable is * analogous to the "class" attribute on an HTML element and, as such, * each element of the list is a style class to which this Node belongs. * * @see CSS3 class selectors */ @Override public ObservableList getStyleClass() { return styleClass; } private final EventHandlerManager eventHandlerManager = new EventHandlerManager(this); /** * @treatAsPrivate implementation detail * @deprecated This is an internal API that is not intended for use and will be removed in the next version */ @Override public EventDispatchChain buildEventDispatchChain(EventDispatchChain tail) { return tail.prepend(eventHandlerManager); } /** * @treatAsPrivate implementation detail * @deprecated This is an internal API that is not intended for use and will be removed in the next version */ protected void setEventHandler(EventType eventType, EventHandler eventHandler) { eventHandlerManager.setEventHandler(eventType, eventHandler); } /*************************************************************************** * * * Stylesheet Handling * * * **************************************************************************/ private static final String DEFAULT_STYLE_CLASS = "tab"; /** * {@inheritDoc} * @return "Tab" * @since JavaFX 8.0 */ @Override public String getTypeSelector() { return "Tab"; } /** * {@inheritDoc} * @return {@code getTabPane()} * @since JavaFX 8.0 */ @Override public Styleable getStyleableParent() { return getTabPane(); } /** * {@inheritDoc} * @since JavaFX 8.0 */ public final ObservableSet getPseudoClassStates() { return FXCollections.emptyObservableSet(); } /** * {@inheritDoc} * @since JavaFX 8.0 */ @Override public List> getCssMetaData() { return getClassCssMetaData(); } public static List> getClassCssMetaData() { return Collections.emptyList(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy