Package org.pushingpixels.substance.api.painter.highlight

Examples of org.pushingpixels.substance.api.painter.highlight.ClassicHighlightPainter


    this.buttonShaper = new ClassicButtonShaper();
    this.watermark = new SubstanceCrosshatchWatermark();
    this.fillPainter = new GlassFillPainter();
    this.decorationPainter = new ArcDecorationPainter();
    this.highlightPainter = new ClassicHighlightPainter();
    this.borderPainter = new GlassBorderPainter();
  }
View Full Code Here


    this.buttonShaper = new ClassicButtonShaper();
    this.watermark = null;
    this.fillPainter = new StandardFillPainter();
    this.decorationPainter = new MatteDecorationPainter();
    this.highlightPainter = new ClassicHighlightPainter();
    this.borderPainter = new CompositeBorderPainter("Twilight",
        new ClassicBorderPainter(), new DelegateBorderPainter(
            "Twilight Inner", new ClassicBorderPainter(),
            0x40FFFFFF, 0x20FFFFFF, 0x00FFFFFF,
            new ColorSchemeTransform() {
View Full Code Here

        new float[] { 0.0f, 0.5f, 1.0f },
        new ColorSchemeSingleColorQuery[] {
            ColorSchemeSingleColorQuery.EXTRALIGHT,
            ColorSchemeSingleColorQuery.LIGHT,
            ColorSchemeSingleColorQuery.MID });
    this.highlightPainter = new ClassicHighlightPainter();
    this.decorationPainter = new MatteDecorationPainter();
    this.buttonShaper = new ClassicButtonShaper();
  }
View Full Code Here

            ColorSchemeSingleColorQuery.DARK,
            ColorSchemeSingleColorQuery.DARK,
            ColorSchemeSingleColorQuery.MID },
        DecorationAreaType.PRIMARY_TITLE_PANE,
        DecorationAreaType.FOOTER);
    this.highlightPainter = new ClassicHighlightPainter();
  }
View Full Code Here

        new ColorSchemeSingleColorQuery[] {
            ColorSchemeSingleColorQuery.ULTRALIGHT,
            ColorSchemeSingleColorQuery.LIGHT,
            ColorSchemeSingleColorQuery.LIGHT });
    this.decorationPainter = new FlatDecorationPainter();
    this.highlightPainter = new ClassicHighlightPainter();
    this.borderPainter = new CompositeBorderPainter("Graphite",
        new ClassicBorderPainter(), new DelegateBorderPainter(
            "Graphite Inner", new ClassicBorderPainter(),
            0xA0FFFFFF, 0x60FFFFFF, 0x60FFFFFF,
            new ColorSchemeTransform() {
View Full Code Here

                  SubstanceColorScheme scheme) {
                return scheme.tint(0.8f);
              }
            }));

    this.highlightPainter = new ClassicHighlightPainter();

    MarbleNoiseDecorationPainter decorationPainter = new MarbleNoiseDecorationPainter();
    decorationPainter.setTextureAlpha(0.7f);
    this.decorationPainter = decorationPainter;
  }
View Full Code Here

    this.buttonShaper = new ClassicButtonShaper();
    this.fillPainter = new GlassFillPainter();
    this.decorationPainter = new ArcDecorationPainter();
    this.borderPainter = new GlassBorderPainter();
    this.highlightPainter = new ClassicHighlightPainter();
  }
View Full Code Here

        ColorSchemeSingleColorQuery.EXTRALIGHT,
        ColorSchemeSingleColorQuery.LIGHT,
        ColorSchemeSingleColorQuery.MID });

    this.decorationPainter = new MatteDecorationPainter();
    this.highlightPainter = new ClassicHighlightPainter();

    FractionBasedBorderPainter outerBorderPainter = new FractionBasedBorderPainter(
        "Gemini Outer", new float[] { 0.0f, 0.5f, 1.0f },
        new ColorSchemeSingleColorQuery[] {
            ColorSchemeSingleColorQuery.ULTRADARK,
View Full Code Here

    this.buttonShaper = new ClassicButtonShaper();
    this.fillPainter = new GlassFillPainter();
    this.decorationPainter = new ClassicDecorationPainter();
    this.borderPainter = new ClassicBorderPainter();
    this.highlightPainter = new ClassicHighlightPainter();
  }
View Full Code Here

                new ColorSchemeSingleColorQuery[] {
                        ColorSchemeSingleColorQuery.ULTRALIGHT,
                        ColorSchemeSingleColorQuery.LIGHT,
                        ColorSchemeSingleColorQuery.LIGHT });
        this.decorationPainter = new FlatDecorationPainter();
        this.highlightPainter = new ClassicHighlightPainter();
        this.borderPainter = new CompositeBorderPainter("Graphite",
                new ClassicBorderPainter(), new DelegateBorderPainter(
                "Graphite Inner", new ClassicBorderPainter(),
                0xA0FFFFFF, 0x60FFFFFF, 0x60FFFFFF,
                new ColorSchemeTransform() {
View Full Code Here

TOP

Related Classes of org.pushingpixels.substance.api.painter.highlight.ClassicHighlightPainter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.