/* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.scene.control; import javafx.beans.property.BooleanProperty; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleBooleanProperty; import javafx.beans.property.SimpleObjectProperty; import javafx.scene.Node; /** *

* A {@link MenuItem} that allows for arbitrary nodes to be embedded within it, * by assigning a {@link Node} to the {@link #contentProperty() content} property. * CustomMenuItem attempts to make arbitrary nodes * appear more natural in the Menu. For * example, you automatically get hover highlighting when the user hovers their * mouse over the node (or navigates to it using keyboard or other alternate means). *

* A useful property of this class is * {@link #hideOnClickProperty() hideOnClick}. This boolean specifies whether the CustomMenuItem * will be automatically hidden should the user click within the bounds of the * CustomMenuItem. * This is of particular use when the node inside this CustomMenuItem is a * control that requires user interaction, as by setting the hideOnClick * property to false means the user can interact with it without the menu hiding. * Note that by default hideOnClick is true. *

* An example of how to use CustomMenuItem is shown below.


CustomMenuItem customMenuItem = new CustomMenuItem(new Slider());
customMenuItem.setHideOnClick(false);
*

* If this CustomMenuItem, with the {@link Slider} within it, is placed in a * menu, you'll be presented with a slider that is horizontally centered when * the menu is visible, and interacting with the slider will not result in the * menu disappearing. *

* * @see MenuItem * @see Menu * @since JavaFX 2.0 */ public class CustomMenuItem extends MenuItem { /*************************************************************************** * * * Constructors * * * **************************************************************************/ /** * Creates a default CustomMenuItem instance. */ public CustomMenuItem() { this(null, true); } /** * Constructs a CustomMenuItem and initializes its content with the node specified. * @param node to be embedded inside this CustomMenuItem */ public CustomMenuItem(Node node) { this(node, true); } /** * Constructs a CustomMenuItem and sets the content to the node specified. * @param node to be embedded inside this CustomMenuItem * @param hideOnClick if false the menu will not hide when the user interacts with the node. */ public CustomMenuItem(Node node, boolean hideOnClick) { getStyleClass().add(DEFAULT_STYLE_CLASS); setContent(node); setHideOnClick(hideOnClick); } /*************************************************************************** * * * Properties * * * **************************************************************************/ /** * The node to display within this CustomMenuItem. */ private ObjectProperty content; public final void setContent(Node value) { contentProperty().set(value); } public final Node getContent() { return content == null ? null : content.get(); } public final ObjectProperty contentProperty() { if (content == null) { content = new SimpleObjectProperty(this, "content"); } return content; } /** * If true, this menu item, and all visible menus, will be hidden when this * menu item is clicked on. * * @defaultValue true */ private BooleanProperty hideOnClick; public final void setHideOnClick(boolean value) { hideOnClickProperty().set(value); } public final boolean isHideOnClick() { return hideOnClick == null ? true : hideOnClick.get(); } public final BooleanProperty hideOnClickProperty() { if (hideOnClick == null) { hideOnClick = new SimpleBooleanProperty(this, "hideOnClick", true); } return hideOnClick; } /*************************************************************************** * * * Stylesheet Handling * * * **************************************************************************/ private static final String DEFAULT_STYLE_CLASS = "custom-menu-item"; }