LayoutManager
, SwingConstants
MetalScrollBarUI
, SynthScrollBarUI
public class BasicScrollBarUI extends ScrollBarUI implements LayoutManager, SwingConstants
Modifier and Type | Class | Description |
---|---|---|
protected class |
BasicScrollBarUI.ArrowButtonListener |
Listener for cursor keys. |
protected class |
BasicScrollBarUI.ModelListener |
A listener to listen for model changes. |
class |
BasicScrollBarUI.PropertyChangeHandler |
Property change handler |
protected class |
BasicScrollBarUI.ScrollListener |
Listener for scrolling events initiated in the ScrollPane . |
protected class |
BasicScrollBarUI.TrackListener |
Track mouse drags. |
Modifier and Type | Field | Description |
---|---|---|
protected BasicScrollBarUI.ArrowButtonListener |
buttonListener |
Button listener |
protected JButton |
decrButton |
Decrement button |
protected static final int |
DECREASE_HIGHLIGHT |
Decrease highlight |
protected int |
decrGap |
Distance between the decrement button and the track. |
protected JButton |
incrButton |
Increment button |
protected static final int |
INCREASE_HIGHLIGHT |
Increase highlight |
protected int |
incrGap |
Distance between the increment button and the track. |
protected boolean |
isDragging |
Dragging |
protected Dimension |
maximumThumbSize |
Maximum thumb size |
protected Dimension |
minimumThumbSize |
Minimum thumb size |
protected BasicScrollBarUI.ModelListener |
modelListener |
Model listener |
protected static final int |
NO_HIGHLIGHT |
No highlight |
protected PropertyChangeListener |
propertyChangeListener |
Property change listener |
protected JScrollBar |
scrollbar |
Scrollbar |
protected int |
scrollBarWidth |
Hint as to what width (when vertical) or height (when horizontal) should be. |
protected BasicScrollBarUI.ScrollListener |
scrollListener |
Scroll listener |
protected Timer |
scrollTimer |
Scroll timer |
protected Color |
thumbColor |
Thumb color |
protected Color |
thumbDarkShadowColor |
Thumb dark shadow color |
protected Color |
thumbHighlightColor |
Thumb highlight color |
protected Color |
thumbLightShadowColor |
Thumb light shadow color |
protected Rectangle |
thumbRect |
Thumb rectangle |
protected Color |
trackColor |
Track color |
protected int |
trackHighlight |
Track highlight |
protected Color |
trackHighlightColor |
Track highlight color |
protected BasicScrollBarUI.TrackListener |
trackListener |
Track listener |
protected Rectangle |
trackRect |
Track rectangle |
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST
Constructor | Description |
---|---|
BasicScrollBarUI() |
Constructs a BasicScrollBarUI . |
Modifier and Type | Method | Description |
---|---|---|
void |
addLayoutComponent |
If the layout manager uses a per-component string, adds the component comp to the layout, associating it with the string specified by name . |
protected void |
configureScrollBarColors() |
Configures the scroll bar colors. |
protected BasicScrollBarUI.ArrowButtonListener |
createArrowButtonListener() |
Creates an arrow button listener. |
protected JButton |
createDecreaseButton |
Creates a decrease button. |
protected JButton |
createIncreaseButton |
Creates an increase button. |
protected BasicScrollBarUI.ModelListener |
createModelListener() |
Creates a model listener. |
protected PropertyChangeListener |
createPropertyChangeListener() |
Creates a property change listener. |
protected BasicScrollBarUI.ScrollListener |
createScrollListener() |
Creates a scroll listener. |
protected BasicScrollBarUI.TrackListener |
createTrackListener() |
Creates a track listener. |
static ComponentUI |
createUI |
Creates the UI. |
Dimension |
getMaximumSize |
Returns the specified component's maximum size appropriate for the look and feel. |
protected Dimension |
getMaximumThumbSize() |
Returns the largest acceptable size for the thumb. |
protected Dimension |
getMinimumThumbSize() |
Returns the smallest acceptable size for the thumb. |
Dimension |
getPreferredSize |
A vertical scrollbar's preferred width is the maximum of preferred widths of the (non null ) increment/decrement buttons, and the minimum width of the thumb. |
boolean |
getSupportsAbsolutePositioning() |
Indicates whether the user can absolutely position the thumb with a mouse gesture (usually the middle mouse button). |
protected Rectangle |
getThumbBounds() |
Return the current size/location of the thumb. |
protected Rectangle |
getTrackBounds() |
Returns the current bounds of the track, i.e. the space in between the increment and decrement buttons, less the insets. |
protected void |
installComponents() |
Installs the components. |
protected void |
installDefaults() |
Installs the defaults. |
protected void |
installKeyboardActions() |
Installs the keyboard actions. |
protected void |
installListeners() |
Installs the listeners. |
void |
installUI |
Installs the UI. |
boolean |
isThumbRollover() |
Returns true if the mouse is currently over the thumb. |
void |
layoutContainer |
Lays out the specified container. |
protected void |
layoutHScrollbar |
Lays out a horizontal scroll bar. |
protected void |
layoutVScrollbar |
Lays out a vertical scroll bar. |
Dimension |
minimumLayoutSize |
Calculates the minimum size dimensions for the specified container, given the components it contains. |
protected void |
paintDecreaseHighlight |
Paints the decrease highlight. |
protected void |
paintIncreaseHighlight |
Paints the increase highlight. |
protected void |
paintThumb |
Paints the thumb. |
protected void |
paintTrack |
Paints the track. |
Dimension |
preferredLayoutSize |
Calculates the preferred size dimensions for the specified container, given the components it contains. |
void |
removeLayoutComponent |
Removes the specified component from the layout. |
protected void |
scrollByBlock |
Scrolls by block. |
protected void |
scrollByUnit |
Scrolls by unit. |
protected void |
setThumbBounds |
Set the bounds of the thumb and force a repaint that includes the old thumbBounds and the new one. |
protected void |
setThumbRollover |
Sets whether or not the mouse is currently over the thumb. |
protected void |
uninstallComponents() |
Uninstalls the components. |
protected void |
uninstallDefaults() |
Uninstalls the defaults. |
protected void |
uninstallKeyboardActions() |
Uninstalls the keyboard actions. |
protected void |
uninstallListeners() |
Uninstall the listeners. |
void |
uninstallUI |
Uninstalls the UI. |
contains, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getMinimumSize, paint, update
protected Dimension minimumThumbSize
protected Dimension maximumThumbSize
protected Color thumbHighlightColor
protected Color thumbLightShadowColor
protected Color thumbDarkShadowColor
protected Color thumbColor
protected Color trackColor
protected Color trackHighlightColor
protected JScrollBar scrollbar
protected JButton incrButton
protected JButton decrButton
protected boolean isDragging
protected BasicScrollBarUI.TrackListener trackListener
protected BasicScrollBarUI.ArrowButtonListener buttonListener
protected BasicScrollBarUI.ModelListener modelListener
protected Rectangle thumbRect
protected Rectangle trackRect
protected int trackHighlight
protected static final int NO_HIGHLIGHT
protected static final int DECREASE_HIGHLIGHT
protected static final int INCREASE_HIGHLIGHT
protected BasicScrollBarUI.ScrollListener scrollListener
protected PropertyChangeListener propertyChangeListener
protected Timer scrollTimer
protected int scrollBarWidth
protected int incrGap
protected int decrGap
public BasicScrollBarUI()
BasicScrollBarUI
.public static ComponentUI createUI(JComponent c)
c
- the componentprotected void configureScrollBarColors()
public void installUI(JComponent c)
installUI
in class ComponentUI
c
- the componentpublic void uninstallUI(JComponent c)
uninstallUI
in class ComponentUI
c
- the componentprotected void installDefaults()
protected void installComponents()
protected void uninstallComponents()
protected void installListeners()
protected void installKeyboardActions()
protected void uninstallKeyboardActions()
protected void uninstallListeners()
protected void uninstallDefaults()
protected BasicScrollBarUI.TrackListener createTrackListener()
protected BasicScrollBarUI.ArrowButtonListener createArrowButtonListener()
protected BasicScrollBarUI.ModelListener createModelListener()
protected BasicScrollBarUI.ScrollListener createScrollListener()
protected PropertyChangeListener createPropertyChangeListener()
protected void setThumbRollover(boolean active)
active
- True indicates the thumb is currently active.public boolean isThumbRollover()
public Dimension getPreferredSize(JComponent c)
null
) increment/decrement buttons, and the minimum width of the thumb. The preferred height is the sum of the preferred heights of the same parts. The basis for the preferred size of a horizontal scrollbar is similar. The preferredSize
is only computed once, subsequent calls to this method just return a cached size.
getPreferredSize
in class ComponentUI
c
- the JScrollBar
that's delegating this method to uspublic Dimension getMaximumSize(JComponent c)
ComponentUI
null
is returned, the maximum size will be calculated by the component's layout manager instead (this is the preferred approach for any component with a specific layout manager installed). The default implementation of this method invokes getPreferredSize
and returns that value.getMaximumSize
in class ComponentUI
c
- The JScrollBar that's delegating this method to us.protected JButton createDecreaseButton(int orientation)
orientation
- the orientationprotected JButton createIncreaseButton(int orientation)
orientation
- the orientationprotected void paintDecreaseHighlight(Graphics g)
g
- the graphicsprotected void paintIncreaseHighlight(Graphics g)
g
- the graphicsprotected void paintTrack(Graphics g, JComponent c, Rectangle trackBounds)
g
- the graphicsc
- the componenttrackBounds
- the track boundsprotected void paintThumb(Graphics g, JComponent c, Rectangle thumbBounds)
g
- the graphicsc
- the componentthumbBounds
- the thumb boundsprotected Dimension getMinimumThumbSize()
Warning : the value returned by this method should not be be modified, it's a shared static constant.
protected Dimension getMaximumThumbSize()
getMinimumThumbSize
return the same value. Warning : the value returned by this method should not be be modified, it's a shared static constant.
public void addLayoutComponent(String name, Component child)
LayoutManager
comp
to the layout, associating it with the string specified by name
.addLayoutComponent
in interface LayoutManager
name
- the string to be associated with the componentchild
- the component to be addedpublic void removeLayoutComponent(Component child)
LayoutManager
removeLayoutComponent
in interface LayoutManager
child
- the component to be removedpublic Dimension preferredLayoutSize(Container scrollbarContainer)
LayoutManager
preferredLayoutSize
in interface LayoutManager
scrollbarContainer
- the container to be laid outpublic Dimension minimumLayoutSize(Container scrollbarContainer)
LayoutManager
minimumLayoutSize
in interface LayoutManager
scrollbarContainer
- the component to be laid outprotected void layoutVScrollbar(JScrollBar sb)
sb
- the scroll barprotected void layoutHScrollbar(JScrollBar sb)
sb
- the scroll barpublic void layoutContainer(Container scrollbarContainer)
LayoutManager
layoutContainer
in interface LayoutManager
scrollbarContainer
- the container to be laid outprotected void setThumbBounds(int x, int y, int width, int height)
x
- set the x location of the thumby
- set the y location of the thumbwidth
- set the width of the thumbheight
- set the height of the thumbprotected Rectangle getThumbBounds()
Warning : the value returned by this method should not be be modified, it's a reference to the actual rectangle, not a copy.
protected Rectangle getTrackBounds()
Warning : the value returned by this method should not be be modified, it's a reference to the actual rectangle, not a copy.
protected void scrollByBlock(int direction)
direction
- the direction to scrollprotected void scrollByUnit(int direction)
direction
- the direction to scrollpublic boolean getSupportsAbsolutePositioning()
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/swing/plaf/basic/BasicScrollBarUI.html