Class ColorSliderUI
java.lang.Object
javax.swing.plaf.ComponentUI
javax.swing.plaf.SliderUI
javax.swing.plaf.basic.BasicSliderUI
org.pushingpixels.substance.internal.contrib.randelshofer.quaqua.colorchooser.ColorSliderUI
- All Implemented Interfaces:
TransitionAwareUI
A UI delegate for color sliders. The track of the slider visualizes how
changing the value of the slider affects the color.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclass
class
Track mouse movements.Nested classes/interfaces inherited from class javax.swing.plaf.basic.BasicSliderUI
BasicSliderUI.ActionScroller, BasicSliderUI.ChangeHandler, BasicSliderUI.ComponentHandler, BasicSliderUI.FocusHandler, BasicSliderUI.PropertyChangeHandler, BasicSliderUI.ScrollListener, BasicSliderUI.TrackListener
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ColorSliderModel
protected Integer
protected StateTransitionTracker
Listener for transition animations.Fields inherited from class javax.swing.plaf.basic.BasicSliderUI
changeListener, componentListener, contentRect, focusInsets, focusListener, focusRect, insetCache, labelRect, leftToRightCache, MAX_SCROLL, MIN_SCROLL, NEGATIVE_SCROLL, POSITIVE_SCROLL, propertyChangeListener, scrollListener, scrollTimer, slider, thumbRect, tickRect, trackBuffer, trackListener, trackRect
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
protected void
protected void
protected PropertyChangeListener
createPropertyChangeListener
(JSlider slider) protected BasicSliderUI.TrackListener
createTrackListener
(JSlider slider) static ComponentUI
protected Icon
protected Dimension
protected int
Gets the height of the tick area for horizontal sliders and the width of the tick area for vertical sliders.Returns the model for tracking the transitions.protected void
installDefaults
(JSlider slider) protected void
installListeners
(JSlider slider) boolean
isInside
(MouseEvent me) Checks whether the mouse position of the specified event lies inside the area of the component designated for transition effects.void
paintColorTrack
(Graphics g, int x, int y, int width, int height, int buffer) void
protected void
paintMajorTickForHorizSlider
(Graphics g, Rectangle tickBounds, int x) protected void
paintMajorTickForVertSlider
(Graphics g, Rectangle tickBounds, int y) protected void
paintMinorTickForHorizSlider
(Graphics g, Rectangle tickBounds, int x) protected void
paintMinorTickForVertSlider
(Graphics g, Rectangle tickBounds, int y) void
void
void
protected void
uninstallListeners
(JSlider slider) Methods inherited from class javax.swing.plaf.basic.BasicSliderUI
calculateContentRect, calculateFocusRect, calculateGeometry, calculateLabelRect, calculateThumbSize, calculateTrackBuffer, createChangeListener, createComponentListener, createFocusListener, createScrollListener, drawInverted, getBaseline, getBaselineResizeBehavior, getFocusColor, getHeightOfHighValueLabel, getHeightOfLowValueLabel, getHeightOfTallestLabel, getHighestValue, getHighestValueLabel, getHighlightColor, getLowestValue, getLowestValueLabel, getMaximumSize, getMinimumSize, getPreferredSize, getShadowColor, getWidthOfHighValueLabel, getWidthOfLowValueLabel, getWidthOfWidestLabel, installKeyboardActions, installUI, isDragging, labelsHaveSameBaselines, paint, paintHorizontalLabel, paintLabels, paintVerticalLabel, recalculateIfInsetsChanged, recalculateIfOrientationChanged, scrollByBlock, scrollByUnit, scrollDueToClickInTrack, setThumbLocation, uninstallDefaults, uninstallKeyboardActions, uninstallUI, valueForXPosition, valueForYPosition, xPositionForValue, yPositionForValue, yPositionForValue
Methods inherited from class javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, update
-
Field Details
-
componentIndex
-
colorSliderModel
-
stateTransitionTracker
Listener for transition animations.
-
-
Constructor Details
-
ColorSliderUI
Creates a new instance.
-
-
Method Details
-
createUI
-
installDefaults
- Overrides:
installDefaults
in classBasicSliderUI
-
installListeners
- Overrides:
installListeners
in classBasicSliderUI
-
uninstallListeners
- Overrides:
uninstallListeners
in classBasicSliderUI
-
getThumbSize
- Overrides:
getThumbSize
in classBasicSliderUI
-
getPreferredHorizontalSize
- Overrides:
getPreferredHorizontalSize
in classBasicSliderUI
-
getPreferredVerticalSize
- Overrides:
getPreferredVerticalSize
in classBasicSliderUI
-
getMinimumHorizontalSize
- Overrides:
getMinimumHorizontalSize
in classBasicSliderUI
-
getMinimumVerticalSize
- Overrides:
getMinimumVerticalSize
in classBasicSliderUI
-
calculateThumbLocation
protected void calculateThumbLocation()- Overrides:
calculateThumbLocation
in classBasicSliderUI
-
getThumbIcon
-
paintThumb
- Overrides:
paintThumb
in classBasicSliderUI
-
paintTrack
- Overrides:
paintTrack
in classBasicSliderUI
-
paintTicks
- Overrides:
paintTicks
in classBasicSliderUI
-
paintMajorTickForHorizSlider
- Overrides:
paintMajorTickForHorizSlider
in classBasicSliderUI
-
paintMinorTickForHorizSlider
- Overrides:
paintMinorTickForHorizSlider
in classBasicSliderUI
-
paintMinorTickForVertSlider
- Overrides:
paintMinorTickForVertSlider
in classBasicSliderUI
-
paintMajorTickForVertSlider
- Overrides:
paintMajorTickForVertSlider
in classBasicSliderUI
-
paintFocus
- Overrides:
paintFocus
in classBasicSliderUI
-
paintColorTrack
-
calculateTrackRect
protected void calculateTrackRect()- Overrides:
calculateTrackRect
in classBasicSliderUI
-
calculateTickRect
protected void calculateTickRect()- Overrides:
calculateTickRect
in classBasicSliderUI
-
getTickLength
protected int getTickLength()Gets the height of the tick area for horizontal sliders and the width of the tick area for vertical sliders. BasicSliderUI uses the returned value to determine the tick area rectangle. If you want to give your ticks some room, make this larger than you need and paint your ticks away from the sides in paintTicks().- Overrides:
getTickLength
in classBasicSliderUI
-
createPropertyChangeListener
- Overrides:
createPropertyChangeListener
in classBasicSliderUI
-
createTrackListener
- Overrides:
createTrackListener
in classBasicSliderUI
-
getTransitionTracker
Description copied from interface:TransitionAwareUI
Returns the model for tracking the transitions.- Specified by:
getTransitionTracker
in interfaceTransitionAwareUI
- Returns:
- Model for tracking the transitions.
-
isInside
Description copied from interface:TransitionAwareUI
Checks whether the mouse position of the specified event lies inside the area of the component designated for transition effects.- Specified by:
isInside
in interfaceTransitionAwareUI
- Parameters:
me
- Mouse event.- Returns:
true
if the mouse position of the specified event lies inside the area of the component designated for transition effects,false
otherwise.
-