Package org.pushingpixels.substance.api.shaper

Examples of org.pushingpixels.substance.api.shaper.ClassicButtonShaper


            DecorationAreaType.GENERAL);

    this.setSelectedTabFadeStart(0.6);
    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() {
View Full Code Here


    this.toolbarBottomLineOverlayPainter = new BottomLineOverlayPainter(
        ColorSchemeSingleColorQuery.ULTRADARK);
    this.addOverlayPainter(this.toolbarBottomLineOverlayPainter,
        DecorationAreaType.TOOLBAR);

    this.buttonShaper = new ClassicButtonShaper();
    this.watermark = new TextureWatermark();
    this.fillPainter = new FractionBasedFillPainter("Mariner", new float[] {
        0.0f, 0.5f, 1.0f }, new ColorSchemeSingleColorQuery[] {
        ColorSchemeSingleColorQuery.EXTRALIGHT,
        ColorSchemeSingleColorQuery.LIGHT,
View Full Code Here

        .getColorSchemes("org/pushingpixels/substance/api/skin/kitchen-sink.colorschemes");
    this.registerAsDecorationArea(kitchenSinkSchemes
        .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

    this.addOverlayPainter(this.menuOverlayPainter,
        DecorationAreaType.HEADER);
    this.addOverlayPainter(this.toolbarOverlayPainter,
        DecorationAreaType.TOOLBAR);

    this.buttonShaper = new ClassicButtonShaper();
    this.watermark = null;
    this.fillPainter = new GlassFillPainter();
    this.decorationPainter = new ArcDecorationPainter();
    this.highlightPainter = new GlassHighlightPainter();
    this.borderPainter = new CompositeBorderPainter("Graphite Glass",
View Full Code Here

        backgroundScheme, DecorationAreaType.NONE);

    this.setSelectedTabFadeStart(0.15);
    this.setSelectedTabFadeEnd(0.25);

    this.buttonShaper = new ClassicButtonShaper();
    this.watermark = null;
    this.fillPainter = new FractionBasedFillPainter("Graphite Aqua",
        new float[] { 0.0f, 0.5f, 1.0f },
        new ColorSchemeSingleColorQuery[] {
            ColorSchemeSingleColorQuery.LIGHT,
View Full Code Here

    generalSchemeBundle.registerColorScheme(enabledGeneralScheme, 0.7f,
        ComponentState.DISABLED_UNSELECTED);
    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());
View Full Code Here

        DecorationAreaType.GENERAL, DecorationAreaType.TOOLBAR);

    setSelectedTabFadeStart(0.2);
    setSelectedTabFadeEnd(0.4);

    this.buttonShaper = new ClassicButtonShaper();
    this.fillPainter = new ClassicFillPainter();
    this.decorationPainter = new ArcDecorationPainter();
    this.highlightPainter = new ClassicHighlightPainter();
    this.borderPainter = new CompositeBorderPainter("Creme",
        new ClassicBorderPainter(), new DelegateBorderPainter(
View Full Code Here

    // add an overlay painter to paint a drop shadow along the top
    // edge of toolbars
    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());
View Full Code Here

    this.addOverlayPainter(this.menuOverlayPainter,
        DecorationAreaType.HEADER);
    this.addOverlayPainter(this.toolbarOverlayPainter,
        DecorationAreaType.TOOLBAR);

    this.buttonShaper = new ClassicButtonShaper();
    this.watermark = null;
    this.fillPainter = new StandardFillPainter();
    this.decorationPainter = new MatteDecorationPainter();
    this.highlightPainter = new ClassicHighlightPainter();
    this.borderPainter = new CompositeBorderPainter("Dust",
View Full Code Here

        DecorationAreaType.PRIMARY_TITLE_PANE,
        DecorationAreaType.SECONDARY_TITLE_PANE,
        DecorationAreaType.HEADER, DecorationAreaType.FOOTER,
        DecorationAreaType.GENERAL, DecorationAreaType.TOOLBAR);

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

TOP

Related Classes of org.pushingpixels.substance.api.shaper.ClassicButtonShaper

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.