Package org.pushingpixels.substance.api.painter.fill

Examples of org.pushingpixels.substance.api.painter.fill.ClassicFillPainter


        DecorationAreaType.PRIMARY_TITLE_PANE,
        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);
View Full Code Here


                "org/pushingpixels/substance/api/skin/lightgray-general-watermark.colorscheme"));
    this.registerAsDecorationArea(generalBgScheme,
        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

        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());
    decorationPainter.setTextureAlpha(0.3f);
View Full Code Here

    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(
            "Creme Inner", new ClassicBorderPainter(),
View Full Code Here

  /**
   * Creates new classic title painter.
   */
  public ClassicHighlightPainter() {
    this.painter = new ClassicFillPainter();
  }
View Full Code Here

    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() {
              @Override
View Full Code Here

    // 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());
    decorationPainter.setTextureAlpha(0.02f);
View Full Code Here

  /**
   * Creates new classic title painter.
   */
  public ClassicDecorationPainter() {
    this.painter = new ClassicFillPainter();
  }
View Full Code Here

    this.watermark = new SubstanceCrosshatchWatermark();
    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);
View Full Code Here

    this.watermark = new SubstanceNullWatermark();
    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);
View Full Code Here

TOP

Related Classes of org.pushingpixels.substance.api.painter.fill.ClassicFillPainter

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.