001: /*
002: * Copyright (C) 2005 Jeff Tassin
003: *
004: * This library is free software; you can redistribute it and/or
005: * modify it under the terms of the GNU Lesser General Public
006: * License as published by the Free Software Foundation; either
007: * version 2.1 of the License, or (at your option) any later version.
008: *
009: * This library is distributed in the hope that it will be useful,
010: * but WITHOUT ANY WARRANTY; without even the implied warranty of
011: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012: * Lesser General Public License for more details.
013: *
014: * You should have received a copy of the GNU Lesser General Public
015: * License along with this library; if not, write to the Free Software
016: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
017: */
018:
019: package com.jeta.swingbuilder.resources;
020:
021: /**
022: * This class provides icon definitions for the application.
023: *
024: * @author Jeff Tassin
025: */
026: public class Icons {
027:
028: // development
029: public static final String APPLICATION_16 = "development/16x16/application.png";
030: public static final String BEAN_16 = "development/16x16/bean.png";
031: public static final String BORDER_16 = "development/16x16/border.png";
032: public static final String COMPONENT_16 = "development/16x16/web_component.png";
033: public static final String GENERIC_COMPONENT_16 = "development/16x16/generic_component.png";
034: public static final String FONT_16 = "development/16x16/font.png";
035: public static final String USER_16 = "development/16x16/user.png";
036:
037: public static final String NEW_PROJECT_24 = "development/24x24/new_project.png";
038: public static final String OPEN_PROJECT_24 = "development/24x24/open_project.png";
039:
040: // forms
041: public static final String BUTTON_16 = "forms/16x16/button.png";
042: public static final String CHECK_16 = "forms/16x16/check.png";
043: public static final String COMBO_16 = "forms/16x16/combo.png";
044: public static final String EMBEDDED_FORM_16 = "forms/16x16/embedded_form.png";
045: public static final String FORMATTED_FIELD_16 = "forms/16x16/formatted_field.png";
046: public static final String HORIZONTAL_LINE_16 = "forms/16x16/palette_hline16.gif";
047: public static final String JGOODIES_SEPARATOR_16 = "forms/16x16/palette_jgoodies_separator.gif";
048: public static final String LABEL_16 = "forms/16x16/palette_label16.gif";
049: public static final String LINKED_FORM_16 = "forms/16x16/linked_form.png";
050: public static final String LIST_16 = "forms/16x16/text_list.png";
051: public static final String MOUSE_16 = "forms/16x16/palette_mouse.gif";
052: public static final String PALETTE_16 = "forms/16x16/palette.png";
053: public static final String PASSWORD_FIELD_16 = "forms/16x16/password_field.png";
054: public static final String PROGRESS_BAR_16 = "forms/16x16/progress_bar.png";
055: public static final String RADIO_16 = "forms/16x16/radio.png";
056: public static final String RICH_TEXT_16 = "forms/16x16/text_rich_colored.png";
057: public static final String SCROLL_BARS_16 = "forms/16x16/scroll_bars.png";
058: public static final String SLIDER_16 = "forms/16x16/slider.png";
059: public static final String SPINNER_16 = "forms/16x16/spinner.png";
060: public static final String TABLE_CELL_16 = "forms/16x16/table_cell.png";
061: public static final String TABPANE_16 = "forms/16x16/tabpane.png";
062: public static final String TEXT_FIELD_16 = "forms/16x16/text_field.png";
063: public static final String TITLE_BORDER_LABEL_16 = "forms/16x16/palette_border_label.gif";
064: public static final String TITLE_BORDER_BOTTOM_16 = "forms/16x16/palette_border_bottom.gif";
065: public static final String TITLE_BORDER_SIDE_16 = "forms/16x16/palette_border_side.gif";
066: public static final String TEXT_16 = "forms/16x16/text.png";
067: public static final String TREE_16 = "forms/16x16/text_tree.png";
068: public static final String TOGGLE_BUTTON_16 = "forms/16x16/toggle_button.png";
069: public static final String VERTICAL_LINE_16 = "forms/16x16/palette_vline16.gif";
070:
071: // general
072: public static final String COLOR_WELL_16 = "general/16x16/color_well.png";
073: public static final String DELETE_16 = "general/16x16/delete.png";
074: public static final String DELETE2_16 = "general/16x16/delete2.png";
075: public static final String EDIT_16 = "general/16x16/edit.png";
076: public static final String NEW_16 = "general/16x16/new.png";
077: public static final String OPEN_16 = "general/16x16/open.png";
078: public static final String PAINT_BRUSH_16 = "general/16x16/brush.png";
079: public static final String PORTRAIT_16 = "general/16x16/portrait.png";
080: public static final String REFRESH_16 = "general/16x16/refresh.png";
081: public static final String WINDOW_CLOSE_16 = "general/16x16/window_close.png";
082: public static final String WINDOWS_16 = "general/16x16/windows.png";
083: public static final String SPLIT_WINDOWS_16 = "general/16x16/split_windows.png";
084:
085: public static final String ADD_24 = "general/24x24/add.png";
086: public static final String COPY_24 = "general/24x24/copy.png";
087: public static final String CUT_24 = "general/24x24/cut.png";
088: public static final String OPEN_24 = "general/24x24/open.png";
089: public static final String PASTE_24 = "general/24x24/paste.png";
090: public static final String REDO_24 = "general/24x24/redo.png";
091: public static final String SAVE_24 = "general/24x24/save.png";
092: public static final String UNDO_24 = "general/24x24/undo.png";
093:
094: // media
095: public static final String PLAY_24 = "media/24x24/play.png";
096:
097: // navigation
098: public static final String DOWN_16 = "navigation/16x16/down.png";
099: public static final String UP_16 = "navigation/16x16/up.png";
100:
101: // table
102: public static final String CELL_16 = "table/16x16/table_cell.png";
103: public static final String COLUMN_16 = "table/16x16/column.png";
104: public static final String ROW_16 = "table/16x16/row.png";
105: public static final String TABLE_16 = "table/16x16/table.png";
106:
107: public static final String COLUMN_DECREASE_SPAN_24 = "table/24x24/column_decrease_span.png";
108: public static final String COLUMN_DELETE_24 = "table/24x24/column_delete.png";
109: public static final String COLUMN_GROW_24 = "table/24x24/column_grow.png";
110: public static final String COLUMN_INCREASE_SPAN_24 = "table/24x24/column_increase_span.png";
111: public static final String COLUMN_INSERT_24 = "table/24x24/column_insert.png";
112: public static final String COLUMN_NOGROW_24 = "table/24x24/column_nogrow.png";
113: public static final String COLUMN_SEP_LARGE_24 = "table/24x24/column_sep_large.png";
114: public static final String COLUMN_SEP_SMALL_24 = "table/24x24/column_sep_small.png";
115:
116: public static final String ROW_DECREASE_SPAN_24 = "table/24x24/row_decrease_span.png";
117: public static final String ROW_DELETE_24 = "table/24x24/row_delete.png";
118: public static final String ROW_GROW_24 = "table/24x24/row_grow.png";
119: public static final String ROW_INCREASE_SPAN_24 = "table/24x24/row_increase_span.png";
120: public static final String ROW_INSERT_24 = "table/24x24/row_insert.png";
121: public static final String ROW_NOGROW_24 = "table/24x24/row_nogrow.png";
122: public static final String ROW_SEP_LARGE_24 = "table/24x24/row_sep_large.png";
123: public static final String ROW_SEP_SMALL_24 = "table/24x24/row_sep_small.png";
124:
125: }
|