Module org.tquadrat.foundation.fx
Class TimeSliderSkin
- All Implemented Interfaces:
Skin<TimeSlider>
@ClassVersion(sourceVersion="$Id: TimeSliderSkin.java 1121 2024-03-16 16:51:23Z tquadrat $")
@API(status=STABLE,
since="0.4.6")
public class TimeSliderSkin
extends SkinBase<TimeSlider>
The default skin for instances of
TimeSlider
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: TimeSliderSkin.java 1121 2024-03-16 16:51:23Z tquadrat $
- Since:
- 0.4.6
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.fx.control.skin.TimeSliderSkin"
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate final class
TheStringConverter.toString(Object)
method of this implementation ofStringConverter
takes a number representing the number of seconds since the beginning of the epoch, converts it to an instance ofOffsetDateTime
, takes the time portion of it and converts that to aString
. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final RangeSlider
TheRangeSlider
instance that does the work for theTimeSlider
.static final double
Nearly 24h in seconds: 86399.0. -
Constructor Summary
ConstructorsConstructorDescriptionTimeSliderSkin
(TimeSlider control) Creates a new instance ofTimeSliderSkin
. -
Method Summary
Modifier and TypeMethodDescriptionprivate final ZonedDateTime
composeZonedDateTime
(LocalDate day, OffsetTime time, ZoneId timeZone) Composes an instance ofZonedDateTime
from the given components.private final OffsetTime
convertSecondsToOffsetTime
(long seconds) Convert the givenlong
value, representing the seconds since the start of the epoch, to an instance ofOffsetTime
.private final double
convertZonedDateTimeToSeconds
(ZonedDateTime dateTime) Converts the givenZonedDateTime
to seconds since the start of the epoch.private final double
convertZonedDateTimeToSeconds
(ReadOnlyObjectProperty<ZonedDateTime> dateTimeProperty) Converts theZonedDateTime
value of the givenObjectProperty
to seconds since the start of the epoch.Methods inherited from 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
-
Field Details
-
TWENTY_FOUR_HOURS
Nearly 24h in seconds: 86399.0.- See Also:
-
m_Content
TheRangeSlider
instance that does the work for theTimeSlider
.
-
-
Constructor Details
-
TimeSliderSkin
Creates a new instance ofTimeSliderSkin
.- Parameters:
control
- The reference for the control.
-
-
Method Details
-
composeZonedDateTime
Composes an instance ofZonedDateTime
from the given components.- Parameters:
day
- The day.time
- The time.timeZone
- The time zone.- Returns:
- The zoned date time instance.
-
convertZonedDateTimeToSeconds
Converts the givenZonedDateTime
to seconds since the start of the epoch.- Parameters:
dateTime
- The time and date.- Returns:
- The seconds since the epoch.
-
convertZonedDateTimeToSeconds
private final double convertZonedDateTimeToSeconds(ReadOnlyObjectProperty<ZonedDateTime> dateTimeProperty) Converts theZonedDateTime
value of the givenObjectProperty
to seconds since the start of the epoch.- Parameters:
dateTimeProperty
- The property with the time and date.- Returns:
- The seconds since the epoch.
-
convertSecondsToOffsetTime
Convert the givenlong
value, representing the seconds since the start of the epoch, to an instance ofOffsetTime
.- Parameters:
seconds
- The seconds.- Returns:
- The offset time.
-