object Tooltip
- Alphabetic
- By Inheritance
- Tooltip
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply(string: String): Tooltip
Generates a Simple Tooltip with default properties from a text.
Generates a Simple Tooltip with default properties from a text.
- string
Tooltip's text.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
classCssMetaData: Buffer[CssMetaData[_ <: Styleable, _]]
The CssMetaData associated with this class, which may include the CssMetaData of its super classes.
The CssMetaData associated with this class, which may include the CssMetaData of its super classes.
- Since
8.0
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
install(node: Node, tooltip: Tooltip): Unit
Associates the given Tooltip with a given Node.
Associates the given Tooltip with a given Node. The tooltip can then behave similar to when it is set on any Control. A single tooltip can be associated with multiple nodes.
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
implicit
def
sfxTooltip2jfx(v: Tooltip): javafx.scene.control.Tooltip
Converts a ScalaFX Tooltip to its JavaFX counterpart
Converts a ScalaFX Tooltip to its JavaFX counterpart
- v
ScalaFX Tooltip
- returns
JavaFX Tooltip
-
implicit
def
stringToTooltip(string: String): Tooltip
Converts a String to a Simple Tooltip with default properties.
Converts a String to a Simple Tooltip with default properties.
- string
Tooltip's text.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
uninstall(node: Node, tooltip: Tooltip): Unit
Removes the association of the given Tooltip on a specified Node.
Removes the association of the given Tooltip on a specified Node. Hence hovering on the node will no longer result in showing of the tooltip.
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
- Deprecated
(Since version ) see corresponding Javadoc for more information.
-
def
install(node: javafx.scene.Node, tooltip: javafx.scene.control.Tooltip): Unit
Just to satisfy Spec tests.
Just to satisfy Spec tests.
- Annotations
- @deprecated
- Deprecated
(Since version 2.1) Use Tooltip.install(Node, Tooltip)
-
def
uninstall(node: javafx.scene.Node, tooltip: javafx.scene.control.Tooltip): Unit
Just to satisfy Spec tests.
Just to satisfy Spec tests.
- Annotations
- @deprecated
- Deprecated
(Since version 2.1) Use Tooltip.uninstall(Node, Tooltip)
ScalaFX is a UI DSL written within the Scala Language that sits on top of JavaFX 2.x and and JavaFX 8. This means that every ScalaFX application is also a valid Scala application. By extension it supports full interoperability with Java and can run anywhere the Java Virtual Machine (JVM) and JavaFX 2.0 or JavaFX 8 are supported.
Package Structure
ScalaFX package structure corresponds to JavaFX package structure, for instance
scalafx.animation
corresponds tojavafx.animation
.Example Usage
A basic ScalaFX application is created creating an object that is an instance of
JFXApp
. Following Java FX theatre metaphor, it contains astage
that contains ascene
. Astage
roughly corresponds to a window in a typical UI environment. Thescene
holds UI content presented to the user. In the example below, the content is a pane with a singlelabel
component.