java.lang.Object
javafx.scene.control.SkinBase<RangeSlider>
org.tquadrat.foundation.fx.control.skin.RangeSliderSkin
All Implemented Interfaces:
Skin<RangeSlider>

@ClassVersion(sourceVersion="$Id: RangeSliderSkin.java 1121 2024-03-16 16:51:23Z tquadrat $") @API(status=STABLE, since="0.4.6") public class RangeSliderSkin extends SkinBase<RangeSlider>
The skin for instances of RangeSlider.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: RangeSliderSkin.java 1121 2024-03-16 16:51:23Z tquadrat $
Since:
0.4.6
Inspired through:
ControlsFX Project
UML Diagram
UML Diagram for "org.tquadrat.foundation.fx.control.skin.RangeSliderSkin"

UML Diagram for "org.tquadrat.foundation.fx.control.skin.RangeSliderSkin"

UML Diagram for "org.tquadrat.foundation.fx.control.skin.RangeSliderSkin"
  • Field Details

  • Constructor Details

    • RangeSliderSkin

      public RangeSliderSkin(RangeSlider control)
      Creates a new instance of RangeSliderSkin.
      Parameters:
      control - The control for which this Skin should attach to.
  • Method Details

    • computeIncrement

      private final double computeIncrement()
      Calculates the increment/decrement value that is used by incrementValue() and decrementValue() to move the thumps.
      Returns:
      The increment value (that is also used decrement the position values for the thumbs).
    • computeMaxHeight

      protected final double computeMaxHeight(double width, double topInset, double rightInset, double bottomInset, double leftInset)
      Overrides:
      computeMaxHeight in class SkinBase<RangeSlider>
    • computeMaxWidth

      protected final double computeMaxWidth(double height, double topInset, double rightInset, double bottomInset, double leftInset)
      Overrides:
      computeMaxWidth in class SkinBase<RangeSlider>
    • computeMinHeight

      protected final double computeMinHeight(double width, double topInset, double rightInset, double bottomInset, double leftInset)
      Overrides:
      computeMinHeight in class SkinBase<RangeSlider>
    • computeMinWidth

      protected final double computeMinWidth(double height, double topInset, double rightInset, double bottomInset, double leftInset)
      Overrides:
      computeMinWidth in class SkinBase<RangeSlider>
    • computePrefHeight

      protected final double computePrefHeight(double width, double topInset, double rightInset, double bottomInset, double leftInset)
      Overrides:
      computePrefHeight in class SkinBase<RangeSlider>
    • computePrefWidth

      protected final double computePrefWidth(double height, double topInset, double rightInset, double bottomInset, double leftInset)
      Overrides:
      computePrefWidth in class SkinBase<RangeSlider>
    • confirmRange

      private void confirmRange()
      Adjusts the range bar's position after it was released.
    • decrementValue

      private final void decrementValue()
      Moves the selected thumb in the direction to the min value.
    • end

      private final void end()
      Responds to the END key.
    • getMaxMinusMinNoZero

      private final double getMaxMinusMinNoZero()
      Returns the difference between RangeSlider.getMax() and RangeSlider.getMin(), but if they have the same value, 1.0 is returned instead of 0.0 because otherwise the division where the result value can be used will return Double.NaN.
      Returns:
      The difference.
    • highThumbDragged

      private final void highThumbDragged(MouseEvent ignoredMouseEvent, double position)
      Updates the high value based on the new position of the high thumb after it was dragged with the mouse.
      Parameters:
      ignoredMouseEvent - The mouse event.
      position - The mouse position on the track with 0.0 being the start of the track and 1.0 being the end.
    • highThumbPressed

      private final void highThumbPressed(MouseEvent ignoredMouseEvent, double ignoredPosition)

      Prepares the dragging of the high thumb.

      When the high thumb is released, RangeSlider.highValueChangingProperty() is set to false.

      Parameters:
      ignoredMouseEvent - The mouse event.
      ignoredPosition - The new position.
    • highThumbReleased

      private final void highThumbReleased(MouseEvent mouseEvent)
      Adjusts the high value when the high thumb is released.
      Parameters:
      mouseEvent - The mouse event.
    • home

      private final void home()
      Responds to the HOME key.
    • incrementValue

      private final void incrementValue()
      Moves the selected thumb in the direction to the max value.
    • initHighThumb

      private final void initHighThumb()

      Initialises the high thumb.

      Needs to be called after initLowThumb() and before initRangeBar().

    • initLowThumb

      private final void initLowThumb()

      Initialises the low thumb.

      Needs to be called before initHighThumb().

    • initRangeBar

      private final void initRangeBar()

      Initialises the range bar.

      Needs to be called after initHighThumb().

    • isHorizontal

      private final boolean isHorizontal()
      Checks whether the orientation of the RangeSlider is horizontal.
      Returns:
      true if the orientation is Orientation.HORIZONTAL, false when it is Orientation.VERTICAL.
    • layoutChildren

      protected final void layoutChildren(double contentX, double contentY, double contentWidth, double contentHeight)
      Overrides:
      layoutChildren in class SkinBase<RangeSlider>
    • lowThumbDragged

      public final void lowThumbDragged(MouseEvent ignoredMouseEvent, double position)
      Updates the low value based on the new position of the low thumb after it was dragged with the mouse.
      Parameters:
      ignoredMouseEvent - The mouse event.
      position - The mouse position on the track with 0.0 being the start of the track and 1.0 being the end.
    • lowThumbPressed

      public void lowThumbPressed(MouseEvent ignoredMouseEvent, double ignoredPosition)

      Prepares the dragging of the low thumb.

      When the low thumb is released, RangeSlider.lowValueChangingProperty() is set to false.

      Parameters:
      ignoredMouseEvent - The mouse event.
      ignoredPosition - The new position.
    • lowThumbReleased

      public final void lowThumbReleased(MouseEvent mouseEvent)
      Adjusts the low value when the low thumb is released.
      Parameters:
      mouseEvent - The mouse event.
    • minTrackLength

      private final double minTrackLength()
      Calculates the minimum length for the track.
      Returns:
      The minimum track length.
    • moveRange

      private final void moveRange(double position)
      Sets the new positions after a move of the range bar.
      Parameters:
      position - The new position.
    • positionHighThumb

      private final void positionHighThumb()
      Called whenever either min, max or highValue has changed, so that high thumb's Node.setLayoutX(double) and Node.setLayoutY(double) is recomputed.
    • positionLowThumb

      private final void positionLowThumb()
      Called whenever either min, max or lowValue has changed, so that low thumb's Node.setLayoutX(double) and Node.setLayoutY(double) is recomputed.
    • rtl

      private final void rtl(RangeSlider node, Runnable rtlMethod, Runnable nonRtlMethod)
      Implements the inverted orientation.
      Parameters:
      node - A reference to the node.
      rtlMethod - The function that has to be used for an orientation from right to left.
      nonRtlMethod - The function that has to be used for an orientation from left to right.
    • setSelectedValue

      Set up a callback to indicate which thumb is currently selected (via enum).
      Parameters:
      callback - The callback.
    • setShowTickMarks

      private void setShowTickMarks(boolean ticksVisible, boolean labelsVisible)

      Shows tick marks and their labels.

      When ticks or labels change their visibility, we have to compute the new visibility and to add the necessary objects. After this method returns, we must be sure to add the high thumb and the range bar.

      Parameters:
      ticksVisible - true if the tick marks are visible, false if not.
      labelsVisible - true if the tick labels are visible, false if not.
    • snapValueToTicks

      private final double snapValueToTicks(double calculatedPosition)
      Adjusts the position of a thumb to the nearest tick mark.
      Parameters:
      calculatedPosition - The calculated raw position.
      Returns:
      The adjusted position.
    • trackPress

      private final void trackPress(MouseEvent ignoredMouseEvent, double position)
      Invoked by the RangeSlider's Skin implementation whenever a mouse press occurs on the "track" of the slider. This will cause the thumb to be moved by some amount.
      Parameters:
      ignoredMouseEvent - The mouse event.
      position - The relative mouse position on the track, with 0.0 being the start of the track and 1.0 being the end.