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

📄 gradienttheme.java

📁 java写的多功能文件编辑器
💻 JAVA
字号:
package com.incors.plaf.kunststoff;/* * This code was developed by INCORS GmbH (www.incors.com). * It is published under the terms of the GNU Lesser General Public License. */import java.awt.*;import javax.swing.plaf.*;import javax.swing.plaf.metal.*;/** * Interface that provides methods for getting the colors for all gradients * in the Kunststoff Look&Feel. This interface can be implemented by subclasses * of <code>javax.swing.plaf.metal.MetalTheme</code> to have a theme that provides * standard colors as well as gradient colors. */public interface GradientTheme {  /**   * Returns the upper gradient color for components like JButton, JMenuBar,   * and JProgressBar.   * Will return <code>null</code> if upper gradient should not be painted.   */  public ColorUIResource getComponentGradientColorReflection();  /**   * Returns the lower gradient color for components like JButton, JMenuBar,   * and JProgressBar.   * Will return <code>null</code> if lower gradient should not be painted.   */  public ColorUIResource getComponentGradientColorShadow();  /**   * Returns the upper gradient color for text components like JTextField and   * JPasswordField.   * Will return <code>null</code> if upper gradient should not be painted.   */  public ColorUIResource getTextComponentGradientColorReflection();  /**   * Returns the lower gradient color for text components like JTextField and   * JPasswordField.   * Will return <code>null</code> if lower gradient should not be painted.   */  public ColorUIResource getTextComponentGradientColorShadow();  public int getBackgroundGradientShadow();}

⌨️ 快捷键说明

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