KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > armedbear > j > ToolBarConstants


1 /*
2  * ToolBarConstants.java
3  *
4  * Copyright (C) 2002 Peter Graves
5  * $Id: ToolBarConstants.java,v 1.1.1.1 2002/09/24 16:08:19 piso Exp $
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * 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 {
26     String JavaDoc ICON_BACK = "stock_left.png";
27     String JavaDoc ICON_CLOSE = "stock_cancel.png";
28     String JavaDoc ICON_COPY = "stock_copy.png";
29     String JavaDoc ICON_CUT = "stock_cut.png";
30     String JavaDoc ICON_DELETE = "stock_delete.png";
31     String JavaDoc ICON_DIRECTORY = "stock_index.png";
32     String JavaDoc ICON_EXIT = "stock_exit.png";
33     String JavaDoc ICON_FIND = "stock_search.png";
34     String JavaDoc ICON_FORWARD = "stock_right.png";
35     String JavaDoc ICON_HOME = "stock_home.png";
36     String JavaDoc ICON_MAIL_ATTACH = "stock_attach.png";
37     String JavaDoc ICON_MAIL_COMPOSE = "mail_compose.png";
38     String JavaDoc ICON_MAIL_INBOX = "mail.png";
39     String JavaDoc ICON_MAIL_NEXT = "stock_right.png";
40     String JavaDoc ICON_MAIL_PREVIOUS = "stock_left.png";
41     String JavaDoc ICON_MAIL_RECEIVE = "mail_receive.png";
42     String JavaDoc ICON_MAIL_REPLY = "mail_reply.png";
43     String JavaDoc ICON_MAIL_SEND = "mail_send.png";
44     String JavaDoc ICON_NEW = "stock_new.png";
45     String JavaDoc ICON_OPEN = "stock_open.png";
46     String JavaDoc ICON_PASTE = "stock_paste.png";
47     String JavaDoc ICON_REDO = "stock_redo.png";
48     String JavaDoc ICON_REFRESH = "stock_refresh.png";
49     String JavaDoc ICON_REPLACE = "stock_search_and_replace.png";
50     String JavaDoc ICON_SAVE = "stock_save.png";
51     String JavaDoc ICON_STOP = "stock_stop.png";
52     String JavaDoc ICON_UNDO = "stock_undo.png";
53     String JavaDoc ICON_UP = "stock_up.png";
54 }
55
Popular Tags