Package org.pushingpixels.substance.api.watermark

Examples of org.pushingpixels.substance.api.watermark.SubstanceCrosshatchWatermark


    this.addOverlayPainter(bottomLineOverlayPainter,
        DecorationAreaType.PRIMARY_TITLE_PANE,
        DecorationAreaType.SECONDARY_TITLE_PANE,
        DecorationAreaType.HEADER);

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

    this.buttonShaper = new ClassicButtonShaper();
    this.fillPainter = new ClassicFillPainter();
View Full Code Here


        DecorationAreaType.GENERAL, DecorationAreaType.TOOLBAR);

    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

public class CrosshatchWatermark extends WatermarkRobot {
  /**
   * Creates the screenshot robot.
   */
  public CrosshatchWatermark() {
    super(new SubstanceCrosshatchWatermark(),
        "C:/jprojects/substance/www/images/screenshots/watermarks/crosshatch.png");
  }
View Full Code Here

    /**
     * Creates a custom skin.
     */
    public MySkin() {
      super();
      this.watermark = new SubstanceCrosshatchWatermark();
    }
View Full Code Here

    /**
     * Creates a custom skin.
     */
    public MySkin() {
      super();
      this.watermark = new SubstanceCrosshatchWatermark();
    }
View Full Code Here

    /**
     * Creates a custom skin.
     */
    public MySkin() {
      super();
      this.watermark = new SubstanceCrosshatchWatermark();
    }
View Full Code Here

  /**
   * Creates the screenshot robot.
   */
  public CrosshatchWatermark() {
    super(
        new SubstanceCrosshatchWatermark(),
        "/Users/kirillg/JProjects/substance/www/images/screenshots/watermarks/crosshatch.png");
  }
View Full Code Here

    /**
     * Creates a custom skin.
     */
    public MySkin() {
      super();
      this.watermark = new SubstanceCrosshatchWatermark();
    }
View Full Code Here

        DecorationAreaType.GENERAL, DecorationAreaType.TOOLBAR);

    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

TOP

Related Classes of org.pushingpixels.substance.api.watermark.SubstanceCrosshatchWatermark

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.