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