java.lang.Object
javafx.stage.Window
javafx.stage.PopupWindow
javafx.scene.control.PopupControl
javafx.scene.control.Tooltip
- All Implemented Interfaces:
- Styleable,- EventTarget,- Skinnable
Tooltips are common UI elements which are typically used for showing
 additional information about a Node in the scenegraph when the Node is
 hovered over by the mouse. Any Node can show a tooltip. In most cases a
 Tooltip is created and its 
text property is modified
 to show plain text to the user. However, a Tooltip is able to show within it
 an arbitrary scenegraph of nodes - this is done by creating the scenegraph
 and setting it inside the Tooltip graphic
 property.
 You use the following approach to set a Tooltip on any node:
 Rectangle rect = new Rectangle(0, 0, 100, 100);
 Tooltip t = new Tooltip("A Square");
 Tooltip.install(rect, t);
 This tooltip will then participate with the typical tooltip semantics (i.e.
 appearing on hover, etc). Note that the Tooltip does not have to be
 uninstalled: it will be garbage collected when it is not referenced by any
 Node. It is possible to manually uninstall the tooltip, however.
 A single tooltip can be installed on multiple target nodes or multiple controls.
Because most Tooltips are shown on UI controls, there is special API for all controls to make installing a Tooltip less verbose. The example below shows how to create a tooltip for a Button control:
 Button button = new Button("Hover Over Me");
 button.setTooltip(new Tooltip("Tooltip for Button"));
 
