Scrolling
Contents:
Scrollbar
Scrolling An Image
The Adjustable Interface
ScrollPane
This chapter describes how Java deals with scrolling. AWT provides two means for scrolling. The first is the fairly primitive Scrollbar
object. It really provides only the means to read a value from a slider setting. Anything else is your responsibility: if you want to display the value of the setting (for example, if you're using the scrollbar as a volume control) or want to change the display (if you're using scrollbars to control an area that's too large to display), you have to do it yourself. The Scrollbar
reports scrolling actions through the standard event mechanisms; it is up to the developer to handle those events and perform the scrolling.
Unlike other components, which generate an ACTION_EVENT
when something exciting happens, the Scrollbar
generates five events: SCROLL_LINE_UP
, SCROLL_LINE_DOWN
, SCROLL_PAGE_UP
, SCROLL_PAGE_DOWN
, and SCROLL_ABSOLUTE
. In Java 1.0, none of these events trigger a default event handler like the action()
method. To work with them, you must override the handleEvent()
method. With Java 1.1, you handle scrolling events by registering an AdjustmentListener
with the Scrollbar.addAdjustmentListener()
method; when adjustment events occur, the listener's adjustmentValueChanged()
method is called.
Release 1.1 of AWT also includes a ScrollPane
container object; it is a response to one of the limitations of AWT 1.0. A ScrollPane
is like a Panel
, but it has scrollbars and scrolling built in. In this sense, it's like TextArea
, which contains its own scrollbars. You could use a ScrollPane
to implement a drawing pad that could cover an arbitrarily large area. This saves you the burden of implementing scrolling yourself: generating scrollbars, handling their events, and figuring out how to redisplay the screen accordingly.
Both Scrollbar
and ScrollPane
take advantage of the Adjustable
interface. Adjustable
defines the common scrolling activities of the two classes. The Scrollbar
class implements Adjustable
; a ScrollPane
has two methods that return an Adjustable
object, one for each scrollbar. Currently, you can use the ScrollPane
's "adjustables" to find out the scrollbar settings in each direction. You can't change the settings or register AdjustmentListener
s; the appropriate methods exist, but they don't do anything. It's not clear whether this is appropriate behavior or a bug (remember, an interface only lists methods that must be present but doesn't require them to do anything); it may change in a later release.
Scrollbar
Scrollbars come in two flavors: horizontal and vertical. Although there are several methods for setting the page size, scrollbar range (minimum and maximum values), and so on, basically all you can do is get and set the scrollbar's value. Scrollbars don't contain any area to display their value, though if you want one, you could easily attach a label.
To work with a Scrollbar
, you need to understand the pieces from which it is built. Figure 11.1 identifies each of the pieces. At both ends are arrows, which are used to change the Scrollbar
value the default amount (one unit) in the direction selected. The paging areas are used to change the Scrollbar
value one page (ten units by default) at a time in the direction selected. The slider can be moved to set the scrollbar to an arbitrary value within the available range.
Figure 11.1: Scrollbar elements
Scrollbar Methods
ConstantsThere are two direction specifiers for Scrollbar
. The direction tells the Scrollbar
which way to orient itself. They are used in the constructors, as a parameter to setOrientation()
, and as the return value for the getOrientation()
method.
- public final static int HORIZONTAL
HORIZONTAL
is the constant for horizontal orientation.- public final static int VERTICAL
VERTICAL
is the constant for vertical orientation.
- public Scrollbar (int orientation, int value, int visible, int minimum, int maximum)
- The
Scrollbar
constructor creates aScrollbar
with a direction oforientation
and initial value ofvalue
.visible
is the size of the slider.minimum
andmaximum
are the range of values that theScrollbar
can be. Iforientation
is notHORIZONTAL
orVERTICAL
, the constructor throws the run-time exceptionIllegalArgumentException
. Ifmaximum
is below the value ofminimum
, the scrollbar's minimum and maximum values are both set tominimum
. Ifvalue
is outside the range of the scrollbar, it is set to the limit it exceeded. The default line scrolling amount is one. The default paging amount is ten.If you are using the scrollbar to control a visual object,
visible
should be set to the amount of a displayed object that is on the screen at one time, relative to the entire size of the object (i.e., relative to the scrollbar's range:maximum
-minimum
). Some platforms ignore this parameter and set the scrollbar to a fixed size. - public Scrollbar (int orientation)
- This constructor for
Scrollbar
creates aScrollbar
with the direction oforientation
. In Java 1.0, the initial settings forvalue
,visible
,minimum
, andmaximum
are 0. In Java 1.1, the default value forvisible
is 10, and the default formaximum
is 100; the other values default to 0. Iforientation
is notHORIZONTAL
orVERTICAL
, the constructor throws the run-time exceptionIllegalArgumentException
. This constructor is helpful if you want to reserve space for theScrollbar
on the screen, to be configured later. You would then use thesetValues()
method to configure the scrollbar. - public Scrollbar ()
- This constructor creates a
VERTICAL
Scrollbar
. In Java 1.0, the initial settings forvalue
,visible
,minimum
, andmaximum
are 0. In Java 1.1, the default value forvisible
is 10, and the default formaximum
is 100; the other values default to 0. You would then use thesetValues()
method to configure the scrollbar.
Figure 11.2 shows both vertical and horizontal scrollbars. It also demonstrates a problem you'll run into if you're not careful. If not constrained by the LayoutManager
, scrollbars can get very fat. The result is rarely pleasing. The solution is to place scrollbars in layout managers that restrict width for vertical scrollbars or height for horizontal ones. The side regions (i.e., everything except the center) of a border layout are ideal. In the long term, the solution will be scrollbars that give you their maximum size and layout managers that observe the maximum size.
Figure 11.2: Vertical and horizontal scrollbars
Adjustable Methods
- public int getOrientation ()
- The
getOrientation()
method returns the current orientation of the scrollbar: eitherScrollbar.HORIZONTAL
orScrollbar.VERTICAL
. - public synchronized void setOrientation (int orientation)
- The
setOrientation()
method changes the orientation of the scrollbar toorientation
, which must be eitherScrollbar.HORIZONTAL
orScrollbar.VERTICAL
. Iforientation
is notHORIZONTAL
orVERTICAL
, this method throws the run-time exceptionIllegalArgumentException
. It was not possible to change the orientation of a scrollbar prior to Java 1.1. - public int getVisibleAmount ()
public int getVisible () - The
getVisibleAmount()
method gets thevisible
setting of theScrollbar
. If the scrollbar'sContainer
is resized, thevisible
setting is not automatically changed.getVisible()
is the Java 1.0 name for this method. - public synchronized void setVisibleAmount (int amount)
- The
setVisibleAmount()
method changes the currentvisible
setting of theScrollbar
toamount
. - public int getValue ()
- The
getValue()
method is probably the most frequently called method ofScrollbar
. It returns the current value of the scrollbar queried. - public synchronized void setValue (int value)
- The
setValue()
method changes the value of the scrollbar tovalue
. Ifvalue
exceeds a scrollbar limit, the scrollbar's new value is set to that limit. In Java 1.1, this method is synchronized; it was not in earlier versions. - public int getMinimum ()
- The
getMinimum()
method returns the current minimum setting for the scrollbar. - public synchronized void setMinimum (int minimum)
- The
setMinimum()
method changes theScrollbar
's minimum value tominimum
. The current setting for theScrollbar
may change tominimum
ifminimum
increases abovegetValue()
. - public int getMaximum ()
- The
getMaximum()
method returns the current maximum setting for the scrollbar. - public synchronized void setMaximum (int maximum)
- The
setMaximum()
method changes the maximum value of theScrollbar
tomaximum
. The current setting for theScrollbar
may change tomaximum
ifmaximum
decreases belowgetValue()
. - public synchronized void setValues (int value, int visible, int minimum, int maximum)
- The
setValues()
method changes thevalue
,visible
,minimum
, andmaximum
settings all at once. In Java 1.0.2, separate methods do not exist for changingvisible
,minimum
, ormaximum
. The scrollbar's value is set tovalue
, visible tovisible
, minimum tominimum
, and maximum tomaximum
. Ifmaximum
is below the value ofminimum
, it is set tominimum
. Ifvalue
is outside the range of the scrollbar, it is set to the limit it exceeded. In Java 1.1, this method is synchronized; it was not in earlier versions. - public int getUnitIncrement ()
public int getLineIncrement () - The
getUnitIncrement()
method returns the current line increment. This is the amount the scrollbar will scroll if the user clicks on one of the scrollbar's arrows.getLineIncrement()
is the Java 1.0 name for this method. - public void setUnitIncrement (int amount)
public void setLineIncrement (int amount) - The
setUnitIncrement()
method changes the line increment amount toamount
.setLineIncrement()
is the Java 1.0 name for this method.Changing the line increment amount was not possible in Java 1.0.2. This method acted like it returned successfully, and
getLineIncrement()
returned the new value, but theScrollbar
changed its value by only one (the default) when you clicked on one of the arrows. However, you could work around this defect by explicitly handling theSCROLL_LINE_UP
andSCROLL_LINE_DOWN
events: get the correct line increment, adjust the display appropriately, and then set callsetValue()
to correct the scrollbar's value. This workaround is not needed in Java 1.1. - public int getBlockIncrement ()
public int getPageIncrement () - The
getBlockIncrement()
method returns the current paging increment. This is the amount the scrollbar will scroll if the user clicks between the slider and one of the scrollbar's arrows.getPageIncrement()
is the Java 1.0 name for this method. - public void setBlockIncrement (int amount)
public void setPageIncrement (int amount) - The
setBlockIncrement()
method changes the paging increment amount toamount
.setPageIncrement()
is the Java 1.0 name for this method.Changing the paging increment amount was not possible in Java 1.0.2. This method acts like it returns successfully, and
getPageIncrement()
returns the new value, but theScrollbar
changes its value only by 10 (the default) when you click on one of the paging areas. However, you can work around this defect by explicitly handling theSCROLL_PAGE_UP
andSCROLL_PAGE_DOWN
events: get the correct page increment, adjust the display appropriately, and then set callsetValue()
to correct the scrollbar's value. This workaround is not necessary in Java 1.1.
- public synchronized void addNotify ()
- The
addNotify()
method creates theScrollbar
's peer. If you override this method, callsuper.addNotify()
first. You will then be able to do everything you need with the information about the newly created peer. - protected String paramString ()
Scrollbar
doesn't have its owntoString()
method; when you call thetoString()
method of aScrollbar
, you are actually calling the methodComponent.toString()
. This in turn callsparamString()
, which builds the string to display. For aScrollbar
,paramString()
puts the scrollbar's value, visibility, minimum, maximum, and direction into the string. In Java 1.0, there is a minor bug in the output. Instead of displaying the scrollbar'svisible
setting (an integer),paramString()
displays the component'svisible
setting (a boolean). (This is corrected in Java 1.1.) The followingString
is the result of callingtoString()
for a horizontalScrollbar
that hasn't been configured yet:
java.awt.Scrollbar[0,0,0x0,invalid,val=0,vis=true,min=0,max=0,horz]
Scrollbar Events
With the 1.0 event model, scrollbars generate five kinds of events in response to user interaction: SCROLL_LINE_UP
, SCROLL_LINE_DOWN
, SCROLL_PAGE_UP
, SCROLL_PAGE_DOWN
, and SCROLL_ABSOLUTE
. The event that occurs depends on what the user did, as shown in Table 11.1; the event type is specified in the id
field of the Event
object passed to handleEvent()
. However, as a developer, you often do not care which of these five events happened. You care only about the scrollbar's new value, which is always passed as the arg
field of the Event
object.
Event Type (Event.id) | Event Meaning |
---|---|
SCROLL_ABSOLUTE
| User drags slider. |
SCROLL_LINE_DOWN
| User presses down arrow. |
SCROLL_LINE_UP
| User presses up arrow. |
SCROLL_PAGE_DOWN
| User selects down paging area. |
SCROLL_PAGE_UP
| User selects up paging area. |
Because scrollbar events do not trigger any default event handlers (like action()
), it is necessary to override the handleEvent()
method to deal with them. Unless your version of handleEvent()
deals with all conceivable events, you must ensure that the original handleEvent()
method is called. The simplest way is to have the return statement call super.handleEvent()
.
Most handleEvent()
methods first identify the type of event that occurred. The following two code blocks demonstrate different ways of checking for the Scrollbar
events.
if ((e.id == Event.SCROLL_LINE_UP) || (e.id == Event.SCROLL_LINE_DOWN) || (e.id == Event.SCROLL_PAGE_UP) || (e.id == Event.SCROLL_PAGE_DOWN) || (e.id == Event.SCROLL_ABSOLUTE)) { // Then determine which Scrollbar was selected and act upon it }
Or more simply:
if (e.target instanceof Scrollbar) { // Then determine which Scrollbar was selected and act upon it. }
Although the second code block is simpler, the first is the better choice because it is more precise. For example, what would happen if mouse events are passed to scrollbars? Different Java platforms differ most in the types of events passed to different objects; Netscape Navigator 3.0 for Windows sends MOUSE_ENTER
, MOUSE_EXIT
, and MOUSE_MOVE
events to the Scrollbar
.[1] The second code block executes for all the mouse events--in fact, any event coming from a Scrollbar
. Therefore, it executes much more frequently (there can be many MOUSE_MOVE
events), leading to poor interactive performance.
[1]
MOUSE_UP
,MOUSE_DOWN
, andMOUSE_DRAG
are not generated since these operations generateSCROLL
events.
Another platform-specific issue is the way the system generates SCROLL_ABSOLUTE
events. Some platforms generate many events while the user drags the scrollbar. Others don't generate the event until the user stops dragging the scrollbar. Some implementations wait until the user stops dragging the scrollbar and then generate a flood of SCROLL_ABSOLUTE
events for you to handle. In theory, it does not matter which is happening, as long as your event-processing code is tight. If your event-processing code is time consuming, you may wish to start another thread to perform the work. If the thread is still alive when the next event comes along, flag it down, and restart the operation. Listeners and 1.1 event handling
With the 1.1 event model, you register an AdjustmentListener
by calling the addAdjustmentListener()
method. Then when the user moves the Scrollbar
slider, the AdjustmentListener.adjustmentValueChanged()
method is called through the protected Scrollbar.processAdjustmentEvent()
method. Key, mouse, and focus listeners are registered through the three Component
methods of addKeyListener()
, addMouseListener()
, and addFocusListener()
, respectively. Because you need to register a separate listener for mouse events, you no longer have the problem of distinguishing between mouse events and slider events. An adjustment listener will never receive mouse events.
- public void addAdjustmentListener(AdjustmentListener listener)
- The
addAdjustmentListener()
method registerslistener
as an object interested in being notified when anAdjustmentEvent
passes through theEventQueue
with thisScrollbar
as its target. The methodlistener.adjustmentValueChanged()
is called when an event occurs. Multiple listeners can be registered. - public void removeAdjustmentListener(ItemListener listener)
- The
removeAdjustmentListener()
method removeslistener
as a interested listener. Iflistener
is not registered, nothing happens. - protected void processEvent(AWTEvent e)
- The
processEvent()
method receives everyAWTEvent
with thisScrollbar
as its target.processEvent()
then passes it along to any listeners for processing. When you subclassScrollbar
, overridingprocessEvent()
allows you to process all events yourself, before sending them to any listeners. In a way, overridingprocessEvent()
is like overridinghandleEvent()
using the 1.0 event model.If you override the
processEvent()
method, remember to call thesuper.processEvent(e)
method last to ensure that regular event processing can occur. If you want to process your own events, it's a good idea to callenableEvents()
(inherited fromComponent
) to ensure that events are delivered even in the absence of registered listeners. - protected void processAdjustmentEvent(ItemEvent e)
- The
processAdjustmentEvent()
method receives allAdjustmentEvent
s with thisScrollbar
as its target.processAdjustmentEvent()
then passes them along to any listeners for processing. When you subclassScrollbar
, overridingprocessAdjustmentEvent()
allows you to process all events yourself, before sending them to any listeners.If you override
processAdjustmentEvent()
, you must remember to callsuper.processAdjustmentEvent(e)
last to ensure that regular event processing can occur. If you want to process your own events, it's a good idea to callenableEvents()
(inherited fromComponent
) to ensure that events are delivered even in the absence of registered listeners.