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

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


  private static class MyInternalFrameTitlePane extends JComponent {
    @Override
    protected void paintComponent(Graphics g) {
      SubstanceSkin currentSkin = SubstanceLookAndFeel
          .getCurrentSkin(this);
      SubstanceDecorationPainter decoPainter = currentSkin
          .getDecorationPainter();
      Graphics2D g2d = (Graphics2D) g.create();
      decoPainter.paintDecorationArea(g2d, this,
          DecorationAreaType.SECONDARY_TITLE_PANE, getWidth(),
          getHeight(), currentSkin);
      g2d.dispose();
    }
View Full Code Here


  private static class MyInternalFrameTitlePane extends JComponent {
    @Override
    protected void paintComponent(Graphics g) {
      SubstanceSkin currentSkin = SubstanceLookAndFeel
          .getCurrentSkin(this);
      SubstanceDecorationPainter decoPainter = currentSkin
          .getDecorationPainter();
      Graphics2D g2d = (Graphics2D) g.create();
      decoPainter.paintDecorationArea(g2d, this,
          DecorationAreaType.SECONDARY_TITLE_PANE, getWidth(),
          getHeight(), currentSkin);
      g2d.dispose();
    }
View Full Code Here

    if ((c.getHeight() == 0) || (c.getWidth() == 0))
      return;

    SubstanceSkin skin = SubstanceCoreUtilities.getSkin(c);
    SubstanceDecorationPainter painter = skin.getDecorationPainter();

    Graphics2D g2d = (Graphics2D) g.create();
    painter.paintDecorationArea(g2d, c, decorationType, c.getWidth(), c
        .getHeight(), skin);

    SubstanceWatermark watermark = SubstanceCoreUtilities.getSkin(c)
        .getWatermark();
    if ((watermark != null) && !isPreviewMode && !isInCellRenderer
        && c.isShowing() && SubstanceCoreUtilities.toDrawWatermark(c)) {
      // paint the watermark over the component
      watermark.drawWatermarkImage(g2d, c, 0, 0, c.getWidth(), c
          .getHeight());

      // paint the background second time with 50%
      // translucency, making the watermark' bleed' through.
      g2d.setComposite(TransitionLayout.getAlphaComposite(c, 0.5f, g));
      painter.paintDecorationArea(g2d, c, decorationType, c.getWidth(), c
          .getHeight(), skin);
    }
    g2d.dispose();
  }
View Full Code Here

  private static class MyInternalFrameTitlePane extends JComponent {
    @Override
    protected void paintComponent(Graphics g) {
      SubstanceSkin currentSkin = SubstanceLookAndFeel
          .getCurrentSkin(this);
      SubstanceDecorationPainter decoPainter = currentSkin
          .getDecorationPainter();
      Graphics2D g2d = (Graphics2D) g.create();
      decoPainter.paintDecorationArea(g2d, this,
          DecorationAreaType.SECONDARY_TITLE_PANE, getWidth(),
          getHeight(), currentSkin);
      g2d.dispose();
    }
View Full Code Here

    if ((c.getHeight() == 0) || (c.getWidth() == 0))
      return;

    SubstanceSkin skin = SubstanceCoreUtilities.getSkin(c);
    SubstanceDecorationPainter painter = skin.getDecorationPainter();

    Graphics2D g2d = (Graphics2D) g.create();
    painter.paintDecorationArea(g2d, c, decorationType, c.getWidth(), c
        .getHeight(), skin);

    SubstanceWatermark watermark = SubstanceCoreUtilities.getSkin(c)
        .getWatermark();
    if ((watermark != null) && !isPreviewMode && !isInCellRenderer
        && c.isShowing() && SubstanceCoreUtilities.toDrawWatermark(c)) {
      // paint the watermark over the component
      watermark.drawWatermarkImage(g2d, c, 0, 0, c.getWidth(), c
          .getHeight());

      // paint the background second time with 50%
      // translucency, making the watermark' bleed' through.
      g2d.setComposite(LafWidgetUtilities.getAlphaComposite(c, 0.5f, g));
      painter.paintDecorationArea(g2d, c, decorationType, c.getWidth(), c
          .getHeight(), skin);
    }
    g2d.dispose();
  }
View Full Code Here

TOP

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

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.