jdk/src/share/classes/javax/swing/border/TitledBorder.java
author malenkov
Tue, 29 Oct 2013 17:01:06 +0400
changeset 21278 ef8a3a2a72f2
parent 20458 f2423fb3fd19
child 23010 6dadb192ad81
permissions -rw-r--r--
8022746: List of spelling errors in API doc Reviewed-by: alexsch, smarks
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
     2
 * Copyright (c) 1997, 2010, 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: 2658
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: 2658
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: 2658
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2658
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2658
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package javax.swing.border;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    27
import java.awt.Color;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    28
import java.awt.Component;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    29
import java.awt.Dimension;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    30
import java.awt.Font;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.Graphics;
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    32
import java.awt.Graphics2D;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.awt.Insets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.awt.Rectangle;
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    35
import java.awt.geom.Path2D;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.beans.ConstructorProperties;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import javax.swing.JComponent;
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    38
import javax.swing.JLabel;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import javax.swing.UIManager;
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    40
import javax.swing.plaf.basic.BasicHTML;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * A class which implements an arbitrary border
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * with the addition of a String title in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * specified position and justification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * If the border, font, or color property values are not
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 20458
diff changeset
    48
 * specified in the constructor or by invoking the appropriate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * set methods, the property values will be defined by the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * look and feel, using the following property names in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * Defaults Table:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * <li>&quot;TitledBorder.border&quot;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <li>&quot;TitledBorder.font&quot;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * <li>&quot;TitledBorder.titleColor&quot;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <strong>Warning:</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * Serialized objects of this class will not be compatible with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * future Swing releases. The current serialization support is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * appropriate for short term storage or RMI between applications running
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * 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: 13236
diff changeset
    63
 * of all JavaBeans&trade;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * has been added to the <code>java.beans</code> package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * Please see {@link java.beans.XMLEncoder}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * @author David Kloba
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * @author Amy Fowler
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 */
11268
f0e59c4852de 7116950: Reduce number of warnings in swing
alexsch
parents: 9233
diff changeset
    70
