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