- Since:
- JavaFX 2.0
- 
Property SummaryPropertiesTypePropertyDescriptionfinal ReadOnlyBooleanPropertyTypically, the tooltip is "activated" when the mouse moves over a Control.final ObjectProperty<ContentDisplay>Specifies the positioning of the graphic relative to the text.final ObjectProperty<Font>The default font to use for text in the Tooltip.final ObjectProperty<Node>An optional icon for the Tooltip.final DoublePropertyThe amount of space between the graphic and textfinal ObjectProperty<Duration>The duration in which to continue showing the tooltip after the mouse has left the node.final ObjectProperty<Duration>The delay between the mouse entering the hovered node and when the associated tooltip will be shown to the user.final ObjectProperty<Duration>The duration that the tooltip should remain showing for until it is no longer visible to the user.final ObjectProperty<TextAlignment>Specifies the behavior for lines of text when text is multiline.final ObjectProperty<OverrunStyle>Specifies the behavior to use if the text of theTooltipexceeds the available space for rendering the text.final StringPropertyThe text to display in the tooltip.final BooleanPropertyIf a run of text exceeds the width of the Tooltip, then this variable indicates whether the text should wrap onto another line.Properties declared in class javafx.scene.control.PopupControlid, maxHeight, maxWidth, minHeight, minWidth, prefHeight, prefWidth, skin, styleProperties declared in class javafx.stage.PopupWindowanchorLocation, anchorX, anchorY, autoFix, autoHide, consumeAutoHidingEvents, hideOnEscape, onAutoHide, ownerNode, ownerWindowProperties declared in class javafx.stage.WindoweventDispatcher, focused, forceIntegerRenderScale, height, onCloseRequest, onHidden, onHiding, onShowing, onShown, opacity, outputScaleX, outputScaleY, renderScaleX, renderScaleY, scene, showing, width, x, y
- 
Nested Class SummaryNested classes/interfaces declared in class javafx.stage.PopupWindowPopupWindow.AnchorLocation
- 
Field SummaryFields declared in class javafx.scene.control.PopupControlbridge, USE_COMPUTED_SIZE, USE_PREF_SIZE
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal ReadOnlyBooleanPropertyTypically, the tooltip is "activated" when the mouse moves over a Control.final ObjectProperty<ContentDisplay>Specifies the positioning of the graphic relative to the text.final ObjectProperty<Font>The default font to use for text in the Tooltip.static List<CssMetaData<? extends Styleable,?>> final ContentDisplayGets the value of the property contentDisplay.List<CssMetaData<? extends Styleable,?>> The CssMetaData of this Styleable.final FontgetFont()Gets the value of the property font.final NodeGets the value of the property graphic.final doubleGets the value of the property graphicTextGap.final DurationGets the value of the property hideDelay.final DurationGets the value of the property showDelay.final DurationGets the value of the property showDuration.final StringgetText()Gets the value of the property text.final TextAlignmentGets the value of the property textAlignment.final OverrunStyleGets the value of the property textOverrun.final ObjectProperty<Node>An optional icon for the Tooltip.final DoublePropertyThe amount of space between the graphic and textfinal ObjectProperty<Duration>The duration in which to continue showing the tooltip after the mouse has left the node.static voidfinal booleanGets the value of the property activated.final booleanGets the value of the property wrapText.final voidsetContentDisplay(ContentDisplay value) Sets the value of the property contentDisplay.final voidSets the value of the property font.final voidsetGraphic(Node value) Sets the value of the property graphic.final voidsetGraphicTextGap(double value) Sets the value of the property graphicTextGap.final voidsetHideDelay(Duration hideDelay) Sets the value of the property hideDelay.final voidsetShowDelay(Duration showDelay) Sets the value of the property showDelay.final voidsetShowDuration(Duration showDuration) Sets the value of the property showDuration.final voidSets the value of the property text.final voidsetTextAlignment(TextAlignment value) Sets the value of the property textAlignment.final voidsetTextOverrun(OverrunStyle value) Sets the value of the property textOverrun.final voidsetWrapText(boolean value) Sets the value of the property wrapText.final ObjectProperty<Duration>The delay between the mouse entering the hovered node and when the associated tooltip will be shown to the user.final ObjectProperty<Duration>The duration that the tooltip should remain showing for until it is no longer visible to the user.final ObjectProperty<TextAlignment>Specifies the behavior for lines of text when text is multiline.final ObjectProperty<OverrunStyle>Specifies the behavior to use if the text of theTooltipexceeds the available space for rendering the text.final StringPropertyThe text to display in the tooltip.static voidfinal BooleanPropertyIf a run of text exceeds the width of the Tooltip, then this variable indicates whether the text should wrap onto another line.Methods declared in class javafx.scene.control.PopupControlcreateDefaultSkin, getId, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getPrefHeight, getPrefWidth, getPseudoClassStates, getSkin, getStyle, getStyleableParent, getStyleClass, getTypeSelector, idProperty, maxHeight, maxHeightProperty, maxWidth, maxWidthProperty, minHeight, minHeightProperty, minWidth, minWidthProperty, prefHeight, prefHeightProperty, prefWidth, prefWidthProperty, pseudoClassStateChanged, setId, setMaxHeight, setMaxSize, setMaxWidth, setMinHeight, setMinSize, setMinWidth, setPrefHeight, setPrefSize, setPrefWidth, setSkin, setStyle, skinProperty, stylePropertyMethods declared in class javafx.stage.PopupWindowanchorLocationProperty, anchorXProperty, anchorYProperty, autoFixProperty, autoHideProperty, consumeAutoHidingEventsProperty, getAnchorLocation, getAnchorX, getAnchorY, getConsumeAutoHidingEvents, getOnAutoHide, getOwnerNode, getOwnerWindow, hide, hideOnEscapeProperty, isAutoFix, isAutoHide, isHideOnEscape, onAutoHideProperty, ownerNodeProperty, ownerWindowProperty, setAnchorLocation, setAnchorX, setAnchorY, setAutoFix, setAutoHide, setConsumeAutoHidingEvents, setHideOnEscape, setOnAutoHide, setScene, show, show, showMethods declared in class javafx.stage.WindowaddEventFilter, addEventHandler, buildEventDispatchChain, centerOnScreen, eventDispatcherProperty, fireEvent, focusedProperty, forceIntegerRenderScaleProperty, getEventDispatcher, getHeight, getOnCloseRequest, getOnHidden, getOnHiding, getOnShowing, getOnShown, getOpacity, getOutputScaleX, getOutputScaleY, getProperties, getRenderScaleX, getRenderScaleY, getScene, getUserData, getWidth, getWindows, getX, getY, hasProperties, heightProperty, isFocused, isForceIntegerRenderScale, isShowing, onCloseRequestProperty, onHiddenProperty, onHidingProperty, onShowingProperty, onShownProperty, opacityProperty, outputScaleXProperty, outputScaleYProperty, removeEventFilter, removeEventHandler, renderScaleXProperty, renderScaleYProperty, requestFocus, sceneProperty, setEventDispatcher, setEventHandler, setForceIntegerRenderScale, setHeight, setOnCloseRequest, setOnHidden, setOnHiding, setOnShowing, setOnShown, setOpacity, setRenderScaleX, setRenderScaleY, setUserData, setWidth, setX, setY, show, showingProperty, sizeToScene, widthProperty, xProperty, yPropertyMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface javafx.css.StyleablegetStyleableNode
- 
Property Details- 
textThe text to display in the tooltip. If the text is set to null, an empty string will be displayed, despite the value being null.- See Also:
 
