JAL-3416 Start to add JInternalFrame icons (to replace default java Duke icon in...
[jalview.git] / src / jalview / gui / WindowIcons.java
1 package jalview.gui;
2
3 import javax.swing.ImageIcon;
4
5 import jalview.util.ChannelProperties;
6
7 public class WindowIcons
8 {
9   protected static final ImageIcon logoIcon = new ImageIcon(
10           ChannelProperties.getImage("logo.32"));
11
12   protected static final ImageIcon plainIcon = new ImageIcon(
13           WindowIcons.class
14                   .getResource("/images/windowIcons/plainIcon.png"));
15
16   protected static final ImageIcon alignmentIcon = new ImageIcon(
17           WindowIcons.class
18                   .getResource("/images/windowIcons/alignmentIcon.png"));
19
20   protected static final ImageIcon featuresIcon = new ImageIcon(
21           WindowIcons.class
22                   .getResource("/images/windowIcons/featuresIcon.png"));
23
24   protected static final ImageIcon fetchIcon = new ImageIcon(
25           WindowIcons.class
26                   .getResource("/images/windowIcons/fetchIcon.png"));
27
28   protected static final ImageIcon annotationIcon = new ImageIcon(
29           WindowIcons.class
30                   .getResource("/images/windowIcons/annotationIcon.png"));
31
32   protected static final ImageIcon overviewIcon = new ImageIcon(
33           WindowIcons.class
34                   .getResource("/images/windowIcons/overviewIcon.png"));
35
36   protected static final ImageIcon treeIcon = new ImageIcon(
37           WindowIcons.class
38                   .getResource("/images/windowIcons/treeIcon.png"));
39
40   protected static final ImageIcon structureIcon = new ImageIcon(
41           WindowIcons.class
42                   .getResource("/images/windowIcons/structureIcon.png"));
43 }