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