亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? options.java

?? eq跨平臺查詢工具源碼 eq跨平臺查詢工具源碼
?? JAVA
字號:
/* * Options.java * * Copyright (C) 2002, 2003, 2004, 2005, 2006 Takis Diakoumis * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. * */package org.underworldlabs.swing.plaf.smoothgradient;import java.awt.Dimension;//import java.util.HashMap;//import java.util.Map;import javax.swing.UIManager;//import com.jgoodies.clearlook.ClearLookMode;/* ---------------------------------------------------------- * CVS NOTE: Changes to the CVS repository prior to the  *           release of version 3.0.0beta1 has meant a  *           resetting of CVS revision numbers. * ---------------------------------------------------------- *//** * Provides access to several optional properties for the  * JGoodies L&amp;Fs, either by a key to the <code>UIDefaults</code> table * or via a method or both. *  * @author  Karsten Lentzsch * @author   Takis Diakoumis * @version  $Revision: 1.4 $ * @date     $Date: 2006/05/14 06:56:07 $ */public final class Options {    // Look & Feel Names ****************************************************/*    public static final String EXT_MOTIF_NAME =        "com.jgoodies.plaf.motif.ExtMotifLookAndFeel";            public static final String PLASTIC_NAME =        "com.jgoodies.plaf.plastic.PlasticLookAndFeel";            public static final String PLASTIC3D_NAME =        "com.jgoodies.plaf.plastic.Plastic3DLookAndFeel";            public static final String PLASTICXP_NAME =        "com.jgoodies.plaf.plastic.PlasticXPLookAndFeel";            public static final String EXT_WINDOWS_NAME =        "com.jgoodies.plaf.windows.ExtWindowsLookAndFeel";            public static final String DEFAULT_LOOK_NAME =         PLASTIC3D_NAME;*/    /**     * Holds a <code>Map</code> that enables the look&amp;feel replacement     * mechanism to replace one look by another.      * Maps the original class names to their replacement class names.     */ /*    private static final Map LAF_REPLACEMENTS;    static {        LAF_REPLACEMENTS = new HashMap();        initializeDefaultReplacements();    }    */    // Keys for Overriding Font Settings ************************************/*    public static final String MENU_FONT_KEY =         "jgoodies.menuFont";            public static final String CONTROL_FONT_KEY =         "jgoodies.controlFont";*/            public static final String FONT_SIZE_HINTS_KEY =         "jgoodies.fontSizeHints";            public static final String USE_SYSTEM_FONTS_KEY =        "swing.useSystemFontSettings";            public static final String USE_SYSTEM_FONTS_APP_KEY =        "Application.useSystemFontSettings";    // Optional Global User Properties **************************************    public static final String DEFAULT_ICON_SIZE_KEY =        "jgoodies.defaultIconSize";/*            public static final String USE_NARROW_BUTTONS_KEY =        "jgoodies.useNarrowButtons";            public static final String TAB_ICONS_ENABLED_KEY =        "jgoodies.tabIconsEnabled";            // ClearLook Properties *************************************************    public static final String CLEAR_LOOK_MODE_KEY =         "ClearLook.mode";            public static final String CLEAR_LOOK_POLICY_KEY =         "ClearLook.policy";            public static final String CLEAR_LOOK_OFF =         ClearLookMode.OFF.getName();            public static final String CLEAR_LOOK_ON =         ClearLookMode.ON.getName();            public static final String CLEAR_LOOK_VERBOSE =        ClearLookMode.VERBOSE.getName();            public static final String CLEAR_LOOK_DEBUG =         ClearLookMode.DEBUG.getName();*/    // Optional Client Properties *******************************************    /**      * Hint that the button margin should be narrow.                        */    public static final String IS_NARROW_KEY = "jgoodies.isNarrow";    /**      * Hint that the scroll pane border should be etched.				     */    public static final String IS_ETCHED_KEY = "jgoodies.isEtched";    /**      * Hint for the style: Single or Both, see <code>HeaderStyle</code>.     */    public static final String HEADER_STYLE_KEY = "jgoodies.headerStyle";    /**      * Hint that the menu items in the menu have no icons.				     */    public static final String NO_ICONS_KEY = "jgoodies.noIcons";    /**      * A client property key for <code>JTree</code>s.     * Used with the angled and none style values.     */    public static final String TREE_LINE_STYLE_KEY =         "JTree.lineStyle";    /**      * A client property value for <code>JTree</code>s     * that indicates that lines shall be drawn.     */    public static final String TREE_LINE_STYLE_ANGLED_VALUE =         "Angled";    /**      * A client property value for <code>JTree</code>s     * that indicates that lines shall be hidden.     */    public static final String TREE_LINE_STYLE_NONE_VALUE   =         "None";    /**      * A client property key for <code>JTabbedPane</code>s that indicates      * that no content border shall be painted.      * Supported by the Plastic look and feel family.     * This effect will be achieved also if the EMBEDDED property is true.     */    public static final String NO_CONTENT_BORDER_KEY =        "jgoodies.noContentBorder";    /**     * A client property key for <code>JTabbedPane</code>s that indicates     * that tabs are painted with a special embedded appearance.      * Supported by the Plastic look and feel family.     * This effect will be achieved also if the EMBEDDED property is true.     */    public static final String EMBEDDED_TABS_KEY =         "jgoodies.embeddedTabs";    // Private ****************************************************************    private static final Dimension DEFAULT_ICON_SIZE =         new Dimension(20, 20);    // Override default constructor;    private Options() {    }    // Accessing Options ******************************************************    /**     * Answers whether a hint is set in the <code>UIManager</code>      * that indicates, that a look&amp;feel may use the native system fonts.     */    public static boolean getUseSystemFonts() {        return UIManager.get(USE_SYSTEM_FONTS_APP_KEY).equals(Boolean.TRUE);    }    /**     * Sets a value in the <code>UIManager</code> to indicate,      * that a look&amp;feel may use the native system fonts.     */    public static void setUseSystemFonts(boolean useSystemFonts) {        UIManager.put(USE_SYSTEM_FONTS_APP_KEY, new Boolean(useSystemFonts));    }    /**     * Answers the default icon size.     */    public static Dimension getDefaultIconSize() {        Dimension size = UIManager.getDimension(DEFAULT_ICON_SIZE_KEY);        return size == null ? DEFAULT_ICON_SIZE : size;    }    /**     * Sets the default icon size.     */    public static void setDefaultIconSize(Dimension defaultIconSize) {        UIManager.put(DEFAULT_ICON_SIZE_KEY, defaultIconSize);    }    /**     * Answers the global <code>FontSizeHints</code>, can be overriden      * by look specific setting.     */    public static FontSizeHints getGlobalFontSizeHints() {        Object value = UIManager.get(FONT_SIZE_HINTS_KEY);        if (value != null)            return (FontSizeHints) value;        String name = SmoothGradientLookUtils.getSystemProperty(FONT_SIZE_HINTS_KEY, "");        try {            return FontSizeHints.valueOf(name);        } catch (IllegalArgumentException e) {            return FontSizeHints.DEFAULT;        }    }    /**     * Sets the global <code>FontSizeHints</code>.     */    public static void setGlobalFontSizeHints(FontSizeHints hints) {        UIManager.put(FONT_SIZE_HINTS_KEY, hints);    }    /**     * Checks and answers if we shall use narrow button margins of 4 pixels.     * Sun's L&F implementations use a much wider button margin of 14 pixels,      * which leads to good button minimum width in the typical case.<p>     *      * Using narrow button margins can potentially cause compatibility issues,      * so this feature must be switched on programmatically.<p>     *      * If you use narrow margin, you should take care of minimum button width,     * either by the layout management or appropriate ButtonUI minimum widths.     */ /*    public static boolean getUseNarrowButtons() {        Object value = UIManager.get(USE_NARROW_BUTTONS_KEY);        return Boolean.TRUE.equals(value);    }*/    /**     * Sets if we use narrow or standard button margins.     *      * @see #getUseNarrowButtons     */ /*    public static void setUseNarrowButtons(boolean b) {        UIManager.put(USE_NARROW_BUTTONS_KEY, new Boolean(b));    }*/    /**     * Detects and answers if we shall use icons in <code>JTabbedPanes</code>.     * This has an effect only inside NetBeans, it will answer 'yes'     * if we are outside NetBeans.<p>     *      * If the user has set a system property, we log a message      * about the choosen style.     */ /*    public static boolean isTabIconsEnabled() {//        if (!LookUtils.IS_NETBEANS)//            return true;        String userMode = LookUtils.getSystemProperty(TAB_ICONS_ENABLED_KEY, "");        boolean overridden = userMode.length() > 0;        Object value =            overridden ? userMode : UIManager.get(TAB_ICONS_ENABLED_KEY);        boolean result =            overridden                ? userMode.equalsIgnoreCase("true")                : value instanceof Boolean                && Boolean.TRUE.equals(value);        if (overridden) {            LookUtils.log(                "You have "                    + (result ? "en" : "dis")                    + "abled icons in tabbed panes.");        }        return result;    }*/    /**     * Enables or disables the use of icons in <code>JTabbedPane</code>s.     *      * @see #isTabIconsEnabled     */ /*    public static void setTabIconsEnabled(boolean b) {        UIManager.put(TAB_ICONS_ENABLED_KEY, new Boolean(b));    }*/    // Look And Feel Replacements *******************************************    /**     * Puts a replacement name for a given <code>LookAndFeel</code>      * class name in the list of all look and feel replacements.     */ /*    public static void putLookAndFeelReplacement(        String original,        String replacement) {        LAF_REPLACEMENTS.put(original, replacement);    }*/    /**     * Removes a replacement name for a given <code>LookAndFeel</code>      * class name from the list of all look and feel replacements.     */ /*    public static void removeLookAndFeelReplacement(String original) {        LAF_REPLACEMENTS.remove(original);    }*/    /**     * Initializes some default class name replacements, that replace     * Sun's Java look and feel, and Sun's Windows look and feel by     * the appropriate JGoodies replacements.     */ /*    public static void initializeDefaultReplacements() {        putLookAndFeelReplacement(            "javax.swing.plaf.metal.MetalLookAndFeel",            PLASTIC3D_NAME);        putLookAndFeelReplacement(            "com.sun.java.swing.plaf.windows.WindowsLookAndFeel",            EXT_WINDOWS_NAME);        putLookAndFeelReplacement(            "com.sun.java.swing.plaf.motif.MotifLookAndFeel",            EXT_MOTIF_NAME);    }*/    /**     * Answers the class name that can be used to replace the specified     * <code>LookAndFeel</code> class name.     */ /*    public static String getReplacementClassNameFor(String className) {        String replacement = (String) LAF_REPLACEMENTS.get(className);        return replacement == null ? className : replacement;    }*/    /**     * Answers the class name for a cross-platform <code>LookAndFeel</code>.     */ /*    public static String getCrossPlatformLookAndFeelClassName() {        return PLASTIC3D_NAME;    }*/    /**     * Answers the class name for a system specific <code>LookAndFeel</code>.     */ /*    public static String getSystemLookAndFeelClassName() {        String osName = System.getProperty("os.name");        if (osName.startsWith("Windows"))            return Options.EXT_WINDOWS_NAME;        else if (osName.startsWith("Mac"))            return UIManager.getSystemLookAndFeelClassName();        else            return getCrossPlatformLookAndFeelClassName();    }*/}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一本大道av伊人久久综合| 国产精品热久久久久夜色精品三区| 精品一区中文字幕| 天天做天天摸天天爽国产一区| 亚洲精品免费视频| 中文字幕亚洲电影| 中文字幕中文字幕在线一区| 亚洲视频电影在线| 亚洲另类在线制服丝袜| 亚洲综合免费观看高清完整版| 亚洲免费观看在线观看| 亚洲欧美电影院| 三级一区在线视频先锋 | 久久综合色婷婷| 欧美不卡123| 中文在线一区二区| 亚洲码国产岛国毛片在线| 依依成人综合视频| 日产欧产美韩系列久久99| 美女视频黄a大片欧美| 精东粉嫩av免费一区二区三区| 国产精品一区二区果冻传媒| 不卡av电影在线播放| 欧美又粗又大又爽| 精品欧美一区二区在线观看 | 日韩二区三区四区| 久久在线观看免费| 国产精品毛片久久久久久久| 亚洲靠逼com| 性久久久久久久| 国产在线观看免费一区| 91一区二区在线观看| 欧美精品vⅰdeose4hd| 久久日一线二线三线suv| 亚洲三级在线免费观看| 三级在线观看一区二区| 成人毛片在线观看| 这里只有精品99re| 中文字幕一区二区在线播放| 亚洲mv大片欧洲mv大片精品| 韩国欧美国产一区| 欧美亚洲精品一区| 国产亚洲精品aa午夜观看| 亚洲国产精品欧美一二99| 丰满岳乱妇一区二区三区| 欧美日韩三级一区| 亚洲国产成人在线| 美脚の诱脚舐め脚责91 | 欧美成人精品二区三区99精品| 国产精品欧美极品| 亚洲欧洲www| 国产精品一色哟哟哟| 91农村精品一区二区在线| 久久男人中文字幕资源站| 亚洲va韩国va欧美va| 99久久精品国产一区二区三区 | 国产专区欧美精品| 555www色欧美视频| 亚洲欧美日本韩国| 懂色av一区二区夜夜嗨| 精品久久久久av影院| 日韩国产欧美在线视频| 欧美性猛片xxxx免费看久爱| 日韩理论在线观看| 成人国产精品免费观看动漫| 久久久高清一区二区三区| 久久99精品国产麻豆婷婷| 在线电影一区二区三区| 亚洲一区在线观看免费观看电影高清| 成人av在线一区二区三区| 久久精品亚洲乱码伦伦中文| 国内精品国产成人国产三级粉色 | 成人深夜视频在线观看| 久久伊人中文字幕| 狠狠狠色丁香婷婷综合激情| 欧美成人bangbros| 捆绑变态av一区二区三区| 欧美一区二区三区在线视频| 欧美aa在线视频| 精品少妇一区二区三区视频免付费| 日韩福利视频导航| 日韩免费视频一区二区| 国模套图日韩精品一区二区| 精品福利一区二区三区免费视频| 久久精品国产色蜜蜜麻豆| 欧美大胆一级视频| 国产剧情在线观看一区二区| 中文在线资源观看网站视频免费不卡 | 精品久久国产字幕高潮| 韩国视频一区二区| 国产日本欧美一区二区| 成人性色生活片| 亚洲欧美日韩系列| 欧美私人免费视频| 免费的国产精品| 久久精品欧美日韩精品| 91视频xxxx| 秋霞影院一区二区| 国产肉丝袜一区二区| 91麻豆免费看| 美国三级日本三级久久99| 久久久久久久电影| 色欧美日韩亚洲| 日本不卡视频一二三区| 国产欧美精品一区aⅴ影院| 91九色02白丝porn| 老司机午夜精品99久久| 国产精品久久三| 欧美疯狂性受xxxxx喷水图片| 蜜桃精品在线观看| 国产精品夫妻自拍| 欧美一区二区三区四区久久 | 亚洲综合激情网| 26uuu色噜噜精品一区二区| 91在线视频免费观看| 亚洲.国产.中文慕字在线| 国产欧美日韩卡一| 欧美日韩亚洲国产综合| 国产成人免费在线视频| 香蕉成人啪国产精品视频综合网| 久久先锋影音av| 欧美挠脚心视频网站| 播五月开心婷婷综合| 国产在线视频一区二区三区| 一二三四区精品视频| 中文字幕免费观看一区| 欧美精品v国产精品v日韩精品| 高清在线观看日韩| 免费的成人av| 午夜日韩在线观看| 亚洲私人影院在线观看| 日韩免费视频一区| 欧美巨大另类极品videosbest| 99久久精品国产网站| 国产九色精品成人porny| 视频一区国产视频| 亚洲国产精品久久艾草纯爱 | 亚洲大片免费看| 亚洲欧洲综合另类| 亚洲欧美综合网| 中文字幕 久热精品 视频在线| 精品国产一区二区精华| 日韩一区二区三区电影 | 久久先锋影音av鲁色资源网| 91精品国模一区二区三区| 欧美亚洲国产bt| 91蜜桃免费观看视频| 91小视频在线免费看| 成人禁用看黄a在线| 国产mv日韩mv欧美| 福利一区二区在线观看| 成人亚洲精品久久久久软件| 国产一区二区三区久久久 | 国产精品全国免费观看高清| 久久综合九色综合97婷婷女人| 欧美一区二区在线看| 在线播放日韩导航| 日韩天堂在线观看| 精品国产乱码久久| 久久精品欧美日韩| 国产精品久久夜| 一区二区三区日韩欧美| 亚洲一区二区三区不卡国产欧美| 亚洲一区二区三区不卡国产欧美| 亚洲gay无套男同| 秋霞午夜鲁丝一区二区老狼| 激情文学综合丁香| 国产成人精品亚洲日本在线桃色| 成人午夜电影小说| 色婷婷av一区| 欧美日韩精品一区二区三区| 日韩一区和二区| 国产午夜亚洲精品不卡| 亚洲美女屁股眼交| 日韩av中文字幕一区二区三区 | 国产精品卡一卡二卡三| 一级女性全黄久久生活片免费| 图片区日韩欧美亚洲| 青青草成人在线观看| 国产一区二区不卡老阿姨| 99久久综合狠狠综合久久| 欧美亚洲一区三区| 久久午夜羞羞影院免费观看| 国产精品久久久久久户外露出| 一区二区三区蜜桃网| 久久精品噜噜噜成人88aⅴ| 国产成人av在线影院| 欧美视频一区二区三区| 欧美精品一区二区三区一线天视频| 国产欧美日韩综合| 丝袜美腿一区二区三区| 国产精品91xxx| 欧美日韩国产首页| 中文字幕高清一区| 日韩成人精品在线| 色先锋aa成人| 久久久久久久电影| 日本欧美一区二区三区乱码| 不卡的av在线| 日韩精品一区二区三区中文不卡|