Package org.jvnet.substance.shaper

Source Code of org.jvnet.substance.shaper.StandardButtonShaper

/*
* Copyright (c) 2005-2009 Substance Kirill Grouchnikov. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
*  o Redistributions of source code must retain the above copyright notice,
*    this list of conditions and the following disclaimer.
*    
*  o Redistributions in binary form must reproduce the above copyright notice,
*    this list of conditions and the following disclaimer in the documentation
*    and/or other materials provided with the distribution.
*    
*  o Neither the name of Substance Kirill Grouchnikov nor the names of
*    its contributors may be used to endorse or promote products derived
*    from this software without specific prior written permission.
*    
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.jvnet.substance.shaper;

import java.awt.*;
import java.awt.geom.GeneralPath;
import java.util.Set;

import javax.swing.*;
import javax.swing.border.Border;

import org.jvnet.substance.SubstanceLookAndFeel;
import org.jvnet.substance.api.SubstanceConstants;
import org.jvnet.substance.utils.*;
import org.jvnet.substance.utils.border.SubstanceBorder;
import org.jvnet.substance.utils.border.SubstanceButtonBorder;

/**
* Button shaper that returns buttons with completely rounded corners (ala Mac
* 10.4). This class is part of officially supported API.
*
* @author Kirill Grouchnikov
*/
public class StandardButtonShaper extends BaseButtonShaper implements
    RectangularButtonShaper {
  /**
   * Cache of already computed contours.
   */
  private final static LazyResettableHashMap<GeneralPath> contours = new LazyResettableHashMap<GeneralPath>(
      "StandardButtonShaper");

  /*
   * (non-Javadoc)
   *
   * @see org.jvnet.substance.button.SubstanceButtonShaper#getDisplayName()
   */
  public String getDisplayName() {
    return "Standard";
  }

  /*
   * (non-Javadoc)
   *
   * @see
   * org.jvnet.substance.shaper.SubstanceButtonShaper#getButtonOutline(javax
   * .swing.AbstractButton, java.awt.Insets, int, int, boolean)
   */
  @Override
  public GeneralPath getButtonOutline(AbstractButton button, Insets insets,
      int width, int height, boolean isInner) {
    Set<SubstanceConstants.Side> straightSides = SubstanceCoreUtilities
        .getSides(button, SubstanceLookAndFeel.BUTTON_SIDE_PROPERTY);

    float radius = this.getCornerRadius(button, insets);
    if (isInner) {
      radius -= (int) SubstanceSizeUtils
          .getBorderStrokeWidth(SubstanceSizeUtils
              .getComponentFontSize(button));
    }

    HashMapKey key = SubstanceCoreUtilities.getHashKey(width, height,
        straightSides, radius, insets);

    GeneralPath result = contours.get(key);
    if (result != null) {
      return result;
    }

    result = SubstanceOutlineUtilities.getBaseOutline(width, height,
        radius, straightSides, insets);
    contours.put(key, result);
    return result;
  }

  /*
   * (non-Javadoc)
   *
   * @see
   * org.jvnet.substance.button.SubstanceButtonShaper#getButtonBorder(javax
   * .swing.AbstractButton)
   */
  public Border getButtonBorder(AbstractButton button) {
    return new SubstanceButtonBorder(StandardButtonShaper.class) {
      public Insets getBorderInsets(Component c) {
        int componentFontSize = SubstanceSizeUtils
            .getComponentFontSize(c);
        int extraPadding = SubstanceSizeUtils
            .getExtraPadding(componentFontSize);
        if (c instanceof AbstractButton) {
          AbstractButton button = (AbstractButton) c;
          if (SubstanceCoreUtilities.hasText(button)) {
            int dh = SubstanceSizeUtils
                .getMinButtonHeight(SubstanceSizeUtils
                    .getComponentFontSize(button));
            int lrPadding = SubstanceSizeUtils
                .getTextButtonLRPadding(componentFontSize);
            return new Insets(lrPadding + extraPadding,
                extraPadding + dh / 2,
                lrPadding + extraPadding, extraPadding + dh / 2);
          }
        }
        return new Insets(extraPadding, extraPadding, extraPadding,
            extraPadding);
      }
    };
  }

  /*
   * (non-Javadoc)
   *
   * @see
   * org.jvnet.substance.button.SubstanceButtonShaper#getPreferredSize(javax
   * .swing.AbstractButton, java.awt.Dimension)
   */
  public Dimension getPreferredSize(AbstractButton button,
      Dimension uiPreferredSize) {
    Dimension result;
    boolean toTweakWidth = false;
    boolean toTweakHeight = false;

    Icon icon = button.getIcon();
    boolean hasIcon = SubstanceCoreUtilities.hasIcon(button);
    boolean hasText = SubstanceCoreUtilities.hasText(button);
    Insets margin = button.getMargin();

    result = uiPreferredSize;

    boolean hasNoMinSizeProperty = SubstanceCoreUtilities
        .hasNoMinSizeProperty(button);
    if ((!hasNoMinSizeProperty) && hasText) {
      int baseWidth = uiPreferredSize.width;
      baseWidth = Math.max(baseWidth, SubstanceSizeUtils
          .getMinButtonWidth(SubstanceSizeUtils
              .getComponentFontSize(button)));
      // if (baseWidth < DEFAULT_WIDTH) {
      // baseWidth = DEFAULT_WIDTH;
      // }
      result = new Dimension(baseWidth, uiPreferredSize.height);
      int baseHeight = result.height;
      baseHeight = Math.max(baseHeight, SubstanceSizeUtils
          .getMinButtonHeight(SubstanceSizeUtils
              .getComponentFontSize(button)));
      result = new Dimension(result.width, baseHeight);
    } else {
      if (hasNoMinSizeProperty) {
        if (margin != null) {
          result = new Dimension(result.width + margin.left
              + margin.right, result.height + margin.top
              + margin.bottom);
        }
      }
    }

    int extraPadding = SubstanceSizeUtils
        .getExtraPadding(SubstanceSizeUtils
            .getComponentFontSize(button));
    int iconPaddingWidth = 6 + 2 * extraPadding;
    int iconPaddingHeight = 6 + 2 * extraPadding;
    if (margin != null) {
      iconPaddingWidth = Math.max(iconPaddingWidth, margin.left
          + margin.right);
      iconPaddingHeight = Math.max(iconPaddingHeight, margin.top
          + margin.bottom);
    }
    if (hasIcon) {
      // check the icon height
      int iconHeight = icon.getIconHeight();
      if (iconHeight > (result.getHeight() - iconPaddingHeight)) {
        result = new Dimension(result.width, iconHeight);
        toTweakHeight = true;
      }
      int iconWidth = icon.getIconWidth();
      if (iconWidth > (result.getWidth() - iconPaddingWidth)) {
        result = new Dimension(iconWidth, result.height);
        toTweakWidth = true;
      }
    }

    if (SubstanceCoreUtilities.isScrollBarButton(button)) {
      toTweakWidth = false;
      toTweakHeight = false;
    }

    if (toTweakWidth) {
      result = new Dimension(result.width + iconPaddingWidth,
          result.height);
    }
    if (toTweakHeight) {
      result = new Dimension(result.width, result.height
          + iconPaddingHeight);
    }

    if (result.height % 2 != 0)
      result.height++;

    return result;
  }

  /**
   * Returns indication whether the specified button should be drawn with
   * completely round corners.
   *
   * @param button
   *            A button.
   * @return <code>true</code> if the specified button should be drawn with
   *         completely round corners, <code>false</code> otherwise.
   */
  public static boolean isRoundButton(AbstractButton button) {
    return (!SubstanceCoreUtilities.isComboBoxButton(button))
        && (!SubstanceCoreUtilities.isScrollButton(button))
        && SubstanceCoreUtilities.hasText(button);
  }

  /*
   * (non-Javadoc)
   *
   * @see org.jvnet.substance.button.SubstanceButtonShaper#isProportionate()
   */
  public boolean isProportionate() {
    return true;
  }

  /*
   * (non-Javadoc)
   *
   * @see
   * org.jvnet.substance.shaper.RectangularButtonShaper#getCornerRadius(javax
   * .swing.JComponent, java.awt.Insets)
   */
  @Override
  public float getCornerRadius(AbstractButton button, Insets insets) {
    int width = button.getWidth();
    int height = button.getHeight();

    boolean isRoundCorners = isRoundButton(button);
    float radius = SubstanceSizeUtils
        .getClassicButtonCornerRadius(SubstanceSizeUtils
            .getComponentFontSize(button));
    if (button.getClass().isAnnotationPresent(SubstanceArrowButton.class)) {
      Border parentBorder = ((JComponent) button.getParent()).getBorder();
      if (parentBorder instanceof SubstanceBorder) {
        radius *= ((SubstanceBorder) parentBorder)
            .getRadiusScaleFactor();
      }
    }

    if (insets != null) {
      width -= (insets.left + insets.right);
      height -= (insets.top + insets.bottom);
    }
    if (isRoundCorners) {
      if (width > height) {
        radius = (height) / 2.0f;
      } else {
        radius = (width) / 2.0f;
      }
    }

    if (SubstanceCoreUtilities.isToolBarButton(button)) {
      radius = SubstanceCoreUtilities.getToolbarButtonCornerRadius(
          button, insets);
    }
    return radius;
  }
}
TOP

Related Classes of org.jvnet.substance.shaper.StandardButtonShaper

TOP
Copyright © 2018 www.massapi.com. 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.