package iiuf.swing;
import javax.swing.ImageIcon;
/**
Various resources used by swing components.
(c) 2000, 2001, IIUF, DIUF<p>
@author $Author: ohitz $
@version $Name: $ $Revision: 1.1 $
*/
public class Resource {
public final static ImageIcon DISTRIBUTE_SPACE_V = new ImageIcon(Resource.class.getResource("rsrc/align_dsv.gif"));
public final static ImageIcon DISTRIBUTE_SPACE_H = new ImageIcon(Resource.class.getResource("rsrc/align_dsh.gif"));
public final static ImageIcon DISTRIBUTE_VCENTER = new ImageIcon(Resource.class.getResource("rsrc/align_dvcenter.gif"));
public final static ImageIcon DISTRIBUTE_HCENTER = new ImageIcon(Resource.class.getResource("rsrc/align_dhcenter.gif"));
public final static ImageIcon DISTRIBUTE_BOTTOM = new ImageIcon(Resource.class.getResource("rsrc/align_dbottom.gif"));
public final static ImageIcon DISTRIBUTE_LEFT = new ImageIcon(Resource.class.getResource("rsrc/align_dleft.gif"));
public final static ImageIcon DISTRIBUTE_RIGHT = new ImageIcon(Resource.class.getResource("rsrc/align_dright.gif"));
public final static ImageIcon DISTRIBUTE_TOP = new ImageIcon(Resource.class.getResource("rsrc/align_dtop.gif"));
public final static ImageIcon ALIGN_VCENTER = new ImageIcon(Resource.class.getResource("rsrc/align_vcenter.gif"));
public final static ImageIcon ALIGN_HCENTER = new ImageIcon(Resource.class.getResource("rsrc/align_hcenter.gif"));
public final static ImageIcon ALIGN_BOTTOM = new ImageIcon(Resource.class.getResource("rsrc/align_bottom.gif"));
public final static ImageIcon ALIGN_LEFT = new ImageIcon(Resource.class.getResource("rsrc/align_left.gif"));
public final static ImageIcon ALIGN_RIGHT = new ImageIcon(Resource.class.getResource("rsrc/align_right.gif"));
public final static ImageIcon ALIGN_TOP = new ImageIcon(Resource.class.getResource("rsrc/align_top.gif"));
public final static ImageIcon RED_BALL_SMALL = new ImageIcon(Resource.class.getResource("rsrc/red-ball-small.gif"));
public final static ImageIcon YELLOW_BALL_SMALL = new ImageIcon(Resource.class.getResource("rsrc/yellow-ball-small.gif"));
public final static ImageIcon GREEN_BALL_SMALL = new ImageIcon(Resource.class.getResource("rsrc/green-ball-small.gif"));
public final static ImageIcon THREAD = new ImageIcon(Resource.class.getResource("rsrc/thread.gif"));
public final static ImageIcon RIGHTARROW = new ImageIcon(Resource.class.getResource("rsrc/rightarrow.gif"));
public final static ImageIcon OPEN = new ImageIcon(Resource.class.getResource("rsrc/open.gif"));
public final static ImageIcon INFO = new ImageIcon(Resource.class.getResource("rsrc/info.gif"));
public final static ImageIcon PENCIL = new ImageIcon(Resource.class.getResource("rsrc/pencil.gif"));
public final static ImageIcon NOT_PENCIL = new ImageIcon(Resource.class.getResource("rsrc/not_pencil.gif"));
public final static ImageIcon ROT_90 = new ImageIcon(Resource.class.getResource("rsrc/rot90.gif"));
public final static ImageIcon ROT_180 = new ImageIcon(Resource.class.getResource("rsrc/rot180.gif"));
public final static ImageIcon ROT_270 = new ImageIcon(Resource.class.getResource("rsrc/rot270.gif"));
public final static ImageIcon ARC = new ImageIcon(Resource.class.getResource("rsrc/arc.gif"));
public final static ImageIcon LOC_NW = new ImageIcon(Resource.class.getResource("rsrc/loc_nw.gif"));
public final static ImageIcon LOC_N = new ImageIcon(Resource.class.getResource("rsrc/loc_n.gif"));
public final static ImageIcon LOC_NE = new ImageIcon(Resource.class.getResource("rsrc/loc_ne.gif"));
public final static ImageIcon LOC_E = new ImageIcon(Resource.class.getResource("rsrc/loc_e.gif"));
public final static ImageIcon LOC_SE = new ImageIcon(Resource.class.getResource("rsrc/loc_se.gif"));
public final static ImageIcon LOC_S = new ImageIcon(Resource.class.getResource("rsrc/loc_s.gif"));
public final static ImageIcon LOC_SW = new ImageIcon(Resource.class.getResource("rsrc/loc_sw.gif"));
public final static ImageIcon LOC_W = new ImageIcon(Resource.class.getResource("rsrc/loc_w.gif"));
public final static ImageIcon LOC_C = new ImageIcon(Resource.class.getResource("rsrc/loc_c.gif"));
public final static ImageIcon TWO_COLOR = new ImageIcon(Resource.class.getResource("rsrc/two_color.gif"));
public final static ImageIcon ONE_COLOR = new ImageIcon(Resource.class.getResource("rsrc/one_color.gif"));
public final static ImageIcon BOLD = new ImageIcon(Resource.class.getResource("rsrc/bold.png"));
public final static ImageIcon ITALIC = new ImageIcon(Resource.class.getResource("rsrc/italic.png"));
public final static ImageIcon BOLD_SEL = new ImageIcon(Resource.class.getResource("rsrc/bold_sel.png"));
public final static ImageIcon ITALIC_SEL = new ImageIcon(Resource.class.getResource("rsrc/italic_sel.png"));
public final static ImageIcon ALIGN_NORTH = new ImageIcon(Resource.class.getResource("rsrc/align_north.gif"));
public final static ImageIcon ALIGN_EAST = new ImageIcon(Resource.class.getResource("rsrc/align_east.gif"));
public final static ImageIcon ALIGN_SOUTH = new ImageIcon(Resource.class.getResource("rsrc/align_south.gif"));
public final static ImageIcon ALIGN_WEST = new ImageIcon(Resource.class.getResource("rsrc/align_west.gif"));
public final static ImageIcon ALIGN_CENTERH = new ImageIcon(Resource.class.getResource("rsrc/align_centerh.gif"));
public final static ImageIcon ALIGN_CENTERV = new ImageIcon(Resource.class.getResource("rsrc/align_centerv.gif"));
public final static ImageIcon ALIGN_NORTH_SEL = new ImageIcon(Resource.class.getResource("rsrc/align_north_sel.gif"));
public final static ImageIcon ALIGN_EAST_SEL = new ImageIcon(Resource.class.getResource("rsrc/align_east_sel.gif"));
public final static ImageIcon ALIGN_SOUTH_SEL = new ImageIcon(Resource.class.getResource("rsrc/align_south_sel.gif"));
public final static ImageIcon ALIGN_WEST_SEL = new ImageIcon(Resource.class.getResource("rsrc/align_west_sel.gif"));
public final static ImageIcon ALIGN_CENTERH_SEL = new ImageIcon(Resource.class.getResource("rsrc/align_centerh_sel.gif"));
public final static ImageIcon ALIGN_CENTERV_SEL = new ImageIcon(Resource.class.getResource("rsrc/align_centerv_sel.gif"));
public final static ImageIcon TO_FRONT = new ImageIcon(Resource.class.getResource("rsrc/to_front.gif"));
public final static ImageIcon TO_BACK = new ImageIcon(Resource.class.getResource("rsrc/to_back.gif"));
public final static ImageIcon FORWARD = new ImageIcon(Resource.class.getResource("rsrc/forward.gif"));
public final static ImageIcon BACKWARD = new ImageIcon(Resource.class.getResource("rsrc/backward.gif"));
public final static ImageIcon PLAY = new ImageIcon(Resource.class.getResource("rsrc/play.gif"));
public final static ImageIcon STOP = new ImageIcon(Resource.class.getResource("rsrc/stop.gif"));
}
/*
$Log: Resource.java,v $
Revision 1.1 2002/07/11 12:09:52 ohitz
Initial checkin
Revision 1.12 2001/05/08 10:09:57 schubige
added preview file chooser
Revision 1.11 2001/03/20 21:31:25 schubige
improved sample soundlet, added arrange actions to graph panel editor
Revision 1.10 2001/03/16 16:08:47 schubige
interim checkin
Revision 1.9 2001/03/09 15:30:51 schubige
Added markers to graph panel
Revision 1.8 2001/03/07 17:36:28 schubige
soundium properties panel beta
Revision 1.7 2001/03/07 07:45:09 schubige
soundium properites panel
Revision 1.6 2001/03/02 09:06:43 schubige
interim checkin for soundium
Revision 1.5 2001/03/01 10:42:49 schubige
interim checkin for soundium
Revision 1.4 2001/02/17 09:54:20 schubige
moved graph stuff to iiuf.swing.graph, started work on rotatable GraphNodeComponents
Revision 1.3 2001/02/12 17:50:05 schubige
still working on soundium gui
Revision 1.2 2001/01/04 16:28:39 schubige
Header update for 2001 and DIUF
Revision 1.1 2000/12/18 12:44:35 schubige
Added ports to iiuf.util.graph
*/