From d128171ac86ab71cc4487117f774d40f8f3081d2 Mon Sep 17 00:00:00 2001 From: Michael Bangas Date: Wed, 23 Apr 2025 14:24:43 +0200 Subject: [PATCH] add all svgs to org.eclipse.pde.runtime This commit adds SVGs for all icons in the bundle `org.eclipse.pde.runtime`. --- .../META-INF/MANIFEST.MF | 1 + .../icons/elcl16/collapseall.svg | 149 +++ .../icons/elcl16/cpyqual_menu.svg | 456 +++++++++ .../icons/elcl16/refresh.svg | 197 ++++ .../icons/elcl16/up_nav.svg | 242 +++++ .../icons/eview16/horizontal_view.svg | 757 +++++++++++++++ .../icons/eview16/registry.svg | 895 ++++++++++++++++++ .../icons/eview16/vertical_view.svg | 331 +++++++ .../icons/obj16/attr_xml_obj.svg | 212 +++++ .../icons/obj16/bundle-exporter.svg | 429 +++++++++ .../icons/obj16/bundle-importer-exporter.svg | 485 ++++++++++ .../icons/obj16/bundle-importer.svg | 400 ++++++++ .../icons/obj16/class_obj.svg | 164 ++++ .../icons/obj16/contextid_obj.svg | 487 ++++++++++ .../icons/obj16/ext_point_obj.svg | 390 ++++++++ .../icons/obj16/ext_points_obj.svg | 502 ++++++++++ .../icons/obj16/extension_obj.svg | 263 +++++ .../icons/obj16/extensions_obj.svg | 399 ++++++++ .../icons/obj16/frgmt_obj.svg | 476 ++++++++++ .../icons/obj16/generic_xml_obj.svg | 417 ++++++++ .../icons/obj16/int_obj.svg | 157 +++ .../icons/obj16/java_lib_obj.svg | 221 +++++ .../icons/obj16/layoutspy_obj.svg | 351 +++++++ .../icons/obj16/location_obj.svg | 80 ++ .../icons/obj16/menu_obj.svg | 362 +++++++ .../icons/obj16/menuspy_obj.svg | 420 ++++++++ .../icons/obj16/package_obj.svg | 327 +++++++ .../icons/obj16/pdespy_obj.svg | 555 +++++++++++ .../icons/obj16/plugin_obj.svg | 489 ++++++++++ .../icons/obj16/plugins_obj.svg | 502 ++++++++++ .../icons/obj16/property_obj.svg | 180 ++++ .../icons/obj16/req_plugin_obj.svg | 521 ++++++++++ .../icons/obj16/req_plugins_obj.svg | 664 +++++++++++++ .../icons/obj16/rsvcproxy_obj.svg | 164 ++++ .../icons/obj16/runtime_obj.svg | 472 +++++++++ .../icons/obj16/save_image_as_obj.svg | 298 ++++++ .../icons/ovr16/default_co.svg | 144 +++ .../icons/ovr16/error_co.svg | 77 ++ .../icons/ovr16/export_co.svg | 75 ++ .../icons/ovr16/run_co.svg | 223 +++++ ui/org.eclipse.pde.runtime/plugin.xml | 6 +- .../runtime/PDERuntimePluginImages.java | 74 +- 42 files changed, 13974 insertions(+), 40 deletions(-) create mode 100644 ui/org.eclipse.pde.runtime/icons/elcl16/collapseall.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/elcl16/cpyqual_menu.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/elcl16/refresh.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/elcl16/up_nav.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/eview16/horizontal_view.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/eview16/registry.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/eview16/vertical_view.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/attr_xml_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/bundle-exporter.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/bundle-importer-exporter.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/bundle-importer.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/class_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/contextid_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/ext_point_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/ext_points_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/extension_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/extensions_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/frgmt_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/generic_xml_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/int_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/java_lib_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/layoutspy_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/location_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/menu_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/menuspy_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/package_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/pdespy_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/plugin_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/plugins_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/property_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/req_plugin_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/req_plugins_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/rsvcproxy_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/runtime_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/obj16/save_image_as_obj.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/ovr16/default_co.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/ovr16/error_co.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/ovr16/export_co.svg create mode 100644 ui/org.eclipse.pde.runtime/icons/ovr16/run_co.svg diff --git a/ui/org.eclipse.pde.runtime/META-INF/MANIFEST.MF b/ui/org.eclipse.pde.runtime/META-INF/MANIFEST.MF index 3d67d301620..0f8ac34682c 100644 --- a/ui/org.eclipse.pde.runtime/META-INF/MANIFEST.MF +++ b/ui/org.eclipse.pde.runtime/META-INF/MANIFEST.MF @@ -26,3 +26,4 @@ Export-Package: org.eclipse.pde.internal.runtime;x-internal:=true, Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy Automatic-Module-Name: org.eclipse.pde.runtime +Require-Capability: eclipse.swt;filter:="(image.format=svg)" diff --git a/ui/org.eclipse.pde.runtime/icons/elcl16/collapseall.svg b/ui/org.eclipse.pde.runtime/icons/elcl16/collapseall.svg new file mode 100644 index 00000000000..16b4be366bd --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/elcl16/collapseall.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/elcl16/cpyqual_menu.svg b/ui/org.eclipse.pde.runtime/icons/elcl16/cpyqual_menu.svg new file mode 100644 index 00000000000..54cd98eb454 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/elcl16/cpyqual_menu.svg @@ -0,0 +1,456 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/elcl16/refresh.svg b/ui/org.eclipse.pde.runtime/icons/elcl16/refresh.svg new file mode 100644 index 00000000000..97321996bcd --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/elcl16/refresh.svg @@ -0,0 +1,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/elcl16/up_nav.svg b/ui/org.eclipse.pde.runtime/icons/elcl16/up_nav.svg new file mode 100644 index 00000000000..3f607257aef --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/elcl16/up_nav.svg @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/eview16/horizontal_view.svg b/ui/org.eclipse.pde.runtime/icons/eview16/horizontal_view.svg new file mode 100644 index 00000000000..e3ef05116fa --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/eview16/horizontal_view.svg @@ -0,0 +1,757 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/eview16/registry.svg b/ui/org.eclipse.pde.runtime/icons/eview16/registry.svg new file mode 100644 index 00000000000..f294b08bc1f --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/eview16/registry.svg @@ -0,0 +1,895 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/eview16/vertical_view.svg b/ui/org.eclipse.pde.runtime/icons/eview16/vertical_view.svg new file mode 100644 index 00000000000..8bae8e88223 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/eview16/vertical_view.svg @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/attr_xml_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/attr_xml_obj.svg new file mode 100644 index 00000000000..a82b405ab9a --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/attr_xml_obj.svg @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/bundle-exporter.svg b/ui/org.eclipse.pde.runtime/icons/obj16/bundle-exporter.svg new file mode 100644 index 00000000000..50ef0e081db --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/bundle-exporter.svg @@ -0,0 +1,429 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/bundle-importer-exporter.svg b/ui/org.eclipse.pde.runtime/icons/obj16/bundle-importer-exporter.svg new file mode 100644 index 00000000000..b135cce3ade --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/bundle-importer-exporter.svg @@ -0,0 +1,485 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/bundle-importer.svg b/ui/org.eclipse.pde.runtime/icons/obj16/bundle-importer.svg new file mode 100644 index 00000000000..bc6c2854100 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/bundle-importer.svg @@ -0,0 +1,400 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/class_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/class_obj.svg new file mode 100644 index 00000000000..b7322a04d80 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/class_obj.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/contextid_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/contextid_obj.svg new file mode 100644 index 00000000000..94a01735310 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/contextid_obj.svg @@ -0,0 +1,487 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/ext_point_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/ext_point_obj.svg new file mode 100644 index 00000000000..01f127aa4a9 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/ext_point_obj.svg @@ -0,0 +1,390 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/ext_points_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/ext_points_obj.svg new file mode 100644 index 00000000000..43cd6f7222a --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/ext_points_obj.svg @@ -0,0 +1,502 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/extension_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/extension_obj.svg new file mode 100644 index 00000000000..410d8e62973 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/extension_obj.svg @@ -0,0 +1,263 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/extensions_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/extensions_obj.svg new file mode 100644 index 00000000000..8a3283cc3e2 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/extensions_obj.svg @@ -0,0 +1,399 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/frgmt_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/frgmt_obj.svg new file mode 100644 index 00000000000..87758e9fcb5 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/frgmt_obj.svg @@ -0,0 +1,476 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/generic_xml_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/generic_xml_obj.svg new file mode 100644 index 00000000000..76c6056e068 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/generic_xml_obj.svg @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/int_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/int_obj.svg new file mode 100644 index 00000000000..f9e84b00dd5 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/int_obj.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/java_lib_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/java_lib_obj.svg new file mode 100644 index 00000000000..428952820ce --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/java_lib_obj.svg @@ -0,0 +1,221 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/layoutspy_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/layoutspy_obj.svg new file mode 100644 index 00000000000..4c054d76411 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/layoutspy_obj.svg @@ -0,0 +1,351 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/location_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/location_obj.svg new file mode 100644 index 00000000000..eaf3f9953b6 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/location_obj.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/menu_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/menu_obj.svg new file mode 100644 index 00000000000..da43eb942de --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/menu_obj.svg @@ -0,0 +1,362 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/menuspy_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/menuspy_obj.svg new file mode 100644 index 00000000000..6847a114413 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/menuspy_obj.svg @@ -0,0 +1,420 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/package_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/package_obj.svg new file mode 100644 index 00000000000..b70d20b4500 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/package_obj.svg @@ -0,0 +1,327 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/pdespy_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/pdespy_obj.svg new file mode 100644 index 00000000000..ade198760c8 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/pdespy_obj.svg @@ -0,0 +1,555 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/plugin_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/plugin_obj.svg new file mode 100644 index 00000000000..6741d827a52 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/plugin_obj.svg @@ -0,0 +1,489 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/plugins_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/plugins_obj.svg new file mode 100644 index 00000000000..625837c375c --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/plugins_obj.svg @@ -0,0 +1,502 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/property_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/property_obj.svg new file mode 100644 index 00000000000..dd43b527a6d --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/property_obj.svg @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/req_plugin_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/req_plugin_obj.svg new file mode 100644 index 00000000000..ca091f7b04c --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/req_plugin_obj.svg @@ -0,0 +1,521 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/req_plugins_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/req_plugins_obj.svg new file mode 100644 index 00000000000..ab4c7a9a3ed --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/req_plugins_obj.svg @@ -0,0 +1,664 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/rsvcproxy_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/rsvcproxy_obj.svg new file mode 100644 index 00000000000..ab6179ddb69 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/rsvcproxy_obj.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/runtime_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/runtime_obj.svg new file mode 100644 index 00000000000..91a22b257f3 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/runtime_obj.svg @@ -0,0 +1,472 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/obj16/save_image_as_obj.svg b/ui/org.eclipse.pde.runtime/icons/obj16/save_image_as_obj.svg new file mode 100644 index 00000000000..d8d794090ef --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/obj16/save_image_as_obj.svg @@ -0,0 +1,298 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/ovr16/default_co.svg b/ui/org.eclipse.pde.runtime/icons/ovr16/default_co.svg new file mode 100644 index 00000000000..f081bdbeddf --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/ovr16/default_co.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/ovr16/error_co.svg b/ui/org.eclipse.pde.runtime/icons/ovr16/error_co.svg new file mode 100644 index 00000000000..1b2a9282bff --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/ovr16/error_co.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/ovr16/export_co.svg b/ui/org.eclipse.pde.runtime/icons/ovr16/export_co.svg new file mode 100644 index 00000000000..b289550c451 --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/ovr16/export_co.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/icons/ovr16/run_co.svg b/ui/org.eclipse.pde.runtime/icons/ovr16/run_co.svg new file mode 100644 index 00000000000..ae9307bd71a --- /dev/null +++ b/ui/org.eclipse.pde.runtime/icons/ovr16/run_co.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/ui/org.eclipse.pde.runtime/plugin.xml b/ui/org.eclipse.pde.runtime/plugin.xml index 0d150856b79..a4ff3b7cd6f 100644 --- a/ui/org.eclipse.pde.runtime/plugin.xml +++ b/ui/org.eclipse.pde.runtime/plugin.xml @@ -21,7 +21,7 @@ point="org.eclipse.ui.views"> @@ -54,11 +54,11 @@ point="org.eclipse.ui.commandImages"> + icon="$nl$/icons/obj16/pdespy_obj.svg"> + icon="$nl$/icons/obj16/menuspy_obj.svg">