src/share/classes/sun/java2d/SunGraphicsEnvironment.java

Print this page


   1 /*
   2  * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 225         String[] installed = fm.getInstalledFontFamilyNames(requestedLocale);
 226         /* Use a new TreeMap as used in getInstalledFontFamilyNames
 227          * and insert all the keys in lower case, so that the sort order
 228          * is the same as the installed families. This preserves historical
 229          * behaviour and inserts new families in the right place.
 230          * It would have been marginally more efficient to directly obtain
 231          * the tree map and just insert new entries, but not so much as
 232          * to justify the extra internal interface.
 233          */
 234         TreeMap<String, String> map = fm.getCreatedFontFamilyNames();
 235         if (map == null || map.size() == 0) {
 236             return installed;
 237         } else {
 238             for (int i=0; i<installed.length; i++) {
 239                 map.put(installed[i].toLowerCase(requestedLocale),
 240                         installed[i]);
 241             }
 242             String[] retval =  new String[map.size()];
 243             Object [] keyNames = map.keySet().toArray();
 244             for (int i=0; i < keyNames.length; i++) {
 245                 retval[i] = (String)map.get(keyNames[i]);
 246             }
 247             return retval;
 248         }
 249     }
 250 
 251     public String[] getAvailableFontFamilyNames() {
 252         return getAvailableFontFamilyNames(Locale.getDefault());
 253     }
 254 
 255     /**
 256      * Return the bounds of a GraphicsDevice, less its screen insets.
 257      * See also java.awt.GraphicsEnvironment.getUsableBounds();
 258      */
 259     public static Rectangle getUsableBounds(GraphicsDevice gd) {
 260         GraphicsConfiguration gc = gd.getDefaultConfiguration();
 261         Insets insets = Toolkit.getDefaultToolkit().getScreenInsets(gc);
 262         Rectangle usableBounds = gc.getBounds();
 263 
 264         usableBounds.x += insets.left;
 265         usableBounds.y += insets.top;


   1 /*
   2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 225         String[] installed = fm.getInstalledFontFamilyNames(requestedLocale);
 226         /* Use a new TreeMap as used in getInstalledFontFamilyNames
 227          * and insert all the keys in lower case, so that the sort order
 228          * is the same as the installed families. This preserves historical
 229          * behaviour and inserts new families in the right place.
 230          * It would have been marginally more efficient to directly obtain
 231          * the tree map and just insert new entries, but not so much as
 232          * to justify the extra internal interface.
 233          */
 234         TreeMap<String, String> map = fm.getCreatedFontFamilyNames();
 235         if (map == null || map.size() == 0) {
 236             return installed;
 237         } else {
 238             for (int i=0; i<installed.length; i++) {
 239                 map.put(installed[i].toLowerCase(requestedLocale),
 240                         installed[i]);
 241             }
 242             String[] retval =  new String[map.size()];
 243             Object [] keyNames = map.keySet().toArray();
 244             for (int i=0; i < keyNames.length; i++) {
 245                 retval[i] = map.get(keyNames[i]);
 246             }
 247             return retval;
 248         }
 249     }
 250 
 251     public String[] getAvailableFontFamilyNames() {
 252         return getAvailableFontFamilyNames(Locale.getDefault());
 253     }
 254 
 255     /**
 256      * Return the bounds of a GraphicsDevice, less its screen insets.
 257      * See also java.awt.GraphicsEnvironment.getUsableBounds();
 258      */
 259     public static Rectangle getUsableBounds(GraphicsDevice gd) {
 260         GraphicsConfiguration gc = gd.getDefaultConfiguration();
 261         Insets insets = Toolkit.getDefaultToolkit().getScreenInsets(gc);
 262         Rectangle usableBounds = gc.getBounds();
 263 
 264         usableBounds.x += insets.left;
 265         usableBounds.y += insets.top;