/* * Copyright (c) 2002 and later by MH Software-Entwicklung. All Rights Reserved. * * JTattoo is multiple licensed. If your are an open source developer you can use * it under the terms and conditions of the GNU General Public License version 2.0 * or later as published by the Free Software Foundation. * * see: gpl-2.0.txt * * If you pay for a license you will become a registered user who could use the * software under the terms and conditions of the GNU Lesser General Public License * version 2.0 or later with classpath exception as published by the Free Software * Foundation. * * see: lgpl-2.0.txt * see: classpath-exception.txt * * Registered users could also use JTattoo under the terms and conditions of the * Apache License, Version 2.0 as published by the Apache Software Foundation. * * see: APACHE-LICENSE-2.0.txt */ package com.jtattoo.plaf.mint; import com.jtattoo.plaf.AbstractIconFactory; import javax.swing.Icon; /** * @author Michael Hagen */ public class MintIconFactory implements AbstractIconFactory { private static MintIconFactory instance = null; private MintIconFactory() { } public static synchronized MintIconFactory getInstance() { if (instance == null) { instance = new MintIconFactory(); } return instance; } public Icon getOptionPaneErrorIcon() { return MintIcons.getOptionPaneErrorIcon(); } public Icon getOptionPaneWarningIcon() { return MintIcons.getOptionPaneWarningIcon(); } public Icon getOptionPaneInformationIcon() { return MintIcons.getOptionPaneInformationIcon(); } public Icon getOptionPaneQuestionIcon() { return MintIcons.getOptionPaneQuestionIcon(); } public Icon getFileChooserUpFolderIcon() { return MintIcons.getFileChooserUpFolderIcon(); } public Icon getFileChooserHomeFolderIcon() { return MintIcons.getFileChooserHomeFolderIcon(); } public Icon getFileChooserNewFolderIcon() { return MintIcons.getFileChooserNewFolderIcon(); } public Icon getFileChooserListViewIcon() { return MintIcons.getFileChooserListViewIcon(); } public Icon getFileChooserDetailViewIcon() { return MintIcons.getFileChooserDetailViewIcon(); } public Icon getFileViewComputerIcon() { return MintIcons.getFileViewComputerIcon(); } public Icon getFileViewFloppyDriveIcon() { return MintIcons.getFileViewFloppyDriveIcon(); } public Icon getFileViewHardDriveIcon() { return MintIcons.getFileViewHardDriveIcon(); } public Icon getMenuIcon() { return MintIcons.getMenuIcon(); } public Icon getIconIcon() { return MintIcons.getIconIcon(); } public Icon getMaxIcon() { return MintIcons.getMaxIcon(); } public Icon getMinIcon() { return MintIcons.getMinIcon(); } public Icon getCloseIcon() { return MintIcons.getCloseIcon(); } public Icon getPaletteCloseIcon() { return MintIcons.getPaletteCloseIcon(); } public Icon getRadioButtonIcon() { return MintIcons.getRadioButtonIcon(); } public Icon getCheckBoxIcon() { return MintIcons.getCheckBoxIcon(); } public Icon getComboBoxIcon() { return MintIcons.getComboBoxIcon(); } public Icon getTreeOpenIcon() { return MintIcons.getTreeOpenedIcon(); } public Icon getTreeCloseIcon() { return MintIcons.getTreeClosedIcon(); } public Icon getTreeLeafIcon() { return MintIcons.getTreeLeafIcon(); } public Icon getTreeCollapsedIcon() { return MintIcons.getTreeCollapsedIcon(); } public Icon getTreeExpandedIcon() { return MintIcons.getTreeExpandedIcon(); } public Icon getMenuArrowIcon() { return MintIcons.getMenuArrowIcon(); } public Icon getMenuCheckBoxIcon() { return MintIcons.getMenuCheckBoxIcon(); } public Icon getMenuRadioButtonIcon() { return MintIcons.getMenuRadioButtonIcon(); } public Icon getUpArrowIcon() { return MintIcons.getUpArrowIcon(); } public Icon getDownArrowIcon() { return MintIcons.getDownArrowIcon(); } public Icon getLeftArrowIcon() { return MintIcons.getLeftArrowIcon(); } public Icon getRightArrowIcon() { return MintIcons.getRightArrowIcon(); } public Icon getSplitterDownArrowIcon() { return MintIcons.getSplitterDownArrowIcon(); } public Icon getSplitterHorBumpIcon() { return MintIcons.getSplitterHorBumpIcon(); } public Icon getSplitterLeftArrowIcon() { return MintIcons.getSplitterLeftArrowIcon(); } public Icon getSplitterRightArrowIcon() { return MintIcons.getSplitterRightArrowIcon(); } public Icon getSplitterUpArrowIcon() { return MintIcons.getSplitterUpArrowIcon(); } public Icon getSplitterVerBumpIcon() { return MintIcons.getSplitterVerBumpIcon(); } public Icon getThumbHorIcon() { return MintIcons.getThumbHorIcon(); } public Icon getThumbVerIcon() { return MintIcons.getThumbVerIcon(); } public Icon getThumbHorIconRollover() { return MintIcons.getThumbHorIconRollover(); } public Icon getThumbVerIconRollover() { return MintIcons.getThumbVerIconRollover(); } }