⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 oceantheme.java

📁 linux下建立JAVA虚拟机的源码KAFFE
💻 JAVA
字号:
/* DefaultMetalTheme.java -- A modern theme for the Metal L&F   Copyright (C) 2005 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package javax.swing.plaf.metal;import java.awt.Color;import java.awt.Insets;import java.util.Arrays;import javax.swing.UIDefaults;import javax.swing.plaf.ColorUIResource;/** * A modern theme for the Metal Look & Feel. * @since 1.5 * * @author Roman Kennke (roman@kennke.org) */public class OceanTheme extends DefaultMetalTheme{  /**   * The OceanTheme value for black.   */  static final ColorUIResource BLACK = new ColorUIResource(51, 51, 51);  /**   * The OceanTheme value for primary1.   */  static final ColorUIResource PRIMARY1 = new ColorUIResource(99, 130, 191);  /**   * The OceanTheme value for primary1.   */  static final ColorUIResource PRIMARY2 = new ColorUIResource(163, 184, 204);  /**   * The OceanTheme value for primary1.   */  static final ColorUIResource PRIMARY3 = new ColorUIResource(184, 207, 229);  /**   * The OceanTheme value for secondary1.   */  static final ColorUIResource SECONDARY1 = new ColorUIResource(122, 138, 153);  /**   * The OceanTheme value for secondary2.   */  static final ColorUIResource SECONDARY2 = new ColorUIResource(184, 207, 229);  /**   * The OceanTheme value for secondary3.   */  static final ColorUIResource SECONDARY3 = new ColorUIResource(238, 238, 238);  /**   * The OceanTheme value for inactive control text.   */  static final ColorUIResource INACTIVE_CONTROL_TEXT =    new ColorUIResource(153, 153, 153);  /**   * Returns the name of this theme, "Ocean"   */  public String getName()  {    return "Ocean";  }  /**   * Returns the color for control text, which is the   * value of the theme's black value.   */  public ColorUIResource getControlTextColor()  {    return getBlack();  }  /**   * Returns the desktop color, which is the theme's white color.   */  public ColorUIResource getDesktopColor()  {    return getWhite();  }  /**   * Returns the color for inactive control text, which is the   * RGB value (153, 153, 153).   */  public ColorUIResource getInactiveControlTextColor()  {    return INACTIVE_CONTROL_TEXT;  }  /**   * Returns the OceanTheme's color for disabled menu foreground,   *    */  public ColorUIResource getMenuDisabledForeground()  {    return INACTIVE_CONTROL_TEXT;  }    /**   * Returns the OceanTheme's color for black, the RGB value   * (51, 51, 51).   *   * @return Returns the OceanTheme's value for black    */  protected ColorUIResource getBlack()  {    return BLACK;  }  /**   * Return the OceanTheme's value for primary 1, the RGB value   * (99, 130, 191).   */  protected ColorUIResource getPrimary1()  {    return PRIMARY1;  }    /**   * Return the OceanTheme's value for primary 2, the RGB value   * (163, 184, 204).   */  protected ColorUIResource getPrimary2()  {    return PRIMARY2;  }    /**   * Return the OceanTheme's value for primary 1, the RGB value   * (184, 207, 229).   */  protected ColorUIResource getPrimary3()  {    return PRIMARY3;  }  /**   * Return the OceanTheme's value for secondary 1, the RGB value   * (122, 138, 153).   */  protected ColorUIResource getSecondary1()  {    return SECONDARY1;  }  /**   * Return the OceanTheme's value for secondary 2, the RGB value   * (184, 207, 229).   */  protected ColorUIResource getSecondary2()  {    return SECONDARY2;  }  /**   * Return the OceanTheme's value for secondary 3, the RGB value   * (238, 238, 238).   */  protected ColorUIResource getSecondary3()  {    return SECONDARY3;  }  /**   * Adds customized entries to the UIDefaults table.   *   * @param defaults the UI defaults table   */  public void addCustomEntriesToTable(UIDefaults defaults)  {    // Gradients.    defaults.put("Button.gradient", Arrays.asList(new Object[]      {new Float(0.3), new Float(0.0), new ColorUIResource(221, 232, 243),       new ColorUIResource(Color.WHITE), new ColorUIResource(184, 207, 229)}));    defaults.put("CheckBox.gradient", Arrays.asList(new Object[]      {new Float(0.3), new Float(0.0), new ColorUIResource(221, 232, 243),       new ColorUIResource(Color.WHITE), new ColorUIResource(184, 207, 229)}));    defaults.put("CheckBoxMenuItem.gradient", Arrays.asList(new Object[]      {new Float(0.3), new Float(0.0), new ColorUIResource(221, 232, 243),       new ColorUIResource(Color.WHITE), new ColorUIResource(184, 207, 229)}));    defaults.put("MenuBar.gradient", Arrays.asList(new Object[]      {new Float(1.0), new Float(0.0), new ColorUIResource(Color.WHITE),      new ColorUIResource(218, 218, 218), new ColorUIResource(218, 218, 218)}));    defaults.put("RadioButton.gradient", Arrays.asList(new Object[]      {new Float(0.3), new Float(0.0), new ColorUIResource(221, 232, 243),       new ColorUIResource(Color.WHITE), new ColorUIResource(184, 207, 229)}));    defaults.put("RadioButtonMenuItem.gradient", Arrays.asList(new Object[]      {new Float(0.3), new Float(0.0), new ColorUIResource(221, 232, 243),       new ColorUIResource(Color.WHITE), new ColorUIResource(184, 207, 229)}));    defaults.put("ScrollBar.gradient", Arrays.asList(new Object[]      {new Float(0.3), new Float(0.0), new ColorUIResource(221, 232, 243),       new ColorUIResource(Color.WHITE), new ColorUIResource(184, 207, 229)}));    defaults.put("Slider.gradient", Arrays.asList(new Object[]      {new Float(0.3), new Float(0.2), new ColorUIResource(200, 221, 242),       new ColorUIResource(Color.WHITE), new ColorUIResource(184, 207, 229)}));    defaults.put("Slider.focusGradient", Arrays.asList(new Object[]      {new Float(0.3), new Float(0.2), new ColorUIResource(200, 221, 242),       new ColorUIResource(Color.WHITE), new ColorUIResource(184, 207, 229)}));    defaults.put("ToggleButton.gradient", Arrays.asList(new Object[]      {new Float(0.3), new Float(0.0), new ColorUIResource(221, 232, 243),       new ColorUIResource(Color.WHITE), new ColorUIResource(184, 207, 229)}));    defaults.put("InternalFrame.activeTitleGradient", Arrays.asList(new Object[]      {new Float(0.3), new Float(0.0), new ColorUIResource(221, 232, 243),       new ColorUIResource(Color.WHITE), new ColorUIResource(184, 207, 229)}));    // Colors.    ColorUIResource c1 = new ColorUIResource(200, 221, 242);    ColorUIResource c2 = new ColorUIResource(153, 153, 153);    ColorUIResource c3 = new ColorUIResource(204, 204, 204);    ColorUIResource c4 = new ColorUIResource(210, 226, 239);    ColorUIResource c5 = new ColorUIResource(218, 218, 218);    defaults.put("Button.disabledToolBarBorderBackground", c3);    defaults.put("Button.toolBarBorderBackground", c2);    defaults.put("Label.disabledForeground", c2);    defaults.put("MenuBar.borderColor", c3);    defaults.put("Slider.altTrackColor", c4);    defaults.put("SplitPane.dividerFocusColor", c1);    defaults.put("TabbedPane.contentAreaColor", c1);    defaults.put("TabbedPane.borderHightlightColor", PRIMARY1);    defaults.put("TabbedPane.selected", c1);    defaults.put("TabbedPane.tabAreaBackground", c5);    defaults.put("TabbedPane.unselectedBackground", SECONDARY3);    defaults.put("Table.gridColor", SECONDARY1);    defaults.put("ToolBar.borderColor", c3);    defaults.put("Tree.selectionBorderColor", PRIMARY1);    // Insets.    defaults.put("TabbedPane.contentBorderInsets", new Insets(4, 2, 3, 3));    defaults.put("TabbedPane.tabAreaInsets", new Insets(2, 2, 0, 6));    // Flags.    defaults.put("SplitPane.oneTouchButtonsOpaque", Boolean.FALSE);    defaults.put("Menu.opaque", Boolean.FALSE);    defaults.put("ToolBar.isRollover", Boolean.TRUE);    defaults.put("RadioButton.rollover", Boolean.TRUE);    defaults.put("CheckBox.rollover", Boolean.TRUE);    defaults.put("Button.rollover", Boolean.TRUE);    // Icons.    // FIXME: Add OceanTheme icons.//    defaults.put("Tree.leafIcon", XXX);//    defaults.put("Tree.expandedIcon", XXX);//    defaults.put("Tree.openIcon", XXX);//    defaults.put("Tree.closedIcon", XXX);//    defaults.put("Tree.collapsedIcon", XXX);//    defaults.put("FileChooser.newFolderIcon", XXX);//    defaults.put("FileChooser.homeFolderIcon", XXX);//    defaults.put("FileChooser.upFolderIcon", XXX);//    defaults.put("FileView.hardDriveIcon", XXX);//    defaults.put("FileView.floppyDriveIcon", XXX);//    defaults.put("FileView.fileIcon", XXX);//    defaults.put("FileView.computerIcon", XXX);//    defaults.put("FileView.directoryIcon", XXX);//    defaults.put("OptionPane.questionIcon", XXX);//    defaults.put("OptionPane.errorIcon", XXX);//    defaults.put("OptionPane.warningIcon", XXX);//    defaults.put("OptionPane.informationIcon", XXX);//    defaults.put("InternalFrame.icon", XXX);//    defaults.put("InternalFrame.closeIcon", XXX);//    defaults.put("InternalFrame.iconifyIcon", XXX);//    defaults.put("InternalFrame.minimizeIcon", XXX);//    defaults.put("InternalFrame.maximizeIcon", XXX);//    defaults.put("InternalFrame.paletteCloseIcon", XXX);    // UI classes.    defaults.put("MenuBarUI", "javax.swing.plaf.metal.MetalMenuBarUI");    // Others.    defaults.put("Button.rolloverIconType", "ocean");  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -