Package org.pushingpixels.substance.api.painter.decoration

Examples of org.pushingpixels.substance.api.painter.decoration.ArcDecorationPainter


    this.buttonShaper = new ClassicButtonShaper();
    this.fillPainter = new SubduedFillPainter();

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

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


    this.watermarkScheme = activeScheme.shade(0.4);

    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.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.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",
        new ClassicBorderPainter(), new DelegateBorderPainter(
            "Graphite Glass Inner", new ClassicBorderPainter(),
            0xA0FFFFFF, 0x60FFFFFF, 0x60FFFFFF,
View Full Code Here

    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

    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(),
            new ColorSchemeTransform() {
View Full Code Here

    this.setSelectedTabFadeEnd(1);

    this.buttonShaper = new ClassicButtonShaper();
    // this.gradientPainter = new GlassGradientPainter();
    this.borderPainter = new ClassicBorderPainter();
    this.decorationPainter = new ArcDecorationPainter();
    this.highlightPainter = new ClassicHighlightPainter();

    this.fillPainter = new GlassFillPainter();
  }
View Full Code Here

          DecorationAreaType.HEADER);

      this.borderPainter = new ClassicBorderPainter();
      this.fillPainter = new GlassFillPainter();
      this.buttonShaper = new ClassicButtonShaper();
      this.decorationPainter = new ArcDecorationPainter();
      this.highlightPainter = new GlassHighlightPainter();

      this.selectedTabFadeStart = 1.0f;
      this.selectedTabFadeEnd = 1.0f;
    }
View Full Code Here

                return scheme.tint(0.9f);
              }
            }));

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

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

    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();
View Full Code Here

TOP

Related Classes of org.pushingpixels.substance.api.painter.decoration.ArcDecorationPainter

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.