jdk/src/solaris/classes/sun/awt/X11GraphicsEnvironment.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 557 800259d3792b
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
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.awt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.GraphicsDevice;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.Point;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.Rectangle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.BufferedReader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.io.File;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.io.FileReader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.io.FileNotFoundException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.io.StreamTokenizer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.net.InetAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.net.NetworkInterface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.net.SocketException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.net.UnknownHostException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.util.logging.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import sun.awt.motif.MFontConfiguration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import sun.font.Font2D;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import sun.font.FontManager;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import sun.font.NativeFont;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import sun.java2d.SunGraphicsEnvironment;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * This is an implementation of a GraphicsEnvironment object for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * default local GraphicsEnvironment used by the Java Runtime Environment
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * for X11 environments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * @see GraphicsDevice
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * @see GraphicsConfiguration
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
public class X11GraphicsEnvironment
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    extends SunGraphicsEnvironment
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    private static final Logger log = Logger.getLogger("sun.awt.X11GraphicsEnvironment");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    private static final Logger screenLog = Logger.getLogger("sun.awt.screen.X11GraphicsEnvironment");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    private static Boolean xinerState;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * This is the set of font directories needed to be on the X font path
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * to enable AWT heavyweights to find all of the font configuration fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * It is populated by :
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * - awtfontpath entries in the fontconfig.properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * - parent directories of "core" fonts used in the fontconfig.properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * - looking up font dirs in the xFontDirsMap where the key is a fontID
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     *   (cut down version of the XLFD read from the font configuration file).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * This set is nulled out after use to free heap space.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    private static HashSet<String> fontConfigDirs = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
   /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    * fontNameMap is a map from a fontID (which is a substring of an XLFD like
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    * "-monotype-arial-bold-r-normal-iso8859-7")
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    * to font file path like
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    * /usr/openwin/lib/locale/iso_8859_7/X11/fonts/TrueType/ArialBoldItalic.ttf
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    * It's used in a couple of methods like
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    * getFileNameFomPlatformName(..) to help locate the font file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    * We use this substring of a full XLFD because the font configuration files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    * define the XLFDs in a way that's easier to make into a request.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    * E.g., the -0-0-0-0-p-0- reported by X is -*-%d-*-*-p-*- in the font
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    * configuration files. We need to remove that part for comparisons.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    private static Map fontNameMap = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    /* xFontDirsMap is also a map from a font ID to a font filepath.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * The difference from fontNameMap is just that it does not have
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * resolved symbolic links. Normally this is not interesting except
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * that we need to know the directory in which a font was found to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * add it to the X font server path, since although the files may
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * be linked, the fonts.dir is different and specific to the encoding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * handled by that directory. This map is nulled out after use to free
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * heap space. If the optimal path is taken, such that all fonts in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * font configuration files are referenced by filename, then the font
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * dir can be directly derived as its parent directory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * If a font is used by two XLFDs, each corresponding to a different
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * X11 font directory, then precautions must be taken to include both
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * directories.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     private static Map xFontDirsMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * xlfdMap is a map from a platform path like
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * /usr/openwin/lib/locale/ja/X11/fonts/TT/HG-GothicB.ttf to an XLFD like
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * "-ricoh-hg gothic b-medium-r-normal--0-0-0-0-m-0-jisx0201.1976-0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * Because there may be multiple native names, because the font is used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * to support multiple X encodings for example, the value of an entry in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * this map is always a vector where we store all the native names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * For fonts which we don't understand the key isn't a pathname, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * the full XLFD string like :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * "-ricoh-hg gothic b-medium-r-normal--0-0-0-0-m-0-jisx0201.1976-0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     private static Map xlfdMap = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * Used to eliminate redundant work. When a font directory is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * registered it added to this list. Subsequent registrations for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * same directory can then be skipped by checking this Map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * Access to this map is not synchronised here since creation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * of the singleton GE instance is already synchronised and that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * the only code path that accesses this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     private static HashMap registeredDirs = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    /* Array of directories to be added to the X11 font path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * Used by static method called from Toolkits which use X11 fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * Specifically this means MToolkit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    private static String[] fontdirs = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        java.security.AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                          new java.security.PrivilegedAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                System.loadLibrary("awt");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                 * Note: The MToolkit object depends on the static initializer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                 * of X11GraphicsEnvironment to initialize the connection to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                 * the X11 server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                if (!isHeadless()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                    // first check the OGL system property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                    boolean glxRequested = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                    String prop = System.getProperty("sun.java2d.opengl");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                    if (prop != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                        if (prop.equals("true") || prop.equals("t")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                            glxRequested = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                        } else if (prop.equals("True") || prop.equals("T")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                            glxRequested = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                            glxVerbose = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                    // initialize the X11 display connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                    initDisplay(glxRequested);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                    // only attempt to initialize GLX if it was requested
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                    if (glxRequested) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                        glxAvailable = initGLX();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                        if (glxVerbose && !glxAvailable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                            System.out.println(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                                "Could not enable OpenGL " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                                "pipeline (GLX 1.3 not available)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
         });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    private static boolean glxAvailable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    private static boolean glxVerbose;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    private static native boolean initGLX();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    public static boolean isGLXAvailable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        return glxAvailable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    public static boolean isGLXVerbose() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        return glxVerbose;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * Checks if Shared Memory extension can be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * Returns:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     *   -1 if server doesn't support MITShm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     *    1 if server supports it and it can be used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     *    0 otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    private static native int checkShmExt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    private static  native String getDisplayString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    private static Boolean isDisplayLocal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * This should only be called from the static initializer, so no need for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * the synchronized keyword.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    private static native void initDisplay(boolean glxRequested);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    public X11GraphicsEnvironment() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    protected native int getNumScreens();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    protected GraphicsDevice makeScreenDevice(int screennum) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        return new X11GraphicsDevice(screennum);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    protected native int getDefaultScreenNum();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * Returns the default screen graphics device.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    public GraphicsDevice getDefaultScreenDevice() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        return getScreenDevices()[getDefaultScreenNum()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    public static boolean isDisplayLocal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        if (isDisplayLocal == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            SunToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
                if (isDisplayLocal == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
                    isDisplayLocal = Boolean.valueOf(_isDisplayLocal());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
                SunToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        return isDisplayLocal.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    private static boolean _isDisplayLocal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        if (isHeadless()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        String isRemote = (String)java.security.AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            new sun.security.action.GetPropertyAction("sun.java2d.remote"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        if (isRemote != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            return isRemote.equals("false");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        int shm = checkShmExt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        if (shm != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            return (shm == 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        // If XServer doesn't support ShMem extension,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        // try the other way
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        String display = getDisplayString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        int ind = display.indexOf(':');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        final String hostName = display.substring(0, ind);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        if (ind <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            // ':0' case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        Boolean result = (Boolean)java.security.AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
            new java.security.PrivilegedAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                InetAddress remAddr[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                Enumeration locals = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                Enumeration interfaces = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
                    interfaces = NetworkInterface.getNetworkInterfaces();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                    remAddr = InetAddress.getAllByName(hostName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                    if (remAddr == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                        return Boolean.FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
                } catch (UnknownHostException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
                    System.err.println("Unknown host: " + hostName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                    return Boolean.FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                } catch (SocketException e1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
                    System.err.println(e1.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                    return Boolean.FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                for (; interfaces.hasMoreElements();) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                    locals = ((NetworkInterface)interfaces.nextElement()).getInetAddresses();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                    for (; locals.hasMoreElements();) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                        for (int i = 0; i < remAddr.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                            if (locals.nextElement().equals(remAddr[i])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                                return Boolean.TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                return Boolean.FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        return result.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    /* These maps are used on Linux where we reference the Lucida oblique
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * fonts in fontconfig files even though they aren't in the standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * font directory. This explicitly remaps the XLFDs for these to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * correct base font. This is needed to prevent composite fonts from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * defaulting to the Lucida Sans which is a bad substitute for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * monospaced Lucida Sans Typewriter. Also these maps prevent the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * JRE from doing wasted work at start up.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    HashMap<String, String> oblmap = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    private String getObliqueLucidaFontID(String fontID) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        if (fontID.startsWith("-lucidasans-medium-i-normal") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            fontID.startsWith("-lucidasans-bold-i-normal") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            fontID.startsWith("-lucidatypewriter-medium-i-normal") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            fontID.startsWith("-lucidatypewriter-bold-i-normal")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
            return fontID.substring(0, fontID.indexOf("-i-"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
   private void initObliqueLucidaFontMap() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
       oblmap = new HashMap<String, String>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
       oblmap.put("-lucidasans-medium",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
                  jreLibDirName+"/fonts/LucidaSansRegular.ttf");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
       oblmap.put("-lucidasans-bold",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                  jreLibDirName+"/fonts/LucidaSansDemiBold.ttf");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
       oblmap.put("-lucidatypewriter-medium",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
                  jreLibDirName+"/fonts/LucidaTypewriterRegular.ttf");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
       oblmap.put("-lucidatypewriter-bold",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                  jreLibDirName+"/fonts/LucidaTypewriterBold.ttf");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * Takes family name property in the following format:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * "-linotype-helvetica-medium-r-normal-sans-*-%d-*-*-p-*-iso8859-1"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * and returns the name of the corresponding physical font.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * This code is used to resolve font configuration fonts, and expects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * only to get called for these fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    public String getFileNameFromPlatformName(String platName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        String fileName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        String fontID = specificFontIDForName(platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        /* If the font filename has been explicitly assigned in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
         * font configuration file, use it. This avoids accessing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
         * the wrong fonts on Linux, where different fonts (some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
         * of which may not be usable by 2D) may share the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
         * specific font ID. It may also speed up the lookup.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        fileName = super.getFileNameFromPlatformName(platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        if (fileName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            if (isHeadless() && fileName.startsWith("-")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                /* if it's headless, no xlfd should be used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
            if (fileName.startsWith("/")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                /* If a path is assigned in the font configuration file,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                 * it is required that the config file also specify using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                 * new awtfontpath key the X11 font directories
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                 * which must be added to the X11 font path to support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                 * AWT access to that font. For that reason we no longer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                 * have code here to add the parent directory to the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                 * of font config dirs, since the parent directory may not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                 * be sufficient if fonts are symbolically linked to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                 * different directory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                 * Add this XLFD (platform name) to the list of known
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
                 * ones for this file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
                Vector xVal = (Vector) xlfdMap.get(fileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
                if (xVal == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
                    /* Try to be robust on Linux distros which move fonts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
                     * around by verifying that the fileName represents a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
                     * file that exists.  If it doesn't, set it to null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
                     * to trigger a search.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
                     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
                    if (getFontConfiguration().needToSearchForFile(fileName)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
                        fileName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
                    if (fileName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
                        xVal = new Vector();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
                        xVal.add(platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
                        xlfdMap.put(fileName, xVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
                    if (!xVal.contains(platName)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
                        xVal.add(platName);
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
            if (fileName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
                fontNameMap.put(fontID, fileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                return fileName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        if (fontID != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
            fileName = (String)fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            /* On Linux check for the Lucida Oblique fonts */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            if (fileName == null && isLinux && !isOpenJDK()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
                if (oblmap == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                    initObliqueLucidaFontMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
                String oblkey = getObliqueLucidaFontID(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
                if (oblkey != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
                    fileName = oblmap.get(oblkey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
            if (fontPath == null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                (fileName == null || !fileName.startsWith("/"))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
                if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                    logger.warning("** Registering all font paths because " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
                                   "can't find file for " + platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
                fontPath = getPlatformFontPath(noType1Font);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
                registerFontDirs(fontPath);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
                    logger.warning("** Finished registering all font paths");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
                fileName = (String)fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
            if (fileName == null && !isHeadless()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
                /* Query X11 directly to see if this font is available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
                 * as a native font.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
                fileName = getX11FontName(platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
            if (fileName == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
                fontID = switchFontIDForName(platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
                fileName = (String)fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
            if (fileName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
                fontNameMap.put(fontID, fileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        return fileName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    private static String getX11FontName(String platName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        String xlfd = platName.replaceAll("%d", "*");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        if (NativeFont.fontExists(xlfd)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            return xlfd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * Returns the face name for the given XLFD.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    public String getFileNameFromXLFD(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        String fileName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        String fontID = specificFontIDForName(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        if (fontID != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            fileName = (String)fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
            if (fileName == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
                fontID = switchFontIDForName(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
                fileName = (String)fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
            if (fileName == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
                fileName = getDefaultFontFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        return fileName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    // constants identifying XLFD and font ID fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    private static final int FOUNDRY_FIELD = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    private static final int FAMILY_NAME_FIELD = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    private static final int WEIGHT_NAME_FIELD = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    private static final int SLANT_FIELD = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    private static final int SETWIDTH_NAME_FIELD = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
    private static final int ADD_STYLE_NAME_FIELD = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    private static final int PIXEL_SIZE_FIELD = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    private static final int POINT_SIZE_FIELD = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    private static final int RESOLUTION_X_FIELD = 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    private static final int RESOLUTION_Y_FIELD = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    private static final int SPACING_FIELD = 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    private static final int AVERAGE_WIDTH_FIELD = 12;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    private static final int CHARSET_REGISTRY_FIELD = 13;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    private static final int CHARSET_ENCODING_FIELD = 14;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    private String switchFontIDForName(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        int[] hPos = new int[14];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        int hyphenCnt = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        int pos = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        while (pos != -1 && hyphenCnt < 14) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
            pos = name.indexOf('-', pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
            if (pos != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
                hPos[hyphenCnt++] = pos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
                    pos++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
        if (hyphenCnt != 14) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
            if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
                logger.severe("Font Configuration Font ID is malformed:" + name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            return name; // what else can we do?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        String slant = name.substring(hPos[SLANT_FIELD-1]+1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
                                           hPos[SLANT_FIELD]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        String family = name.substring(hPos[FAMILY_NAME_FIELD-1]+1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                                           hPos[FAMILY_NAME_FIELD]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        String registry = name.substring(hPos[CHARSET_REGISTRY_FIELD-1]+1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
                                           hPos[CHARSET_REGISTRY_FIELD]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        String encoding = name.substring(hPos[CHARSET_ENCODING_FIELD-1]+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        if (slant.equals("i")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            slant = "o";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        } else if (slant.equals("o")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
            slant = "i";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        // workaround for #4471000
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        if (family.equals("itc zapfdingbats")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
            && registry.equals("sun")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
            && encoding.equals("fontspecific")){
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
            registry = "adobe";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        StringBuffer sb =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
            new StringBuffer(name.substring(hPos[FAMILY_NAME_FIELD-1],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                                            hPos[SLANT_FIELD-1]+1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
        sb.append(slant);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        sb.append(name.substring(hPos[SLANT_FIELD],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
                                 hPos[SETWIDTH_NAME_FIELD]+1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
        sb.append(registry);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        sb.append(name.substring(hPos[CHARSET_ENCODING_FIELD-1]));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        String retval = sb.toString().toLowerCase (Locale.ENGLISH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        return retval;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    private String specificFontIDForName(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        int[] hPos = new int[14];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        int hyphenCnt = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        int pos = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
        while (pos != -1 && hyphenCnt < 14) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
            pos = name.indexOf('-', pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
            if (pos != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                hPos[hyphenCnt++] = pos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
                    pos++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        if (hyphenCnt != 14) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
            if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                logger.severe("Font Configuration Font ID is malformed:" + name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
            return name; // what else can we do?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        StringBuffer sb =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
            new StringBuffer(name.substring(hPos[FAMILY_NAME_FIELD-1],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                                            hPos[SETWIDTH_NAME_FIELD]));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        sb.append(name.substring(hPos[CHARSET_REGISTRY_FIELD-1]));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        String retval = sb.toString().toLowerCase (Locale.ENGLISH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        return retval;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    protected String[] getNativeNames(String fontFileName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                                      String platformName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        Vector nativeNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        if ((nativeNames=(Vector)xlfdMap.get(fontFileName))==null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
            if (platformName == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
                /* back-stop so that at least the name used in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
                 * font configuration file is known as a native name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
                String []natNames = new String[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                natNames[0] = platformName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
                return natNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
            int len = nativeNames.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
            return (String[])nativeNames.toArray(new String[len]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    // An X font spec (xlfd) includes an encoding. The same TrueType font file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    // may be referenced from different X font directories in font.dir files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    // to support use in multiple encodings by X apps.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    // So for the purposes of font configuration logical fonts where AWT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    // heavyweights need to access the font via X APIs we need to ensure that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
    // the directory for precisely the encodings needed by this are added to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
    // the x font path. This requires that we note the platform names
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    // specified in font configuration files and use that to identify the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    // X font directory that contains a font.dir file for that platform name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    // and add it to the X font path (if display is local)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    // Here we make use of an already built map of xlfds to font locations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    // to add the font location to the set of those required to build the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    // x font path needed by AWT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    // These are added to the x font path later.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    // All this is necessary because on Solaris the font.dir directories
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
    // may contain not real font files, but symbolic links to the actual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    // location but that location is not suitable for the x font path, since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    // it probably doesn't have a font.dir at all and certainly not one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
    // with the required encodings
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    // If the fontconfiguration file is properly set up so that all fonts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
    // are mapped to files then we will never trigger initialising
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
    // xFontDirsMap (it will be null). In this case the awtfontpath entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
    // must specify all the X11 directories needed by AWT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
    protected void addFontToPlatformFontPath(String platformName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        if (xFontDirsMap != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            String fontID = specificFontIDForName(platformName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
            String dirName = (String)xFontDirsMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            if (dirName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
                fontConfigDirs.add(dirName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
    protected void getPlatformFontPathFromFontConfig() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        if (fontConfigDirs == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
            fontConfigDirs = getFontConfiguration().getAWTFontPathSet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
            if (debugFonts && fontConfigDirs != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                String[] names = fontConfigDirs.toArray(new String[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                for (int i=0;i<names.length;i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                    logger.info("awtfontpath : " + names[i]);
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
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
    protected void registerPlatformFontsUsedByFontConfiguration() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
        if (fontConfigDirs == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
        if (isLinux) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
            fontConfigDirs.add(jreLibDirName+File.separator+"oblique-fonts");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        fontdirs = (String[])fontConfigDirs.toArray(new String[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    /* Called by MToolkit to set the X11 font path */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    public static void setNativeFontPath() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        if (fontdirs == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
        // need to register these individually rather than by one call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        // to ensure that one bad directory doesn't cause all to be rejected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
        for (int i=0; i<fontdirs.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
                logger.info("Add " + fontdirs[i] + " to X11 fontpath");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
            FontManager.setNativeFontPath(fontdirs[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    /* Register just the paths, (it doesn't register the fonts).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     * If a font configuration file has specified a baseFontPath
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     * fontPath is just those directories, unless on usage we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * find it doesn't contain what we need for the logical fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * Otherwise, we register all the paths on Solaris, because
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     * the fontPath we have here is the complete one from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * parsing /var/sadm/install/contents, not just
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * what's on the X font path (may be this should be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     * changed).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * But for now what it means is that if we didn't do
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * this then if the font weren't listed anywhere on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * less complete font path we'd trigger loadFonts which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * actually registers the fonts. This may actually be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     * the right thing tho' since that would also set up
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * the X font path without which we wouldn't be able to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * display some "native" fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     * So something to revisit is that probably fontPath
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * here ought to be only the X font path + jre font dir.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     * loadFonts should have a separate native call to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * get the rest of the platform font path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * Registering the directories can now be avoided in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * font configuration initialisation when filename entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * exist in the font configuration file for all fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * (Perhaps a little confusingly a filename entry is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * actually keyed using the XLFD used in the font entries,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * and it maps *to* a real filename).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * In the event any are missing, registration of all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * directories will be invoked to find the real files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * But registering the directory performed other
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * functions such as filling in the map of all native names
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * for the font. So when this method isn't invoked, they still
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     * must be found. This is mitigated by getNativeNames now
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * being able to return at least the platform name, but mostly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * by ensuring that when a filename key is found, that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * xlfd key is stored as one of the set of platform names
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * for the font. Its a set because typical font configuration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * files reference the same CJK font files using multiple
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * X11 encodings. For the code that adds this to the map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * see X11GE.getFileNameFromPlatformName(..)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * If you don't get all of these then some code points may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * not use the Xserver, and will not get the PCF bitmaps
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * that are available for some point sizes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * So, in the event that there is such a problem,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * unconditionally making this call may be necessary, at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * some cost to JRE start-up
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
    protected void registerFontDirs(String pathName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        StringTokenizer parser = new StringTokenizer(pathName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
                                                     File.pathSeparator);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
            while (parser.hasMoreTokens()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
                String dirPath = parser.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
                if (dirPath != null && !registeredDirs.containsKey(dirPath)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
                    registeredDirs.put(dirPath, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                    registerFontDir(dirPath);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        } catch (NoSuchElementException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
    /* NOTE: this method needs to be executed in a privileged context.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     * The superclass constructor which is the primary caller of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * this method executes entirely in such a context. Additionally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * the loadFonts() method does too. So all should be well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    protected void registerFontDir(String path) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
        /* fonts.dir file format looks like :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
         * 47
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
         * Arial.ttf -monotype-arial-regular-r-normal--0-0-0-0-p-0-iso8859-1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
         * Arial-Bold.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
         * ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
            logger.info("ParseFontDir " + path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        File fontsDotDir = new File(path + File.separator + "fonts.dir");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        FileReader fr = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
            if (fontsDotDir.canRead()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
                fr = new FileReader(fontsDotDir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
                BufferedReader br = new BufferedReader(fr, 8192);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
                StreamTokenizer st = new StreamTokenizer(br);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                st.eolIsSignificant(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
                int ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
                if (ttype == StreamTokenizer.TT_NUMBER) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
                    int numEntries = (int)st.nval;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
                    ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
                    if (ttype == StreamTokenizer.TT_EOL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
                        st.resetSyntax();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
                        st.wordChars(32, 127);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
                        st.wordChars(128 + 32, 255);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
                        st.whitespaceChars(0, 31);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
                        for (int i=0; i < numEntries; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
                            ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
                            if (ttype == StreamTokenizer.TT_EOF) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
                                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
                            if (ttype != StreamTokenizer.TT_WORD) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
                                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
                            int breakPos = st.sval.indexOf(' ');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
                            if (breakPos <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
                                /* On TurboLinux 8.0 a fonts.dir file had
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
                                 * a line with integer value "24" which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
                                 * appeared to be the number of remaining
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
                                 * entries in the file. This didn't add to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
                                 * the value on the first line of the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
                                 * Seemed like XFree86 didn't like this line
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
                                 * much either. It failed to parse the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
                                 * Ignore lines like this completely, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
                                 * don't let them count as an entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
                                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
                                numEntries++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
                                ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
                                if (ttype != StreamTokenizer.TT_EOL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
                                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
                                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
                            if (st.sval.charAt(0) == '!') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
                                /* TurboLinux 8.0 comment line: ignore.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
                                 * can't use st.commentChar('!') to just
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
                                 * skip because this line mustn't count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
                                 * against numEntries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
                                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
                                numEntries++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
                                ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
                                if (ttype != StreamTokenizer.TT_EOL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
                                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
                                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
                            String fileName = st.sval.substring(0, breakPos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
                            /* TurboLinux 8.0 uses some additional syntax to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
                             * indicate algorithmic styling values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
                             * Ignore ':' separated files at the beginning
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
                             * of the fileName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
                             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
                            int lastColon = fileName.lastIndexOf(':');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
                            if (lastColon > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
                                if (lastColon+1 >= fileName.length()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
                                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
                                fileName = fileName.substring(lastColon+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
                            String fontPart = st.sval.substring(breakPos+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
                            String fontID = specificFontIDForName(fontPart);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
                            String sVal = (String) fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
                            if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
                                logger.info("file=" + fileName +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
                                            " xlfd=" + fontPart);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
                                logger.info("fontID=" + fontID +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
                                            " sVal=" + sVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
                            String fullPath = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
                            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
                                File file = new File(path,fileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
                                /* we may have a resolved symbolic link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
                                 * this becomes important for an xlfd we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
                                 * still need to know the location it was
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
                                 * found to update the X server font path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
                                 * for use by AWT heavyweights - and when 2D
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
                                 * wants to use the native rasteriser.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
                                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
                                if (xFontDirsMap == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
                                    xFontDirsMap = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
                                xFontDirsMap.put(fontID, path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
                                fullPath = file.getCanonicalPath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
                            } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
                                fullPath = path + File.separator + fileName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
                            Vector xVal = (Vector) xlfdMap.get(fullPath);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
                            if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
                                logger.info("fullPath=" + fullPath +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                                            " xVal=" + xVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                            if ((xVal == null || !xVal.contains(fontPart)) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
                                (sVal == null) || !sVal.startsWith("/")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                                if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                                    logger.info("Map fontID:"+fontID +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
                                                "to file:" + fullPath);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
                                fontNameMap.put(fontID, fullPath);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
                                if (xVal == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
                                    xVal = new Vector();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
                                    xlfdMap.put (fullPath, xVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
                                xVal.add(fontPart);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
                            ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
                            if (ttype != StreamTokenizer.TT_EOL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
                fr.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
        } catch (IOException ioe1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
            if (fr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
                    fr.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
                }  catch (IOException ioe2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
    @Override
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
    public void loadFonts() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
        super.loadFonts();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
        /* These maps are greatly expanded during a loadFonts but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
         * can be reset to their initial state afterwards.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
         * Since preferLocaleFonts() and preferProportionalFonts() will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
         * trigger a partial repopulating from the FontConfiguration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
         * it has to be the inital (empty) state for the latter two, not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
         * simply nulling out.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
         * xFontDirsMap is a special case in that the implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
         * will typically not ever need to initialise it so it can be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
        xFontDirsMap = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
        xlfdMap = new HashMap(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
        fontNameMap = new HashMap(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
    // Implements SunGraphicsEnvironment.createFontConfiguration.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
    protected FontConfiguration createFontConfiguration() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
        return new MFontConfiguration(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
    public FontConfiguration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
        createFontConfiguration(boolean preferLocaleFonts,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
                                boolean preferPropFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
        return new MFontConfiguration(this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
                                      preferLocaleFonts, preferPropFonts);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
     * Returns face name for default font, or null if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
     * no face names are used for CompositeFontDescriptors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
     * for this platform.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
    public String getDefaultFontFaceName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
    private static native boolean pRunningXinerama();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
    private static native Point getXineramaCenterPoint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
     * Override for Xinerama case: call new Solaris API for getting the correct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     * centering point from the windowing system.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
    public Point getCenterPoint() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
        if (runningXinerama()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
            Point p = getXineramaCenterPoint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
            if (p != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
                return p;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        return super.getCenterPoint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
     * Override for Xinerama case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
    public Rectangle getMaximumWindowBounds() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
        if (runningXinerama()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
            return getXineramaWindowBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
            return super.getMaximumWindowBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    public boolean runningXinerama() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        if (xinerState == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
            // pRunningXinerama() simply returns a global boolean variable,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
            // so there is no need to synchronize here
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
            xinerState = Boolean.valueOf(pRunningXinerama());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
            if (screenLog.isLoggable(Level.FINER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
                screenLog.log(Level.FINER, "Running Xinerama: " + xinerState);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        return xinerState.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
     * Return the bounds for a centered Window on a system running in Xinerama
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
     * mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
     * Calculations are based on the assumption of a perfectly rectangular
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
     * display area (display edges line up with one another, and displays
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
     * have consistent width and/or height).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
     * The bounds to return depend on the arrangement of displays and on where
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
     * Windows are to be centered.  There are two common situations:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
     * 1) The center point lies at the center of the combined area of all the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
     *    displays.  In this case, the combined area of all displays is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
     *    returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
     * 2) The center point lies at the center of a single display.  In this case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     *    the user most likely wants centered Windows to be constrained to that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     *    single display.  The boundaries of the one display are returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
     * It is possible for the center point to be at both the center of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
     * entire display space AND at the center of a single monitor (a square of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
     * 9 monitors, for instance).  In this case, the entire display area is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
     * Because the center point is arbitrarily settable by the user, it could
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
     * fit neither of the cases above.  The fallback case is to simply return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
     * the combined area for all screens.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
    protected Rectangle getXineramaWindowBounds() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
        Point center = getCenterPoint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
        Rectangle unionRect, tempRect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
        GraphicsDevice[] gds = getScreenDevices();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
        Rectangle centerMonitorRect = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        // if center point is at the center of all monitors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
        // return union of all bounds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
        //  MM*MM     MMM       M
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
        //            M*M       *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
        //            MMM       M
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
        // if center point is at center of a single monitor (but not of all
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
        // monitors)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
        // return bounds of single monitor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
        // MMM         MM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
        // MM*         *M
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        // else, center is in some strange spot (such as on the border between
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
        // monitors), and we should just return the union of all monitors
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
        // MM          MMM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
        // MM          MMM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
        unionRect = getUsableBounds(gds[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
        for (i = 0; i < gds.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
            tempRect = getUsableBounds(gds[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
            if (centerMonitorRect == null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
                // add a pixel or two for fudge-factor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
                (tempRect.width / 2) + tempRect.x > center.x - 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
                (tempRect.height / 2) + tempRect.y > center.y - 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
                (tempRect.width / 2) + tempRect.x < center.x + 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
                (tempRect.height / 2) + tempRect.y < center.y + 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
                centerMonitorRect = tempRect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
            unionRect = unionRect.union(tempRect);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
        // first: check for center of all monitors (video wall)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
        // add a pixel or two for fudge-factor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
        if ((unionRect.width / 2) + unionRect.x > center.x - 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
            (unionRect.height / 2) + unionRect.y > center.y - 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
            (unionRect.width / 2) + unionRect.x < center.x + 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
            (unionRect.height / 2) + unionRect.y < center.y + 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            if (screenLog.isLoggable(Level.FINER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
                screenLog.log(Level.FINER, "Video Wall: center point is at center of all displays.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
            return unionRect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
        // next, check if at center of one monitor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
        if (centerMonitorRect != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
            if (screenLog.isLoggable(Level.FINER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
                screenLog.log(Level.FINER, "Center point at center of a particular " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
                                           "monitor, but not of the entire virtual display.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
            return centerMonitorRect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
        // otherwise, the center is at some weird spot: return unionRect
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
        if (screenLog.isLoggable(Level.FINER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
            screenLog.log(Level.FINER, "Center point is somewhere strange - return union of all bounds.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
        return unionRect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
     * From the DisplayChangedListener interface; devices do not need
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
     * to react to this event.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
    @Override
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
    public void paletteChanged() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
}