Package org.pushingpixels.substance.api.painter.border

Examples of org.pushingpixels.substance.api.painter.border.ClassicBorderPainter


    this.watermarkScheme = new BlendBiColorScheme(colorScheme,
        new DarkMetallicColorScheme(), 0.5);

    this.buttonShaper = new ClassicButtonShaper();
    this.fillPainter = new ClassicFillPainter();
    this.borderPainter = new ClassicBorderPainter();

    MarbleNoiseDecorationPainter decorationPainter = new MarbleNoiseDecorationPainter();
    decorationPainter.setBaseDecorationPainter(new ArcDecorationPainter());
    decorationPainter.setTextureAlpha(0.3f);
    this.decorationPainter = decorationPainter;

    this.highlightPainter = new ClassicHighlightPainter();
    this.borderPainter = new ClassicBorderPainter();
  }
View Full Code Here


        DecorationAreaType.SECONDARY_TITLE_PANE,
        DecorationAreaType.HEADER);

    this.buttonShaper = new ClassicButtonShaper();
    this.fillPainter = new ClassicFillPainter();
    this.borderPainter = new ClassicBorderPainter();

    MarbleNoiseDecorationPainter decorationPainter = new MarbleNoiseDecorationPainter();
    decorationPainter.setBaseDecorationPainter(new ArcDecorationPainter());
    decorationPainter.setTextureAlpha(0.3f);
    this.decorationPainter = decorationPainter;

    this.highlightPainter = new ClassicHighlightPainter();
    this.borderPainter = new ClassicBorderPainter();
  }
View Full Code Here

    this.setSelectedTabFadeStart(0.6);
    this.setSelectedTabFadeEnd(1.0);

    this.buttonShaper = new StandardButtonShaper();
    this.fillPainter = new MatteFillPainter();
    this.borderPainter = new ClassicBorderPainter();

    this.decorationPainter = new MatteDecorationPainter();
    this.highlightPainter = new ClassicHighlightPainter();
  }
View Full Code Here

    this.setSelectedTabFadeEnd(1.0);

    this.buttonShaper = new ClassicButtonShaper();
    this.fillPainter = new ClassicFillPainter();
    this.borderPainter = new CompositeBorderPainter("Business",
        new ClassicBorderPainter(), new DelegateBorderPainter(
            "Business Inner", new ClassicBorderPainter(),
            new ColorSchemeTransform() {
              @Override
              public SubstanceColorScheme transform(
                  SubstanceColorScheme scheme) {
                return scheme.tint(0.9f);
View Full Code Here

        new float[] { 0.0f, 0.5f, 1.0f },
        new ColorSchemeSingleColorQuery[] {
            ColorSchemeSingleColorQuery.ULTRADARK,
            ColorSchemeSingleColorQuery.DARK,
            ColorSchemeSingleColorQuery.MID });
    this.highlightBorderPainter = new ClassicBorderPainter();

    this.watermarkScheme = schemes.get("Mariner Watermark");
  }
View Full Code Here

    this.addOverlayPainter(TopShadowOverlayPainter.getInstance(),
        DecorationAreaType.TOOLBAR);

    this.buttonShaper = new ClassicButtonShaper();
    this.fillPainter = new ClassicFillPainter();
    this.borderPainter = new ClassicBorderPainter();

    BrushedMetalDecorationPainter decorationPainter = new BrushedMetalDecorationPainter();
    decorationPainter.setBaseDecorationPainter(new ArcDecorationPainter());
    decorationPainter.setTextureAlpha(0.02f);
    this.decorationPainter = decorationPainter;

    this.highlightPainter = new ClassicHighlightPainter();

    this.borderPainter = new ClassicBorderPainter();
  }
View Full Code Here

        .get("LightGray General Watermark"),
        DecorationAreaType.GENERAL, DecorationAreaType.HEADER);

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

        new ColorSchemeSingleColorQuery[] {
            ColorSchemeSingleColorQuery.EXTRALIGHT,
            ColorSchemeSingleColorQuery.LIGHT,
            ColorSchemeSingleColorQuery.MID });
    this.borderPainter = new CompositeBorderPainter("Graphite Aqua",
        new ClassicBorderPainter(), new DelegateBorderPainter(
            "Graphite Aqua Inner", new ClassicBorderPainter(),
            0xC0FFFFFF, 0x90FFFFFF, 0x30FFFFFF,
            new ColorSchemeTransform() {
              @Override
              public SubstanceColorScheme transform(
                  SubstanceColorScheme scheme) {
                return scheme.tint(0.25f);
              }
            }));
    this.highlightBorderPainter = new ClassicBorderPainter();
  }
View Full Code Here

    this.registerDecorationAreaSchemeBundle(generalSchemeBundle,
        DecorationAreaType.FOOTER, DecorationAreaType.GENERAL);

    this.buttonShaper = new ClassicButtonShaper();
    this.fillPainter = new ClassicFillPainter();
    this.borderPainter = new ClassicBorderPainter();

    BrushedMetalDecorationPainter decorationPainter = new BrushedMetalDecorationPainter();
    decorationPainter.setBaseDecorationPainter(new ArcDecorationPainter());
    decorationPainter.setTextureAlpha(0.3f);
    this.decorationPainter = decorationPainter;

    this.highlightPainter = new ClassicHighlightPainter();
    this.borderPainter = new ClassicBorderPainter();
  }
View Full Code Here

    this.watermark = null;
    this.fillPainter = new StandardFillPainter();
    this.decorationPainter = new MatteDecorationPainter();
    this.highlightPainter = new ClassicHighlightPainter();
    this.borderPainter = new CompositeBorderPainter("Dust",
        new ClassicBorderPainter(), new DelegateBorderPainter(
            "Dust Inner", new ClassicBorderPainter(), 0x60FFFFFF,
            0x30FFFFFF, 0x18FFFFFF, new ColorSchemeTransform() {
              @Override
              public SubstanceColorScheme transform(
                  SubstanceColorScheme scheme) {
                return scheme.shiftBackground(
View Full Code Here

TOP

Related Classes of org.pushingpixels.substance.api.painter.border.ClassicBorderPainter

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.