Fields Summary |
---|
private static Icon | fileChooserDetailViewIcon |
private static Icon | fileChooserHomeFolderIcon |
private static Icon | fileChooserListViewIcon |
private static Icon | fileChooserNewFolderIcon |
private static Icon | fileChooserUpFolderIcon |
private static Icon | internalFrameAltMaximizeIcon |
private static Icon | internalFrameCloseIcon |
private static Icon | internalFrameDefaultMenuIcon |
private static Icon | internalFrameMaximizeIcon |
private static Icon | internalFrameMinimizeIcon |
private static Icon | radioButtonIcon |
private static Icon | treeComputerIcon |
private static Icon | treeFloppyDriveIcon |
private static Icon | treeHardDriveIcon |
private static Icon | menuArrowIcon |
private static Icon | menuItemArrowIcon |
private static Icon | checkBoxMenuItemIcon |
private static Icon | radioButtonMenuItemIcon |
private static Icon | checkBoxIcon |
private static Icon | oceanHorizontalSliderThumb |
private static Icon | oceanVerticalSliderThumb |
public static final boolean | DARK |
public static final boolean | LIGHT |
private static final Dimension | folderIcon16Size |
private static final Dimension | fileIcon16Size |
private static final Dimension | treeControlSize |
private static final Dimension | menuArrowIconSize |
private static final Dimension | menuCheckIconSize |
private static final int | xOff |
Methods Summary |
---|
public static javax.swing.Icon | getCheckBoxIcon()Returns a checkbox icon.
if (checkBoxIcon == null) {
checkBoxIcon = new CheckBoxIcon();
}
return checkBoxIcon;
|
public static javax.swing.Icon | getCheckBoxMenuItemIcon()
if (checkBoxMenuItemIcon == null) {
checkBoxMenuItemIcon = new CheckBoxMenuItemIcon();
}
return checkBoxMenuItemIcon;
|
public static javax.swing.Icon | getFileChooserDetailViewIcon()
// Accessor functions for Icons. Does the caching work.
if (fileChooserDetailViewIcon == null) {
fileChooserDetailViewIcon = new FileChooserDetailViewIcon();
}
return fileChooserDetailViewIcon;
|
public static javax.swing.Icon | getFileChooserHomeFolderIcon()
if (fileChooserHomeFolderIcon == null) {
fileChooserHomeFolderIcon = new FileChooserHomeFolderIcon();
}
return fileChooserHomeFolderIcon;
|
public static javax.swing.Icon | getFileChooserListViewIcon()
if (fileChooserListViewIcon == null) {
fileChooserListViewIcon = new FileChooserListViewIcon();
}
return fileChooserListViewIcon;
|
public static javax.swing.Icon | getFileChooserNewFolderIcon()
if (fileChooserNewFolderIcon == null) {
fileChooserNewFolderIcon = new FileChooserNewFolderIcon();
}
return fileChooserNewFolderIcon;
|
public static javax.swing.Icon | getFileChooserUpFolderIcon()
if (fileChooserUpFolderIcon == null) {
fileChooserUpFolderIcon = new FileChooserUpFolderIcon();
}
return fileChooserUpFolderIcon;
|
public static javax.swing.Icon | getHorizontalSliderThumbIcon()
if (MetalLookAndFeel.usingOcean()) {
if (oceanHorizontalSliderThumb == null) {
oceanHorizontalSliderThumb =
new OceanHorizontalSliderThumbIcon();
}
return oceanHorizontalSliderThumb;
}
// don't cache these, bumps don't get updated otherwise
return new HorizontalSliderThumbIcon();
|
public static javax.swing.Icon | getInternalFrameAltMaximizeIcon(int size)
return new InternalFrameAltMaximizeIcon(size);
|
public static javax.swing.Icon | getInternalFrameCloseIcon(int size)
return new InternalFrameCloseIcon(size);
|
public static javax.swing.Icon | getInternalFrameDefaultMenuIcon()
if (internalFrameDefaultMenuIcon == null) {
internalFrameDefaultMenuIcon = new InternalFrameDefaultMenuIcon();
}
return internalFrameDefaultMenuIcon;
|
public static javax.swing.Icon | getInternalFrameMaximizeIcon(int size)
return new InternalFrameMaximizeIcon(size);
|
public static javax.swing.Icon | getInternalFrameMinimizeIcon(int size)
return new InternalFrameMinimizeIcon(size);
|
public static javax.swing.Icon | getMenuArrowIcon()
if (menuArrowIcon == null) {
menuArrowIcon = new MenuArrowIcon();
}
return menuArrowIcon;
|
public static javax.swing.Icon | getMenuItemArrowIcon()
if (menuItemArrowIcon == null) {
menuItemArrowIcon = new MenuItemArrowIcon();
}
return menuItemArrowIcon;
|
public static javax.swing.Icon | getMenuItemCheckIcon()Returns an icon to be used by JCheckBoxMenuItem .
return null;
|
public static javax.swing.Icon | getRadioButtonIcon()
if (radioButtonIcon == null) {
radioButtonIcon = new RadioButtonIcon();
}
return radioButtonIcon;
|
public static javax.swing.Icon | getRadioButtonMenuItemIcon()
if (radioButtonMenuItemIcon == null) {
radioButtonMenuItemIcon = new RadioButtonMenuItemIcon();
}
return radioButtonMenuItemIcon;
|
public static javax.swing.Icon | getTreeComputerIcon()
if ( treeComputerIcon == null ) {
treeComputerIcon = new TreeComputerIcon();
}
return treeComputerIcon;
|
public static javax.swing.Icon | getTreeControlIcon(boolean isCollapsed)
return new TreeControlIcon( isCollapsed );
|
public static javax.swing.Icon | getTreeFloppyDriveIcon()
if ( treeFloppyDriveIcon == null ) {
treeFloppyDriveIcon = new TreeFloppyDriveIcon();
}
return treeFloppyDriveIcon;
|
public static javax.swing.Icon | getTreeFolderIcon()
return new TreeFolderIcon();
|
public static javax.swing.Icon | getTreeHardDriveIcon()
if ( treeHardDriveIcon == null ) {
treeHardDriveIcon = new TreeHardDriveIcon();
}
return treeHardDriveIcon;
|
public static javax.swing.Icon | getTreeLeafIcon()
return new TreeLeafIcon();
|
public static javax.swing.Icon | getVerticalSliderThumbIcon()
if (MetalLookAndFeel.usingOcean()) {
if (oceanVerticalSliderThumb == null) {
oceanVerticalSliderThumb = new OceanVerticalSliderThumbIcon();
}
return oceanVerticalSliderThumb;
}
// don't cache these, bumps don't get updated otherwise
return new VerticalSliderThumbIcon();
|