Package org.freeplane.core.util

Source Code of org.freeplane.core.util.FreeplaneIconUtils

package org.freeplane.core.util;

import java.util.ArrayList;
import java.util.List;

import javax.swing.Icon;
import javax.swing.ImageIcon;

import org.freeplane.core.resources.ResourceController;
import org.freeplane.features.icon.IconController;
import org.freeplane.features.icon.MindIcon;
import org.freeplane.features.icon.factory.MindIconFactory;
import org.freeplane.features.icon.mindmapmode.MIconController;

/** utility methods to access Freeplane's (builtin and user) icons. */
public class FreeplaneIconUtils {

  public static Icon createStandardIcon(String iconKey) {
        return MindIconFactory.create(iconKey).getIcon();
    }

  /** lists all icons that are available in the icon selection dialog. This may include user icons
   * if there are some installed. */
  public static List<String> listStandardIconKeys() {
    // the source of this list is the property "icons.list" in freeplane.properties
    ArrayList<String> result = new ArrayList<String>();
    final MIconController mIconController = (MIconController) IconController.getController();
    for (MindIcon mindIcon : mIconController.getMindIcons())
      result.add(mindIcon.getName());
    return result;
  }

  public static ImageIcon createImageIcon(final String resourcePath) {
    return new ImageIcon(ResourceController.getResourceController().getResource(resourcePath));
  }
 
  public static ImageIcon createImageIconByResourceKey(final String resourceKey) {
    final ResourceController resourceController = ResourceController.getResourceController();
    return new ImageIcon(resourceController.getResource(resourceController.getProperty(resourceKey)));
  }
}
TOP

Related Classes of org.freeplane.core.util.FreeplaneIconUtils

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.