- 
textAlignmentSpecifies the behavior for lines of text when text is multiline. UnlikecontentDisplaywhich affects the graphic and text, this setting only affects multiple lines of text relative to the text bounds.
- 
textOverrunSpecifies the behavior to use if the text of theTooltipexceeds the available space for rendering the text.- See Also:
 
- 
wrapTextIf a run of text exceeds the width of the Tooltip, then this variable indicates whether the text should wrap onto another line.- See Also:
 
- 
fontThe default font to use for text in the Tooltip. If the Tooltip's text is rich text then this font may or may not be used depending on the font information embedded in the rich text, but in any case where a default font is required, this font will be used.- See Also:
 
- 
showDelayThe delay between the mouse entering the hovered node and when the associated tooltip will be shown to the user. The default delay is 1000ms.- Default value:
- 1000ms
- Since:
- 9
- See Also:
 
- 
showDurationThe duration that the tooltip should remain showing for until it is no longer visible to the user. If the mouse leaves the control before the showDuration finishes, then the tooltip will remain showing for the duration specified in thehideDelayProperty(), even if the remaining time of the showDuration is less than the hideDelay duration. The default value is 5000ms.- Default value:
- 5000ms
- Since:
- 9
- See Also:
 
- 
hideDelayThe duration in which to continue showing the tooltip after the mouse has left the node. Once this time has elapsed the tooltip will hide. The default value is 200ms.- Default value:
- 200ms
- Since:
- 9
- See Also:
 
- 
graphicAn optional icon for the Tooltip. This can be positioned relative to the text by using thecontent displayproperty. The node specified for this variable cannot appear elsewhere in the scene graph, otherwise theIllegalArgumentExceptionis thrown. See the class description ofNodefor more detail.- See Also:
 
- 
contentDisplaySpecifies the positioning of the graphic relative to the text.
- 
graphicTextGapThe amount of space between the graphic and text- See Also:
 
- 
activatedTypically, the tooltip is "activated" when the mouse moves over a Control. There is usually some delay between when the Tooltip becomes "activated" and when it is actually shown. The details (such as the amount of delay, etc) is left to the Skin implementation.- See Also:
 
 
- 
- 
Constructor Details- 
Tooltippublic Tooltip()Creates a tooltip with an empty string for its text.
- 
TooltipCreates a tooltip with the specified text.- Parameters:
- text- A text string for the tooltip.
 
 
- 
- 
Method Details- 
installAssociates the givenTooltipwith the givenNode. The tooltip can then behave similar to when it is set on anyControl. A single tooltip can be associated with multiple nodes.- Parameters:
- node- the node
- t- the tooltip
- See Also:
 
- 
uninstallRemoves the association of the givenTooltipon the specifiedNode. Hence hovering on the node will no longer result in showing of the tooltip.- Parameters:
- node- the node
- t- the tooltip
- See Also:
 
- 
textPropertyThe text to display in the tooltip. If the text is set to null, an empty string will be displayed, despite the value being null.- See Also:
 
- 
setTextSets the value of the property text.- Property description:
- The text to display in the tooltip. If the text is set to null, an empty string will be displayed, despite the value being null.
 
