jdk/src/share/classes/sun/swing/SwingUtilities2.java
author lana
Wed, 18 Sep 2013 16:01:37 -0700
changeset 20145 08266da0533a
parent 20113 ee0defbadbb1
parent 19807 9f7860fad128
child 20851 9f284cf7836b
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
20113
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
     2
 * Copyright (c) 2002, 2013, 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: 4278
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: 4278
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: 4278
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4278
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4278
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.swing;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.lang.reflect.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import static java.awt.RenderingHints.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.awt.event.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.awt.font.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.awt.geom.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.awt.print.PrinterGraphics;
20113
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
    36
import java.text.CharacterIterator;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.text.AttributedCharacterIterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.text.AttributedString;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import javax.swing.*;
18133
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
    41
import javax.swing.event.TreeModelEvent;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import javax.swing.text.Highlighter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import javax.swing.text.JTextComponent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import javax.swing.text.DefaultHighlighter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import javax.swing.text.DefaultCaret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import javax.swing.table.TableCellRenderer;
5590
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
    47
import javax.swing.table.TableColumnModel;
18133
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
    48
import javax.swing.tree.TreeModel;
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
    49
import javax.swing.tree.TreePath;
5590
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
    50
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
import sun.swing.PrintColorUIResource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
import sun.swing.ImageIconUIResource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
import sun.print.ProxyPrintGraphics;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
import sun.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
import sun.security.action.GetPropertyAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
import sun.security.util.SecurityConstants;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
import sun.font.FontDesignMetrics;
3928
be186a33df9b 6795908: Refactor FontManager
rkennke
parents: 1743
diff changeset
    60
import sun.font.FontUtilities;
1724
a22a286aa16f 6748082: remove platform-specific code from SwingUtilities2.isDisplayLocal
tdv
parents: 2
diff changeset
    61
