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