01: /*
02: * ToolBarConstants.java
03: *
04: * Copyright (C) 2002 Peter Graves
05: * $Id: ToolBarConstants.java,v 1.1.1.1 2002/09/24 16:08:19 piso Exp $
06: *
07: * This program is free software; you can redistribute it and/or
08: * modify it under the terms of the GNU General Public License
09: * as published by the Free Software Foundation; either version 2
10: * of the License, or (at your option) any later version.
11: *
12: * This program 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 this program; if not, write to the Free Software
19: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20: */
21:
22: package org.armedbear.j;
23:
24: public interface ToolBarConstants {
25: String ICON_BACK = "stock_left.png";
26: String ICON_CLOSE = "stock_cancel.png";
27: String ICON_COPY = "stock_copy.png";
28: String ICON_CUT = "stock_cut.png";
29: String ICON_DELETE = "stock_delete.png";
30: String ICON_DIRECTORY = "stock_index.png";
31: String ICON_EXIT = "stock_exit.png";
32: String ICON_FIND = "stock_search.png";
33: String ICON_FORWARD = "stock_right.png";
34: String ICON_HOME = "stock_home.png";
35: String ICON_MAIL_ATTACH = "stock_attach.png";
36: String ICON_MAIL_COMPOSE = "mail_compose.png";
37: String ICON_MAIL_INBOX = "mail.png";
38: String ICON_MAIL_NEXT = "stock_right.png";
39: String ICON_MAIL_PREVIOUS = "stock_left.png";
40: String ICON_MAIL_RECEIVE = "mail_receive.png";
41: String ICON_MAIL_REPLY = "mail_reply.png";
42: String ICON_MAIL_SEND = "mail_send.png";
43: String ICON_NEW = "stock_new.png";
44: String ICON_OPEN = "stock_open.png";
45: String ICON_PASTE = "stock_paste.png";
46: String ICON_REDO = "stock_redo.png";
47: String ICON_REFRESH = "stock_refresh.png";
48: String ICON_REPLACE = "stock_search_and_replace.png";
49: String ICON_SAVE = "stock_save.png";
50: String ICON_STOP = "stock_stop.png";
51: String ICON_UNDO = "stock_undo.png";
52: String ICON_UP = "stock_up.png";
53: }
|