import sun.java2d.SunGraphicsEnvironment;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
import java.util.concurrent.Callable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
import java.util.concurrent.Future;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
import java.util.concurrent.FutureTask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * A collection of utility methods for Swing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * <b>WARNING:</b> While this class is public, it should not be treated as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * public API and its API may change in incompatable ways between dot dot
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * releases and even patch releases. You should not rely on this class even
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * existing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
public class SwingUtilities2 {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * The <code>AppContext</code> key for our one <code>LAFState</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    public static final Object LAF_STATE_KEY =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            new StringBuffer("LookAndFeel State");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    84
    // Maintain a cache of CACHE_SIZE fonts and the left side bearing
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    85
     // of the characters falling into the range MIN_CHAR_INDEX to
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    86
     // MAX_CHAR_INDEX. The values in fontCache are created as needed.
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    87
     private static LSBCacheEntry[] fontCache;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    88
     // Windows defines 6 font desktop properties, we will therefore only
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    89
     // cache the metrics for 6 fonts.
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    90
     private static final int CACHE_SIZE = 6;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    91
     // nextIndex in fontCache to insert a font into.
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    92
     private static int nextIndex;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    93
     // LSBCacheEntry used to search in fontCache to see if we already
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    94
     // have an entry for a particular font
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    95
     private static LSBCacheEntry searchKey;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    96
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    97
     // getLeftSideBearing will consult all characters that fall in the
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    98
     // range MIN_CHAR_INDEX to MAX_CHAR_INDEX.
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
    99
     private static final int MIN_CHAR_INDEX = (int)'W';
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   100
     private static final int MAX_CHAR_INDEX = (int)'W' + 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    public static final FontRenderContext DEFAULT_FRC =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        new FontRenderContext(null, false, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * A JComponent client property is used to determine text aa settings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * To avoid having this property persist between look and feels changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * the value of the property is set to null in JComponent.setUI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    public static final Object AA_TEXT_PROPERTY_KEY =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                          new StringBuffer("AATextInfoPropertyKey");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    /**
5763
9a942d6fb0aa 6636983: Japanese text does not display correctly in a JEditorPane
rupashka
parents: 5597
diff changeset
   114
     * Attribute key for the content elements.  If it is set on an element, the
9a942d6fb0aa 6636983: Japanese text does not display correctly in a JEditorPane
rupashka
parents: 5597
diff changeset
   115
     * element is considered to be a line break.
9a942d6fb0aa 6636983: Japanese text does not display correctly in a JEditorPane
rupashka
parents: 5597
diff changeset
   116
     */
9a942d6fb0aa 6636983: Japanese text does not display correctly in a JEditorPane
rupashka
parents: 5597
diff changeset
   117
    public static final String IMPLIED_CR = "CR";
9a942d6fb0aa 6636983: Japanese text does not display correctly in a JEditorPane
rupashka
parents: 5597
diff changeset
   118
9a942d6fb0aa 6636983: Japanese text does not display correctly in a JEditorPane
rupashka
parents: 5597
diff changeset
   119
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * Used to tell a text component, being used as an editor for table
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * or tree, how many clicks it took to start editing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    private static final StringBuilder SKIP_CLICK_COUNT =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        new StringBuilder("skipClickCount");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    /* Presently this class assumes default fractional metrics.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * This may need to change to emulate future platform L&Fs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    public static class AATextInfo {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        private static AATextInfo getAATextInfoFromMap(Map hints) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            Object aaHint   = hints.get(KEY_TEXT_ANTIALIASING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            Object contHint = hints.get(KEY_TEXT_LCD_CONTRAST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            if (aaHint == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
                aaHint == VALUE_TEXT_ANTIALIAS_OFF ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
                aaHint == VALUE_TEXT_ANTIALIAS_DEFAULT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                return new AATextInfo(aaHint, (Integer)contHint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        public static AATextInfo getAATextInfo(boolean lafCondition) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            SunToolkit.setAAFontSettingsCondition(lafCondition);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            Toolkit tk = Toolkit.getDefaultToolkit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            Object map = tk.getDesktopProperty(SunToolkit.DESKTOPFONTHINTS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            if (map instanceof Map) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                return getAATextInfoFromMap((Map)map);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        Object aaHint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        Integer lcdContrastHint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        FontRenderContext frc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        /* These are rarely constructed objects, and only when a complete
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
         * UI is being updated, so the cost of the tests here is minimal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
         * and saves tests elsewhere.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
         * We test that the values are ones we support/expect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        public AATextInfo(Object aaHint, Integer lcdContrastHint) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            if (aaHint == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                throw new InternalError("null not allowed here");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            if (aaHint == VALUE_TEXT_ANTIALIAS_OFF ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                aaHint == VALUE_TEXT_ANTIALIAS_DEFAULT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                throw new InternalError("AA must be on");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            this.aaHint = aaHint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            this.lcdContrastHint = lcdContrastHint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            this.frc = new FontRenderContext(null, aaHint,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                                             VALUE_FRACTIONALMETRICS_DEFAULT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * Key used in client properties used to indicate that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * <code>ComponentUI</code> of the JComponent instance should be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    public static final Object COMPONENT_UI_PROPERTY_KEY =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                            new StringBuffer("ComponentUIPropertyKey");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    /** Client Property key for the text maximal offsets for BasicMenuItemUI */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    public static final StringUIClientPropertyKey BASICMENUITEMUI_MAX_TEXT_OFFSET =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        new StringUIClientPropertyKey ("maxTextOffset");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    // security stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    private static Field inputEvent_CanAccessSystemClipboard_Field = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    private static final String UntrustedClipboardAccess =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        "UNTRUSTED_CLIPBOARD_ACCESS_KEY";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    //all access to  charsBuffer is to be synchronized on charsBufferLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    private static final int CHAR_BUFFER_SIZE = 100;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    private static final Object charsBufferLock = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    private static char[] charsBuffer = new char[CHAR_BUFFER_SIZE];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   201
    static {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   202
        fontCache = new LSBCacheEntry[CACHE_SIZE];
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   203
    }
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   204
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    /**
3976
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   206
     * Fill the character buffer cache.  Return the buffer length.
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   207
     */
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   208
    private static int syncCharsBuffer(String s) {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   209
        int length = s.length();
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   210
        if ((charsBuffer == null) || (charsBuffer.length < length)) {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   211
            charsBuffer = s.toCharArray();
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   212
        } else {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   213
            s.getChars(0, length, charsBuffer, 0);
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   214
        }
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   215
        return length;
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   216
    }
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   217
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   218
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * checks whether TextLayout is required to handle characters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @param text characters to be tested
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * @param start start
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * @param limit limit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * @return <tt>true</tt>  if TextLayout is required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     *         <tt>false</tt> if TextLayout is not required
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    public static final boolean isComplexLayout(char[] text, int start, int limit) {
3928
be186a33df9b 6795908: Refactor FontManager
rkennke
parents: 1743
diff changeset
   228
        return FontUtilities.isComplexText(text, start, limit);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    // WARNING WARNING WARNING WARNING WARNING WARNING
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    // Many of the following methods are invoked from older API.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    // As this older API was not passed a Component, a null Component may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    // now be passsed in.  For example, SwingUtilities.computeStringWidth
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    // is implemented to call SwingUtilities2.stringWidth, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    // SwingUtilities variant does not take a JComponent, as such
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    // SwingUtilities2.stringWidth can be passed a null Component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    // In other words, if you add new functionality to these methods you
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    // need to gracefully handle null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * Returns whether or not text should be drawn antialiased.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * @param c JComponent to test.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * @return Whether or not text should be drawn antialiased for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     *         specified component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    public static AATextInfo drawTextAntialiased(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        if (c != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            /* a non-null property implies some form of AA requested */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
            return (AATextInfo)c.getClientProperty(AA_TEXT_PROPERTY_KEY);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        // No component, assume aa is off
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * Returns the left side bearing of the first character of string. The
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   261
     * left side bearing is calculated from the passed in
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   262
     * FontMetrics.  If the passed in String is less than one
3980
b41744c10146 6883341: SWAT: jdk7-b72 swat build(2009-09-17) threw exceptions when running Java2D demo by clicking Paint ta
alexp
parents: 3976
diff changeset
   263
     * character {@code 0} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * @param c JComponent that will display the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * @param fm FontMetrics used to measure the String width
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * @param string String to get the left side bearing for.
3980
b41744c10146 6883341: SWAT: jdk7-b72 swat build(2009-09-17) threw exceptions when running Java2D demo by clicking Paint ta
alexp
parents: 3976
diff changeset
   268
     * @throws NullPointerException if {@code string} is {@code null}
b41744c10146 6883341: SWAT: jdk7-b72 swat build(2009-09-17) threw exceptions when running Java2D demo by clicking Paint ta
alexp
parents: 3976
diff changeset
   269
     *
b41744c10146 6883341: SWAT: jdk7-b72 swat build(2009-09-17) threw exceptions when running Java2D demo by clicking Paint ta
alexp
parents: 3976
diff changeset
   270
     * @return the left side bearing of the first character of string
b41744c10146 6883341: SWAT: jdk7-b72 swat build(2009-09-17) threw exceptions when running Java2D demo by clicking Paint ta
alexp
parents: 3976
diff changeset
   271
     * or {@code 0} if the string is empty
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    public static int getLeftSideBearing(JComponent c, FontMetrics fm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                                         String string) {
9231
99c8b3f7a8d8 7036148: NullPointerException with null JMenu name
alexp
parents: 7668
diff changeset
   275
        if ((string == null) || (string.length() == 0)) {
99c8b3f7a8d8 7036148: NullPointerException with null JMenu name
alexp
parents: 7668
diff changeset
   276
            return 0;
3980
b41744c10146 6883341: SWAT: jdk7-b72 swat build(2009-09-17) threw exceptions when running Java2D demo by clicking Paint ta
alexp
parents: 3976
diff changeset
   277
        }
9231
99c8b3f7a8d8 7036148: NullPointerException with null JMenu name
alexp
parents: 7668
diff changeset
   278
        return getLeftSideBearing(c, fm, string.charAt(0));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    /**
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   282
     * Returns the left side bearing of the first character of string. The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * left side bearing is calculated from the passed in FontMetrics.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * @param c JComponent that will display the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * @param fm FontMetrics used to measure the String width
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * @param firstChar Character to get the left side bearing for.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    public static int getLeftSideBearing(JComponent c, FontMetrics fm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                                         char firstChar) {
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   291
        int charIndex = (int) firstChar;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   292
        if (charIndex < MAX_CHAR_INDEX && charIndex >= MIN_CHAR_INDEX) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   293
            byte[] lsbs = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   295
            FontRenderContext frc = getFontRenderContext(c, fm);
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   296
            Font font = fm.getFont();
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   297
            synchronized (SwingUtilities2.class) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   298
                LSBCacheEntry entry = null;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   299
                if (searchKey == null) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   300
                    searchKey = new LSBCacheEntry(frc, font);
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   301
                } else {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   302
                    searchKey.reset(frc, font);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                }
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   304
                // See if we already have an entry for this pair
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   305
                for (LSBCacheEntry cacheEntry : fontCache) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                    if (searchKey.equals(cacheEntry)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
                        entry = cacheEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
                }
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   311
                if (entry == null) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   312
                    // No entry for this pair, add it.
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   313
                    entry = searchKey;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   314
                    fontCache[nextIndex] = searchKey;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   315
                    searchKey = null;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   316
                    nextIndex = (nextIndex + 1) % CACHE_SIZE;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   317
                }
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   318
                return entry.getLeftSideBearing(firstChar);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        }
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
   321
        return 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * Returns the FontMetrics for the current Font of the passed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * in Graphics.  This method is used when a Graphics
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * is available, typically when painting.  If a Graphics is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * available the JComponent method of the same name should be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * Callers should pass in a non-null JComponent, the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * to this is if a JComponent is not readily available at the time of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * painting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * This does not necessarily return the FontMetrics from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * Graphics.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * @param c JComponent requesting FontMetrics, may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * @param g Graphics Graphics
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    public static FontMetrics getFontMetrics(JComponent c, Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        return getFontMetrics(c, g, g.getFont());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * Returns the FontMetrics for the specified Font.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * This method is used when a Graphics is available, typically when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * painting.  If a Graphics is not available the JComponent method of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * the same name should be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * Callers should pass in a non-null JComonent, the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * to this is if a JComponent is not readily available at the time of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * painting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * This does not necessarily return the FontMetrics from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * Graphics.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * @param c JComponent requesting FontMetrics, may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * @param c Graphics Graphics
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * @param font Font to get FontMetrics for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    public static FontMetrics getFontMetrics(JComponent c, Graphics g,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                                             Font font) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        if (c != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
            // Note: We assume that we're using the FontMetrics
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            // from the widget to layout out text, otherwise we can get
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            // mismatches when printing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
            return c.getFontMetrics(font);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        return Toolkit.getDefaultToolkit().getFontMetrics(font);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * Returns the width of the passed in String.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * If the passed String is <code>null</code>, returns zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * @param c JComponent that will display the string, may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * @param fm FontMetrics used to measure the String width
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * @param string String to get the width of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    public static int stringWidth(JComponent c, FontMetrics fm, String string){
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        if (string == null || string.equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        }
3976
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   386
        boolean needsTextLayout = ((c != null) &&
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   387
                (c.getClientProperty(TextAttribute.NUMERIC_SHAPING) != null));
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   388
        if (needsTextLayout) {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   389
            synchronized(charsBufferLock) {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   390
                int length = syncCharsBuffer(string);
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   391
                needsTextLayout = isComplexLayout(charsBuffer, 0, length);
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   392
            }
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   393
        }
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   394
        if (needsTextLayout) {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   395
            TextLayout layout = createTextLayout(c, string,
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   396
                                    fm.getFont(), fm.getFontRenderContext());
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   397
            return (int) layout.getAdvance();
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   398
        } else {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   399
            return fm.stringWidth(string);
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   400
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * Clips the passed in String to the space provided.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * @param c JComponent that will display the string, may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * @param fm FontMetrics used to measure the String width
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * @param string String to display
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * @param availTextWidth Amount of space that the string can be drawn in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * @return Clipped string that can fit in the provided space.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    public static String clipStringIfNecessary(JComponent c, FontMetrics fm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                                               String string,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                                               int availTextWidth) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        if ((string == null) || (string.equals("")))  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            return "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        int textWidth = SwingUtilities2.stringWidth(c, fm, string);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        if (textWidth > availTextWidth) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
            return SwingUtilities2.clipString(c, fm, string, availTextWidth);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        return string;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * Clips the passed in String to the space provided.  NOTE: this assumes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * the string does not fit in the available space.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * @param c JComponent that will display the string, may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * @param fm FontMetrics used to measure the String width
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * @param string String to display
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * @param availTextWidth Amount of space that the string can be drawn in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * @return Clipped string that can fit in the provided space.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    public static String clipString(JComponent c, FontMetrics fm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
                                    String string, int availTextWidth) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        // c may be null here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        String clipString = "...";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        availTextWidth -= SwingUtilities2.stringWidth(c, fm, clipString);
5948
bd26e23a33e0 6959260: javax/swing/JLabel/6501991/bug6501991.java failed on build 1.7.0-ea-b96
peterz
parents: 5763
diff changeset
   442
        if (availTextWidth <= 0) {
bd26e23a33e0 6959260: javax/swing/JLabel/6501991/bug6501991.java failed on build 1.7.0-ea-b96
peterz
parents: 5763
diff changeset
   443
            //can not fit any characters
bd26e23a33e0 6959260: javax/swing/JLabel/6501991/bug6501991.java failed on build 1.7.0-ea-b96
peterz
parents: 5763
diff changeset
   444
            return clipString;
bd26e23a33e0 6959260: javax/swing/JLabel/6501991/bug6501991.java failed on build 1.7.0-ea-b96
peterz
parents: 5763
diff changeset
   445
        }
bd26e23a33e0 6959260: javax/swing/JLabel/6501991/bug6501991.java failed on build 1.7.0-ea-b96
peterz
parents: 5763
diff changeset
   446
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
   447
        boolean needsTextLayout;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        synchronized (charsBufferLock) {
3976
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   449
            int stringLength = syncCharsBuffer(string);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
            needsTextLayout =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
                isComplexLayout(charsBuffer, 0, stringLength);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
            if (!needsTextLayout) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
                int width = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
                for (int nChars = 0; nChars < stringLength; nChars++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
                    width += fm.charWidth(charsBuffer[nChars]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
                    if (width > availTextWidth) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
                        string = string.substring(0, nChars);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        if (needsTextLayout) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
            FontRenderContext frc = getFontRenderContext(c, fm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
            AttributedString aString = new AttributedString(string);
3976
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   466
            if (c != null) {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   467
                aString.addAttribute(TextAttribute.NUMERIC_SHAPING,
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   468
                        c.getClientProperty(TextAttribute.NUMERIC_SHAPING));
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   469
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            LineBreakMeasurer measurer =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
                new LineBreakMeasurer(aString.getIterator(), frc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
            int nChars = measurer.nextOffset(availTextWidth);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
            string = string.substring(0, nChars);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        return string + clipString;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * Draws the string at the specified location.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * @param c JComponent that will display the string, may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * @param g Graphics to draw the text to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * @param text String to display
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * @param x X coordinate to draw the text at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * @param y Y coordinate to draw the text at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    public static void drawString(JComponent c, Graphics g, String text,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
                                  int x, int y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        // c may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        // All non-editable widgets that draw strings call into this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        // methods.  By non-editable that means widgets like JLabel, JButton
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        // but NOT JTextComponents.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        if ( text == null || text.length() <= 0 ) { //no need to paint empty strings
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        if (isPrinting(g)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
            Graphics2D g2d = getGraphics2D(g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
            if (g2d != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
                /* The printed text must scale linearly with the UI.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
                 * Calculate the width on screen, obtain a TextLayout with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
                 * advances for the printer graphics FRC, and then justify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
                 * it to fit in the screen width. This distributes the spacing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
                 * more evenly than directly laying out to the screen advances.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                 */
20113
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   508
                String trimmedText = trimTrailingSpaces(text);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   509
                if (!trimmedText.isEmpty()) {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   510
                    float screenWidth = (float) g2d.getFont().getStringBounds
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   511
                            (trimmedText, DEFAULT_FRC).getWidth();
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   512
                    TextLayout layout = createTextLayout(c, text, g2d.getFont(),
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   513
                                                       g2d.getFontRenderContext());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
20113
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   515
                    layout = layout.getJustifiedLayout(screenWidth);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   516
                    /* Use alternate print color if specified */
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   517
                    Color col = g2d.getColor();
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   518
                    if (col instanceof PrintColorUIResource) {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   519
                        g2d.setColor(((PrintColorUIResource)col).getPrintColor());
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   520
                    }
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   521
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   522
                    layout.draw(g2d, x, y);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   523
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   524
                    g2d.setColor(col);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        // If we get here we're not printing
10869
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   532
        if (g instanceof Graphics2D) {
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   533
            AATextInfo info = drawTextAntialiased(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            Graphics2D g2 = (Graphics2D)g;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
3976
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   536
            boolean needsTextLayout = ((c != null) &&
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   537
                (c.getClientProperty(TextAttribute.NUMERIC_SHAPING) != null));
10869
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   538
3976
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   539
            if (needsTextLayout) {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   540
                synchronized(charsBufferLock) {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   541
                    int length = syncCharsBuffer(text);
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   542
                    needsTextLayout = isComplexLayout(charsBuffer, 0, length);
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   543
                }
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   544
            }
10869
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   545
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   546
            if (info != null) {
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   547
                Object oldContrast = null;
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   548
                Object oldAAValue = g2.getRenderingHint(KEY_TEXT_ANTIALIASING);
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   549
                if (info.aaHint != oldAAValue) {
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   550
                    g2.setRenderingHint(KEY_TEXT_ANTIALIASING, info.aaHint);
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   551
                } else {
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   552
                    oldAAValue = null;
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   553
                }
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   554
                if (info.lcdContrastHint != null) {
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   555
                    oldContrast = g2.getRenderingHint(KEY_TEXT_LCD_CONTRAST);
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   556
                    if (info.lcdContrastHint.equals(oldContrast)) {
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   557
                        oldContrast = null;
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   558
                    } else {
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   559
                        g2.setRenderingHint(KEY_TEXT_LCD_CONTRAST,
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   560
                                            info.lcdContrastHint);
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   561
                    }
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   562
                }
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   563
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   564
                if (needsTextLayout) {
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   565
                    TextLayout layout = createTextLayout(c, text, g2.getFont(),
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   566
                                                    g2.getFontRenderContext());
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   567
                    layout.draw(g2, x, y);
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   568
                } else {
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   569
                    g.drawString(text, x, y);
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   570
                }
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   571
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   572
                if (oldAAValue != null) {
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   573
                    g2.setRenderingHint(KEY_TEXT_ANTIALIASING, oldAAValue);
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   574
                }
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   575
                if (oldContrast != null) {
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   576
                    g2.setRenderingHint(KEY_TEXT_LCD_CONTRAST, oldContrast);
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   577
                }
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   578
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   579
                return;
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   580
            }
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   581
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   582
            if (needsTextLayout){
3976
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   583
                TextLayout layout = createTextLayout(c, text, g2.getFont(),
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   584
                                                    g2.getFontRenderContext());
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   585
                layout.draw(g2, x, y);
10869
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   586
                return;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        }
10869
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   589
df518de6f6fd 7077293: javax/swing/JComponent/4337267/bug4337267.java failed on windows 2003
rupashka
parents: 9231
diff changeset
   590
        g.drawString(text, x, y);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     * Draws the string at the specified location underlining the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     * character.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * @param c JComponent that will display the string, may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     * @param g Graphics to draw the text to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     * @param text String to display
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     * @param underlinedIndex Index of a character in the string to underline
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * @param x X coordinate to draw the text at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * @param y Y coordinate to draw the text at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    public static void drawStringUnderlineCharAt(JComponent c,Graphics g,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                           String text, int underlinedIndex, int x,int y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        if (text == null || text.length() <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        SwingUtilities2.drawString(c, g, text, x, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
        int textLength = text.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        if (underlinedIndex >= 0 && underlinedIndex < textLength ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
            int underlineRectY = y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
            int underlineRectHeight = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
            int underlineRectX = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
            int underlineRectWidth = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
            boolean isPrinting = isPrinting(g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            boolean needsTextLayout = isPrinting;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
            if (!needsTextLayout) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                synchronized (charsBufferLock) {
3976
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   620
                    syncCharsBuffer(text);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                    needsTextLayout =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                        isComplexLayout(charsBuffer, 0, textLength);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
            if (!needsTextLayout) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                FontMetrics fm = g.getFontMetrics();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
                underlineRectX = x +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
                    SwingUtilities2.stringWidth(c,fm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                                        text.substring(0,underlinedIndex));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                underlineRectWidth = fm.charWidth(text.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                                                  charAt(underlinedIndex));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                Graphics2D g2d = getGraphics2D(g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                if (g2d != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                    TextLayout layout =
3976
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   636
                        createTextLayout(c, text, g2d.getFont(),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                                       g2d.getFontRenderContext());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                    if (isPrinting) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                        float screenWidth = (float)g2d.getFont().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                            getStringBounds(text, DEFAULT_FRC).getWidth();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
                        layout = layout.getJustifiedLayout(screenWidth);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                    TextHitInfo leading =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                        TextHitInfo.leading(underlinedIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
                    TextHitInfo trailing =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
                        TextHitInfo.trailing(underlinedIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
                    Shape shape =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
                        layout.getVisualHighlightShape(leading, trailing);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
                    Rectangle rect = shape.getBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                    underlineRectX = x + rect.x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                    underlineRectWidth = rect.width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
            g.fillRect(underlineRectX, underlineRectY + 1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
                       underlineRectWidth, underlineRectHeight);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     * A variation of locationToIndex() which only returns an index if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     * Point is within the actual bounds of a list item (not just in the cell)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * and if the JList has the "List.isFileList" client property set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     * Otherwise, this method returns -1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     * This is used to make WindowsL&F JFileChooser act like native dialogs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    public static int loc2IndexFileList(JList list, Point point) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        int index = list.locationToIndex(point);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        if (index != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
            Object bySize = list.getClientProperty("List.isFileList");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
            if (bySize instanceof Boolean && ((Boolean)bySize).booleanValue() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
                !pointIsInActualBounds(list, index, point)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
                index = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
        return index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * Returns true if the given point is within the actual bounds of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     * JList item at index (not just inside the cell).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    private static boolean pointIsInActualBounds(JList list, int index,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
                                                Point point) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
        ListCellRenderer renderer = list.getCellRenderer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        ListModel dataModel = list.getModel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
        Object value = dataModel.getElementAt(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
        Component item = renderer.getListCellRendererComponent(list,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
                          value, index, false, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        Dimension itemSize = item.getPreferredSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
        Rectangle cellBounds = list.getCellBounds(index, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
        if (!item.getComponentOrientation().isLeftToRight()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
            cellBounds.x += (cellBounds.width - itemSize.width);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
        cellBounds.width = itemSize.width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        return cellBounds.contains(point);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * Returns true if the given point is outside the preferredSize of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * item at the given row of the table.  (Column must be 0).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * Does not check the "Table.isFileList" property. That should be checked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * before calling this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * This is used to make WindowsL&F JFileChooser act like native dialogs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
    public static boolean pointOutsidePrefSize(JTable table, int row, int column, Point p) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
        if (table.convertColumnIndexToModel(column) != 0 || row == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
        TableCellRenderer tcr = table.getCellRenderer(row, column);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        Object value = table.getValueAt(row, column);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
        Component cell = tcr.getTableCellRendererComponent(table, value, false,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
                false, row, column);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
        Dimension itemSize = cell.getPreferredSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        Rectangle cellBounds = table.getCellRect(row, column, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        cellBounds.width = itemSize.width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        cellBounds.height = itemSize.height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        // See if coords are inside
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        // ASSUME: mouse x,y will never be < cell's x,y
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        assert (p.x >= cellBounds.x && p.y >= cellBounds.y);
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
   725
        return p.x > cellBounds.x + cellBounds.width ||
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
   726
                p.y > cellBounds.y + cellBounds.height;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * Set the lead and anchor without affecting selection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
    public static void setLeadAnchorWithoutSelection(ListSelectionModel model,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
                                                     int lead, int anchor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
        if (anchor == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
            anchor = lead;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        if (lead == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
            model.setAnchorSelectionIndex(-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
            model.setLeadSelectionIndex(-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
            if (model.isSelectedIndex(lead)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
                model.addSelectionInterval(lead, lead);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
                model.removeSelectionInterval(lead, lead);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
            model.setAnchorSelectionIndex(anchor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     * Ignore mouse events if the component is null, not enabled, the event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     * is not associated with the left mouse button, or the event has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     * consumed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    public static boolean shouldIgnore(MouseEvent me, JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
        return c == null || !c.isEnabled()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
                         || !SwingUtilities.isLeftMouseButton(me)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
                         || me.isConsumed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
     * Request focus on the given component if it doesn't already have it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     * and <code>isRequestFocusEnabled()</code> returns true.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    public static void adjustFocus(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        if (!c.hasFocus() && c.isRequestFocusEnabled()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
            c.requestFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     * The following draw functions have the same semantic as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
     * Graphics methods with the same names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     * this is used for printing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
    public static int drawChars(JComponent c, Graphics g,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
                                 char[] data,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
                                 int offset,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
                                 int length,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
                                 int x,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
                                 int y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        if ( length <= 0 ) { //no need to paint empty strings
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
            return x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        int nextX = x + getFontMetrics(c, g).charsWidth(data, offset, length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        if (isPrinting(g)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
            Graphics2D g2d = getGraphics2D(g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
            if (g2d != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
                FontRenderContext deviceFontRenderContext = g2d.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
                    getFontRenderContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
                FontRenderContext frc = getFontRenderContext(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
                if (frc != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
                    !isFontRenderContextPrintCompatible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
                    (deviceFontRenderContext, frc)) {
20113
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   796
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   797
                    String text = new String(data, offset, length);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   798
                    TextLayout layout = new TextLayout(text, g2d.getFont(),
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   799
                                    deviceFontRenderContext);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   800
                    String trimmedText = trimTrailingSpaces(text);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   801
                    if (!trimmedText.isEmpty()) {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   802
                        float screenWidth = (float)g2d.getFont().
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   803
                            getStringBounds(trimmedText, frc).getWidth();
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   804
                        layout = layout.getJustifiedLayout(screenWidth);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
20113
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   806
                        /* Use alternate print color if specified */
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   807
                        Color col = g2d.getColor();
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   808
                        if (col instanceof PrintColorUIResource) {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   809
                            g2d.setColor(((PrintColorUIResource)col).getPrintColor());
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   810
                        }
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   811
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   812
                        layout.draw(g2d,x,y);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   813
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   814
                        g2d.setColor(col);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
                    return nextX;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
        // Assume we're not printing if we get here, or that we are invoked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        // via Swing text printing which is laid out for the printer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
        AATextInfo info = drawTextAntialiased(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        if (info != null && (g instanceof Graphics2D)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
            Graphics2D g2 = (Graphics2D)g;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
            Object oldContrast = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
            Object oldAAValue = g2.getRenderingHint(KEY_TEXT_ANTIALIASING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
            if (info.aaHint != null && info.aaHint != oldAAValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
                g2.setRenderingHint(KEY_TEXT_ANTIALIASING, info.aaHint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
                oldAAValue = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
            if (info.lcdContrastHint != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
                oldContrast = g2.getRenderingHint(KEY_TEXT_LCD_CONTRAST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
                if (info.lcdContrastHint.equals(oldContrast)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
                    oldContrast = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
                    g2.setRenderingHint(KEY_TEXT_LCD_CONTRAST,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
                                        info.lcdContrastHint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
            g.drawChars(data, offset, length, x, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
            if (oldAAValue != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                g2.setRenderingHint(KEY_TEXT_ANTIALIASING, oldAAValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
            if (oldContrast != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
                g2.setRenderingHint(KEY_TEXT_LCD_CONTRAST, oldContrast);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
            g.drawChars(data, offset, length, x, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
        return nextX;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
     * see documentation for drawChars
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * returns the advance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
    public static float drawString(JComponent c, Graphics g,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
                                   AttributedCharacterIterator iterator,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                                   int x,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
                                   int y) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
        float retVal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
        boolean isPrinting = isPrinting(g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
        Color col = g.getColor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
        if (isPrinting) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
            /* Use alternate print color if specified */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
            if (col instanceof PrintColorUIResource) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
                g.setColor(((PrintColorUIResource)col).getPrintColor());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
        Graphics2D g2d = getGraphics2D(g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
        if (g2d == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
            g.drawString(iterator,x,y); //for the cases where advance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
                                        //matters it should not happen
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
            retVal = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
            FontRenderContext frc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
            if (isPrinting) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
                frc = getFontRenderContext(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
                if (frc.isAntiAliased() || frc.usesFractionalMetrics()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
                    frc = new FontRenderContext(frc.getTransform(), false, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
            } else if ((frc = getFRCProperty(c)) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
                /* frc = frc; ! */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
                frc = g2d.getFontRenderContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
            }
20113
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   897
            TextLayout layout;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
            if (isPrinting) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
                FontRenderContext deviceFRC = g2d.getFontRenderContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
                if (!isFontRenderContextPrintCompatible(frc, deviceFRC)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
                    layout = new TextLayout(iterator, deviceFRC);
20113
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   902
                    AttributedCharacterIterator trimmedIt =
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   903
                            getTrimmedTrailingSpacesIterator(iterator);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   904
                    if (trimmedIt != null) {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   905
                        float screenWidth = new TextLayout(trimmedIt, frc).
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   906
                                getAdvance();
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   907
                        layout = layout.getJustifiedLayout(screenWidth);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   908
                    }
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   909
                } else {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   910
                    layout = new TextLayout(iterator, frc);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
                }
20113
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   912
            } else {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
   913
                layout = new TextLayout(iterator, frc);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
            layout.draw(g2d, x, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
            retVal = layout.getAdvance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
        if (isPrinting) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
            g.setColor(col);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
        return retVal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
3976
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   926
    private static TextLayout createTextLayout(JComponent c, String s,
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   927
                                            Font f, FontRenderContext frc) {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   928
        Object shaper = (c == null ?
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   929
                    null : c.getClientProperty(TextAttribute.NUMERIC_SHAPING));
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   930
        if (shaper == null) {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   931
            return new TextLayout(s, f, frc);
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   932
        } else {
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   933
            Map<TextAttribute, Object> a = new HashMap<TextAttribute, Object>();
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   934
            a.put(TextAttribute.FONT, f);
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   935
            a.put(TextAttribute.NUMERIC_SHAPING, shaper);
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   936
            return new TextLayout(s, a, frc);
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   937
        }
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   938
    }
6758b915b581 4337267: Arabic Numeral Shaping
gsm
parents: 3749
diff changeset
   939
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
     * Checks if two given FontRenderContexts are compatible for printing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
     * We can't just use equals as we want to exclude from the comparison :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
     * + whether AA is set as irrelevant for printing and shouldn't affect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
     * printed metrics anyway
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     * + any translation component in the transform of either FRC, as it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     * does not affect metrics.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
     * Compatible means no special handling needed for text painting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    private static boolean
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        isFontRenderContextPrintCompatible(FontRenderContext frc1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
                                           FontRenderContext frc2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
        if (frc1 == frc2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
        if (frc1 == null || frc2 == null) { // not supposed to happen
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
        if (frc1.getFractionalMetricsHint() !=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
            frc2.getFractionalMetricsHint()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        /* If both are identity, return true */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        if (!frc1.isTransformed() && !frc2.isTransformed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        /* That's the end of the cheap tests, need to get and compare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
         * the transform matrices. We don't care about the translation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
         * components, so return true if they are otherwise identical.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
        double[] mat1 = new double[4];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
        double[] mat2 = new double[4];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
        frc1.getTransform().getMatrix(mat1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
        frc2.getTransform().getMatrix(mat2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
        return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
            mat1[0] == mat2[0] &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
            mat1[1] == mat2[1] &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
            mat1[2] == mat2[2] &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
            mat1[3] == mat2[3];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
     * Tries it best to get Graphics2D out of the given Graphics
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     * returns null if can not derive it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
    public static Graphics2D getGraphics2D(Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
        if (g instanceof Graphics2D) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
            return (Graphics2D) g;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
        } else if (g instanceof ProxyPrintGraphics) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
            return (Graphics2D)(((ProxyPrintGraphics)g).getGraphics());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
     * Returns FontRenderContext associated with Component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
     * FontRenderContext from Component.getFontMetrics is associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
     * with the component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
     * Uses Component.getFontMetrics to get the FontRenderContext from.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
     * see JComponent.getFontMetrics and TextLayoutStrategy.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
    public static FontRenderContext getFontRenderContext(Component c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
        assert c != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        if (c == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
            return DEFAULT_FRC;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
            return c.getFontMetrics(c.getFont()).getFontRenderContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     * A convenience method to get FontRenderContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
     * Returns the FontRenderContext for the passed in FontMetrics or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
     * for the passed in Component if FontMetrics is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
    private static FontRenderContext getFontRenderContext(Component c, FontMetrics fm) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
        assert fm != null || c!= null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
        return (fm != null) ? fm.getFontRenderContext()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
            : getFontRenderContext(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
     * This method is to be used only for JComponent.getFontMetrics.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
     * In all other places to get FontMetrics we need to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
     * JComponent.getFontMetrics.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
    public static FontMetrics getFontMetrics(JComponent c, Font font) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        FontRenderContext  frc = getFRCProperty(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
        if (frc == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
            frc = DEFAULT_FRC;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
        return FontDesignMetrics.getMetrics(font, frc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
    /* Get any FontRenderContext associated with a JComponent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
     * - may return null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
    private static FontRenderContext getFRCProperty(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
        if (c != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
            AATextInfo info =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
                (AATextInfo)c.getClientProperty(AA_TEXT_PROPERTY_KEY);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
            if (info != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
                return info.frc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
     * returns true if the Graphics is print Graphics
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
     * false otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
    static boolean isPrinting(Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
        return (g instanceof PrinterGraphics || g instanceof PrintGraphics);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
20113
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1065
    private static String trimTrailingSpaces(String s) {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1066
        int i = s.length() - 1;
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1067
        while(i >= 0 && Character.isWhitespace(s.charAt(i))) {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1068
            i--;
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1069
        }
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1070
        return s.substring(0, i + 1);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1071
    }
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1072
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1073
    private static AttributedCharacterIterator getTrimmedTrailingSpacesIterator
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1074
            (AttributedCharacterIterator iterator) {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1075
        int curIdx = iterator.getIndex();
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1076
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1077
        char c = iterator.last();
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1078
        while(c != CharacterIterator.DONE && Character.isWhitespace(c)) {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1079
            c = iterator.previous();
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1080
        }
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1081
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1082
        if (c != CharacterIterator.DONE) {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1083
            int endIdx = iterator.getIndex();
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1084
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1085
            if (endIdx == iterator.getEndIndex() - 1) {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1086
                iterator.setIndex(curIdx);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1087
                return iterator;
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1088
            } else {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1089
                AttributedString trimmedText = new AttributedString(iterator,
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1090
                        iterator.getBeginIndex(), endIdx + 1);
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1091
                return trimmedText.getIterator();
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1092
            }
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1093
        } else {
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1094
            return null;
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1095
        }
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1096
    }
ee0defbadbb1 8023392: Swing text components printed with spaces between chars
mcherkas
parents: 18133
diff changeset
  1097
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     * Determines whether the SelectedTextColor should be used for painting text
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     * foreground for the specified highlight.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
     * Returns true only if the highlight painter for the specified highlight
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
     * is the swing painter (whether inner class of javax.swing.text.DefaultHighlighter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
     * or com.sun.java.swing.plaf.windows.WindowsTextUI) and its background color
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
     * is null or equals to the selection color of the text component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
     * This is a hack for fixing both bugs 4761990 and 5003294
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
    public static boolean useSelectedTextColor(Highlighter.Highlight h, JTextComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
        Highlighter.HighlightPainter painter = h.getPainter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
        String painterClass = painter.getClass().getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
        if (painterClass.indexOf("javax.swing.text.DefaultHighlighter") != 0 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
                painterClass.indexOf("com.sun.java.swing.plaf.windows.WindowsTextUI") != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
            DefaultHighlighter.DefaultHighlightPainter defPainter =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
                    (DefaultHighlighter.DefaultHighlightPainter) painter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
            if (defPainter.getColor() != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
                    !defPainter.getColor().equals(c.getSelectionColor())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
        } catch (ClassCastException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
    /**
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1130
     * LSBCacheEntry is used to cache the left side bearing (lsb) for
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1131
     * a particular <code>Font</code> and <code>FontRenderContext</code>.
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1132
     * This only caches characters that fall in the range
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1133
     * <code>MIN_CHAR_INDEX</code> to <code>MAX_CHAR_INDEX</code>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
     */
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1135
    private static class LSBCacheEntry {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1136
        // Used to indicate a particular entry in lsb has not been set.
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1137
        private static final byte UNSET = Byte.MAX_VALUE;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1138
        // Used in creating a GlyphVector to get the lsb
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1139
        private static final char[] oneChar = new char[1];
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1140
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1141
        private byte[] lsbCache;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
        private Font font;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
        private FontRenderContext frc;
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1144
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1145
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1146
        public LSBCacheEntry(FontRenderContext frc, Font font) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1147
            lsbCache = new byte[MAX_CHAR_INDEX - MIN_CHAR_INDEX];
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1148
            reset(frc, font);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1150
        }
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1151
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1152
        public void reset(FontRenderContext frc, Font font) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1153
            this.font = font;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1154
            this.frc = frc;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1155
            for (int counter = lsbCache.length - 1; counter >= 0; counter--) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1156
                lsbCache[counter] = UNSET;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1157
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
        public int getLeftSideBearing(char aChar) {
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1161
            int index = aChar - MIN_CHAR_INDEX;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1162
            assert (index >= 0 && index < (MAX_CHAR_INDEX - MIN_CHAR_INDEX));
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1163
            byte lsb = lsbCache[index];
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1164
            if (lsb == UNSET) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1165
                oneChar[0] = aChar;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1166
                GlyphVector gv = font.createGlyphVector(frc, oneChar);
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1167
                lsb = (byte) gv.getGlyphPixelBounds(0, frc, 0f, 0f).x;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1168
                if (lsb < 0) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1169
                    /* HRGB/HBGR LCD glyph images will always have a pixel
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1170
                     * on the left used in colour fringe reduction.
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1171
                     * Text rendering positions this correctly but here
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1172
                     * we are using the glyph image to adjust that position
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1173
                     * so must account for it.
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1174
                     */
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1175
                    Object aaHint = frc.getAntiAliasingHint();
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1176
                    if (aaHint == VALUE_TEXT_ANTIALIAS_LCD_HRGB ||
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1177
                            aaHint == VALUE_TEXT_ANTIALIAS_LCD_HBGR) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1178
                        lsb++;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1179
                    }
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1180
                }
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1181
                lsbCache[index] = lsb;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
            }
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1183
            return lsb;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
        public boolean equals(Object entry) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
            if (entry == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
            }
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1192
            if (!(entry instanceof LSBCacheEntry)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
            }
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1195
            LSBCacheEntry oEntry = (LSBCacheEntry) entry;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
            return (font.equals(oEntry.font) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
                    frc.equals(oEntry.frc));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
        public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
            int result = 17;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
            if (font != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
                result = 37 * result + font.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
            if (frc != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
                result = 37 * result + frc.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
            return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
     * here goes the fix for 4856343 [Problem with applet interaction
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
     * with system selection clipboard]
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
     * NOTE. In case isTrustedContext() no checking
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
     * are to be performed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
    /**
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1221
    * checks the security permissions for accessing system clipboard
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1222
    *
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1223
    * for untrusted context (see isTrustedContext) checks the
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1224
    * permissions for the current event being handled
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1225
    *
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1226
    */
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1227
   public static boolean canAccessSystemClipboard() {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1228
       boolean canAccess = false;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1229
       if (!GraphicsEnvironment.isHeadless()) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1230
           SecurityManager sm = System.getSecurityManager();
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1231
           if (sm == null) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1232
               canAccess = true;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1233
           } else {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1234
               try {
19807
9f7860fad128 8008981: Deprecate SecurityManager checkTopLevelWindow, checkSystemClipboardAccess, checkAwtEventQueueAccess
alanb
parents: 18133
diff changeset
  1235
                   sm.checkPermission(SecurityConstants.AWT.ACCESS_CLIPBOARD_PERMISSION);
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1236
                   canAccess = true;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1237
               } catch (SecurityException e) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1238
               }
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1239
               if (canAccess && ! isTrustedContext()) {
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1240
                   canAccess = canCurrentEventAccessSystemClipboard(true);
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1241
               }
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1242
           }
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1243
       }
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1244
       return canAccess;
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1245
   }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
    /**
3749
d0ecbd7075b1 6797139: JButton title is truncating for some strings irrespective of preferred size.
alexp
parents: 3737
diff changeset
  1247
    * Returns true if EventQueue.getCurrentEvent() has the permissions to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
     * access the system clipboard
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
    public static boolean canCurrentEventAccessSystemClipboard() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
        return  isTrustedContext()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
            || canCurrentEventAccessSystemClipboard(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
     * Returns true if the given event has permissions to access the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
     * system clipboard
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
     * @param e AWTEvent to check
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
    public static boolean canEventAccessSystemClipboard(AWTEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
        return isTrustedContext()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
            || canEventAccessSystemClipboard(e, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
     * returns canAccessSystemClipboard field from InputEvent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
     * @param ie InputEvent to get the field from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
    private static synchronized boolean inputEvent_canAccessSystemClipboard(InputEvent ie) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
        if (inputEvent_CanAccessSystemClipboard_Field == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
            inputEvent_CanAccessSystemClipboard_Field =
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
  1274
                AccessController.doPrivileged(
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
  1275
                    new java.security.PrivilegedAction<Field>() {
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
  1276
                        public Field run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
                            try {
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
  1278
                                Field field = InputEvent.class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
                                    getDeclaredField("canAccessSystemClipboard");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
                                field.setAccessible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
                                return field;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
                            } catch (SecurityException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
                            } catch (NoSuchFieldException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
                            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
        if (inputEvent_CanAccessSystemClipboard_Field == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
        boolean ret = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
            ret = inputEvent_CanAccessSystemClipboard_Field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
                getBoolean(ie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
        } catch(IllegalAccessException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
        return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
     * Returns true if the given event is corrent gesture for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
     * accessing clipboard
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
     * @param ie InputEvent to check
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
    private static boolean isAccessClipboardGesture(InputEvent ie) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
        boolean allowedGesture = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
        if (ie instanceof KeyEvent) { //we can validate only keyboard gestures
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
            KeyEvent ke = (KeyEvent)ie;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
            int keyCode = ke.getKeyCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
            int keyModifiers = ke.getModifiers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
            switch(keyCode) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
            case KeyEvent.VK_C:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
            case KeyEvent.VK_V:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
            case KeyEvent.VK_X:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
                allowedGesture = (keyModifiers == InputEvent.CTRL_MASK);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
            case KeyEvent.VK_INSERT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
                allowedGesture = (keyModifiers == InputEvent.CTRL_MASK ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
                                  keyModifiers == InputEvent.SHIFT_MASK);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
            case KeyEvent.VK_COPY:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
            case KeyEvent.VK_PASTE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
            case KeyEvent.VK_CUT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
                allowedGesture = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
            case KeyEvent.VK_DELETE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
                allowedGesture = ( keyModifiers == InputEvent.SHIFT_MASK);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
        return allowedGesture;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
     * Returns true if e has the permissions to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
     * access the system clipboard and if it is allowed gesture (if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
     * checkGesture is true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
     * @param e AWTEvent to check
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
     * @param checkGesture boolean
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
    private static boolean canEventAccessSystemClipboard(AWTEvent e,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
                                                        boolean checkGesture) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
        if (EventQueue.isDispatchThread()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
             * Checking event permissions makes sense only for event
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
             * dispathing thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
            if (e instanceof InputEvent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
                && (! checkGesture || isAccessClipboardGesture((InputEvent)e))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
                return inputEvent_canAccessSystemClipboard((InputEvent)e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
     * Returns true if EventQueue.getCurrentEvent() has the permissions to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
     * access the system clipboard and if it is allowed gesture (if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
     * checkGesture true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
     * @param checkGesture boolean
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
    private static boolean canCurrentEventAccessSystemClipboard(boolean
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
                                                               checkGesture) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
        AWTEvent event = EventQueue.getCurrentEvent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
        return canEventAccessSystemClipboard(event, checkGesture);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
     * see RFE 5012841 [Per AppContect security permissions] for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
     * details
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
    private static boolean isTrustedContext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
        return (System.getSecurityManager() == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
            || (AppContext.getAppContext().
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
                get(UntrustedClipboardAccess) == null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
    public static String displayPropertiesToCSS(Font font, Color fg) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
        StringBuffer rule = new StringBuffer("body {");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
        if (font != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
            rule.append(" font-family: ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
            rule.append(font.getFamily());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
            rule.append(" ; ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
            rule.append(" font-size: ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
            rule.append(font.getSize());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
            rule.append("pt ;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
            if (font.isBold()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
                rule.append(" font-weight: 700 ; ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
            if (font.isItalic()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
                rule.append(" font-style: italic ; ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
        if (fg != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
            rule.append(" color: #");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
            if (fg.getRed() < 16) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
                rule.append('0');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
            rule.append(Integer.toHexString(fg.getRed()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
            if (fg.getGreen() < 16) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
                rule.append('0');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
            rule.append(Integer.toHexString(fg.getGreen()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
            if (fg.getBlue() < 16) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
                rule.append('0');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
            rule.append(Integer.toHexString(fg.getBlue()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
            rule.append(" ; ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
        rule.append(" }");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
        return rule.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
     * Utility method that creates a <code>UIDefaults.LazyValue</code> that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
     * creates an <code>ImageIcon</code> <code>UIResource</code> for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
     * specified image file name. The image is loaded using
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
     * <code>getResourceAsStream</code>, starting with a call to that method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
     * on the base class parameter. If it cannot be found, searching will
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
     * continue through the base class' inheritance hierarchy, up to and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
     * including <code>rootClass</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
     * @param baseClass the first class to use in searching for the resource
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
     * @param rootClass an ancestor of <code>baseClass</code> to finish the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
     *                  search at
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
     * @param imageFile the name of the file to be found
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
     * @return a lazy value that creates the <code>ImageIcon</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
     *         <code>UIResource</code> for the image,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
     *         or null if it cannot be found
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
    public static Object makeIcon(final Class<?> baseClass,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
                                  final Class<?> rootClass,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
                                  final String imageFile) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
        return new UIDefaults.LazyValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
            public Object createValue(UIDefaults table) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
                /* Copy resource into a byte array.  This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
                 * necessary because several browsers consider
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
                 * Class.getResource a security risk because it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
                 * can be used to load additional classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
                 * Class.getResourceAsStream just returns raw
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
                 * bytes, which we can convert to an image.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
                 */
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
  1453
                byte[] buffer =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
                    java.security.AccessController.doPrivileged(
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
  1455
                        new java.security.PrivilegedAction<byte[]>() {
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
  1456
                    public byte[] run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
                            InputStream resource = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
                            Class<?> srchClass = baseClass;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
                            while (srchClass != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
                                resource = srchClass.getResourceAsStream(imageFile);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
                                if (resource != null || srchClass == rootClass) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
                                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
                                srchClass = srchClass.getSuperclass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
                            if (resource == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
                                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
                            BufferedInputStream in =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
                                new BufferedInputStream(resource);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
                            ByteArrayOutputStream out =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
                                new ByteArrayOutputStream(1024);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
                            byte[] buffer = new byte[1024];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
                            int n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
                            while ((n = in.read(buffer)) > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
                                out.write(buffer, 0, n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
                            in.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
                            out.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
                            return out.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
                        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
                            System.err.println(ioe.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
                        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
                if (buffer == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
                if (buffer.length == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
                    System.err.println("warning: " + imageFile +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
                                       " is zero-length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
                return new ImageIconUIResource(buffer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
    /* Used to help decide if AA text rendering should be used, so
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
     * this local display test should be additionally qualified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
     * against whether we have XRender support on both ends of the wire,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
     * as with that support remote performance may be good enough to turn
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
     * on by default. An additional complication there is XRender does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
     * appear capable of performing gamma correction needed for LCD text.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
    public static boolean isLocalDisplay() {
1724
a22a286aa16f 6748082: remove platform-specific code from SwingUtilities2.isDisplayLocal
tdv
parents: 2
diff changeset
  1516
        boolean isLocal;
a22a286aa16f 6748082: remove platform-specific code from SwingUtilities2.isDisplayLocal
tdv
parents: 2
diff changeset
  1517
        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
a22a286aa16f 6748082: remove platform-specific code from SwingUtilities2.isDisplayLocal
tdv
parents: 2
diff changeset
  1518
        if (ge instanceof SunGraphicsEnvironment) {
a22a286aa16f 6748082: remove platform-specific code from SwingUtilities2.isDisplayLocal
tdv
parents: 2
diff changeset
  1519
            isLocal = ((SunGraphicsEnvironment) ge).isDisplayLocal();
a22a286aa16f 6748082: remove platform-specific code from SwingUtilities2.isDisplayLocal
tdv
parents: 2
diff changeset
  1520
        } else {
a22a286aa16f 6748082: remove platform-specific code from SwingUtilities2.isDisplayLocal
tdv
parents: 2
diff changeset
  1521
            isLocal = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
        }
1724
a22a286aa16f 6748082: remove platform-specific code from SwingUtilities2.isDisplayLocal
tdv
parents: 2
diff changeset
  1523
        return isLocal;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
     * Returns an integer from the defaults table. If <code>key</code> does
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
     * not map to a valid <code>Integer</code>, or can not be convered from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
     * a <code>String</code> to an integer, the value 0 is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
     * @param key  an <code>Object</code> specifying the int.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
     * @return the int
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
    public static int getUIDefaultsInt(Object key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
        return getUIDefaultsInt(key, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
     * Returns an integer from the defaults table that is appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
     * for the given locale. If <code>key</code> does not map to a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
     * <code>Integer</code>, or can not be convered from a <code>String</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
     * to an integer, the value 0 is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
     * @param key  an <code>Object</code> specifying the int. Returned value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
     *             is 0 if <code>key</code> is not available,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
     * @param l the <code>Locale</code> for which the int is desired
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
     * @return the int
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
    public static int getUIDefaultsInt(Object key, Locale l) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
        return getUIDefaultsInt(key, l, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
     * Returns an integer from the defaults table. If <code>key</code> does
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
     * not map to a valid <code>Integer</code>, or can not be convered from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
     * a <code>String</code> to an integer, <code>default</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
     * @param key  an <code>Object</code> specifying the int. Returned value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
     *             is 0 if <code>key</code> is not available,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
     * @param defaultValue Returned value if <code>key</code> is not available,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
     *                     or is not an Integer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
     * @return the int
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
    public static int getUIDefaultsInt(Object key, int defaultValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
        return getUIDefaultsInt(key, null, defaultValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
     * Returns an integer from the defaults table that is appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
     * for the given locale. If <code>key</code> does not map to a valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
     * <code>Integer</code>, or can not be convered from a <code>String</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
     * to an integer, <code>default</code> is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
     * @param key  an <code>Object</code> specifying the int. Returned value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
     *             is 0 if <code>key</code> is not available,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
     * @param l the <code>Locale</code> for which the int is desired
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
     * @param defaultValue Returned value if <code>key</code> is not available,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
     *                     or is not an Integer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
     * @return the int
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
    public static int getUIDefaultsInt(Object key, Locale l, int defaultValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
        Object value = UIManager.get(key, l);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
        if (value instanceof Integer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
            return ((Integer)value).intValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
        if (value instanceof String) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
                return Integer.parseInt((String)value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
            } catch (NumberFormatException nfe) {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
        return defaultValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
    // At this point we need this method here. But we assume that there
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
    // will be a common method for this purpose in the future releases.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
    public static Component compositeRequestFocus(Component component) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
        if (component instanceof Container) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
            Container container = (Container)component;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
            if (container.isFocusCycleRoot()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
                FocusTraversalPolicy policy = container.getFocusTraversalPolicy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
                Component comp = policy.getDefaultComponent(container);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
                if (comp!=null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
                    comp.requestFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
                    return comp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
            Container rootAncestor = container.getFocusCycleRootAncestor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
            if (rootAncestor!=null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
                FocusTraversalPolicy policy = rootAncestor.getFocusTraversalPolicy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
                Component comp = policy.getComponentAfter(rootAncestor, container);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
                if (comp!=null && SwingUtilities.isDescendingFrom(comp, container)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
                    comp.requestFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
                    return comp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
        if (component.isFocusable()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
            component.requestFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
            return component;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
     * Change focus to the visible component in {@code JTabbedPane}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
     * This is not a general-purpose method and is here only to permit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
     * sharing code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
    public static boolean tabbedPaneChangeFocusTo(Component comp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
        if (comp != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
            if (comp.isFocusTraversable()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
                SwingUtilities2.compositeRequestFocus(comp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
            } else if (comp instanceof JComponent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
                       && ((JComponent)comp).requestDefaultFocus()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
                 return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
     * Submits a value-returning task for execution on the EDT and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
     * returns a Future representing the pending results of the task.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
     * @param task the task to submit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
     * @return a Future representing pending completion of the task
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
     * @throws NullPointerException if the task is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
    public static <V> Future<V> submit(Callable<V> task) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
        if (task == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
        FutureTask<V> future = new FutureTask<V>(task);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
        execute(future);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
        return future;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
     * Submits a Runnable task for execution on the EDT and returns a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
     * Future representing that task.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
     * @param task the task to submit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
     * @param result the result to return upon successful completion
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
     * @return a Future representing pending completion of the task,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
     *         and whose <tt>get()</tt> method will return the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
     *         result value upon completion
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
     * @throws NullPointerException if the task is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
    public static <V> Future<V> submit(Runnable task, V result) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
        if (task == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
        FutureTask<V> future = new FutureTask<V>(task, result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
        execute(future);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
        return future;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
     * Sends a Runnable to the EDT for the execution.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
    private static void execute(Runnable command) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
        SwingUtilities.invokeLater(command);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
     * Sets the {@code SKIP_CLICK_COUNT} client property on the component
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
     * if it is an instance of {@code JTextComponent} with a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
     * {@code DefaultCaret}. This property, used for text components acting
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
     * as editors in a table or tree, tells {@code DefaultCaret} how many
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
     * clicks to skip before starting selection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
    public static void setSkipClickCount(Component comp, int count) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
        if (comp instanceof JTextComponent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
                && ((JTextComponent) comp).getCaret() instanceof DefaultCaret) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
            ((JTextComponent) comp).putClientProperty(SKIP_CLICK_COUNT, count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
     * Return the MouseEvent's click count, possibly reduced by the value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
     * the component's {@code SKIP_CLICK_COUNT} client property. Clears
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
     * the {@code SKIP_CLICK_COUNT} property if the mouse event's click count
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
     * is 1. In order for clearing of the property to work correctly, there
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
     * must be a mousePressed implementation on the caller with this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
     * call as the first line.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
    public static int getAdjustedClickCount(JTextComponent comp, MouseEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
        int cc = e.getClickCount();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
        if (cc == 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
            comp.putClientProperty(SKIP_CLICK_COUNT, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
            Integer sub = (Integer) comp.getClientProperty(SKIP_CLICK_COUNT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
            if (sub != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
                return cc - sub;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
        return cc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
     * Used by the {@code liesIn} method to return which section
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
     * the point lies in.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
     * @see #liesIn
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
    public enum Section {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
        /** The leading section */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
        LEADING,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
        /** The middle section */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
        MIDDLE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
        /** The trailing section */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
        TRAILING
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
     * This method divides a rectangle into two or three sections along
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
     * the specified axis and determines which section the given point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
     * lies in on that axis; used by drag and drop when calculating drop
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
     * locations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
     * For two sections, the rectangle is divided equally and the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
     * returns whether the point lies in {@code Section.LEADING} or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
     * {@code Section.TRAILING}. For horizontal divisions, the calculation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
     * respects component orientation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
     * For three sections, if the rectangle is greater than or equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
     * 30 pixels in length along the axis, the calculation gives 10 pixels
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
     * to each of the leading and trailing sections and the remainder to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
     * middle. For smaller sizes, the rectangle is divided equally into three
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
     * sections.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
     * Note: This method assumes that the point is within the bounds of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
     * the given rectangle on the specified axis. However, in cases where
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
     * it isn't, the results still have meaning: {@code Section.MIDDLE}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
     * remains the same, {@code Section.LEADING} indicates that the point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
     * is in or somewhere before the leading section, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
     * {@code Section.TRAILING} indicates that the point is in or somewhere
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
     * after the trailing section.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
     * @param rect the rectangle
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
     * @param p the point the check
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
     * @param horizontal {@code true} to use the horizontal axis,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
     *        or {@code false} for the vertical axis
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
     * @param ltr {@code true} for left to right orientation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
     *        or {@code false} for right to left orientation;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
     *        only used for horizontal calculations
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
     * @param three {@code true} for three sections,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
     *        or {@code false} for two
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
     * @return the {@code Section} where the point lies
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
     * @throws NullPointerException if {@code rect} or {@code p} are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
     *         {@code null}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
    private static Section liesIn(Rectangle rect, Point p, boolean horizontal,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
                                  boolean ltr, boolean three) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
        /* beginning of the rectangle on the axis */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
        int p0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
        /* point on the axis we're interested in */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
        int pComp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
        /* length of the rectangle on the axis */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
        int length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
        /* value of ltr if horizontal, else true */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
        boolean forward;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
        if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
            p0 = rect.x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
            pComp = p.x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
            length = rect.width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
            forward = ltr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
            p0 = rect.y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
            pComp = p.y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
            length = rect.height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
            forward = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
        if (three) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
            int boundary = (length >= 30) ? 10 : length / 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
            if (pComp < p0 + boundary) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
               return forward ? Section.LEADING : Section.TRAILING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
           } else if (pComp >= p0 + length - boundary) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
               return forward ? Section.TRAILING : Section.LEADING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
           }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
           return Section.MIDDLE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
            int middle = p0 + length / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
            if (forward) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
                return pComp >= middle ? Section.TRAILING : Section.LEADING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
                return pComp < middle ? Section.TRAILING : Section.LEADING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
     * This method divides a rectangle into two or three sections along
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
     * the horizontal axis and determines which section the given point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
     * lies in; used by drag and drop when calculating drop locations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
     * See the documentation for {@link #liesIn} for more information
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
     * on how the section is calculated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
     * @param rect the rectangle
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
     * @param p the point the check
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
     * @param ltr {@code true} for left to right orientation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
     *        or {@code false} for right to left orientation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
     * @param three {@code true} for three sections,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
     *        or {@code false} for two
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
     * @return the {@code Section} where the point lies
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
     * @throws NullPointerException if {@code rect} or {@code p} are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
     *         {@code null}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
    public static Section liesInHorizontal(Rectangle rect, Point p,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
                                           boolean ltr, boolean three) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
        return liesIn(rect, p, true, ltr, three);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
     * This method divides a rectangle into two or three sections along
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
     * the vertical axis and determines which section the given point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
     * lies in; used by drag and drop when calculating drop locations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
     * See the documentation for {@link #liesIn} for more information
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
     * on how the section is calculated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
     * @param rect the rectangle
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
     * @param p the point the check
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
     * @param three {@code true} for three sections,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
     *        or {@code false} for two
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
     * @return the {@code Section} where the point lies
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
     * @throws NullPointerException if {@code rect} or {@code p} are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
     *         {@code null}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
    public static Section liesInVertical(Rectangle rect, Point p,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
                                         boolean three) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
        return liesIn(rect, p, false, false, three);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
    }
5590
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1881
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1882
    /**
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1883
     * Maps the index of the column in the view at
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1884
     * {@code viewColumnIndex} to the index of the column
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1885
     * in the table model.  Returns the index of the corresponding
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1886
     * column in the model.  If {@code viewColumnIndex}
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1887
     * is less than zero, returns {@code viewColumnIndex}.
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1888
     *
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1889
     * @param cm the table model
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1890
     * @param   viewColumnIndex     the index of the column in the view
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1891
     * @return  the index of the corresponding column in the model
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1892
     *
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1893
     * @see JTable#convertColumnIndexToModel(int)
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1894
     * @see javax.swing.plaf.basic.BasicTableHeaderUI
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1895
     */
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1896
    public static int convertColumnIndexToModel(TableColumnModel cm,
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1897
                                                int viewColumnIndex) {
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1898
        if (viewColumnIndex < 0) {
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1899
            return viewColumnIndex;
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1900
        }
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1901
        return cm.getColumn(viewColumnIndex).getModelIndex();
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1902
    }
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1903
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1904
    /**
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1905
     * Maps the index of the column in the {@code cm} at
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1906
     * {@code modelColumnIndex} to the index of the column
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1907
     * in the view.  Returns the index of the
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1908
     * corresponding column in the view; returns {@code -1} if this column
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1909
     * is not being displayed. If {@code modelColumnIndex} is less than zero,
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1910
     * returns {@code modelColumnIndex}.
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1911
     *
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1912
     * @param cm the table model
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1913
     * @param modelColumnIndex the index of the column in the model
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1914
     * @return the index of the corresponding column in the view
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1915
     *
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1916
     * @see JTable#convertColumnIndexToView(int)
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1917
     * @see javax.swing.plaf.basic.BasicTableHeaderUI
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1918
     */
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1919
    public static int convertColumnIndexToView(TableColumnModel cm,
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1920
                                        int modelColumnIndex) {
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1921
        if (modelColumnIndex < 0) {
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1922
            return modelColumnIndex;
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1923
        }
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1924
        for (int column = 0; column < cm.getColumnCount(); column++) {
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1925
            if (cm.getColumn(column).getModelIndex() == modelColumnIndex) {
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1926
                return column;
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1927
            }
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1928
        }
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1929
        return -1;
3ec077d7e893 6884066: JTableHeader listens mouse in disabled state and doesn't work when not attached to a table
alexp
parents: 4278
diff changeset
  1930
    }
15316
0dcb6f02678d 8003978: closed/javax/swing/JRootPane/bug4670486.java fails since jdk7u12b01 on macosx
alexsch
parents: 10869
diff changeset
  1931
0dcb6f02678d 8003978: closed/javax/swing/JRootPane/bug4670486.java fails since jdk7u12b01 on macosx
alexsch
parents: 10869
diff changeset
  1932
    public static int getSystemMnemonicKeyMask() {
0dcb6f02678d 8003978: closed/javax/swing/JRootPane/bug4670486.java fails since jdk7u12b01 on macosx
alexsch
parents: 10869
diff changeset
  1933
        Toolkit toolkit = Toolkit.getDefaultToolkit();
0dcb6f02678d 8003978: closed/javax/swing/JRootPane/bug4670486.java fails since jdk7u12b01 on macosx
alexsch
parents: 10869
diff changeset
  1934
        if (toolkit instanceof SunToolkit) {
0dcb6f02678d 8003978: closed/javax/swing/JRootPane/bug4670486.java fails since jdk7u12b01 on macosx
alexsch
parents: 10869
diff changeset
  1935
            return ((SunToolkit) toolkit).getFocusAcceleratorKeyMask();
0dcb6f02678d 8003978: closed/javax/swing/JRootPane/bug4670486.java fails since jdk7u12b01 on macosx
alexsch
parents: 10869
diff changeset
  1936
        }
0dcb6f02678d 8003978: closed/javax/swing/JRootPane/bug4670486.java fails since jdk7u12b01 on macosx
alexsch
parents: 10869
diff changeset
  1937
        return InputEvent.ALT_MASK;
0dcb6f02678d 8003978: closed/javax/swing/JRootPane/bug4670486.java fails since jdk7u12b01 on macosx
alexsch
parents: 10869
diff changeset
  1938
    }
18133
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1939
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1940
    /**
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1941
     * Returns the {@link TreePath} that identifies the changed nodes.
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1942
     *
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1943
     * @param event  changes in a tree model
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1944
     * @param model  corresponing tree model
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1945
     * @return  the path to the changed nodes
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1946
     */
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1947
    public static TreePath getTreePath(TreeModelEvent event, TreeModel model) {
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1948
        TreePath path = event.getTreePath();
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1949
        if ((path == null) && (model != null)) {
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1950
            Object root = model.getRoot();
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1951
            if (root != null) {
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1952
                path = new TreePath(root);
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1953
            }
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1954
        }
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1955
        return path;
41b4b144eaff 8013571: TreeModelEvent doesn't accept "null" for root as Javadoc specifies.
malenkov
parents: 15316
diff changeset
  1956
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
}