java.lang.Object
- All Implemented Interfaces:
Skin<ComboBoxBase<LocalDate>>
Default skin implementation for the
DatePicker
control.- Since:
- 9
- See Also:
-
Constructor Summary
ConstructorDescriptionDatePickerSkin
(DatePicker control) Creates a new DatePickerSkin instance, installing the necessary child nodes into the Controlchildren
list, as well as the necessary input mappings for handling key, mouse, etc events. -
Method Summary
Modifier and TypeMethodDescriptionprotected StringConverter<LocalDate>
Subclasses are responsible for getting the converter.This method should return a Node that will be positioned within the ComboBox 'button' area.protected TextField
Subclasses are responsible for getting the editor.This method should return the Node that will be displayed when the user clicks on the ComboBox 'button' area.Methods declared in class javafx.scene.control.skin.ComboBoxPopupControl
hide, show
Methods declared in class javafx.scene.control.SkinBase
computeBaselineOffset, computeMaxHeight, computeMaxWidth, computeMinHeight, computeMinWidth, computePrefHeight, computePrefWidth, consumeMouseEvents, dispose, executeAccessibleAction, getChildren, getClassCssMetaData, getCssMetaData, getNode, getSkinnable, layoutChildren, layoutInArea, layoutInArea, layoutInArea, positionInArea, positionInArea, pseudoClassStateChanged, queryAccessibleAttribute, registerChangeListener, registerInvalidationListener, registerListChangeListener, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapPosition, snapPositionX, snapPositionY, snapSize, snapSizeX, snapSizeY, snapSpace, snapSpaceX, snapSpaceY, unregisterChangeListeners, unregisterInvalidationListeners, unregisterListChangeListeners
-
Constructor Details
-
DatePickerSkin
Creates a new DatePickerSkin instance, installing the necessary child nodes into the Controlchildren
list, as well as the necessary input mappings for handling key, mouse, etc events.- Parameters:
control
- The control that this skin should be installed onto.
-
-
Method Details
-
getPopupContent
This method should return the Node that will be displayed when the user clicks on the ComboBox 'button' area.- Specified by:
getPopupContent
in classComboBoxPopupControl<LocalDate>
- Returns:
- the Node that will be displayed when the user clicks on the ComboBox 'button' area
-
getEditor
Subclasses are responsible for getting the editor. This will be removed in FX 9 when the editor property is moved up to ComboBoxBase with JDK-8130354 Note: ComboBoxListViewSkin should return null if editable is false, even if the ComboBox does have an editor set.- Specified by:
getEditor
in classComboBoxPopupControl<LocalDate>
- Returns:
- the editor
-
getConverter
Subclasses are responsible for getting the converter. This will be removed in FX 9 when the converter property is moved up to ComboBoxBase with JDK-8130354.- Specified by:
getConverter
in classComboBoxPopupControl<LocalDate>
- Returns:
- the string converter
-
getDisplayNode
This method should return a Node that will be positioned within the ComboBox 'button' area.- Specified by:
getDisplayNode
in classComboBoxBaseSkin<LocalDate>
- Returns:
- the node that will be positioned within the ComboBox 'button' area
-