SpinnerBase
Displays a TextField where a value can by typed in, as well 'up' and 'down' buttons where the value can be adjusted stepwise. This base class doesn't define what stepwise
means. For example, IntSpinner has a IntSpinner.smallStep, therefore stepwise does not mean increment/decrement. The value of a spinner does not have to be Comparable, but is required for the subclass ComparableSpinner.
Inheritors
Properties
The base class Node has no children, so this is an empty list.
Functions
Converts em
units to LogicalPixels.
Each subclass of node can determine the minimum width it requires. This can be overridden on an ad-hoc basis using overrideMinHeight. The default implementation returns 0.
Each subclass of node can determine the minimum width it requires. This can be overridden on an ad-hoc basis using overrideMinWidth. The default implementation returns 0.
Each subclass of node can determine its preferred height. As most nodes are composed of smaller nodes, this is typically calculated using evalPrefWidth of the child nodes, with extra added for spacing, padding and borders.
Each subclass of node can determine its preferred width. As most nodes are composed of smaller nodes, this is typically calculated using evalPrefWidth of the child nodes, with extra added for spacing, padding and borders.