@SuppressWarnings("serial")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
public class TitledBorder extends AbstractBorder
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    protected String title;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    protected Border border;
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    75
    protected int titlePosition;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    76
    protected int titleJustification;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    77
    protected Font titleFont;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    78
    protected Color titleColor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    80
    private final JLabel label;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * Use the default vertical orientation for the title text.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    static public final int     DEFAULT_POSITION        = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    /** Position the title above the border's top line. */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    87
    static public final int     ABOVE_TOP               = 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    /** Position the title in the middle of the border's top line. */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    89
    static public final int     TOP                     = 2;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /** Position the title below the border's top line. */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    91
    static public final int     BELOW_TOP               = 3;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    /** Position the title above the border's bottom line. */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    93
    static public final int     ABOVE_BOTTOM            = 4;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    /** Position the title in the middle of the border's bottom line. */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    95
    static public final int     BOTTOM                  = 5;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /** Position the title below the border's bottom line. */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
    97
    static public final int     BELOW_BOTTOM            = 6;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * Use the default justification for the title text.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    static public final int     DEFAULT_JUSTIFICATION   = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /** Position title text at the left side of the border line. */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   104
    static public final int     LEFT                    = 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    /** Position title text in the center of the border line. */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   106
    static public final int     CENTER                  = 2;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /** Position title text at the right side of the border line. */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   108
    static public final int     RIGHT                   = 3;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    /** Position title text at the left side of the border line
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     *  for left to right orientation, at the right side of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *  border line for right to left orientation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    static public final int     LEADING = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /** Position title text at the right side of the border line
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     *  for left to right orientation, at the left side of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     *  border line for right to left orientation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    static public final int     TRAILING = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    // Space between the border and the component's edge
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    static protected final int EDGE_SPACING = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    // Space between the border and text
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    static protected final int TEXT_SPACING = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    // Horizontal inset of text that is left or right justified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    static protected final int TEXT_INSET_H = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * Creates a TitledBorder instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @param title  the title the border should display
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   134
    public TitledBorder(String title) {
2658
43e06bc950ec 6591875: Nimbus Swing Look and Feel
peterz
parents: 463
diff changeset
   135
        this(null, title, LEADING, DEFAULT_POSITION, null, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * Creates a TitledBorder instance with the specified border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * and an empty title.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * @param border  the border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   144
    public TitledBorder(Border border) {
2658
43e06bc950ec 6591875: Nimbus Swing Look and Feel
peterz
parents: 463
diff changeset
   145
        this(border, "", LEADING, DEFAULT_POSITION, null, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * Creates a TitledBorder instance with the specified border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * and title.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @param border  the border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * @param title  the title the border should display
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    public TitledBorder(Border border, String title) {
2658
43e06bc950ec 6591875: Nimbus Swing Look and Feel
peterz
parents: 463
diff changeset
   156
        this(border, title, LEADING, DEFAULT_POSITION, null, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * Creates a TitledBorder instance with the specified border,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * title, title-justification, and title-position.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * @param border  the border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * @param title  the title the border should display
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @param titleJustification the justification for the title
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @param titlePosition the position for the title
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    public TitledBorder(Border border,
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   169
                        String title,
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   170
                        int titleJustification,
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   171
                        int titlePosition) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        this(border, title, titleJustification,
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   173
             titlePosition, null, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * Creates a TitledBorder instance with the specified border,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * title, title-justification, title-position, and title-font.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @param border  the border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param title  the title the border should display
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * @param titleJustification the justification for the title
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * @param titlePosition the position for the title
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * @param titleFont the font for rendering the title
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    public TitledBorder(Border border,
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   187
                        String title,
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   188
                        int titleJustification,
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   189
                        int titlePosition,
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   190
                        Font titleFont) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        this(border, title, titleJustification,
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   192
             titlePosition, titleFont, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * Creates a TitledBorder instance with the specified border,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * title, title-justification, title-position, title-font, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * title-color.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @param border  the border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * @param title  the title the border should display
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * @param titleJustification the justification for the title
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * @param titlePosition the position for the title
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * @param titleFont the font of the title
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @param titleColor the color of the title
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    @ConstructorProperties({"border", "title", "titleJustification", "titlePosition", "titleFont", "titleColor"})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    public TitledBorder(Border border,
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   209
                        String title,
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   210
                        int titleJustification,
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   211
                        int titlePosition,
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   212
                        Font titleFont,
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   213
                        Color titleColor) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        this.title = title;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        this.border = border;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        this.titleFont = titleFont;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        this.titleColor = titleColor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        setTitleJustification(titleJustification);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        setTitlePosition(titlePosition);
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   221
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   222
        this.label = new JLabel();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   223
        this.label.setOpaque(false);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   224
        this.label.putClientProperty(BasicHTML.propertyKey, null);
2
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
     * Paints the border for the specified component with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * specified position and size.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * @param c the component for which this border is being painted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @param g the paint graphics
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * @param x the x position of the painted border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * @param y the y position of the painted border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * @param width the width of the painted border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * @param height the height of the painted border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   238
        Border border = getBorder();
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   239
        String title = getTitle();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   240
        if ((title != null) && !title.isEmpty()) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   241
            int edge = (border instanceof TitledBorder) ? 0 : EDGE_SPACING;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   242
            JLabel label = getLabel(c);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   243
            Dimension size = label.getPreferredSize();
9233
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   244
            Insets insets = getBorderInsets(border, c, new Insets(0, 0, 0, 0));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   246
            int borderX = x + edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   247
            int borderY = y + edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   248
            int borderW = width - edge - edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   249
            int borderH = height - edge - edge;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   251
            int labelY = y;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   252
            int labelH = size.height;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   253
            int position = getPosition();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   254
            switch (position) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   255
                case ABOVE_TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   256
                    insets.left = 0;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   257
                    insets.right = 0;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   258
                    borderY += labelH - edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   259
                    borderH -= labelH - edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   260
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   261
                case TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   262
                    insets.top = edge + insets.top/2 - labelH/2;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   263
                    if (insets.top < edge) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   264
                        borderY -= insets.top;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   265
                        borderH += insets.top;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   266
                    }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   267
                    else {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   268
                        labelY += insets.top;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   269
                    }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   270
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   271
                case BELOW_TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   272
                    labelY += insets.top + edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   273
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   274
                case ABOVE_BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   275
                    labelY += height - labelH - insets.bottom - edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   276
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   277
                case BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   278
                    labelY += height - labelH;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   279
                    insets.bottom = edge + (insets.bottom - labelH) / 2;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   280
                    if (insets.bottom < edge) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   281
                        borderH += insets.bottom;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   282
                    }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   283
                    else {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   284
                        labelY -= insets.bottom;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   285
                    }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   286
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   287
                case BELOW_BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   288
                    insets.left = 0;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   289
                    insets.right = 0;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   290
                    labelY += height - labelH;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   291
                    borderH -= labelH - edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   292
                    break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            }
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   294
            insets.left += edge + TEXT_INSET_H;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   295
            insets.right += edge + TEXT_INSET_H;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   297
            int labelX = x;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   298
            int labelW = width - insets.left - insets.right;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   299
            if (labelW > size.width) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   300
                labelW = size.width;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   301
            }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   302
            switch (getJustification(c)) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   303
                case LEFT:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   304
                    labelX += insets.left;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   305
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   306
                case RIGHT:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   307
                    labelX += width - insets.right - labelW;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   308
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   309
                case CENTER:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   310
                    labelX += (width - labelW) / 2;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   311
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   312
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   314
            if (border != null) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   315
                if ((position != TOP) && (position != BOTTOM)) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   316
                    border.paintBorder(c, g, borderX, borderY, borderW, borderH);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
                }
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   318
                else {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   319
                    Graphics g2 = g.create();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   320
                    if (g2 instanceof Graphics2D) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   321
                        Graphics2D g2d = (Graphics2D) g2;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   322
                        Path2D path = new Path2D.Float();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   323
                        path.append(new Rectangle(borderX, borderY, borderW, labelY - borderY), false);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   324
                        path.append(new Rectangle(borderX, labelY, labelX - borderX - TEXT_SPACING, labelH), false);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   325
                        path.append(new Rectangle(labelX + labelW + TEXT_SPACING, labelY, borderX - labelX + borderW - labelW - TEXT_SPACING, labelH), false);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   326
                        path.append(new Rectangle(borderX, labelY + labelH, borderW, borderY - labelY + borderH - labelH), false);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   327
                        g2d.clip(path);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                    }
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   329
                    border.paintBorder(c, g2, borderX, borderY, borderW, borderH);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   330
                    g2.dispose();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
            }
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   333
            g.translate(labelX, labelY);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   334
            label.setSize(labelW, labelH);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   335
            label.paint(g);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   336
            g.translate(-labelX, -labelY);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        }
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   338
        else if (border != null) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   339
            border.paintBorder(c, g, x, y, width, height);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   340
        }
2
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
     * Reinitialize the insets parameter with this Border's current Insets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * @param c the component for which this border insets value applies
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @param insets the object to be reinitialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    public Insets getBorderInsets(Component c, Insets insets) {
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   349
        Border border = getBorder();
9233
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   350
        insets = getBorderInsets(border, c, insets);
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   351
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   352
        String title = getTitle();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   353
        if ((title != null) && !title.isEmpty()) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   354
            int edge = (border instanceof TitledBorder) ? 0 : EDGE_SPACING;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   355
            JLabel label = getLabel(c);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   356
            Dimension size = label.getPreferredSize();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   358
            switch (getPosition()) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   359
                case ABOVE_TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   360
                    insets.top += size.height - edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   361
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   362
                case TOP: {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   363
                    if (insets.top < size.height) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   364
                        insets.top = size.height - edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   365
                    }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   366
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   367
                }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   368
                case BELOW_TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   369
                    insets.top += size.height;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   370
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   371
                case ABOVE_BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   372
                    insets.bottom += size.height;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   373
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   374
                case BOTTOM: {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   375
                    if (insets.bottom < size.height) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   376
                        insets.bottom = size.height - edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   377
                    }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   378
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   379
                }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   380
                case BELOW_BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   381
                    insets.bottom += size.height - edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   382
                    break;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   383
            }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   384
            insets.top += edge + TEXT_SPACING;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   385
            insets.left += edge + TEXT_SPACING;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   386
            insets.right += edge + TEXT_SPACING;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   387
            insets.bottom += edge + TEXT_SPACING;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
        return insets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * Returns whether or not the border is opaque.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     */
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   395
    public boolean isBorderOpaque() {
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   396
        return false;
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   397
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * Returns the title of the titled border.
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   401
     *
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   402
     * @return the title of the titled border
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     */
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   404
    public String getTitle() {
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   405
        return title;
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   406
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * Returns the border of the titled border.
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   410
     *
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   411
     * @return the border of the titled border
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     */
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   413
    public Border getBorder() {
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   414
        return border != null
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   415
                ? border
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   416
                : UIManager.getBorder("TitledBorder.border");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * Returns the title-position of the titled border.
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   421
     *
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   422
     * @return the title-position of the titled border
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     */
2658
43e06bc950ec 6591875: Nimbus Swing Look and Feel
peterz
parents: 463
diff changeset
   424
    public int getTitlePosition() {
43e06bc950ec 6591875: Nimbus Swing Look and Feel
peterz
parents: 463
diff changeset
   425
        return titlePosition;
43e06bc950ec 6591875: Nimbus Swing Look and Feel
peterz
parents: 463
diff changeset
   426
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * Returns the title-justification of the titled border.
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   430
     *
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   431
     * @return the title-justification of the titled border
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     */
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   433
    public int getTitleJustification() {
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   434
        return titleJustification;
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   435
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * Returns the title-font of the titled border.
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   439
     *
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   440
     * @return the title-font of the titled border
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     */
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   442
    public Font getTitleFont() {
13236
80fab7a1ebd6 7022041: TitleBorder Null Pointer Exception
ptisnovs
parents: 11268
diff changeset
   443
        return titleFont == null ? UIManager.getFont("TitledBorder.font") : titleFont;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * Returns the title-color of the titled border.
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   448
     *
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   449
     * @return the title-color of the titled border
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     */
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   451
    public Color getTitleColor() {
13236
80fab7a1ebd6 7022041: TitleBorder Null Pointer Exception
ptisnovs
parents: 11268
diff changeset
   452
        return titleColor == null ? UIManager.getColor("TitledBorder.titleColor") : titleColor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    // REMIND(aim): remove all or some of these set methods?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * Sets the title of the titled border.
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   460
     * @param title  the title for the border
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     */
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   462
    public void setTitle(String title) {
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   463
        this.title = title;
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   464
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * Sets the border of the titled border.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * @param border the border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     */
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   470
    public void setBorder(Border border) {
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   471
        this.border = border;
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   472
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * Sets the title-position of the titled border.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * @param titlePosition the position for the border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    public void setTitlePosition(int titlePosition) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        switch (titlePosition) {
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   480
            case ABOVE_TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   481
            case TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   482
            case BELOW_TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   483
            case ABOVE_BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   484
            case BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   485
            case BELOW_BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   486
            case DEFAULT_POSITION:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
                this.titlePosition = titlePosition;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
                break;
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   489
            default:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   490
                throw new IllegalArgumentException(titlePosition +
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   491
                        " is not a valid title position.");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * Sets the title-justification of the titled border.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * @param titleJustification the justification for the border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     */
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   499
    public void setTitleJustification(int titleJustification) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        switch (titleJustification) {
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   501
            case DEFAULT_JUSTIFICATION:
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   502
            case LEFT:
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   503
            case CENTER:
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   504
            case RIGHT:
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   505
            case LEADING:
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   506
            case TRAILING:
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   507
                this.titleJustification = titleJustification;
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   508
                break;
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   509
            default:
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   510
                throw new IllegalArgumentException(titleJustification +
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   511
                        " is not a valid title justification.");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * Sets the title-font of the titled border.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * @param titleFont the font for the border title
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
    public void setTitleFont(Font titleFont) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        this.titleFont = titleFont;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * Sets the title-color of the titled border.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * @param titleColor the color for the border title
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    public void setTitleColor(Color titleColor) {
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   528
        this.titleColor = titleColor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     * Returns the minimum dimensions this border requires
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * in order to fully display the border and title.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * @param c the component where this border will be drawn
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   535
     * @return the {@code Dimension} object
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
    public Dimension getMinimumSize(Component c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        Insets insets = getBorderInsets(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        Dimension minSize = new Dimension(insets.right+insets.left,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                                          insets.top+insets.bottom);
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   541
        String title = getTitle();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   542
        if ((title != null) && !title.isEmpty()) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   543
            JLabel label = getLabel(c);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   544
            Dimension size = label.getPreferredSize();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   545
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   546
            int position = getPosition();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   547
            if ((position != ABOVE_TOP) && (position != BELOW_BOTTOM)) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   548
                minSize.width += size.width;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   549
            }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   550
            else if (minSize.width < size.width) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   551
                minSize.width += size.width;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   552
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        return minSize;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * Returns the baseline.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * @throws IllegalArgumentException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     * @see javax.swing.JComponent#getBaseline(int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
    public int getBaseline(Component c, int width, int height) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        if (c == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
            throw new NullPointerException("Must supply non-null component");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        }
463
435cd1cc42b6 6625450: javax.swing.border.TitledBorder.getBaseline() doesn't throw IAE when width is < 0
malenkov
parents: 2
diff changeset
   569
        if (width < 0) {
435cd1cc42b6 6625450: javax.swing.border.TitledBorder.getBaseline() doesn't throw IAE when width is < 0
malenkov
parents: 2
diff changeset
   570
            throw new IllegalArgumentException("Width must be >= 0");
435cd1cc42b6 6625450: javax.swing.border.TitledBorder.getBaseline() doesn't throw IAE when width is < 0
malenkov
parents: 2
diff changeset
   571
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        if (height < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
            throw new IllegalArgumentException("Height must be >= 0");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        }
7263
3da4189127ac 6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
malenkov
parents: 5953
diff changeset
   575
        Border border = getBorder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
        String title = getTitle();
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   577
        if ((title != null) && !title.isEmpty()) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   578
            int edge = (border instanceof TitledBorder) ? 0 : EDGE_SPACING;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   579
            JLabel label = getLabel(c);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   580
            Dimension size = label.getPreferredSize();
9233
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   581
            Insets insets = getBorderInsets(border, c, new Insets(0, 0, 0, 0));
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   582
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   583
            int baseline = label.getBaseline(size.width, size.height);
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   584
            switch (getPosition()) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   585
                case ABOVE_TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   586
                    return baseline;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   587
                case TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   588
                    insets.top = edge + (insets.top - size.height) / 2;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   589
                    return (insets.top < edge)
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   590
                            ? baseline
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   591
                            : baseline + insets.top;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   592
                case BELOW_TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   593
                    return baseline + insets.top + edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   594
                case ABOVE_BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   595
                    return baseline + height - size.height - insets.bottom - edge;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   596
                case BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   597
                    insets.bottom = edge + (insets.bottom - size.height) / 2;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   598
                    return (insets.bottom < edge)
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   599
                            ? baseline + height - size.height
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   600
                            : baseline + height - size.height + insets.bottom;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   601
                case BELOW_BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   602
                    return baseline + height - size.height;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     * Returns an enum indicating how the baseline of the border
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * changes as the size changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * @see javax.swing.JComponent#getBaseline(int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    public Component.BaselineResizeBehavior getBaselineResizeBehavior(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            Component c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        super.getBaselineResizeBehavior(c);
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   619
        switch (getPosition()) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   620
            case TitledBorder.ABOVE_TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   621
            case TitledBorder.TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   622
            case TitledBorder.BELOW_TOP:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   623
                return Component.BaselineResizeBehavior.CONSTANT_ASCENT;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   624
            case TitledBorder.ABOVE_BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   625
            case TitledBorder.BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   626
            case TitledBorder.BELOW_BOTTOM:
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   627
                return JComponent.BaselineResizeBehavior.CONSTANT_DESCENT;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        return Component.BaselineResizeBehavior.OTHER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   632
    private int getPosition() {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   633
        int position = getTitlePosition();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   634
        if (position != DEFAULT_POSITION) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   635
            return position;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   636
        }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   637
        Object value = UIManager.get("TitledBorder.position");
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   638
        if (value instanceof Integer) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   639
            int i = (Integer) value;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   640
            if ((0 < i) && (i <= 6)) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   641
                return i;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   642
            }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   643
        }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   644
        else if (value instanceof String) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   645
            String s = (String) value;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   646
            if (s.equalsIgnoreCase("ABOVE_TOP")) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   647
                return ABOVE_TOP;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   648
            }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   649
            if (s.equalsIgnoreCase("TOP")) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   650
                return TOP;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   651
            }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   652
            if (s.equalsIgnoreCase("BELOW_TOP")) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   653
                return BELOW_TOP;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   654
            }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   655
            if (s.equalsIgnoreCase("ABOVE_BOTTOM")) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   656
                return ABOVE_BOTTOM;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   657
            }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   658
            if (s.equalsIgnoreCase("BOTTOM")) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   659
                return BOTTOM;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   660
            }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   661
            if (s.equalsIgnoreCase("BELOW_BOTTOM")) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   662
                return BELOW_BOTTOM;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   663
            }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   664
        }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   665
        return TOP;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   666
    }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   667
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   668
    private int getJustification(Component c) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   669
        int justification = getTitleJustification();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   670
        if ((justification == LEADING) || (justification == DEFAULT_JUSTIFICATION)) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   671
            return c.getComponentOrientation().isLeftToRight() ? LEFT : RIGHT;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   672
        }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   673
        if (justification == TRAILING) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   674
            return c.getComponentOrientation().isLeftToRight() ? RIGHT : LEFT;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   675
        }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   676
        return justification;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   677
    }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   678
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    protected Font getFont(Component c) {
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   680
        Font font = getTitleFont();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   681
        if (font != null) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   682
            return font;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   683
        }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   684
        if (c != null) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   685
            font = c.getFont();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   686
            if (font != null) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   687
                return font;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   688
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
        return new Font(Font.DIALOG, Font.PLAIN, 12);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   693
    private Color getColor(Component c) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   694
        Color color = getTitleColor();
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   695
        if (color != null) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   696
            return color;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   697
        }
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   698
        return (c != null)
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   699
                ? c.getForeground()
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   700
                : null;
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   701
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
5953
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   703
    private JLabel getLabel(Component c) {
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   704
        this.label.setText(getTitle());
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   705
        this.label.setFont(getFont(c));
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   706
        this.label.setForeground(getColor(c));
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   707
        this.label.setComponentOrientation(c.getComponentOrientation());
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   708
        this.label.setEnabled(c.isEnabled());
33ad0303d717 4129681: Cannot get a title border to display its label as disabled
malenkov
parents: 5506
diff changeset
   709
        return this.label;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
    }
9233
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   711
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   712
    private static Insets getBorderInsets(Border border, Component c, Insets insets) {
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   713
        if (border == null) {
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   714
            insets.set(0, 0, 0, 0);
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   715
        }
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   716
        else if (border instanceof AbstractBorder) {
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   717
            AbstractBorder ab = (AbstractBorder) border;
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   718
            insets = ab.getBorderInsets(c, insets);
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   719
        }
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   720
        else {
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   721
            Insets i = border.getBorderInsets(c);
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   722
            insets.set(i.top, i.left, i.bottom, i.right);
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   723
        }
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   724
        return insets;
9170d0732f7a 7034614: The insets of TitledBorder vary, will be modified by another method, in JDK7
malenkov
parents: 7263
diff changeset
   725
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
}