java.lang.Object
javax.swing.plaf.ComponentUI
javax.swing.plaf.SliderUI
javax.swing.plaf.basic.BasicSliderUI
- Direct Known Subclasses:
MetalSliderUI
,SynthSliderUI
A Basic L&F implementation of SliderUI.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclass
As of Java 2 platform v1.3 this undocumented class is no longer used.class
Data model listener.class
Listener for resizing events.class
Focus-change listener.class
A property change handler.class
Scroll-event listener.class
Track mouse movements. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ChangeListener
Change listenerprotected ComponentListener
Component listenerprotected Rectangle
Content rectangleprotected Insets
Focus insetsprotected FocusListener
Focus listenerprotected Rectangle
Focus rectangleprotected Insets
Inset cacheprotected Rectangle
Label rectangleprotected boolean
Left-to-right cachestatic final int
Maximum scrollstatic final int
Minimum scrollstatic final int
Negative scrollstatic final int
Positive scrollprotected PropertyChangeListener
Property change listenerprotected BasicSliderUI.ScrollListener
Scroll listenerprotected Timer
Scroll timerprotected JSlider
Sliderprotected Rectangle
Thumb rectangleprotected Rectangle
Tick rectangleprotected int
The distance that the track is from the side of the controlprotected BasicSliderUI.TrackListener
Track listenerprotected Rectangle
Track rectangle -
Constructor Summary
ConstructorsConstructorDescriptionConstructs aBasicSliderUI
.Constructs aBasicSliderUI
. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
Calculates the content rectangle.protected void
Calculates the focus rectangle.protected void
Calculates the geometry.protected void
Calculates the label rectangle.protected void
Calculates the thumb location.protected void
Calculates the thumb size rectangle.protected void
Calculates the tick rectangle.protected void
Calculates the track buffer.protected void
Calculates the track rectangle.protected ChangeListener
createChangeListener
(JSlider slider) Creates a change listener.protected ComponentListener
createComponentListener
(JSlider slider) Creates a composite listener.protected FocusListener
createFocusListener
(JSlider slider) Creates a focus listener.protected PropertyChangeListener
createPropertyChangeListener
(JSlider slider) Creates a property change listener.protected BasicSliderUI.ScrollListener
createScrollListener
(JSlider slider) Creates a scroll listener.protected BasicSliderUI.TrackListener
createTrackListener
(JSlider slider) Creates a track listener.static ComponentUI
Creates a UI.protected boolean
Draws inverted.int
getBaseline
(JComponent c, int width, int height) Returns the baseline.Returns an enum indicating how the baseline of the component changes as the size changes.protected Color
Returns the focus color.protected int
Returns the height of the highest value label.protected int
Returns the height of the lowest value label.protected int
Returns the height of the tallest label.protected Integer
Returns the biggest value that has an entry in the label table.protected Component
Returns the label that corresponds to the lowest slider value in the label table.protected Color
Returns the highlight color.protected Integer
Returns the smallest value that has an entry in the label table.protected Component
Returns the label that corresponds to the highest slider value in the label table.Returns the maximum size.Returns the minimum horizontal size.Returns the minimum size.Returns the minimum vertical size.Returns the preferred horizontal size.Returns the preferred size.Returns the preferred vertical size.protected Color
Returns the shadow color.protected Dimension
Returns the thumb size.protected int
Gets the height of the tick area for horizontal sliders and the width of the tick area for vertical sliders.protected int
Returns the width of the highest value label.protected int
Returns the width of the lowest value label.protected int
Returns the width of the widest label.protected void
installDefaults
(JSlider slider) Installs the defaults.protected void
installKeyboardActions
(JSlider slider) Installs keyboard actions.protected void
installListeners
(JSlider slider) Installs listeners.void
Installs a UI.protected boolean
Returns true if the user is dragging the slider.protected boolean
Returns true if all the labels from the label table have the same baseline.void
Paints focus.protected void
paintHorizontalLabel
(Graphics g, int value, Component label) Called for every label in the label table.void
Paints the labels.protected void
paintMajorTickForHorizSlider
(Graphics g, Rectangle tickBounds, int x) Paints major tick for horizontal slider.protected void
paintMajorTickForVertSlider
(Graphics g, Rectangle tickBounds, int y) Paints major tick for vertical slider.protected void
paintMinorTickForHorizSlider
(Graphics g, Rectangle tickBounds, int x) Paints minor tick for horizontal slider.protected void
paintMinorTickForVertSlider
(Graphics g, Rectangle tickBounds, int y) Paints minor tick for vertical slider.void
Paints the thumb.void
Paints ticks.void
Paints track.protected void
paintVerticalLabel
(Graphics g, int value, Component label) Called for every label in the label table.protected void
Recalculates if the insets have changed.protected void
Recalculates if the orientation has changed.void
scrollByBlock
(int direction) Scrolls by block.void
scrollByUnit
(int direction) Scrolls by unit.protected void
scrollDueToClickInTrack
(int dir) This function is called when a mousePressed was detected in the track, not in the thumb.void
setThumbLocation
(int x, int y) Sets the thumb location.protected void
uninstallDefaults
(JSlider slider) Uninstalls the defaults.protected void
uninstallKeyboardActions
(JSlider slider) Uninstalls keyboard actions.protected void
uninstallListeners
(JSlider slider) Uninstalls listeners.void
Uninstalls a UI.int
valueForXPosition
(int xPos) Returns the value at the x position.int
valueForYPosition
(int yPos) Returns the value at the y position.protected int
xPositionForValue
(int value) Returns the x position for a value.protected int
yPositionForValue
(int value) Returns the y position for a value.protected int
yPositionForValue
(int value, int trackY, int trackHeight) Returns the y location for the specified value.Methods declared in class javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, paint, update
-
Field Details
-
POSITIVE_SCROLL
public static final int POSITIVE_SCROLLPositive scroll- See Also:
-
NEGATIVE_SCROLL
public static final int NEGATIVE_SCROLLNegative scroll- See Also:
-
MIN_SCROLL
public static final int MIN_SCROLLMinimum scroll- See Also:
-
MAX_SCROLL
public static final int MAX_SCROLLMaximum scroll- See Also:
-
scrollTimer
Scroll timer -
slider
Slider -
focusInsets
Focus insets -
insetCache
Inset cache -
leftToRightCache
protected boolean leftToRightCacheLeft-to-right cache -
focusRect
Focus rectangle -
contentRect
Content rectangle -
labelRect
Label rectangle -
tickRect
Tick rectangle -
trackRect
Track rectangle -
thumbRect
Thumb rectangle -
trackBuffer
protected int trackBufferThe distance that the track is from the side of the control -
trackListener
Track listener -
changeListener
Change listener -
componentListener
Component listener -
focusListener
Focus listener -
scrollListener
Scroll listener -
propertyChangeListener
Property change listener
-
-
Constructor Details
-
BasicSliderUI
public BasicSliderUI()Constructs aBasicSliderUI
. -
BasicSliderUI
Constructs aBasicSliderUI
.- Parameters:
b
- a slider
-
-
Method Details
-
getShadowColor
Returns the shadow color.- Returns:
- the shadow color
-
getHighlightColor
Returns the highlight color.- Returns:
- the highlight color
-
getFocusColor
Returns the focus color.- Returns:
- the focus color
-
isDragging
protected boolean isDragging()Returns true if the user is dragging the slider.- Returns:
- true if the user is dragging the slider
- Since:
- 1.5
-
createUI
Creates a UI.- Parameters:
b
- a component- Returns:
- a UI
-
installUI
Installs a UI.- Overrides:
installUI
in classComponentUI
- Parameters:
c
- a component- See Also:
-
uninstallUI
Uninstalls a UI.- Overrides:
uninstallUI
in classComponentUI
- Parameters:
c
- a component- See Also:
-
installDefaults
Installs the defaults.- Parameters:
slider
- a slider
-
uninstallDefaults
Uninstalls the defaults.- Parameters:
slider
- a slider
-
createTrackListener
Creates a track listener.- Parameters:
slider
- a slider- Returns:
- a track listener
-
createChangeListener
Creates a change listener.- Parameters:
slider
- a slider- Returns:
- a change listener
-
createComponentListener
Creates a composite listener.- Parameters:
slider
- a slider- Returns:
- a composite listener
-
createFocusListener
Creates a focus listener.- Parameters:
slider
- a slider- Returns:
- a focus listener
-
createScrollListener
-