01: // The contents of this file are subject to the Mozilla Public License Version
02: // 1.1
03: //(the "License"); you may not use this file except in compliance with the
04: //License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
05: //
06: //Software distributed under the License is distributed on an "AS IS" basis,
07: //WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
08: //for the specific language governing rights and
09: //limitations under the License.
10: //
11: //The Original Code is "The Columba Project"
12: //
13: //The Initial Developers of the Original Code are Frederik Dietz and Timo
14: // Stich.
15: //Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
16: //
17: //All Rights Reserved.
18: package org.columba.core.resourceloader;
19:
20: public interface IconKeys {
21:
22: public static final String CANCEL = "process-stop.png";
23:
24: public static final String EDIT_COPY = "edit-copy.png";
25:
26: public static final String EDIT_CUT = "edit-cut.png";
27:
28: public static final String EDIT_PASTE = "edit-paste.png";
29:
30: public static final String EDIT_DELETE = "edit-delete.png";
31:
32: public static final String EDIT_UNDO = "edit-undo.png";
33:
34: public static final String EDIT_REDO = "edit-redo.png";
35:
36: public static final String EXIT = "system-log-out.png";
37:
38: public static final String EDIT_FIND = "edit-find.png";
39:
40: public static final String PREFERENCES = "preferences-system.png";
41:
42: public static final String INTERNET = "internet-web-browser.png";
43:
44: public static final String USER = "system-users.png";
45:
46: public static final String IMAGE_MISSING = "image-missing.png";
47:
48: public static final String DIALOG_INFO = "dialog-information.png";
49:
50: public static final String DIALOG_WARNING = "dialog-warning.png";
51:
52: public static final String DIALOG_ERROR = "dialog-error.png";
53:
54: public static final String LIST_ADD = "list-add.png";
55:
56: public static final String LIST_REMOVE = "list-remove.png";
57:
58: public static final String SEARCH = "system-search.png";
59:
60: public static final String DOCUMENT_SAVE = "document-save.png";
61:
62: public static final String DOCUMENT_SAVE_AS = "document-save-as.png";
63:
64: public static final String HOME = "go-home.png";
65:
66: public static final String GO_NEXT = "go-next.png";
67:
68: public static final String GO_PREVIOUS = "go-previous.png";
69:
70: public static final String FOLDER = "folder.png";
71:
72: public static final String FOLDER_NEW = "folder-new.png";
73:
74: public static final String FOLDER_OPEN = "folder-open.png";
75:
76: public static final String FOLDER_REMOTE = "folder-remote.png";
77:
78: public static final String FOLDER_DRAG_ACCEPT = "folder-drag-accept.png";
79:
80: public static final String COMPUTER = "computer.png";
81:
82: public static final String SERVER = "network-server.png";
83:
84: public static final String SERVER_WORKGROUP = "network-workgroup.png";
85:
86: public static final String CONTACT_NEW = "contact-new.png";
87:
88: public static final String ADDRESSBOOK = "addressbook.png";
89:
90: public static final String CALENDAR = "office-calendar.png";
91:
92: public static final String ONLINE = "network-receive.png";
93:
94: public static final String OFFLINE = "network-offline.png";
95:
96: public static final String MAIL_NEW = "mail-new.png";
97: }
|