- 
getTextGets the value of the property text.- Property description:
- The text to display in the tooltip. If the text is set to null, an empty string will be displayed, despite the value being null.
 
- 
textAlignmentPropertySpecifies the behavior for lines of text when text is multiline. UnlikecontentDisplaywhich affects the graphic and text, this setting only affects multiple lines of text relative to the text bounds.
- 
setTextAlignmentSets the value of the property textAlignment.- Property description:
- Specifies the behavior for lines of text when text is multiline.
 Unlike contentDisplaywhich affects the graphic and text, this setting only affects multiple lines of text relative to the text bounds.
 
- 
getTextAlignmentGets the value of the property textAlignment.- Property description:
- Specifies the behavior for lines of text when text is multiline.
 Unlike contentDisplaywhich affects the graphic and text, this setting only affects multiple lines of text relative to the text bounds.
 
- 
textOverrunPropertySpecifies the behavior to use if the text of theTooltipexceeds the available space for rendering the text.- See Also:
 
- 
setTextOverrunSets the value of the property textOverrun.- Property description:
- Specifies the behavior to use if the text of the Tooltipexceeds the available space for rendering the text.
 
- 
getTextOverrunGets the value of the property textOverrun.- Property description:
- Specifies the behavior to use if the text of the Tooltipexceeds the available space for rendering the text.
 
- 
wrapTextPropertyIf a run of text exceeds the width of the Tooltip, then this variable indicates whether the text should wrap onto another line.- See Also:
 
- 
setWrapTextpublic final void setWrapText(boolean value) Sets the value of the property wrapText.- Property description:
- If a run of text exceeds the width of the Tooltip, then this variable indicates whether the text should wrap onto another line.
 
- 
isWrapTextpublic final boolean isWrapText()Gets the value of the property wrapText.- Property description:
- If a run of text exceeds the width of the Tooltip, then this variable indicates whether the text should wrap onto another line.
 
- 
fontPropertyThe default font to use for text in the Tooltip. If the Tooltip's text is rich text then this font may or may not be used depending on the font information embedded in the rich text, but in any case where a default font is required, this font will be used.- See Also:
 
- 
setFontSets the value of the property font.- Property description:
- The default font to use for text in the Tooltip. If the Tooltip's text is rich text then this font may or may not be used depending on the font information embedded in the rich text, but in any case where a default font is required, this font will be used.
 
- 
getFontGets the value of the property font.- Property description:
- The default font to use for text in the Tooltip. If the Tooltip's text is rich text then this font may or may not be used depending on the font information embedded in the rich text, but in any case where a default font is required, this font will be used.
 
- 
showDelayPropertyThe delay between the mouse entering the hovered node and when the associated tooltip will be shown to the user. The default delay is 1000ms.- Default value:
- 1000ms
- Since:
- 9
- See Also:
 
- 
setShowDelaySets the value of the property showDelay.- Property description:
- The delay between the mouse entering the hovered node and when the associated tooltip will be shown to the user. The default delay is 1000ms.
- Default value:
- 1000ms
- Since:
- 9
 
- 
getShowDelayGets the value of the property showDelay.- Property description:
- The delay between the mouse entering the hovered node and when the associated tooltip will be shown to the user. The default delay is 1000ms.
- Default value:
- 1000ms
- Since:
- 9
 
- 
showDurationPropertyThe duration that the tooltip should remain showing for until it is no longer visible to the user. If the mouse leaves the control before the showDuration finishes, then the tooltip will remain showing for the duration specified in thehideDelayProperty(), even if the remaining time of the showDuration is less than the hideDelay duration. The default value is 5000ms.- Default value:
- 5000ms
- Since:
- 9
- See Also:
 
- 
setShowDurationSets the value of the property showDuration.- Property description:
- The duration that the tooltip should remain showing for until it is no longer visible to the user.
 If the mouse leaves the control before the showDuration finishes, then the tooltip will remain showing
 for the duration specified in the hideDelayProperty(), even if the remaining time of the showDuration is less than the hideDelay duration. The default value is 5000ms.
