treepainter.java

来自「Mobile 应用程序使用 Java Micro Edition (Java M」· Java 代码 · 共 636 行 · 第 1/2 页

JAVA
636
字号
/*
 * TreePainter.java %E%
 *
 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */
package com.sun.java.swing.plaf.nimbus;

import java.awt.*;
import java.awt.geom.*;
import java.awt.image.*;
import javax.swing.*;
import com.sun.java.swing.Painter;

/**
 */
public final class TreePainter extends AbstractRegionPainter {
    //package private integers representing the available states that
    //this painter will paint. These are used when creating a new instance
    //of TreePainter to determine which region/state is being painted
    //by that instance.
    static final int BACKGROUND_DISABLED = 1;    static final int BACKGROUND_ENABLED = 2;    static final int BACKGROUND_ENABLED_SELECTED = 3;    static final int LEAFICON_ENABLED = 4;    static final int CLOSEDICON_ENABLED = 5;    static final int OPENICON_ENABLED = 6;    static final int COLLAPSEDICON_ENABLED = 7;    static final int COLLAPSEDICON_ENABLED_SELECTED = 8;    static final int EXPANDEDICON_ENABLED = 9;    static final int EXPANDEDICON_ENABLED_SELECTED = 10;

    private int state; //refers to one of the static final ints above
    private PaintContext ctx;

    //the following 4 variables are reused during the painting code of the layers
    private Path2D path = new Path2D.Float();
    private Rectangle2D rect = new Rectangle2D.Float(0, 0, 0, 0);
    private RoundRectangle2D roundRect = new RoundRectangle2D.Float(0, 0, 0, 0, 0, 0);
    private Ellipse2D ellipse = new Ellipse2D.Float(0, 0, 0, 0);

    //All Colors used for painting are stored here. Ideally, only those colors being used
    //by a particular instance of TreePainter would be created. For the moment at least,
    //however, all are created for each instance.
    private Color color1 = decodeColor("nimbusBlueGrey", 0.007936537f, -0.065654516f, -0.13333333f, 0);    private Color color2 = new Color(97, 98, 102, 255);    private Color color3 = decodeColor("nimbusBlueGrey", -0.032679737f, -0.043332636f, 0.24705881f, 0);    private Color color4 = decodeColor("nimbusBlueGrey", 0.0f, -0.110526316f, 0.25490195f, 0);    private Color color5 = decodeColor("nimbusBase", 0.0077680945f, -0.51781034f, 0.3490196f, 0);    private Color color6 = decodeColor("nimbusBase", 0.013940871f, -0.599277f, 0.41960782f, 0);    private Color color7 = decodeColor("nimbusBase", 0.004681647f, -0.4198052f, 0.14117646f, 0);    private Color color8 = decodeColor("nimbusBase", 0.0f, -0.6357143f, 0.45098037f, -127);    private Color color9 = decodeColor("nimbusBlueGrey", 0.0f, 0.0f, -0.21f, -99);    private Color color10 = decodeColor("nimbusBase", 2.9569864E-4f, -0.45978838f, 0.2980392f, 0);    private Color color11 = decodeColor("nimbusBase", 0.0015952587f, -0.34848025f, 0.18823528f, 0);    private Color color12 = decodeColor("nimbusBase", 0.0015952587f, -0.30844158f, 0.09803921f, 0);    private Color color13 = decodeColor("nimbusBase", 0.0015952587f, -0.27329817f, 0.035294116f, 0);    private Color color14 = decodeColor("nimbusBase", 0.004681647f, -0.6198413f, 0.43921566f, 0);    private Color color15 = decodeColor("nimbusBase", 0.0f, -0.6357143f, 0.45098037f, -125);    private Color color16 = decodeColor("nimbusBase", 0.0f, -0.6357143f, 0.45098037f, -50);    private Color color17 = decodeColor("nimbusBase", 0.0f, -0.6357143f, 0.45098037f, -100);    private Color color18 = decodeColor("nimbusBase", 0.0012094378f, -0.23571429f, -0.0784314f, 0);    private Color color19 = decodeColor("nimbusBase", 2.9569864E-4f, -0.115166366f, -0.2627451f, 0);    private Color color20 = decodeColor("nimbusBase", 0.0027436614f, -0.335015f, 0.011764705f, 0);    private Color color21 = decodeColor("nimbusBase", 0.0024294257f, -0.3857143f, 0.031372547f, 0);    private Color color22 = decodeColor("nimbusBase", 0.0018081069f, -0.3595238f, -0.13725492f, 0);    private Color color23 = new Color(255, 200, 0, 255);    private Color color24 = decodeColor("nimbusBase", 0.004681647f, -0.33496243f, -0.027450979f, 0);    private Color color25 = decodeColor("nimbusBase", 0.0019934773f, -0.361378f, -0.10588238f, 0);    private Color color26 = decodeColor("nimbusBlueGrey", -0.6111111f, -0.110526316f, -0.34509805f, 0);

    //Array of current component colors, updated in each paint call
    private Object[] componentColors;

    public TreePainter(PaintContext ctx, int state) {
        super();
        this.state = state;
        this.ctx = ctx;
    }

    @Override
    protected void doPaint(Graphics2D g, JComponent c, int width, int height, Object[] extendedCacheKeys) {
        //populate componentColors array with colors calculated in getExtendedCacheKeys call
        componentColors = extendedCacheKeys;
        //generate this entire method. Each state/bg/fg/border combo that has
        //been painted gets its own KEY and paint method.
        switch(state) {
            case LEAFICON_ENABLED: paintleafIconEnabled(g); break;            case CLOSEDICON_ENABLED: paintclosedIconEnabled(g); break;            case OPENICON_ENABLED: paintopenIconEnabled(g); break;            case COLLAPSEDICON_ENABLED: paintcollapsedIconEnabled(g); break;            case COLLAPSEDICON_ENABLED_SELECTED: paintcollapsedIconEnabledAndSelected(g); break;            case EXPANDEDICON_ENABLED: paintexpandedIconEnabled(g); break;            case EXPANDEDICON_ENABLED_SELECTED: paintexpandedIconEnabledAndSelected(g); break;
        }
    }
        


    @Override
    protected final PaintContext getPaintContext() {
        return ctx;
    }

    private void paintleafIconEnabled(Graphics2D g) {        path = decodePath1();        g.setPaint(color1);        g.fill(path);        rect = decodeRect1();        g.setPaint(color2);        g.fill(rect);        path = decodePath2();        g.setPaint(decodeGradient1(path));        g.fill(path);        path = decodePath3();        g.setPaint(decodeGradient2(path));        g.fill(path);        path = decodePath4();        g.setPaint(color7);        g.fill(path);        path = decodePath5();        g.setPaint(color8);        g.fill(path);    }    private void paintclosedIconEnabled(Graphics2D g) {        path = decodePath6();        g.setPaint(color9);        g.fill(path);        path = decodePath7();        g.setPaint(decodeGradient3(path));        g.fill(path);        path = decodePath8();        g.setPaint(decodeGradient4(path));        g.fill(path);        rect = decodeRect2();        g.setPaint(color15);        g.fill(rect);        rect = decodeRect3();        g.setPaint(color16);        g.fill(rect);        rect = decodeRect4();        g.setPaint(color17);        g.fill(rect);        path = decodePath9();        g.setPaint(decodeGradient5(path));        g.fill(path);        path = decodePath10();        g.setPaint(decodeGradient6(path));        g.fill(path);        path = decodePath11();        g.setPaint(color23);        g.fill(path);    }    private void paintopenIconEnabled(Graphics2D g) {        path = decodePath6();        g.setPaint(color9);        g.fill(path);        path = decodePath12();        g.setPaint(decodeGradient3(path));        g.fill(path);        path = decodePath13();        g.setPaint(decodeGradient4(path));        g.fill(path);        rect = decodeRect2();        g.setPaint(color15);        g.fill(rect);        rect = decodeRect3();        g.setPaint(color16);        g.fill(rect);        rect = decodeRect4();        g.setPaint(color17);        g.fill(rect);        path = decodePath14();        g.setPaint(decodeGradient5(path));        g.fill(path);        path = decodePath15();        g.setPaint(decodeGradient7(path));        g.fill(path);        path = decodePath11();        g.setPaint(color23);        g.fill(path);    }    private void paintcollapsedIconEnabled(Graphics2D g) {        path = decodePath16();        g.setPaint(color26);        g.fill(path);    }    private void paintcollapsedIconEnabledAndSelected(Graphics2D g) {        path = decodePath16();        g.setPaint(color4);        g.fill(path);    }    private void paintexpandedIconEnabled(Graphics2D g) {        path = decodePath17();        g.setPaint(color26);        g.fill(path);    }    private void paintexpandedIconEnabledAndSelected(Graphics2D g) {        path = decodePath17();        g.setPaint(color4);        g.fill(path);    }

    private Path2D decodePath1() {        path.reset();        path.moveTo(decodeX(0.2f), decodeY(0.0f));        path.lineTo(decodeX(0.2f), decodeY(3.0f));        path.lineTo(decodeX(0.4f), decodeY(3.0f));        path.lineTo(decodeX(0.4f), decodeY(0.2f));        path.lineTo(decodeX(1.9197531f), decodeY(0.2f));        path.lineTo(decodeX(2.6f), decodeY(0.9f));        path.lineTo(decodeX(2.6f), decodeY(3.0f));        path.lineTo(decodeX(2.8f), decodeY(3.0f));        path.lineTo(decodeX(2.8f), decodeY(0.88888896f));        path.lineTo(decodeX(1.9537036f), decodeY(0.0f));        path.lineTo(decodeX(0.2f), decodeY(0.0f));        path.closePath();        return path;    }    private Rectangle2D decodeRect1() {            rect.setRect(decodeX(0.4f), //x                         decodeY(2.8f), //y                         decodeX(2.6f) - decodeX(0.4f), //width                         decodeY(3.0f) - decodeY(2.8f)); //height        return rect;    }    private Path2D decodePath2() {        path.reset();        path.moveTo(decodeX(1.8333333f), decodeY(0.2f));        path.lineTo(decodeX(1.8333333f), decodeY(1.0f));        path.lineTo(decodeX(2.6f), decodeY(1.0f));        path.lineTo(decodeX(1.8333333f), decodeY(0.2f));        path.closePath();        return path;    }    private Path2D decodePath3() {        path.reset();        path.moveTo(decodeX(1.8333333f), decodeY(0.2f));        path.lineTo(decodeX(0.4f), decodeY(0.2f));        path.lineTo(decodeX(0.4f), decodeY(2.8f));        path.lineTo(decodeX(2.6f), decodeY(2.8f));        path.lineTo(decodeX(2.6f), decodeY(1.0f));        path.lineTo(decodeX(1.8333333f), decodeY(1.0f));        path.lineTo(decodeX(1.8333333f), decodeY(0.2f));        path.closePath();        return path;    }    private Path2D decodePath4() {        path.reset();        path.moveTo(decodeX(1.8333333f), decodeY(0.2f));        path.lineTo(decodeX(1.6234567f), decodeY(0.2f));        path.lineTo(decodeX(1.6296296f), decodeY(1.2037038f));        path.lineTo(decodeX(2.6f), decodeY(1.2006173f));        path.lineTo(decodeX(2.6f), decodeY(1.0f));        path.lineTo(decodeX(1.8333333f), decodeY(1.0f));        path.lineTo(decodeX(1.8333333f), decodeY(0.2f));        path.closePath();        return path;    }    private Path2D decodePath5() {        path.reset();        path.moveTo(decodeX(1.8333333f), decodeY(0.4f));        path.lineTo(decodeX(1.8333333f), decodeY(0.2f));        path.lineTo(decodeX(0.4f), decodeY(0.2f));        path.lineTo(decodeX(0.4f), decodeY(2.8f));        path.lineTo(decodeX(2.6f), decodeY(2.8f));        path.lineTo(decodeX(2.6f), decodeY(1.0f));        path.lineTo(decodeX(2.4f), decodeY(1.0f));        path.lineTo(decodeX(2.4f), decodeY(2.6f));        path.lineTo(decodeX(0.6f), decodeY(2.6f));        path.lineTo(decodeX(0.6f), decodeY(0.4f));        path.lineTo(decodeX(1.8333333f), decodeY(0.4f));        path.closePath();        return path;    }    private Path2D decodePath6() {        path.reset();        path.moveTo(decodeX(0.0f), decodeY(2.4f));        path.lineTo(decodeX(0.0f), decodeY(2.6f));        path.lineTo(decodeX(0.2f), decodeY(3.0f));        path.lineTo(decodeX(2.6f), decodeY(3.0f));        path.lineTo(decodeX(2.8f), decodeY(2.6f));        path.lineTo(decodeX(2.8f), decodeY(2.4f));        path.lineTo(decodeX(0.0f), decodeY(2.4f));        path.closePath();        return path;    }    private Path2D decodePath7() {        path.reset();        path.moveTo(decodeX(0.6f), decodeY(2.6f));        path.lineTo(decodeX(0.6037037f), decodeY(1.8425925f));        path.lineTo(decodeX(0.8f), decodeY(1.0f));        path.lineTo(decodeX(2.8f), decodeY(1.0f));

⌨️ 快捷键说明

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