1687N/A/*
2362N/A * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
1687N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1687N/A *
1687N/A * This code is free software; you can redistribute it and/or modify it
1687N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
1687N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
1687N/A *
1687N/A * This code is distributed in the hope that it will be useful, but WITHOUT
1687N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1687N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1687N/A * version 2 for more details (a copy is included in the LICENSE file that
1687N/A * accompanied this code).
1687N/A *
1687N/A * You should have received a copy of the GNU General Public License version
1687N/A * 2 along with this work; if not, write to the Free Software Foundation,
1687N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1687N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
1687N/A */
1687N/A
1687N/Apackage sun.font;
1687N/A
1687N/Aimport java.awt.Font;
1687N/Aimport java.util.Locale;
1687N/Aimport java.util.TreeMap;
1687N/A
1687N/A/**
1687N/A * This is an extension of the {@link FontManager} interface which has to
1687N/A * be implemented on systems that want to use SunGraphicsEnvironment. It
1687N/A * adds a couple of methods that are only required by SGE. Graphics
1687N/A * implementations that use their own GraphicsEnvironment are not required
1687N/A * to implement this and can use plain FontManager instead.
1687N/A */
1687N/Apublic interface FontManagerForSGE extends FontManager {
1687N/A
1687N/A /**
1687N/A * Return an array of created Fonts, or null, if no fonts were created yet.
1687N/A */
1687N/A public Font[] getCreatedFonts();
1687N/A
1687N/A /**
1687N/A * Similar to getCreatedFonts, but returns a TreeMap of fonts by family name.
1687N/A */
1687N/A public TreeMap<String, String> getCreatedFontFamilyNames();
1687N/A
1687N/A /**
1687N/A * Returns all fonts installed in this environment.
1687N/A */
1687N/A public Font[] getAllInstalledFonts();
1687N/A
1687N/A public String[] getInstalledFontFamilyNames(Locale requestedLocale);
3819N/A
3819N/A /* Modifies the behaviour of a subsequent call to preferLocaleFonts()
3819N/A * to use Mincho instead of Gothic for dialoginput in JA locales
3819N/A * on windows. Not needed on other platforms.
3819N/A */
3819N/A public void useAlternateFontforJALocales();
3819N/A
1687N/A}