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

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


        DecorationAreaType.HEADER, DecorationAreaType.FOOTER,
        DecorationAreaType.TOOLBAR);

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

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


        new ColorSchemeSingleColorQuery[] {
            ColorSchemeSingleColorQuery.ULTRADARK,
            ColorSchemeSingleColorQuery.DARK,
            ColorSchemeSingleColorQuery.DARK });
    SubstanceBorderPainter innerBorderPainter = new DelegateBorderPainter(
        "Magellan Inner", new ClassicBorderPainter(), 0xA0FFFFFF,
        0x60FFFFFF, 0x40FFFFFF, new ColorSchemeTransform() {
          @Override
          public SubstanceColorScheme transform(
              SubstanceColorScheme scheme) {
            return scheme.tint(0.5);
View Full Code Here

            ColorSchemeSingleColorQuery.LIGHT,
            ColorSchemeSingleColorQuery.LIGHT,
            ColorSchemeSingleColorQuery.MID,
            ColorSchemeSingleColorQuery.LIGHT });

    this.borderPainter = new ClassicBorderPainter();

    this.decorationPainter = new FractionBasedDecorationPainter(
        "Office Black 2007", new float[] { 0.0f, 0.2499999f, 0.25f,
            0.6f, 1.0f }, new ColorSchemeSingleColorQuery[] {
            ColorSchemeSingleColorQuery.LIGHT,
View Full Code Here

          }
        });

    this.borderPainter = new CompositeBorderPainter("Gemini",
        outerBorderPainter, innerBorderPainter);
    this.highlightBorderPainter = new ClassicBorderPainter();
  }
View Full Code Here

        DecorationAreaType.GENERAL, DecorationAreaType.HEADER);

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

                        ColorSchemeSingleColorQuery.LIGHT,
                        ColorSchemeSingleColorQuery.LIGHT });
        this.decorationPainter = new FlatDecorationPainter();
        this.highlightPainter = new ClassicHighlightPainter();
        this.borderPainter = new CompositeBorderPainter("Graphite",
                new ClassicBorderPainter(), new DelegateBorderPainter(
                "Graphite Inner", new ClassicBorderPainter(),
                0xA0FFFFFF, 0x60FFFFFF, 0x60FFFFFF,
                new ColorSchemeTransform() {
                    @Override
                    public SubstanceColorScheme transform(
                            SubstanceColorScheme scheme) {
                        return scheme.tint(0.25f);
                    }
                }));

        this.highlightBorderPainter = new ClassicBorderPainter();

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

          headerSchemeBundle.getActiveColorScheme(),
          DecorationAreaType.PRIMARY_TITLE_PANE,
          DecorationAreaType.SECONDARY_TITLE_PANE,
          DecorationAreaType.HEADER);

      this.borderPainter = new ClassicBorderPainter();
      this.fillPainter = new GlassFillPainter();
      this.buttonShaper = new ClassicButtonShaper();
      this.decorationPainter = new ArcDecorationPainter();
      this.highlightPainter = new GlassHighlightPainter();
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.