Codota Logo
SubstanceImageCreator.getArrowIcon
Code IndexAdd Codota to your IDE (free)

How to use
getArrowIcon
method
in
org.pushingpixels.substance.internal.utils.SubstanceImageCreator

Best Java code snippets using org.pushingpixels.substance.internal.utils.SubstanceImageCreator.getArrowIcon (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: org.java.net.substance/substance

  @Override
  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(component);
    return SubstanceImageCreator.getArrowIcon(fontSize,
        orientation, scheme);
  }
};
origin: org.java.net.substance/substance

  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    // fix for defect 279 - tab pane might not yet have the
    // font installed.
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(tabPane);
    return SubstanceImageCreator.getArrowIcon(fontSize,
        direction, scheme);
  }
}, "substance.tabbedpane.scroll." + direction);
origin: com.github.insubstantial/substance

  @Override
  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(component);
    return SubstanceImageCreator.getArrowIcon(fontSize,
        orientation, scheme);
  }
};
origin: com.github.insubstantial/substance

  @Override
  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    // fix for defect 279 - tab pane might not yet have the
    // font installed.
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(tabPane);
    return SubstanceImageCreator.getArrowIcon(fontSize,
        direction, scheme);
  }
}, "substance.tabbedpane.scroll." + direction);
origin: org.java.net.substance/substance

@Override
public Icon getArrowIcon(int orientation) {
  return SubstanceImageCreator.getArrowIcon(SubstanceSizeUtils
      .getControlFontSize(), orientation,
      SubstanceColorSchemeUtilities.getColorScheme(null,
          ComponentState.DEFAULT));
}
origin: com.github.insubstantial/substance

