|
1 |
| -// The MIT License (MIT) |
2 |
| -// |
3 |
| -// Copyright (c) 2015 Arian Fornaris |
4 |
| -// |
5 |
| -// Permission is hereby granted, free of charge, to any person obtaining a |
6 |
| -// copy of this software and associated documentation files (the |
7 |
| -// "Software"), to deal in the Software without restriction, including |
8 |
| -// without limitation the rights to use, copy, modify, merge, publish, |
9 |
| -// distribute, sublicense, and/or sell copies of the Software, and to permit |
10 |
| -// persons to whom the Software is furnished to do so, subject to the |
11 |
| -// following conditions: The above copyright notice and this permission |
12 |
| -// notice shall be included in all copies or substantial portions of the |
13 |
| -// Software. |
14 |
| -// |
15 |
| -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
16 |
| -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
17 |
| -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN |
18 |
| -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
19 |
| -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
20 |
| -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
21 |
| -// USE OR OTHER DEALINGS IN THE SOFTWARE. |
22 |
| -package phasereditor.ui; |
23 |
| - |
24 |
| -public interface IEditorSharedImages { |
25 |
| - String IMG_SHAPE = "icons/shape_square.png"; |
26 |
| - String IMG_SHAPE_GROUP_NODE = "icons/shape_node_group.png"; |
27 |
| - String IMG_DELETE = "icons/delete.png"; |
28 |
| - String IMG_EASING_ICON = "icons/vector.png"; |
29 |
| - String IMG_CLASS_OBJ = "icons/class_obj.png"; |
30 |
| - String IMG_FIELD_DEFAULT_OBJ = "icons/field_default_obj.png"; |
31 |
| - String IMG_FIELD_PUBLIC_OBJ = "icons/field_public_obj.png"; |
32 |
| - String IMG_GENERIC_ELEMENT = "icons/generic_element.png"; |
33 |
| - String IMG_IMAGES = "icons/images.png"; |
34 |
| - String IMG_SCRIPT_CODE = "icons/page_white_code.png"; |
35 |
| - String IMG_ASSET_FOLDER = "icons/folder_brick.png"; |
36 |
| - String IMG_ASSET_KEY = "icons/brick.png"; |
37 |
| - String IMG_ASSET_ELEM_KEY = IMG_GENERIC_ELEMENT; |
38 |
| - String IMG_ASSET_GROUP = "icons/bullet_blue.png"; |
39 |
| - String IMG_LINK = "icons/link.png"; |
40 |
| - String IMG_METHPUB_OBJ = "icons/methpub_obj.png"; |
41 |
| - String IMG_PACKAGE_ADD = "icons/package_add.png"; |
42 |
| - String IMG_PACKAGE_SEARCH = "icons/box.png"; |
43 |
| - String IMG_PACKAGE = "icons/box.png"; |
44 |
| - String IMG_PHASER_SHIP = "icons/phaser-ship.png"; |
45 |
| - String IMG_TEMPLATE_OBJ = "icons/template_obj.png"; |
46 |
| - String IMG_WORLD = "icons/world.png"; |
47 |
| - String IMG_WORLD_PAGE_WHITE = "icons/page_white_world.png"; |
48 |
| - String IMG_COMPRESS = "icons/compress.png"; |
49 |
| - String IMG_BUILD = "icons/cog.png"; |
50 |
| - String IMG_MONITOR = "icons/monitor.png"; |
51 |
| - String IMG_PALETTE = "icons/palette.png"; |
52 |
| - String IMG_APPLICATION_SIDE_TREE = "icons/application_side_tree.png"; |
53 |
| - String IMG_SETTINGS = "icons/wrench.png"; |
54 |
| - String IMG_PREVIEW_PATTERN = "icons/preview-pattern.png"; |
55 |
| - String IMG_ZOOM_RESTORE = "icons/zoom_default.png"; |
56 |
| - String IMG_OUTLINE = "icons/outline_co.png"; |
57 |
| - String IMG_SHAPE_EDIT = "icons/shape_square_edit.png"; |
58 |
| - String IMG_PACKAGE_2 = "icons/package.png"; |
59 |
| - String IMG_CANVAS = "icons/canvas.png"; |
60 |
| - String IMG_MONITOR_EDIT = "icons/monitor_edit.png"; |
61 |
| - String IMG_ROTATE = "icons/arrow_rotate_clockwise.png"; |
62 |
| - String IMG_PLAY = "icons/control_play.png"; |
63 |
| - String IMG_STOP = "icons/control_stop.png"; |
64 |
| - String IMG_NEW_VIEW = "platform:/plugin/org.eclipse.ui.views/icons/full/elcl16/new.png"; |
65 |
| - String IMG_CONTROL_EQUALIZER = "icons/control_equalizer.png"; |
66 |
| - String IMG_ARROW_OUT = "icons/arrow_out.png"; |
67 |
| - String IMG_APPLICATION_LIST = "icons/application_view_list.png"; |
68 |
| - String IMG_APPLICATION_HOME = "icons/application_home.png"; |
69 |
| - String IMG_APPLICATION_TILE = "icons/application_view_tile.png"; |
70 |
| - String IMG_FONT = "icons/font.png"; |
71 |
| -} |
| 1 | +// The MIT License (MIT) |
| 2 | +// |
| 3 | +// Copyright (c) 2015 Arian Fornaris |
| 4 | +// |
| 5 | +// Permission is hereby granted, free of charge, to any person obtaining a |
| 6 | +// copy of this software and associated documentation files (the |
| 7 | +// "Software"), to deal in the Software without restriction, including |
| 8 | +// without limitation the rights to use, copy, modify, merge, publish, |
| 9 | +// distribute, sublicense, and/or sell copies of the Software, and to permit |
| 10 | +// persons to whom the Software is furnished to do so, subject to the |
| 11 | +// following conditions: The above copyright notice and this permission |
| 12 | +// notice shall be included in all copies or substantial portions of the |
| 13 | +// Software. |
| 14 | +// |
| 15 | +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 16 | +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 17 | +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN |
| 18 | +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
| 19 | +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 20 | +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
| 21 | +// USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 22 | +package phasereditor.ui; |
| 23 | + |
| 24 | +public interface IEditorSharedImages { |
| 25 | + String IMG_SHAPE = "icons/shape_square.png"; |
| 26 | + String IMG_SHAPE_GROUP_NODE = "icons/shape_node_group.png"; |
| 27 | + String IMG_DELETE = "icons/delete.png"; |
| 28 | + String IMG_EASING_ICON = "icons/vector.png"; |
| 29 | + String IMG_CLASS_OBJ = "icons/class_obj.png"; |
| 30 | + String IMG_FIELD_DEFAULT_OBJ = "icons/field_default_obj.png"; |
| 31 | + String IMG_FIELD_PUBLIC_OBJ = "icons/field_public_obj.png"; |
| 32 | + String IMG_GENERIC_ELEMENT = "icons/generic_element.png"; |
| 33 | + String IMG_IMAGES = "icons/images.png"; |
| 34 | + String IMG_SCRIPT_CODE = "icons/page_white_code.png"; |
| 35 | + String IMG_ASSET_FOLDER = "icons/folder_brick.png"; |
| 36 | + String IMG_ASSET_KEY = "icons/brick.png"; |
| 37 | + String IMG_ASSET_ELEM_KEY = IMG_GENERIC_ELEMENT; |
| 38 | + String IMG_ASSET_GROUP = "icons/bullet_blue.png"; |
| 39 | + String IMG_LINK = "icons/link.png"; |
| 40 | + String IMG_METHPUB_OBJ = "icons/methpub_obj.png"; |
| 41 | + String IMG_PACKAGE_ADD = "icons/package_add.png"; |
| 42 | + String IMG_PACKAGE_SEARCH = "icons/box.png"; |
| 43 | + String IMG_PACKAGE = "icons/box.png"; |
| 44 | + String IMG_PHASER_SHIP = "icons/phaser-ship.png"; |
| 45 | + String IMG_TEMPLATE_OBJ = "icons/template_obj.png"; |
| 46 | + String IMG_WORLD = "icons/world.png"; |
| 47 | + String IMG_WORLD_PAGE_WHITE = "icons/page_white_world.png"; |
| 48 | + String IMG_COMPRESS = "icons/compress.png"; |
| 49 | + String IMG_BUILD = "icons/cog.png"; |
| 50 | + String IMG_MONITOR = "icons/monitor.png"; |
| 51 | + String IMG_PALETTE = "icons/palette.png"; |
| 52 | + String IMG_APPLICATION_SIDE_TREE = "icons/application_side_tree.png"; |
| 53 | + String IMG_SETTINGS = "icons/wrench.png"; |
| 54 | + String IMG_PREVIEW_PATTERN = "icons/preview-pattern.png"; |
| 55 | + String IMG_ZOOM_RESTORE = "icons/zoom_default.png"; |
| 56 | + String IMG_OUTLINE = "icons/outline_co.png"; |
| 57 | + String IMG_SHAPE_EDIT = "icons/shape_square_edit.png"; |
| 58 | + String IMG_PACKAGE_2 = "icons/package.png"; |
| 59 | + String IMG_CANVAS = "icons/canvas.png"; |
| 60 | + String IMG_MONITOR_EDIT = "icons/monitor_edit.png"; |
| 61 | + String IMG_ROTATE = "icons/arrow-rotate-clockwise.png"; |
| 62 | + String IMG_PLAY = "icons/control_play.png"; |
| 63 | + String IMG_STOP = "icons/control_stop.png"; |
| 64 | + String IMG_NEW_VIEW = "platform:/plugin/org.eclipse.ui.views/icons/full/elcl16/new.png"; |
| 65 | + String IMG_CONTROL_EQUALIZER = "icons/control_equalizer.png"; |
| 66 | + String IMG_ARROW_OUT = "icons/arrow_out.png"; |
| 67 | + String IMG_APPLICATION_LIST = "icons/application_view_list.png"; |
| 68 | + String IMG_APPLICATION_HOME = "icons/application_home.png"; |
| 69 | + String IMG_APPLICATION_TILE = "icons/application_view_tile.png"; |
| 70 | + String IMG_FONT = "icons/font.png"; |
| 71 | +} |
0 commit comments