jdk/src/share/classes/javax/swing/JScrollPane.java
author malenkov
Wed, 07 May 2008 23:20:32 +0400
changeset 466 6acd5ec503a8
parent 2 90ce3da70b43
child 2658 43e06bc950ec
permissions -rw-r--r--
4935607: RFE: LTP: Should be possible to set the TRANSIENT attribute of propertiies to FALSE Summary: Add the Transient annotation and support it (JSR-273) Reviewed-by: peterz, loneid
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
466
6acd5ec503a8 4935607: RFE: LTP: Should be possible to set the TRANSIENT attribute of propertiies to FALSE
malenkov
parents: 2
diff changeset
     2
 * Copyright 1997-2008 Sun Microsystems, Inc.  All Rights Reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package javax.swing;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import javax.swing.plaf.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import javax.swing.border.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import javax.swing.event.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import javax.accessibility.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.awt.Component;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.awt.ComponentOrientation;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.awt.Graphics;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.awt.Rectangle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.awt.Insets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.awt.Color;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.awt.LayoutManager;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.awt.Point;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.io.ObjectOutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.io.ObjectInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
466
6acd5ec503a8 4935607: RFE: LTP: Should be possible to set the TRANSIENT attribute of propertiies to FALSE
malenkov
parents: 2
diff changeset
    46
import java.beans.PropertyChangeEvent;
6acd5ec503a8 4935607: RFE: LTP: Should be possible to set the TRANSIENT attribute of propertiies to FALSE
malenkov
parents: 2
diff changeset
    47
import java.beans.PropertyChangeListener;
6acd5ec503a8 4935607: RFE: LTP: Should be possible to set the TRANSIENT attribute of propertiies to FALSE
malenkov
parents: 2
diff changeset
    48
