bluecurvecolortype.java
来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 50 行
JAVA
50 行
/* * @(#)BluecurveColorType.java 1.4 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.java.swing.plaf.gtk;import javax.swing.plaf.synth.ColorType;/** * @version 1.4, 12/19/03 * @author Scott Violet */class BluecurveColorType extends GTKColorType { // Used for menuitems: // Outer is also used for the radio button selected dot static final ColorType OUTER = new BluecurveColorType("Outer"); static final ColorType INNER_LEFT = new BluecurveColorType("Inner Left"); static final ColorType INNER_RIGHT = new BluecurveColorType("Inner Right"); static final ColorType TOP_GRADIENT = new BluecurveColorType("Bottom"); static final ColorType BOTTOM_GRADIENT = new BluecurveColorType("Top"); // Used by popupmenu // OUTER2 is also used for the scratches on split panes. static final ColorType OUTER2 = new BluecurveColorType("Outer2"); static final ColorType INNER_RIGHT2 = new BluecurveColorType( "Inner Right2"); // Used by buttons static final ColorType OUTER3 = new BluecurveColorType("Outer3"); // Used by MenuBar static final ColorType OUTER4 = new BluecurveColorType("Outer4"); // Used by arrows static final ColorType OUTER5 = new BluecurveColorType("Outer5"); static final int MIN_ID; static final int MAX_ID; static { MIN_ID = OUTER.getID(); MAX_ID = OUTER5.getID(); } BluecurveColorType(String string) { super(string); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?