@Override
public Icon getArrowIcon(int orientation) {
  return SubstanceImageCreator.getArrowIcon(SubstanceSizeUtils
      .getControlFontSize(), orientation,
      SubstanceColorSchemeUtilities.getColorScheme(null,
          ComponentState.DEFAULT));
}
origin: com.github.insubstantial/substance-swingx

  @Override
  public Object createValue(UIDefaults table) {
    return new IconUIResource(SubstanceImageCreator
        .getArrowIcon(SubstanceSizeUtils
            .getControlFontSize(),
            SwingConstants.NORTH, mainActiveScheme));
  }
},
origin: com.github.insubstantial/substance-swingx

  @Override
  public Object createValue(UIDefaults table) {
    return new IconUIResource(SubstanceImageCreator
        .getArrowIcon(SubstanceSizeUtils
            .getControlFontSize(),
            SwingConstants.SOUTH, mainActiveScheme));
  }
},
origin: com.github.insubstantial/substance-swingx

  @Override
  public Object createValue(UIDefaults table) {
    return new IconUIResource(SubstanceImageCreator
        .getArrowIcon(SubstanceSizeUtils
            .getControlFontSize(),
            SwingConstants.SOUTH, mainActiveScheme));
  }
},
origin: org.java.net.substance/substance

  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(splitPane);
    return SubstanceImageCreator.getArrowIcon(
        SubstanceSizeUtils
            .getSplitPaneArrowIconWidth(fontSize),
        SubstanceSizeUtils
            .getSplitPaneArrowIconHeight(fontSize),
        SubstanceSizeUtils
            .getArrowStrokeWidth(fontSize),
        SwingConstants.WEST, scheme);
  }
}, "substance.splitPane.left.horizontal");
origin: org.java.net.substance/substance

  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(splitPane);
    return SubstanceImageCreator.getArrowIcon(
        SubstanceSizeUtils
            .getSplitPaneArrowIconWidth(fontSize),
        SubstanceSizeUtils
            .getSplitPaneArrowIconHeight(fontSize),
        SubstanceSizeUtils
            .getArrowStrokeWidth(fontSize),
        SwingConstants.EAST, scheme);
  }
}, "substance.splitPane.right.horizontal");
origin: org.java.net.substance/substance

  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(splitPane);
    return SubstanceImageCreator.getArrowIcon(
        SubstanceSizeUtils
            .getSplitPaneArrowIconWidth(fontSize),
        SubstanceSizeUtils
            .getSplitPaneArrowIconHeight(fontSize),
        SubstanceSizeUtils
            .getArrowStrokeWidth(fontSize),
        SwingConstants.SOUTH, scheme);
  }
}, "substance.splitPane.right.vertical");
origin: org.java.net.substance/substance

  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(nextButton);
    return SubstanceImageCreator.getArrowIcon(
        SubstanceSizeUtils
            .getSpinnerArrowIconWidth(fontSize),
        SubstanceSizeUtils
            .getSpinnerArrowIconHeight(fontSize),
        SubstanceSizeUtils
            .getArrowStrokeWidth(fontSize),
        SwingConstants.NORTH, scheme);
  }
}, "substance.spinner.nextButton");
origin: com.github.insubstantial/substance

  @Override
  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(splitPane);
    return SubstanceImageCreator.getArrowIcon(
        SubstanceSizeUtils
            .getSplitPaneArrowIconWidth(fontSize),
        SubstanceSizeUtils
            .getSplitPaneArrowIconHeight(fontSize),
        SubstanceSizeUtils
            .getArrowStrokeWidth(fontSize),
        SwingConstants.WEST, scheme);
  }
}, "substance.splitPane.left.horizontal");
origin: org.java.net.substance/substance

  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(splitPane);
    return SubstanceImageCreator.getArrowIcon(
        SubstanceSizeUtils
            .getSplitPaneArrowIconWidth(fontSize),
        SubstanceSizeUtils
            .getSplitPaneArrowIconHeight(fontSize),
        SubstanceSizeUtils
            .getArrowStrokeWidth(fontSize),
        SwingConstants.NORTH, scheme);
  }
}, "substance.splitPane.left.vertical");
origin: org.java.net.substance/substance

  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(prevButton);
    float spinnerArrowIconHeight = SubstanceSizeUtils
        .getSpinnerArrowIconHeight(fontSize);
    return SubstanceImageCreator.getArrowIcon(
        SubstanceSizeUtils
            .getSpinnerArrowIconWidth(fontSize),
        spinnerArrowIconHeight, SubstanceSizeUtils
            .getArrowStrokeWidth(fontSize),
        SwingConstants.SOUTH, scheme);
  }
}, "substance.spinner.prevButton");
origin: org.java.net.substance/substance

  public Icon getColorSchemeIcon(
      SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(splitPane);
    return SubstanceImageCreator
        .getArrowIcon(
            SubstanceSizeUtils
                .getSplitPaneArrowIconWidth(fontSize),
            SubstanceSizeUtils
                .getSplitPaneArrowIconHeight(fontSize),
            SubstanceSizeUtils
                .getArrowStrokeWidth(fontSize),
            SwingConstants.NORTH, scheme);
  }
}, "substance.splitPane.left.vertical"));
origin: com.github.insubstantial/substance

  @Override
  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(splitPane);
    return SubstanceImageCreator.getArrowIcon(
        SubstanceSizeUtils
            .getSplitPaneArrowIconWidth(fontSize),
        SubstanceSizeUtils
            .getSplitPaneArrowIconHeight(fontSize),
        SubstanceSizeUtils
            .getArrowStrokeWidth(fontSize),
        SwingConstants.EAST, scheme);
  }
}, "substance.splitPane.right.horizontal");
origin: com.github.insubstantial/substance

  @Override
  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(nextButton);
    return SubstanceImageCreator.getArrowIcon(
        SubstanceSizeUtils
            .getSpinnerArrowIconWidth(fontSize),
        SubstanceSizeUtils
            .getSpinnerArrowIconHeight(fontSize),
        SubstanceSizeUtils
            .getArrowStrokeWidth(fontSize),
        SwingConstants.NORTH, scheme);
  }
}, "substance.spinner.nextButton");
origin: com.github.insubstantial/substance

  @Override
  public Icon getColorSchemeIcon(SubstanceColorScheme scheme) {
    int fontSize = SubstanceSizeUtils
        .getComponentFontSize(prevButton);
    float spinnerArrowIconHeight = SubstanceSizeUtils
        .getSpinnerArrowIconHeight(fontSize);
    return SubstanceImageCreator.getArrowIcon(
        SubstanceSizeUtils
            .getSpinnerArrowIconWidth(fontSize),
        spinnerArrowIconHeight, SubstanceSizeUtils
            .getArrowStrokeWidth(fontSize),
        SwingConstants.SOUTH, scheme);
  }
}, "substance.spinner.prevButton");
org.pushingpixels.substance.internal.utilsSubstanceImageCreatorgetArrowIcon

Javadoc

Retrieves arrow icon.

Popular methods of SubstanceImageCreator

  • crayonX
    Retrieves crayon X offset.
  • crayonY
    Retrieves crayon Y offset.
  • drawRadioMark
    Draws radio mark.
  • getArrow
    Retrieves arrow image.
  • getCheckBox
    Retrieves check box of the specified size that matches the specified component state.
  • getCheckMark
    Retrieves check mark image.
  • getCloseIcon
    Returns close icon.
  • getColorSchemeImage
    Creates a new version of the specified image that is rendered in the colors of the specified color s
  • getDoubleArrowIcon
    Retrieves arrow icon.
  • getDragImage
    Returns drag bumps image.
  • getHexaMarker
    Returns small icon representation of the specified integer value. The remainder of dividing the inte
  • getMaximizeIcon
    Returns maximize icon.
  • getHexaMarker,
  • getMaximizeIcon,
  • getMinimizeIcon,
  • getNegated,
  • getRadioButton,
  • getRestoreIcon,
  • getRotated,
  • getSearchIcon,
  • getSingleCrayon

Popular in Java

  • Parsing JSON documents to java classes using gson
  • compareTo (BigDecimal)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • getApplicationContext (Context)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • Color (java.awt)
    The Color class is used encapsulate colors in the default sRGB color space or colors in arbitrary co
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now