import java.beans.Transient;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * Provides a scrollable view of a lightweight component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * A <code>JScrollPane</code> manages a viewport, optional
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * vertical and horizontal scroll bars, and optional row and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * column heading viewports.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * You can find task-oriented documentation of <code>JScrollPane</code> in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *  <a href="http://java.sun.com/docs/books/tutorial/uiswing/components/scrollpane.html">How to Use Scroll Panes</a>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * a section in <em>The Java Tutorial</em>.  Note that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <code>JScrollPane</code> does not support heavyweight components.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * <TABLE ALIGN="RIGHT" BORDER="0" SUMMARY="layout">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *    <TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *    <TD ALIGN="CENTER">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *      <P ALIGN="CENTER"><IMG SRC="doc-files/JScrollPane-1.gif"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *      alt="The following text describes this image."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *      WIDTH="256" HEIGHT="248" ALIGN="BOTTOM" BORDER="0">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *    </TD>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *    </TR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * </TABLE>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * The <code>JViewport</code> provides a window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * or &quot;viewport&quot; onto a data
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * source -- for example, a text file. That data source is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * &quot;scrollable client&quot; (aka data model) displayed by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * <code>JViewport</code> view.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * A <code>JScrollPane</code> basically consists of <code>JScrollBar</code>s,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * a <code>JViewport</code>, and the wiring between them,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * as shown in the diagram at right.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * In addition to the scroll bars and viewport,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * a <code>JScrollPane</code> can have a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * column header and a row header. Each of these is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * <code>JViewport</code> object that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * you specify with <code>setRowHeaderView</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * and <code>setColumnHeaderView</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * The column header viewport automatically scrolls left and right, tracking
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * the left-right scrolling of the main viewport.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * (It never scrolls vertically, however.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * The row header acts in a similar fashion.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * Where two scroll bars meet, the row header meets the column header,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * or a scroll bar meets one of the headers, both components stop short
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * of the corner, leaving a rectangular space which is, by default, empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * These spaces can potentially exist in any number of the four corners.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * In the previous diagram, the top right space is present and identified
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * by the label "corner component".
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * Any number of these empty spaces can be replaced by using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * <code>setCorner</code> method to add a component to a particular corner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * (Note: The same component cannot be added to multiple corners.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * This is useful if there's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * some extra decoration or function you'd like to add to the scroll pane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * The size of each corner component is entirely determined by the size of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * headers and/or scroll bars that surround it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * A corner component will only be visible if there is an empty space in that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * corner for it to exist in. For example, consider a component set into the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * top right corner of a scroll pane with a column header. If the scroll pane's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * vertical scrollbar is not present, perhaps because the view component hasn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * grown large enough to require it, then the corner component will not be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * shown (since there is no empty space in that corner created by the meeting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * of the header and vertical scroll bar). Forcing the scroll bar to always be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * shown, using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * <code>setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_ALWAYS)</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * will ensure that the space for the corner component always exists.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * To add a border around the main viewport,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * you can use <code>setViewportBorder</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * (Of course, you can also add a border around the whole scroll pane using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * <code>setBorder</code>.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * A common operation to want to do is to set the background color that will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * be used if the main viewport view is smaller than the viewport, or is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * not opaque. This can be accomplished by setting the background color
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * of the viewport, via <code>scrollPane.getViewport().setBackground()</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * The reason for setting the color of the viewport and not the scrollpane
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 * is that by default <code>JViewport</code> is opaque
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * which, among other things, means it will completely fill
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * in its background using its background color.  Therefore when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * <code>JScrollPane</code> draws its background the viewport will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * usually draw over it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * By default <code>JScrollPane</code> uses <code>ScrollPaneLayout</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 * to handle the layout of its child Components. <code>ScrollPaneLayout</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 * determines the size to make the viewport view in one of two ways:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 * <ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 *   <li>If the view implements <code>Scrollable</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 *       a combination of <code>getPreferredScrollableViewportSize</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 *       <code>getScrollableTracksViewportWidth</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 *       <code>getScrollableTracksViewportHeight</code>is used, otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
 *   <li><code>getPreferredSize</code> is used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 * </ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
 * <strong>Warning:</strong> Swing is not thread safe. For more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
 * information see <a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
 * href="package-summary.html#threading">Swing's Threading
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
 * Policy</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
 * <strong>Warning:</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
 * Serialized objects of this class will not be compatible with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
 * future Swing releases. The current serialization support is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
 * appropriate for short term storage or RMI between applications running
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
 * the same version of Swing.  As of 1.4, support for long term storage
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
 * of all JavaBeans<sup><font size="-2">TM</font></sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
 * has been added to the <code>java.beans</code> package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
 * Please see {@link java.beans.XMLEncoder}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
 * @see JScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
 * @see JViewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
 * @see ScrollPaneLayout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
 * @see Scrollable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
 * @see Component#getPreferredSize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
 * @see #setViewportView
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
 * @see #setRowHeaderView
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
 * @see #setColumnHeaderView
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
 * @see #setCorner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
 * @see #setViewportBorder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
 * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
 *     attribute: isContainer true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
 *     attribute: containerDelegate getViewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
 *   description: A specialized container that manages a viewport, optional scrollbars and headers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
 * @author Hans Muller
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
public class JScrollPane extends JComponent implements ScrollPaneConstants, Accessible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    private Border viewportBorder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * @see #getUIClassID
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @see #readObject
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    private static final String uiClassID = "ScrollPaneUI";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * The display policy for the vertical scrollbar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * The default is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * <code>ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * @see #setVerticalScrollBarPolicy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    protected int verticalScrollBarPolicy = VERTICAL_SCROLLBAR_AS_NEEDED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * The display policy for the horizontal scrollbar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * The default is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * <code>ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * @see #setHorizontalScrollBarPolicy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    protected int horizontalScrollBarPolicy = HORIZONTAL_SCROLLBAR_AS_NEEDED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * The scrollpane's viewport child.  Default is an empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * <code>JViewport</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @see #setViewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    protected JViewport viewport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * The scrollpane's vertical scrollbar child.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * Default is a <code>JScrollBar</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * @see #setVerticalScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    protected JScrollBar verticalScrollBar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * The scrollpane's horizontal scrollbar child.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * Default is a <code>JScrollBar</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @see #setHorizontalScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    protected JScrollBar horizontalScrollBar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * The row header child.  Default is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * @see #setRowHeader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    protected JViewport rowHeader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * The column header child.  Default is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * @see #setColumnHeader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    protected JViewport columnHeader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * The component to display in the lower left corner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * Default is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * @see #setCorner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    protected Component lowerLeft;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * The component to display in the lower right corner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * Default is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @see #setCorner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    protected Component lowerRight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * The component to display in the upper left corner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * Default is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * @see #setCorner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    protected Component upperLeft;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * The component to display in the upper right corner.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * Default is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * @see #setCorner
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    protected Component upperRight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * State flag for mouse wheel scrolling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    private boolean wheelScrollState = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * Creates a <code>JScrollPane</code> that displays the view
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * component in a viewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * whose view position can be controlled with a pair of scrollbars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * The scrollbar policies specify when the scrollbars are displayed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * For example, if <code>vsbPolicy</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * <code>VERTICAL_SCROLLBAR_AS_NEEDED</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * then the vertical scrollbar only appears if the view doesn't fit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * vertically. The available policy settings are listed at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * {@link #setVerticalScrollBarPolicy} and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * {@link #setHorizontalScrollBarPolicy}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * @see #setViewportView
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * @param view the component to display in the scrollpanes viewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * @param vsbPolicy an integer that specifies the vertical
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     *          scrollbar policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * @param hsbPolicy an integer that specifies the horizontal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     *          scrollbar policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    public JScrollPane(Component view, int vsbPolicy, int hsbPolicy)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        setLayout(new ScrollPaneLayout.UIResource());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        setVerticalScrollBarPolicy(vsbPolicy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        setHorizontalScrollBarPolicy(hsbPolicy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        setViewport(createViewport());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        setVerticalScrollBar(createVerticalScrollBar());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        setHorizontalScrollBar(createHorizontalScrollBar());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        if (view != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
            setViewportView(view);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        setOpaque(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        updateUI();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        if (!this.getComponentOrientation().isLeftToRight()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
            viewport.setViewPosition(new Point(Integer.MAX_VALUE, 0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * Creates a <code>JScrollPane</code> that displays the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * contents of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * component, where both horizontal and vertical scrollbars appear
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * whenever the component's contents are larger than the view.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * @see #setViewportView
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * @param view the component to display in the scrollpane's viewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    public JScrollPane(Component view) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        this(view, VERTICAL_SCROLLBAR_AS_NEEDED, HORIZONTAL_SCROLLBAR_AS_NEEDED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * Creates an empty (no viewport view) <code>JScrollPane</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * with specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * scrollbar policies. The available policy settings are listed at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * {@link #setVerticalScrollBarPolicy} and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * {@link #setHorizontalScrollBarPolicy}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * @see #setViewportView
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * @param vsbPolicy an integer that specifies the vertical
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *          scrollbar policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * @param hsbPolicy an integer that specifies the horizontal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *          scrollbar policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    public JScrollPane(int vsbPolicy, int hsbPolicy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        this(null, vsbPolicy, hsbPolicy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * Creates an empty (no viewport view) <code>JScrollPane</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * where both horizontal and vertical scrollbars appear when needed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    public JScrollPane() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        this(null, VERTICAL_SCROLLBAR_AS_NEEDED, HORIZONTAL_SCROLLBAR_AS_NEEDED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * Returns the look and feel (L&F) object that renders this component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * @return the <code>ScrollPaneUI</code> object that renders this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     *                          component
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * @see #setUI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     *        bound: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *       hidden: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     *    attribute: visualUpdate true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     *  description: The UI object that implements the Component's LookAndFeel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    public ScrollPaneUI getUI() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        return (ScrollPaneUI)ui;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * Sets the <code>ScrollPaneUI</code> object that provides the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * look and feel (L&F) for this component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * @param ui the <code>ScrollPaneUI</code> L&F object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * @see #getUI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    public void setUI(ScrollPaneUI ui) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        super.setUI(ui);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * Replaces the current <code>ScrollPaneUI</code> object with a version
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * from the current default look and feel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * To be called when the default look and feel changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @see JComponent#updateUI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * @see UIManager#getUI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    public void updateUI() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        setUI((ScrollPaneUI)UIManager.getUI(this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * Returns the suffix used to construct the name of the L&F class used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * render this component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * @return the string "ScrollPaneUI"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * @see JComponent#getUIClassID
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * @see UIDefaults#getUI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     *    hidden: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
    public String getUIClassID() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        return uiClassID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * Sets the layout manager for this <code>JScrollPane</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * This method overrides <code>setLayout</code> in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * <code>java.awt.Container</code> to ensure that only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * <code>LayoutManager</code>s which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * are subclasses of <code>ScrollPaneLayout</code> can be used in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * <code>JScrollPane</code>. If <code>layout</code> is non-null, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * will invoke <code>syncWithScrollPane</code> on it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * @param layout the specified layout manager
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * @exception ClassCastException if layout is not a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     *                  <code>ScrollPaneLayout</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * @see java.awt.Container#getLayout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * @see java.awt.Container#setLayout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     *    hidden: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    public void setLayout(LayoutManager layout) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        if (layout instanceof ScrollPaneLayout) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
            super.setLayout(layout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
            ((ScrollPaneLayout)layout).syncWithScrollPane(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        else if (layout == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
            super.setLayout(layout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
            String s = "layout of JScrollPane must be a ScrollPaneLayout";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
            throw new ClassCastException(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * Overridden to return true so that any calls to <code>revalidate</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * on any descendants of this <code>JScrollPane</code> will cause the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * entire tree beginning with this <code>JScrollPane</code> to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * validated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * @return true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * @see java.awt.Container#validate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * @see JComponent#revalidate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * @see JComponent#isValidateRoot
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     *    hidden: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    public boolean isValidateRoot() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * Returns the vertical scroll bar policy value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * @return the <code>verticalScrollBarPolicy</code> property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * @see #setVerticalScrollBarPolicy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    public int getVerticalScrollBarPolicy() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        return verticalScrollBarPolicy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * Determines when the vertical scrollbar appears in the scrollpane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * Legal values are:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * <li><code>ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * <li><code>ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * <li><code>ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * @param policy one of the three values listed above
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * @exception IllegalArgumentException if <code>policy</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     *                          is not one of the legal values shown above
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * @see #getVerticalScrollBarPolicy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     *   preferred: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     *       bound: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * description: The scrollpane vertical scrollbar policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     *        enum: VERTICAL_SCROLLBAR_AS_NEEDED ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     *              VERTICAL_SCROLLBAR_NEVER ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     *              VERTICAL_SCROLLBAR_ALWAYS ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    public void setVerticalScrollBarPolicy(int policy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        switch (policy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        case VERTICAL_SCROLLBAR_AS_NEEDED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
        case VERTICAL_SCROLLBAR_NEVER:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        case VERTICAL_SCROLLBAR_ALWAYS:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            throw new IllegalArgumentException("invalid verticalScrollBarPolicy");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        int old = verticalScrollBarPolicy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        verticalScrollBarPolicy = policy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        firePropertyChange("verticalScrollBarPolicy", old, policy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        revalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * Returns the horizontal scroll bar policy value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * @return the <code>horizontalScrollBarPolicy</code> property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * @see #setHorizontalScrollBarPolicy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
    public int getHorizontalScrollBarPolicy() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        return horizontalScrollBarPolicy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * Determines when the horizontal scrollbar appears in the scrollpane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * The options are:<ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * <li><code>ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * <li><code>ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     * <li><code>ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * @param policy one of the three values listed above
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * @exception IllegalArgumentException if <code>policy</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     *                          is not one of the legal values shown above
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * @see #getHorizontalScrollBarPolicy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     *   preferred: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     *       bound: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * description: The scrollpane scrollbar policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     *        enum: HORIZONTAL_SCROLLBAR_AS_NEEDED ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     *              HORIZONTAL_SCROLLBAR_NEVER ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     *              HORIZONTAL_SCROLLBAR_ALWAYS ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    public void setHorizontalScrollBarPolicy(int policy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        switch (policy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        case HORIZONTAL_SCROLLBAR_AS_NEEDED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
        case HORIZONTAL_SCROLLBAR_NEVER:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        case HORIZONTAL_SCROLLBAR_ALWAYS:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
            throw new IllegalArgumentException("invalid horizontalScrollBarPolicy");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        int old = horizontalScrollBarPolicy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        horizontalScrollBarPolicy = policy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        firePropertyChange("horizontalScrollBarPolicy", old, policy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        revalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * Returns the <code>Border</code> object that surrounds the viewport.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * @return the <code>viewportBorder</code> property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     * @see #setViewportBorder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    public Border getViewportBorder() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        return viewportBorder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * Adds a border around the viewport.  Note that the border isn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * set on the viewport directly, <code>JViewport</code> doesn't support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * the <code>JComponent</code> border property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * Similarly setting the <code>JScrollPane</code>s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * viewport doesn't affect the <code>viewportBorder</code> property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * The default value of this property is computed by the look
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * and feel implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     * @param viewportBorder the border to be added
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     * @see #getViewportBorder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     * @see #setViewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     *   preferred: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     *       bound: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     * description: The border around the viewport.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    public void setViewportBorder(Border viewportBorder) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        Border oldValue = this.viewportBorder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        this.viewportBorder = viewportBorder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        firePropertyChange("viewportBorder", oldValue, viewportBorder);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     * Returns the bounds of the viewport's border.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     * @return a <code>Rectangle</code> object specifying the viewport border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
    public Rectangle getViewportBorderBounds()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        Rectangle borderR = new Rectangle(getSize());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        Insets insets = getInsets();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
        borderR.x = insets.left;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        borderR.y = insets.top;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        borderR.width -= insets.left + insets.right;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
        borderR.height -= insets.top + insets.bottom;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
        boolean leftToRight = SwingUtilities.isLeftToRight(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
        /* If there's a visible column header remove the space it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
         * needs from the top of borderR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        JViewport colHead = getColumnHeader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        if ((colHead != null) && (colHead.isVisible())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
            int colHeadHeight = colHead.getHeight();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
            borderR.y += colHeadHeight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
            borderR.height -= colHeadHeight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
        /* If there's a visible row header remove the space it needs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
         * from the left of borderR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
        JViewport rowHead = getRowHeader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
        if ((rowHead != null) && (rowHead.isVisible())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
            int rowHeadWidth = rowHead.getWidth();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
            if ( leftToRight ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                borderR.x += rowHeadWidth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
            borderR.width -= rowHeadWidth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        /* If there's a visible vertical scrollbar remove the space it needs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
         * from the width of borderR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        JScrollBar vsb = getVerticalScrollBar();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        if ((vsb != null) && (vsb.isVisible())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
            int vsbWidth = vsb.getWidth();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
            if ( !leftToRight ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                borderR.x += vsbWidth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
            borderR.width -= vsbWidth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        /* If there's a visible horizontal scrollbar remove the space it needs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
         * from the height of borderR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
        JScrollBar hsb = getHorizontalScrollBar();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        if ((hsb != null) && (hsb.isVisible())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
            borderR.height -= hsb.getHeight();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
        return borderR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * By default <code>JScrollPane</code> creates scrollbars
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     * that are instances
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * of this class.  <code>Scrollbar</code> overrides the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * <code>getUnitIncrement</code> and <code>getBlockIncrement</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     * methods so that, if the viewport's view is a <code>Scrollable</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * the view is asked to compute these values. Unless
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * the unit/block increment have been explicitly set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * <strong>Warning:</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     * Serialized objects of this class will not be compatible with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * future Swing releases. The current serialization support is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * appropriate for short term storage or RMI between applications running
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     * the same version of Swing.  As of 1.4, support for long term storage
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * of all JavaBeans<sup><font size="-2">TM</font></sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     * has been added to the <code>java.beans</code> package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * Please see {@link java.beans.XMLEncoder}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * @see Scrollable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * @see JScrollPane#createVerticalScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * @see JScrollPane#createHorizontalScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    protected class ScrollBar extends JScrollBar implements UIResource
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
         * Set to true when the unit increment has been explicitly set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
         * If this is false the viewport's view is obtained and if it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
         * is an instance of <code>Scrollable</code> the unit increment
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
         * from it is used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
        private boolean unitIncrementSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
         * Set to true when the block increment has been explicitly set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
         * If this is false the viewport's view is obtained and if it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
         * is an instance of <code>Scrollable</code> the block increment
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
         * from it is used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        private boolean blockIncrementSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
         * Creates a scrollbar with the specified orientation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
         * The options are:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
         * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
         * <li><code>ScrollPaneConstants.VERTICAL</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
         * <li><code>ScrollPaneConstants.HORIZONTAL</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
         * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
         * @param orientation  an integer specifying one of the legal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
         *      orientation values shown above
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
         * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        public ScrollBar(int orientation) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
            super(orientation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
            this.putClientProperty("JScrollBar.fastWheelScrolling",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                                   Boolean.TRUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
         * Messages super to set the value, and resets the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
         * <code>unitIncrementSet</code> instance variable to true.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
         * @param unitIncrement the new unit increment value, in pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
        public void setUnitIncrement(int unitIncrement) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
            unitIncrementSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
            this.putClientProperty("JScrollBar.fastWheelScrolling", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
            super.setUnitIncrement(unitIncrement);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
         * Computes the unit increment for scrolling if the viewport's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
         * view is a <code>Scrollable</code> object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
         * Otherwise return <code>super.getUnitIncrement</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
         * @param direction less than zero to scroll up/left,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
         *      greater than zero for down/right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
         * @return an integer, in pixels, containing the unit increment
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
         * @see Scrollable#getScrollableUnitIncrement
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        public int getUnitIncrement(int direction) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
            JViewport vp = getViewport();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
            if (!unitIncrementSet && (vp != null) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
                (vp.getView() instanceof Scrollable)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
                Scrollable view = (Scrollable)(vp.getView());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                Rectangle vr = vp.getViewRect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
                return view.getScrollableUnitIncrement(vr, getOrientation(), direction);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
            else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
                return super.getUnitIncrement(direction);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
         * Messages super to set the value, and resets the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
         * <code>blockIncrementSet</code> instance variable to true.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
         * @param blockIncrement the new block increment value, in pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        public void setBlockIncrement(int blockIncrement) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
            blockIncrementSet = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
            this.putClientProperty("JScrollBar.fastWheelScrolling", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
            super.setBlockIncrement(blockIncrement);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
         * Computes the block increment for scrolling if the viewport's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
         * view is a <code>Scrollable</code> object.  Otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
         * the <code>blockIncrement</code> equals the viewport's width
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
         * or height.  If there's no viewport return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
         * <code>super.getBlockIncrement</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
         * @param direction less than zero to scroll up/left,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
         *      greater than zero for down/right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
         * @return an integer, in pixels, containing the block increment
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
         * @see Scrollable#getScrollableBlockIncrement
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        public int getBlockIncrement(int direction) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
            JViewport vp = getViewport();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
            if (blockIncrementSet || vp == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
                return super.getBlockIncrement(direction);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
            else if (vp.getView() instanceof Scrollable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
                Scrollable view = (Scrollable)(vp.getView());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
                Rectangle vr = vp.getViewRect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
                return view.getScrollableBlockIncrement(vr, getOrientation(), direction);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
            else if (getOrientation() == VERTICAL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
                return vp.getExtentSize().height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
            else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
                return vp.getExtentSize().width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     * Returns a <code>JScrollPane.ScrollBar</code> by default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     * Subclasses may override this method to force <code>ScrollPaneUI</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
     * implementations to use a <code>JScrollBar</code> subclass.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
     * Used by <code>ScrollPaneUI</code> implementations to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
     * create the horizontal scrollbar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     * @return a <code>JScrollBar</code> with a horizontal orientation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     * @see JScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
    public JScrollBar createHorizontalScrollBar() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
        return new ScrollBar(JScrollBar.HORIZONTAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
     * Returns the horizontal scroll bar that controls the viewport's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
     * horizontal view position.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
     * @return the <code>horizontalScrollBar</code> property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     * @see #setHorizontalScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
     */
466
6acd5ec503a8 4935607: RFE: LTP: Should be possible to set the TRANSIENT attribute of propertiies to FALSE
malenkov
parents: 2
diff changeset
   826
    @Transient
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
    public JScrollBar getHorizontalScrollBar() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        return horizontalScrollBar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
     * Adds the scrollbar that controls the viewport's horizontal view
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
     * position to the scrollpane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
     * This is usually unnecessary, as <code>JScrollPane</code> creates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
     * horizontal and vertical scrollbars by default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     * @param horizontalScrollBar the horizontal scrollbar to be added
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     * @see #createHorizontalScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     * @see #getHorizontalScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
     *        expert: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
     *         bound: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     *   description: The horizontal scrollbar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
    public void setHorizontalScrollBar(JScrollBar horizontalScrollBar) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
        JScrollBar old = getHorizontalScrollBar();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
        this.horizontalScrollBar = horizontalScrollBar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
        if (horizontalScrollBar != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
            add(horizontalScrollBar, HORIZONTAL_SCROLLBAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
        else if (old != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
            remove(old);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
        firePropertyChange("horizontalScrollBar", old, horizontalScrollBar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
        revalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     * Returns a <code>JScrollPane.ScrollBar</code> by default.  Subclasses
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     * may override this method to force <code>ScrollPaneUI</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
     * implementations to use a <code>JScrollBar</code> subclass.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
     * Used by <code>ScrollPaneUI</code> implementations to create the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
     * vertical scrollbar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     * @return a <code>JScrollBar</code> with a vertical orientation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
     * @see JScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
    public JScrollBar createVerticalScrollBar() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
        return new ScrollBar(JScrollBar.VERTICAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
     * Returns the vertical scroll bar that controls the viewports
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     * vertical view position.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
     * @return the <code>verticalScrollBar</code> property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
     * @see #setVerticalScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     */
466
6acd5ec503a8 4935607: RFE: LTP: Should be possible to set the TRANSIENT attribute of propertiies to FALSE
malenkov
parents: 2
diff changeset
   885
    @Transient
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
    public JScrollBar getVerticalScrollBar() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
        return verticalScrollBar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     * Adds the scrollbar that controls the viewports vertical view position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     * to the scrollpane.  This is usually unnecessary,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     * as <code>JScrollPane</code> creates vertical and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     * horizontal scrollbars by default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     * @param verticalScrollBar the new vertical scrollbar to be added
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     * @see #createVerticalScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     * @see #getVerticalScrollBar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     *        expert: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
     *         bound: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
     *   description: The vertical scrollbar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
    public void setVerticalScrollBar(JScrollBar verticalScrollBar) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
        JScrollBar old = getVerticalScrollBar();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
        this.verticalScrollBar = verticalScrollBar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
        add(verticalScrollBar, VERTICAL_SCROLLBAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
        firePropertyChange("verticalScrollBar", old, verticalScrollBar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
        revalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
     * Returns a new <code>JViewport</code> by default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     * Used to create the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
     * viewport (as needed) in <code>setViewportView</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
     * <code>setRowHeaderView</code>, and <code>setColumnHeaderView</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
     * Subclasses may override this method to return a subclass of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
     * <code>JViewport</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
     * @return a new <code>JViewport</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
    protected JViewport createViewport() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
        return new JViewport();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
     * Returns the current <code>JViewport</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
     * @see #setViewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
     * @return the <code>viewport</code> property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
    public JViewport getViewport() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
        return viewport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
     * Removes the old viewport (if there is one); forces the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     * viewPosition of the new viewport to be in the +x,+y quadrant;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     * syncs up the row and column headers (if there are any) with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
     * new viewport; and finally syncs the scrollbars and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
     * headers with the new viewport.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * Most applications will find it more convenient to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     * <code>setViewportView</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
     * to add a viewport and a view to the scrollpane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
     * @param viewport the new viewport to be used; if viewport is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
     *          <code>null</code>, the old viewport is still removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
     *          and the new viewport is set to <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
     * @see #createViewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
     * @see #getViewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
     * @see #setViewportView
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
     *       expert: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
     *        bound: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
     *    attribute: visualUpdate true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
     *  description: The viewport child for this scrollpane
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
    public void setViewport(JViewport viewport) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        JViewport old = getViewport();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
        this.viewport = viewport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        if (viewport != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
            add(viewport, VIEWPORT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
        else if (old != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
            remove(old);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
        firePropertyChange("viewport", old, viewport);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
        if (accessibleContext != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
            ((AccessibleJScrollPane)accessibleContext).resetViewPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
        revalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     * Creates a viewport if necessary and then sets its view.  Applications
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
     * that don't provide the view directly to the <code>JScrollPane</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
     * constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
     * should use this method to specify the scrollable child that's going
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     * to be displayed in the scrollpane. For example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
     * JScrollPane scrollpane = new JScrollPane();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
     * scrollpane.setViewportView(myBigComponentToScroll);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
     * Applications should not add children directly to the scrollpane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
     * @param view the component to add to the viewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
     * @see #setViewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
     * @see JViewport#setView
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
    public void setViewportView(Component view) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
        if (getViewport() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
            setViewport(createViewport());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
        getViewport().setView(view);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
     * Returns the row header.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
     * @return the <code>rowHeader</code> property
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
     * @see #setRowHeader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
     */
466
6acd5ec503a8 4935607: RFE: LTP: Should be possible to set the TRANSIENT attribute of propertiies to FALSE
malenkov
parents: 2
diff changeset
  1018
    @Transient
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
    public JViewport getRowHeader() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
        return rowHeader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
     * Removes the old rowHeader, if it exists; if the new rowHeader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
     * isn't <code>null</code>, syncs the y coordinate of its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
     * viewPosition with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
     * the viewport (if there is one) and then adds it to the scroll pane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
     * Most applications will find it more convenient to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
     * <code>setRowHeaderView</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
     * to add a row header component and its viewport to the scroll pane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
     * @param rowHeader the new row header to be used; if <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
     *          the old row header is still removed and the new rowHeader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
     *          is set to <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
     * @see #getRowHeader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
     * @see #setRowHeaderView
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
     *        bound: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
     *       expert: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
     *  description: The row header child for this scrollpane
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
    public void setRowHeader(JViewport rowHeader) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
        JViewport old = getRowHeader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
        this.rowHeader = rowHeader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
        if (rowHeader != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
            add(rowHeader, ROW_HEADER);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
        else if (old != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
            remove(old);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
        firePropertyChange("rowHeader", old, rowHeader);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
        revalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
     * Creates a row-header viewport if necessary, sets
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
     * its view and then adds the row-header viewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
     * to the scrollpane.  For example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
     * JScrollPane scrollpane = new JScrollPane();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
     * scrollpane.setViewportView(myBigComponentToScroll);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
     * scrollpane.setRowHeaderView(myBigComponentsRowHeader);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
     * @see #setRowHeader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
     * @see JViewport#setView
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
     * @param view the component to display as the row header
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
    public void setRowHeaderView(Component view) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
        if (getRowHeader() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
            setRowHeader(createViewport());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
        getRowHeader().setView(view);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
     * Returns the column header.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
     * @return the <code>columnHeader</code> property
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
     * @see #setColumnHeader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
     */
466
6acd5ec503a8 4935607: RFE: LTP: Should be possible to set the TRANSIENT attribute of propertiies to FALSE
malenkov
parents: 2
diff changeset
  1088
    @Transient
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
    public JViewport getColumnHeader() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
        return columnHeader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
     * Removes the old columnHeader, if it exists; if the new columnHeader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
     * isn't <code>null</code>, syncs the x coordinate of its viewPosition
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     * with the viewport (if there is one) and then adds it to the scroll pane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     * Most applications will find it more convenient to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     * <code>setColumnHeaderView</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     * to add a column header component and its viewport to the scroll pane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
     * @see #getColumnHeader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
     * @see #setColumnHeaderView
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
     *        bound: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
     *  description: The column header child for this scrollpane
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
     *    attribute: visualUpdate true
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
    public void setColumnHeader(JViewport columnHeader) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
        JViewport old = getColumnHeader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
        this.columnHeader = columnHeader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
        if (columnHeader != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
            add(columnHeader, COLUMN_HEADER);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
        else if (old != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
            remove(old);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
        firePropertyChange("columnHeader", old, columnHeader);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
        revalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     * Creates a column-header viewport if necessary, sets
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
     * its view, and then adds the column-header viewport
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     * to the scrollpane.  For example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     * JScrollPane scrollpane = new JScrollPane();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
     * scrollpane.setViewportView(myBigComponentToScroll);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
     * scrollpane.setColumnHeaderView(myBigComponentsColumnHeader);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
     * @see #setColumnHeader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
     * @see JViewport#setView
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
     * @param view the component to display as the column header
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
    public void setColumnHeaderView(Component view) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        if (getColumnHeader() == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
            setColumnHeader(createViewport());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
        getColumnHeader().setView(view);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
     * Returns the component at the specified corner. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
     * <code>key</code> value specifying the corner is one of:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
     * <li>ScrollPaneConstants.LOWER_LEFT_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
     * <li>ScrollPaneConstants.LOWER_RIGHT_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
     * <li>ScrollPaneConstants.UPPER_LEFT_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
     * <li>ScrollPaneConstants.UPPER_RIGHT_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
     * <li>ScrollPaneConstants.LOWER_LEADING_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
     * <li>ScrollPaneConstants.LOWER_TRAILING_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     * <li>ScrollPaneConstants.UPPER_LEADING_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     * <li>ScrollPaneConstants.UPPER_TRAILING_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
     * @param key one of the values as shown above
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     * @return the corner component (which may be <code>null</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     *         identified by the given key, or <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     *         if the key is invalid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
     * @see #setCorner
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
    public Component getCorner(String key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
        boolean isLeftToRight = getComponentOrientation().isLeftToRight();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
        if (key.equals(LOWER_LEADING_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
            key = isLeftToRight ? LOWER_LEFT_CORNER : LOWER_RIGHT_CORNER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
        } else if (key.equals(LOWER_TRAILING_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
            key = isLeftToRight ? LOWER_RIGHT_CORNER : LOWER_LEFT_CORNER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
        } else if (key.equals(UPPER_LEADING_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
            key = isLeftToRight ? UPPER_LEFT_CORNER : UPPER_RIGHT_CORNER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
        } else if (key.equals(UPPER_TRAILING_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
            key = isLeftToRight ? UPPER_RIGHT_CORNER : UPPER_LEFT_CORNER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
        if (key.equals(LOWER_LEFT_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
            return lowerLeft;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
        else if (key.equals(LOWER_RIGHT_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
            return lowerRight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
        else if (key.equals(UPPER_LEFT_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
            return upperLeft;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
        else if (key.equals(UPPER_RIGHT_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
            return upperRight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
     * Adds a child that will appear in one of the scroll panes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
     * corners, if there's room.   For example with both scrollbars
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
     * showing (on the right and bottom edges of the scrollpane)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
     * the lower left corner component will be shown in the space
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
     * between ends of the two scrollbars. Legal values for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
     * the <b>key</b> are:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
     * <li>ScrollPaneConstants.LOWER_LEFT_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
     * <li>ScrollPaneConstants.LOWER_RIGHT_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
     * <li>ScrollPaneConstants.UPPER_LEFT_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
     * <li>ScrollPaneConstants.UPPER_RIGHT_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
     * <li>ScrollPaneConstants.LOWER_LEADING_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
     * <li>ScrollPaneConstants.LOWER_TRAILING_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
     * <li>ScrollPaneConstants.UPPER_LEADING_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
     * <li>ScrollPaneConstants.UPPER_TRAILING_CORNER
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
     * Although "corner" doesn't match any beans property
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
     * signature, <code>PropertyChange</code> events are generated with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
     * property name set to the corner key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
     * @param key identifies which corner the component will appear in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
     * @param corner one of the following components:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
     * <li>lowerLeft
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
     * <li>lowerRight
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
     * <li>upperLeft
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
     * <li>upperRight
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
     * @exception IllegalArgumentException if corner key is invalid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
    public void setCorner(String key, Component corner)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
        Component old;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
        boolean isLeftToRight = getComponentOrientation().isLeftToRight();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
        if (key.equals(LOWER_LEADING_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
            key = isLeftToRight ? LOWER_LEFT_CORNER : LOWER_RIGHT_CORNER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
        } else if (key.equals(LOWER_TRAILING_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
            key = isLeftToRight ? LOWER_RIGHT_CORNER : LOWER_LEFT_CORNER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
        } else if (key.equals(UPPER_LEADING_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
            key = isLeftToRight ? UPPER_LEFT_CORNER : UPPER_RIGHT_CORNER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
        } else if (key.equals(UPPER_TRAILING_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
            key = isLeftToRight ? UPPER_RIGHT_CORNER : UPPER_LEFT_CORNER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
        if (key.equals(LOWER_LEFT_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
            old = lowerLeft;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
            lowerLeft = corner;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
        else if (key.equals(LOWER_RIGHT_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
            old = lowerRight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
            lowerRight = corner;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
        else if (key.equals(UPPER_LEFT_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
            old = upperLeft;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
            upperLeft = corner;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
        else if (key.equals(UPPER_RIGHT_CORNER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
            old = upperRight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
            upperRight = corner;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
            throw new IllegalArgumentException("invalid corner key");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
        if (old != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
            remove(old);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
        if (corner != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
            add(corner, key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
        firePropertyChange(key, old, corner);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
        revalidate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
     * Sets the orientation for the vertical and horizontal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
     * scrollbars as determined by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
     * <code>ComponentOrientation</code> argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
     * @param  co one of the following values:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
     * <li>java.awt.ComponentOrientation.LEFT_TO_RIGHT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
     * <li>java.awt.ComponentOrientation.RIGHT_TO_LEFT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
     * <li>java.awt.ComponentOrientation.UNKNOWN
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
     * @see java.awt.ComponentOrientation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
    public void setComponentOrientation( ComponentOrientation co ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
        super.setComponentOrientation( co );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
        if( verticalScrollBar != null )
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
            verticalScrollBar.setComponentOrientation( co );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
        if( horizontalScrollBar != null )
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
            horizontalScrollBar.setComponentOrientation( co );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
     * Indicates whether or not scrolling will take place in response to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
     * mouse wheel.  Wheel scrolling is enabled by default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
     * @see #setWheelScrollingEnabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
     *       bound: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
     * description: Flag for enabling/disabling mouse wheel scrolling
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
    public boolean isWheelScrollingEnabled() {return wheelScrollState;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
     * Enables/disables scrolling in response to movement of the mouse wheel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
     * Wheel scrolling is enabled by default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
     * @param handleWheel   <code>true</code> if scrolling should be done
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
     *                      automatically for a MouseWheelEvent,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
     *                      <code>false</code> otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
     * @see #isWheelScrollingEnabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
     * @see java.awt.event.MouseWheelEvent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
     * @see java.awt.event.MouseWheelListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
     * @beaninfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
     *       bound: true
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
     * description: Flag for enabling/disabling mouse wheel scrolling
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
    public void setWheelScrollingEnabled(boolean handleWheel) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
        boolean old = wheelScrollState;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
        wheelScrollState = handleWheel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
        firePropertyChange("wheelScrollingEnabled", old, handleWheel);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
     * See <code>readObject</code> and <code>writeObject</code> in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
     * <code>JComponent</code> for more
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
     * information about serialization in Swing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
    private void writeObject(ObjectOutputStream s) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
        s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
        if (getUIClassID().equals(uiClassID)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
            byte count = JComponent.getWriteObjCounter(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
            JComponent.setWriteObjCounter(this, --count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
            if (count == 0 && ui != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
                ui.installUI(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
     * Returns a string representation of this <code>JScrollPane</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
     * This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
     * is intended to be used only for debugging purposes, and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
     * content and format of the returned string may vary between
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
     * implementations. The returned string may be empty but may not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
     * be <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
     * @return  a string representation of this <code>JScrollPane</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
    protected String paramString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
        String viewportBorderString = (viewportBorder != null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
                                       viewportBorder.toString() : "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
        String viewportString = (viewport != null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
                                 viewport.toString() : "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
        String verticalScrollBarPolicyString;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
        if (verticalScrollBarPolicy == VERTICAL_SCROLLBAR_AS_NEEDED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
            verticalScrollBarPolicyString = "VERTICAL_SCROLLBAR_AS_NEEDED";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
        } else if (verticalScrollBarPolicy == VERTICAL_SCROLLBAR_NEVER) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
            verticalScrollBarPolicyString = "VERTICAL_SCROLLBAR_NEVER";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
        } else if (verticalScrollBarPolicy == VERTICAL_SCROLLBAR_ALWAYS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
            verticalScrollBarPolicyString = "VERTICAL_SCROLLBAR_ALWAYS";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
        } else verticalScrollBarPolicyString = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
        String horizontalScrollBarPolicyString;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
        if (horizontalScrollBarPolicy == HORIZONTAL_SCROLLBAR_AS_NEEDED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
            horizontalScrollBarPolicyString = "HORIZONTAL_SCROLLBAR_AS_NEEDED";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
        } else if (horizontalScrollBarPolicy == HORIZONTAL_SCROLLBAR_NEVER) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
            horizontalScrollBarPolicyString = "HORIZONTAL_SCROLLBAR_NEVER";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
        } else if (horizontalScrollBarPolicy == HORIZONTAL_SCROLLBAR_ALWAYS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
            horizontalScrollBarPolicyString = "HORIZONTAL_SCROLLBAR_ALWAYS";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
        } else horizontalScrollBarPolicyString = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
        String horizontalScrollBarString = (horizontalScrollBar != null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
                                            horizontalScrollBar.toString()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
                                            : "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
        String verticalScrollBarString = (verticalScrollBar != null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
                                          verticalScrollBar.toString() : "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
        String columnHeaderString = (columnHeader != null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
                                     columnHeader.toString() : "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
        String rowHeaderString = (rowHeader != null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
                                  rowHeader.toString() : "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
        String lowerLeftString = (lowerLeft != null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
                                  lowerLeft.toString() : "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
        String lowerRightString = (lowerRight != null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
                                  lowerRight.toString() : "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
        String upperLeftString = (upperLeft != null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
                                  upperLeft.toString() : "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
        String upperRightString = (upperRight != null ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
                                  upperRight.toString() : "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
        return super.paramString() +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
        ",columnHeader=" + columnHeaderString +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
        ",horizontalScrollBar=" + horizontalScrollBarString +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
        ",horizontalScrollBarPolicy=" + horizontalScrollBarPolicyString +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
        ",lowerLeft=" + lowerLeftString +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
        ",lowerRight=" + lowerRightString +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
        ",rowHeader=" + rowHeaderString +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
        ",upperLeft=" + upperLeftString +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
        ",upperRight=" + upperRightString +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
        ",verticalScrollBar=" + verticalScrollBarString +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
        ",verticalScrollBarPolicy=" + verticalScrollBarPolicyString +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
        ",viewport=" + viewportString +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
        ",viewportBorder=" + viewportBorderString;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
/////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
// Accessibility support
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
     * Gets the AccessibleContext associated with this JScrollPane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
     * For scroll panes, the AccessibleContext takes the form of an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
     * AccessibleJScrollPane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
     * A new AccessibleJScrollPane instance is created if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
     * @return an AccessibleJScrollPane that serves as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
     *         AccessibleContext of this JScrollPane
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
    public AccessibleContext getAccessibleContext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
        if (accessibleContext == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
            accessibleContext = new AccessibleJScrollPane();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
        return accessibleContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
     * This class implements accessibility support for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
     * <code>JScrollPane</code> class.  It provides an implementation of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
     * Java Accessibility API appropriate to scroll pane user-interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
     * elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
     * <strong>Warning:</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
     * Serialized objects of this class will not be compatible with
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
     * future Swing releases. The current serialization support is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
     * appropriate for short term storage or RMI between applications running
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
     * the same version of Swing.  As of 1.4, support for long term storage
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
     * of all JavaBeans<sup><font size="-2">TM</font></sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
     * has been added to the <code>java.beans</code> package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
     * Please see {@link java.beans.XMLEncoder}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
    protected class AccessibleJScrollPane extends AccessibleJComponent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
        implements ChangeListener, PropertyChangeListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
        protected JViewport viewPort = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
         * Resets the viewport ChangeListener and PropertyChangeListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
        public void resetViewPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
            if (viewPort != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
                viewPort.removeChangeListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
                viewPort.removePropertyChangeListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
            viewPort = JScrollPane.this.getViewport();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
            if (viewPort != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
                viewPort.addChangeListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
                viewPort.addPropertyChangeListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
         * AccessibleJScrollPane constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
        public AccessibleJScrollPane() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
            super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
            resetViewPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
            // initialize the AccessibleRelationSets for the JScrollPane
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
            // and JScrollBar(s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
            JScrollBar scrollBar = getHorizontalScrollBar();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
            if (scrollBar != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
                setScrollBarRelations(scrollBar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
            scrollBar = getVerticalScrollBar();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
            if (scrollBar != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
                setScrollBarRelations(scrollBar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
         * Get the role of this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
         * @return an instance of AccessibleRole describing the role of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
         * object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
         * @see AccessibleRole
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
        public AccessibleRole getAccessibleRole() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
            return AccessibleRole.SCROLL_PANE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
         * Invoked when the target of the listener has changed its state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
         * @param e  a <code>ChangeEvent</code> object. Must not be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
         * @throws NullPointerException if the parameter is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
        public void stateChanged(ChangeEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
            if (e == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
                throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
            firePropertyChange(ACCESSIBLE_VISIBLE_DATA_PROPERTY,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
                               Boolean.valueOf(false),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
                               Boolean.valueOf(true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
         * This method gets called when a bound property is changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
         * @param e A <code>PropertyChangeEvent</code> object describing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
         * the event source and the property that has changed. Must not be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
         * @throws NullPointerException if the parameter is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
         * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
        public void propertyChange(PropertyChangeEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
            String propertyName = e.getPropertyName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
            if (propertyName == "horizontalScrollBar" ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
                propertyName == "verticalScrollBar") {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
                if (e.getNewValue() instanceof JScrollBar) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
                    setScrollBarRelations((JScrollBar)e.getNewValue());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
         * Sets the CONTROLLER_FOR and CONTROLLED_BY AccessibleRelations for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
         * the JScrollPane and JScrollBar. JScrollBar must not be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
        void setScrollBarRelations(JScrollBar scrollBar) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
             * The JScrollBar is a CONTROLLER_FOR the JScrollPane.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
             * The JScrollPane is CONTROLLED_BY the JScrollBar.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
            AccessibleRelation controlledBy =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
                new AccessibleRelation(AccessibleRelation.CONTROLLED_BY,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
                                       scrollBar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
            AccessibleRelation controllerFor =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
                new AccessibleRelation(AccessibleRelation.CONTROLLER_FOR,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
                                       JScrollPane.this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
            // set the relation set for the scroll bar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
            AccessibleContext ac = scrollBar.getAccessibleContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
            ac.getAccessibleRelationSet().add(controllerFor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
            // set the relation set for the scroll pane
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
            getAccessibleRelationSet().add(controlledBy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
}