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

Contents of /jsampler/trunk/src/org/jsampler/view/classic/Res.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1285 - (show annotations) (download)
Fri Aug 10 19:55:03 2007 UTC (16 years, 7 months ago) by iliev
File size: 6497 byte(s)
* Updated to version 0.6a. The Fantasia distribution is now
  capable of controlling all features available in LinuxSampler

1 /*
2 * JSampler - a java front-end for LinuxSampler
3 *
4 * Copyright (C) 2005-2007 Grigor Iliev <grigor@grigoriliev.com>
5 *
6 * This file is part of JSampler.
7 *
8 * JSampler is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation.
11 *
12 * JSampler is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with JSampler; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23 package org.jsampler.view.classic;
24
25 import javax.swing.ImageIcon;
26
27
28 /**
29 * This class contains all pixmap resources needed by <b>JS Classic</b> view.
30 * @author Grigor Iliev
31 */
32 public class Res {
33
34 /** Forbits the instantiation of this class. */
35 private Res() { }
36
37 protected final static ImageIcon appIcon
38 = new ImageIcon(Res.class.getResource("res/icons/app-icon.png"));
39
40 protected final static ImageIcon iconClose8
41 = new ImageIcon(Res.class.getResource("res/icons/close8.png"));
42
43 protected final static ImageIcon iconNew16
44 = new ImageIcon(Res.class.getResource("res/icons/new16.png"));
45
46 protected final static ImageIcon iconEdit16
47 = new ImageIcon(Res.class.getResource("res/icons/edit16.png"));
48
49 protected final static ImageIcon iconCopy16
50 = new ImageIcon(Res.class.getResource("res/icons/Copy16.gif"));
51
52 protected final static ImageIcon iconDelete16
53 = new ImageIcon(Res.class.getResource("res/icons/delete16.png"));
54
55 protected final static ImageIcon iconProps16
56 = new ImageIcon(Res.class.getResource("res/icons/Properties16.gif"));
57
58 protected final static ImageIcon iconUp16
59 = new ImageIcon(Res.class.getResource("res/icons/Up16.gif"));
60
61 protected final static ImageIcon iconDown16
62 = new ImageIcon(Res.class.getResource("res/icons/Down16.gif"));
63
64 protected final static ImageIcon iconBack16
65 = new ImageIcon(Res.class.getResource("res/icons/Back16.gif"));
66
67 protected final static ImageIcon iconAudioProps16
68 = new ImageIcon(Res.class.getResource("res/icons/Import16.gif"));
69
70 protected final static ImageIcon iconVolume16
71 = new ImageIcon(Res.class.getResource("res/icons/Volume16.png"));
72
73 protected final static ImageIcon iconFolder16
74 = new ImageIcon(Res.class.getResource("res/icons/folder16.png"));
75
76 protected final static ImageIcon iconFolderOpen16
77 = new ImageIcon(Res.class.getResource("res/icons/folder_open16.png"));
78
79 protected final static ImageIcon iconInstrument16
80 = new ImageIcon(Res.class.getResource("res/icons/instr16.png"));
81
82 protected final static ImageIcon iconExport16
83 = new ImageIcon(Res.class.getResource("res/icons/save16.png"));
84
85 protected final static ImageIcon iconDb16
86 = new ImageIcon(Res.class.getResource("res/icons/collection16.png"));
87
88 protected final static ImageIcon iconTabNew22
89 = new ImageIcon(Res.class.getResource("res/icons/tab_new22.png"));
90
91 protected final static ImageIcon iconTabRemove22
92 = new ImageIcon(Res.class.getResource("res/icons/tab_remove22.png"));
93
94 protected final static ImageIcon iconTabMoveLeft22
95 = new ImageIcon(Res.class.getResource("res/icons/tab_move_left22.png"));
96
97 protected final static ImageIcon iconTabMoveRight22
98 = new ImageIcon(Res.class.getResource("res/icons/tab_move_right22.png"));
99
100 protected final static ImageIcon iconFxSends22
101 = new ImageIcon(Res.class.getResource("res/icons/fx_sends22.png"));
102
103 protected final static ImageIcon iconVolume22
104 = new ImageIcon(Res.class.getResource("res/icons/Volume22.png"));
105
106 protected final static ImageIcon iconFind22
107 = new ImageIcon(Res.class.getResource("res/icons/Find22.png"));
108
109 protected final static ImageIcon iconGoUp22
110 = new ImageIcon(Res.class.getResource("res/icons/GoUp22.png"));
111
112 protected final static ImageIcon iconGoBack22
113 = new ImageIcon(Res.class.getResource("res/icons/GoBack22.png"));
114
115 protected final static ImageIcon iconGoForward22
116 = new ImageIcon(Res.class.getResource("res/icons/GoForward22.png"));
117
118 protected final static ImageIcon iconUp24
119 = new ImageIcon(Res.class.getResource("res/icons/Up22.png"));
120
121 protected final static ImageIcon iconDown24
122 = new ImageIcon(Res.class.getResource("res/icons/Down22.png"));
123
124 protected final static ImageIcon iconFolderOpen22
125 = new ImageIcon(Res.class.getResource("res/icons/folder_open22.png"));
126
127 protected final static ImageIcon iconPreferences22
128 = new ImageIcon(Res.class.getResource("res/icons/Preferences22.png"));
129
130 protected final static ImageIcon iconReload22
131 = new ImageIcon(Res.class.getResource("res/icons/reload22.png"));
132
133 protected final static ImageIcon iconNew24
134 = new ImageIcon(Res.class.getResource("res/icons/New24.png"));
135
136 protected final static ImageIcon iconCopy24
137 = new ImageIcon(Res.class.getResource("res/icons/Copy24.png"));
138
139 protected final static ImageIcon iconDelete24
140 = new ImageIcon(Res.class.getResource("res/icons/Delete24.png"));
141
142 protected final static ImageIcon iconMidi24
143 = new ImageIcon(Res.class.getResource("res/icons/midi24.png"));
144
145 protected final static ImageIcon iconVol24
146 = new ImageIcon(Res.class.getResource("res/icons/Vol24.png"));
147
148 protected final static ImageIcon iconExportSession32
149 = new ImageIcon(Res.class.getResource("res/icons/Save32.png"));
150
151 protected final static ImageIcon iconLoadScript32
152 = new ImageIcon(Res.class.getResource("res/icons/Open32.png"));
153
154 protected final static ImageIcon iconReset32
155 = new ImageIcon(Res.class.getResource("res/icons/purge.png"));
156
157 protected final static ImageIcon iconReload32
158 = new ImageIcon(Res.class.getResource("res/icons/reload32.png"));
159
160 protected final static ImageIcon iconInfo32
161 = new ImageIcon(Res.class.getResource("res/icons/info32.png"));
162
163 protected final static ImageIcon iconPreferences32
164 = new ImageIcon(Res.class.getResource("res/icons/Preferences32.png"));
165
166 protected final static ImageIcon iconDb32
167 = new ImageIcon(Res.class.getResource("res/icons/db32.png"));
168
169 protected final static ImageIcon iconWarning32
170 = new ImageIcon(Res.class.getResource("res/icons/warning32.png"));
171
172 protected final static ImageIcon iconLinuxSamplerLogo
173 = new ImageIcon(Res.class.getResource("res/LinuxSampler-logo.png"));
174
175 }

  ViewVC Help
Powered by ViewVC