/[svn]/jsampler/trunk/src/org/jsampler/view/fantasia/Res.java
ViewVC logotype

Diff of /jsampler/trunk/src/org/jsampler/view/fantasia/Res.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1567 by iliev, Thu Dec 6 19:37:41 2007 UTC revision 1752 by iliev, Mon Aug 11 22:51:24 2008 UTC
# Line 1  Line 1 
1  /*  /*
2   *   JSampler - a java front-end for LinuxSampler   *   JSampler - a java front-end for LinuxSampler
3   *   *
4   *   Copyright (C) 2005-2007 Grigor Iliev <grigor@grigoriliev.com>   *   Copyright (C) 2005-2008 Grigor Iliev <grigor@grigoriliev.com>
5   *   *
6   *   This file is part of JSampler.   *   This file is part of JSampler.
7   *   *
# Line 59  public class Res { Line 59  public class Res {
59          protected final static ImageIcon gfxMuteOff          protected final static ImageIcon gfxMuteOff
60                  = new ImageIcon(Res.class.getResource("res/gfx/btn_mute_off.png"));                  = new ImageIcon(Res.class.getResource("res/gfx/btn_mute_off.png"));
61                    
62            protected final static ImageIcon gfxMuteSmallOn
63                    = new ImageIcon(Res.class.getResource("res/gfx/btn_mute_s_on.png"));
64            
65            protected final static ImageIcon gfxMuteSmallOff
66                    = new ImageIcon(Res.class.getResource("res/gfx/btn_mute_s_off.png"));
67            
68          protected final static ImageIcon gfxMuteSoloDisabled          protected final static ImageIcon gfxMuteSoloDisabled
69                  = new ImageIcon(Res.class.getResource("res/gfx/btn_mute_solo_disabled.png"));                  = new ImageIcon(Res.class.getResource("res/gfx/btn_mute_solo_disabled.png"));
70                    
71          protected final static ImageIcon gfxMutedBySolo          protected final static ImageIcon gfxMutedBySolo
72                  = new ImageIcon(Res.class.getResource("res/gfx/btn_mute_off.png"));                  = new ImageIcon(Res.class.getResource("res/gfx/btn_mute_off.png"));
73                    
74            protected final static ImageIcon gfxMutedBySoloSmall
75                    = new ImageIcon(Res.class.getResource("res/gfx/btn_mute_s_off.png"));
76            
77          protected final static ImageIcon gfxSoloOn          protected final static ImageIcon gfxSoloOn
78                  = new ImageIcon(Res.class.getResource("res/gfx/btn_solo_on.png"));                  = new ImageIcon(Res.class.getResource("res/gfx/btn_solo_on.png"));
79                    
80          protected final static ImageIcon gfxSoloOff          protected final static ImageIcon gfxSoloOff
81                  = new ImageIcon(Res.class.getResource("res/gfx/btn_mute_off.png"));                  = new ImageIcon(Res.class.getResource("res/gfx/btn_mute_off.png"));
82                    
83            protected final static ImageIcon gfxSoloSmallOn
84                    = new ImageIcon(Res.class.getResource("res/gfx/btn_solo_s_on.png"));
85            
86            protected final static ImageIcon gfxSoloSmallOff
87                    = new ImageIcon(Res.class.getResource("res/gfx/btn_solo_s_off.png"));
88            
89          protected final static ImageIcon gfxMuteTitle          protected final static ImageIcon gfxMuteTitle
90                  = new ImageIcon(Res.class.getResource("res/gfx/title_mute.png"));                  = new ImageIcon(Res.class.getResource("res/gfx/title_mute.png"));
91                    
# Line 98  public class Res { Line 113  public class Res {
113          protected final static ImageIcon gfxOptionsOffRO          protected final static ImageIcon gfxOptionsOffRO
114                  = new ImageIcon(Res.class.getResource("res/gfx/btn_show_channel_options_ro.png"));                  = new ImageIcon(Res.class.getResource("res/gfx/btn_show_channel_options_ro.png"));
115                    
116            protected final static ImageIcon gfxFx
117                    = new ImageIcon(Res.class.getResource("res/gfx/btn_fx.png"));
118            
119            protected final static ImageIcon gfxFxRO
120                    = new ImageIcon(Res.class.getResource("res/gfx/btn_fx_ro.png"));
121            
122          protected final static ImageIcon gfxMidiInputTitle          protected final static ImageIcon gfxMidiInputTitle
123                  = new ImageIcon(Res.class.getResource("res/gfx/title_midi_input.png"));                  = new ImageIcon(Res.class.getResource("res/gfx/title_midi_input.png"));
124                    
# Line 206  public class Res { Line 227  public class Res {
227          protected final static ImageIcon iconNext16          protected final static ImageIcon iconNext16
228                  = new ImageIcon(Res.class.getResource("res/icons/next16.png"));                  = new ImageIcon(Res.class.getResource("res/icons/next16.png"));
229                    
230            protected final static ImageIcon iconUp16
231                    = new ImageIcon(Res.class.getResource("res/icons/up16.png"));
232            
233          protected final static ImageIcon iconBrowse16          protected final static ImageIcon iconBrowse16
234                  = new ImageIcon(Res.class.getResource("res/icons/folder_open16.png"));                  = new ImageIcon(Res.class.getResource("res/icons/folder_open16.png"));
235                    
# Line 221  public class Res { Line 245  public class Res {
245          protected final static ImageIcon iconInstrument16          protected final static ImageIcon iconInstrument16
246                  = new ImageIcon(Res.class.getResource("res/icons/instr16.png"));                  = new ImageIcon(Res.class.getResource("res/icons/instr16.png"));
247                    
248            protected final static ImageIcon iconReload16
249                    = new ImageIcon(Res.class.getResource("res/icons/reload16.png"));
250            
251            protected final static ImageIcon iconPreferences16
252                    = new ImageIcon(Res.class.getResource("res/icons/preferences16.png"));
253            
254          protected final static ImageIcon iconVolume22          protected final static ImageIcon iconVolume22
255                  = new ImageIcon(Res.class.getResource("res/icons/volume22.png"));                  = new ImageIcon(Res.class.getResource("res/icons/volume22.png"));
256                    

Legend:
Removed from v.1567  
changed lines
  Added in v.1752

  ViewVC Help
Powered by ViewVC