- Default value:
- 5000ms
- Since:
- 9
 
- 
getShowDurationGets the value of the property showDuration.- Property description:
- The duration that the tooltip should remain showing for until it is no longer visible to the user.
 If the mouse leaves the control before the showDuration finishes, then the tooltip will remain showing
 for the duration specified in the hideDelayProperty(), even if the remaining time of the showDuration is less than the hideDelay duration. The default value is 5000ms.
- Default value:
- 5000ms
- Since:
- 9
 
- 
hideDelayPropertyThe duration in which to continue showing the tooltip after the mouse has left the node. Once this time has elapsed the tooltip will hide. The default value is 200ms.- Default value:
- 200ms
- Since:
- 9
- See Also:
 
- 
setHideDelaySets the value of the property hideDelay.- Property description:
- The duration in which to continue showing the tooltip after the mouse has left the node. Once this time has elapsed the tooltip will hide. The default value is 200ms.
- Default value:
- 200ms
- Since:
- 9
 
- 
getHideDelayGets the value of the property hideDelay.- Property description:
- The duration in which to continue showing the tooltip after the mouse has left the node. Once this time has elapsed the tooltip will hide. The default value is 200ms.
- Default value:
- 200ms
- Since:
- 9
 
- 
graphicPropertyAn optional icon for the Tooltip. This can be positioned relative to the text by using thecontent displayproperty. The node specified for this variable cannot appear elsewhere in the scene graph, otherwise theIllegalArgumentExceptionis thrown. See the class description ofNodefor more detail.- See Also:
 
- 
setGraphicSets the value of the property graphic.- Property description:
- An optional icon for the Tooltip. This can be positioned relative to the
 text by using the content displayproperty. The node specified for this variable cannot appear elsewhere in the scene graph, otherwise theIllegalArgumentExceptionis thrown. See the class description ofNodefor more detail.
 
- 
getGraphicGets the value of the property graphic.- Property description:
- An optional icon for the Tooltip. This can be positioned relative to the
 text by using the content displayproperty. The node specified for this variable cannot appear elsewhere in the scene graph, otherwise theIllegalArgumentExceptionis thrown. See the class description ofNodefor more detail.
 
- 
contentDisplayPropertySpecifies the positioning of the graphic relative to the text.
- 
setContentDisplaySets the value of the property contentDisplay.- Property description:
- Specifies the positioning of the graphic relative to the text.
 
- 
getContentDisplayGets the value of the property contentDisplay.- Property description:
- Specifies the positioning of the graphic relative to the text.
 
- 
graphicTextGapPropertyThe amount of space between the graphic and text- See Also:
 
- 
setGraphicTextGappublic final void setGraphicTextGap(double value) Sets the value of the property graphicTextGap.- Property description:
- The amount of space between the graphic and text
 
- 
getGraphicTextGappublic final double getGraphicTextGap()Gets the value of the property graphicTextGap.- Property description:
- The amount of space between the graphic and text
 
- 
isActivatedpublic final boolean isActivated()Gets the value of the property activated.- Property description:
- Typically, the tooltip is "activated" when the mouse moves over a Control. There is usually some delay between when the Tooltip becomes "activated" and when it is actually shown. The details (such as the amount of delay, etc) is left to the Skin implementation.
 
- 
activatedPropertyTypically, the tooltip is "activated" when the mouse moves over a Control. There is usually some delay between when the Tooltip becomes "activated" and when it is actually shown. The details (such as the amount of delay, etc) is left to the Skin implementation.- See Also:
 
- 
getClassCssMetaData- Returns:
- The CssMetaData associated with this class, which may include the CssMetaData of its superclasses.
- Since:
- JavaFX 8.0
 
- 
getCssMetaDataThe CssMetaData of this Styleable. This may be returned as an unmodifiable list.- Specified by:
- getCssMetaDatain interface- Styleable
- Overrides:
- getCssMetaDatain class- PopupControl
- Returns:
- the CssMetaData
- Since:
- JavaFX 8.0
 
 
-