updates for 0.9.4
[debian/openrocket] / src / net / sf / openrocket / util / Icons.java
1 package net.sf.openrocket.util;
2
3 import java.net.URL;
4 import java.util.Collections;
5 import java.util.HashMap;
6 import java.util.Map;
7
8 import javax.swing.Icon;
9 import javax.swing.ImageIcon;
10
11 import net.sf.openrocket.document.Simulation;
12 import net.sf.openrocket.gui.main.ExceptionHandler;
13
14
15 public class Icons {
16
17         /**
18          * Icons used for showing the status of a simulation (up to date, out of date, etc).
19          */
20         public static final Map<Simulation.Status, Icon> SIMULATION_STATUS_ICON_MAP;
21         static {
22                 HashMap<Simulation.Status, Icon> map = new HashMap<Simulation.Status, Icon>();
23                 map.put(Simulation.Status.NOT_SIMULATED, loadImageIcon("pix/spheres/gray-16x16.png", "Not simulated"));
24                 map.put(Simulation.Status.UPTODATE, loadImageIcon("pix/spheres/green-16x16.png", "Up to date"));
25                 map.put(Simulation.Status.LOADED, loadImageIcon("pix/spheres/yellow-16x16.png", "Loaded from file"));
26                 map.put(Simulation.Status.OUTDATED, loadImageIcon("pix/spheres/red-16x16.png", "Out-of-date"));
27                 map.put(Simulation.Status.EXTERNAL, loadImageIcon("pix/spheres/blue-16x16.png", "Imported data"));
28                 SIMULATION_STATUS_ICON_MAP = Collections.unmodifiableMap(map);
29         }
30         
31         public static final Icon SIMULATION_LISTENER_OK;
32         public static final Icon SIMULATION_LISTENER_ERROR;
33         static {
34                 SIMULATION_LISTENER_OK = SIMULATION_STATUS_ICON_MAP.get(Simulation.Status.UPTODATE);
35                 SIMULATION_LISTENER_ERROR = SIMULATION_STATUS_ICON_MAP.get(Simulation.Status.OUTDATED);
36         }
37
38
39         public static final Icon FILE_NEW = loadImageIcon("pix/icons/document-new.png", "New document");
40         public static final Icon FILE_OPEN = loadImageIcon("pix/icons/document-open.png", "Open document");
41         public static final Icon FILE_OPEN_EXAMPLE = loadImageIcon("pix/icons/document-open-example.png", "Open example document");
42         public static final Icon FILE_SAVE = loadImageIcon("pix/icons/document-save.png", "Save document");
43         public static final Icon FILE_SAVE_AS = loadImageIcon("pix/icons/document-save-as.png", "Save document as");
44         public static final Icon FILE_CLOSE = loadImageIcon("pix/icons/document-close.png", "Close document");
45         public static final Icon FILE_QUIT = loadImageIcon("pix/icons/application-exit.png", "Quit OpenRocket");
46         
47         public static final Icon EDIT_UNDO = loadImageIcon("pix/icons/edit-undo.png", "Undo");
48         public static final Icon EDIT_REDO = loadImageIcon("pix/icons/edit-redo.png", "Redo");
49         public static final Icon EDIT_CUT = loadImageIcon("pix/icons/edit-cut.png", "Cut");
50         public static final Icon EDIT_COPY = loadImageIcon("pix/icons/edit-copy.png", "Copy");
51         public static final Icon EDIT_PASTE = loadImageIcon("pix/icons/edit-paste.png", "Paste");
52         public static final Icon EDIT_DELETE = loadImageIcon("pix/icons/edit-delete.png", "Delete");
53
54         public static final Icon ZOOM_IN = loadImageIcon("pix/icons/zoom-in.png", "Zoom in");
55         public static final Icon ZOOM_OUT = loadImageIcon("pix/icons/zoom-out.png", "Zoom out");
56
57         public static final Icon PREFERENCES = loadImageIcon("pix/icons/preferences.png", "Preferences");
58
59         public static final Icon DELETE = loadImageIcon("pix/icons/delete.png", "Delete");
60         
61         
62         
63         /**
64          * Load an ImageIcon from the specified file.  The file is obtained as a system
65          * resource from the normal classpath.  If the file cannot be loaded a bug dialog
66          * is opened and <code>null</code> is returned.
67          * 
68          * @param file  the file to load.
69          * @param name  the description of the icon.
70          * @return              the ImageIcon, or null if could not be loaded (after the user closes the dialog)
71          */
72         public static ImageIcon loadImageIcon(String file, String name) {
73                 URL url = ClassLoader.getSystemResource(file);
74                 if (url == null) {
75                         ExceptionHandler.handleErrorCondition("Image file " + file + " not found, ignoring.");
76                         return null;
77                 }
78                 return new ImageIcon(url, name);
79         }
80 }