[gimp/icons-wip] icons: Bug 759904



commit 12cdf58b7043449c5579854655e37444863f657e
Author: klausstaedtler <staedtler-przyborski web de>
Date:   Wed Jun 22 20:51:52 2016 +0200

    icons: Bug 759904
    
    add
    gimp-layer-delete
    gimp-layer-down
    gimp-layer-group-new
    gimp-layer-new
    gimp-layer-up
    
    patch: replace "document-new" by "gimp-layer-new )or GIMP_STOCK_LAYER_NEW)
    
    gimp/app/actions/layers-actions.c:  { "layers-new", "document-new",
    gimp/app/actions/layers-actions.c:  { "layers-new-last-values", "document-new",
    
    replace other gimp-**** & gtk-**** icons by
    gimp-layer-delete
    gimp-layer-down
    gimp-layer-group-new
    gimp-layer-up
    gimp-bottom
    gimp-top

 app/actions/layers-actions.c                       |   16 +-
 icons/Color/16/gimp-layer-delete.png               |  Bin 0 -> 595 bytes
 icons/Color/16/gimp-layer-down.png                 |  Bin 0 -> 798 bytes
 icons/Color/16/gimp-layer-group-new.png            |  Bin 0 -> 716 bytes
 icons/{Prototype => }/Color/16/gimp-layer-new.png  |  Bin 778 -> 642 bytes
 icons/Color/16/gimp-layer-up.png                   |  Bin 0 -> 796 bytes
 icons/Color/scalable/gimp-layer-delete.svg         |  116 ++++++++++++
 icons/Color/scalable/gimp-layer-down.svg           |  191 +++++++++++++++++++
 icons/Color/scalable/gimp-layer-group-new.svg      |  145 +++++++++++++++
 icons/Color/scalable/gimp-layer-new.svg            |  107 +++++++++++
 icons/Color/scalable/gimp-layer-up.svg             |  195 ++++++++++++++++++++
 icons/Prototype/Color/16/gimp-layer-delete.png     |  Bin 744 -> 0 bytes
 icons/Prototype/Color/16/gimp-layer-down.png       |  Bin 932 -> 0 bytes
 icons/Prototype/Color/16/gimp-layer-newgroup.png   |  Bin 840 -> 0 bytes
 icons/Prototype/Color/16/gimp-layer-up.png         |  Bin 929 -> 0 bytes
 icons/Prototype/Symbolic/16/gimp-layer-delete.png  |  Bin 683 -> 0 bytes
 icons/Prototype/Symbolic/16/gimp-layer-down.png    |  Bin 661 -> 0 bytes
 icons/Prototype/Symbolic/16/gimp-layer-new.png     |  Bin 593 -> 0 bytes
 .../Prototype/Symbolic/16/gimp-layer-newgroup.png  |  Bin 401 -> 0 bytes
 icons/Prototype/Symbolic/16/gimp-layer-up.png      |  Bin 642 -> 0 bytes
 icons/Symbolic/16/gimp-layer-delete.png            |  Bin 0 -> 530 bytes
 icons/Symbolic/16/gimp-layer-down.png              |  Bin 0 -> 540 bytes
 icons/Symbolic/16/gimp-layer-group-new.png         |  Bin 0 -> 274 bytes
 icons/Symbolic/16/gimp-layer-new.png               |  Bin 0 -> 466 bytes
 icons/Symbolic/16/gimp-layer-up.png                |  Bin 0 -> 509 bytes
 icons/Symbolic/scalable/gimp-layer-delete.svg      |  164 ++++++++++++++++
 icons/Symbolic/scalable/gimp-layer-down.svg        |  176 ++++++++++++++++++
 icons/Symbolic/scalable/gimp-layer-group-new.svg   |  138 ++++++++++++++
 icons/Symbolic/scalable/gimp-layer-new.svg         |  170 +++++++++++++++++
 icons/Symbolic/scalable/gimp-layer-up.svg          |  153 +++++++++++++++
 icons/icon-list.mk                                 |   14 ++-
 libgimpwidgets/gimpicons.c                         |    7 +-
 libgimpwidgets/gimpicons.h                         |    5 +
 33 files changed, 1586 insertions(+), 11 deletions(-)
---
diff --git a/app/actions/layers-actions.c b/app/actions/layers-actions.c
index 6c777fb..a7ddb45 100644
--- a/app/actions/layers-actions.c
+++ b/app/actions/layers-actions.c
@@ -78,13 +78,13 @@ static const GimpActionEntry layers_actions[] =
     G_CALLBACK (layers_edit_attributes_cmd_callback),
     GIMP_HELP_LAYER_EDIT },
 
-  { "layers-new", "document-new",
+  { "layers-new", GIMP_STOCK_LAYER_NEW,
     NC_("layers-action", "_New Layer..."), "<primary><shift>N",
     NC_("layers-action", "Create a new layer and add it to the image"),
     G_CALLBACK (layers_new_cmd_callback),
     GIMP_HELP_LAYER_NEW },
 
-  { "layers-new-last-values", "document-new",
+  { "layers-new-last-values", GIMP_STOCK_LAYER_NEW,
     NC_("layers-action", "_New Layer"), NULL,
     NC_("layers-action", "Create a new layer with last used values"),
     G_CALLBACK (layers_new_last_vals_cmd_callback),
@@ -97,7 +97,7 @@ static const GimpActionEntry layers_actions[] =
     G_CALLBACK (layers_new_from_visible_cmd_callback),
     GIMP_HELP_LAYER_NEW_FROM_VISIBLE },
 
-  { "layers-new-group", "folder",
+  { "layers-new-group", GIMP_STOCK_LAYER_GROUP_NEW,
     NC_("layers-action", "New Layer _Group"), NULL,
     NC_("layers-action", "Create a new layer group and add it to the image"),
     G_CALLBACK (layers_new_group_cmd_callback),
@@ -110,31 +110,31 @@ static const GimpActionEntry layers_actions[] =
     G_CALLBACK (layers_duplicate_cmd_callback),
     GIMP_HELP_LAYER_DUPLICATE },
 
-  { "layers-delete", GIMP_STOCK_DELETE,
+  { "layers-delete", GIMP_STOCK_LAYER_DELETE,
     NC_("layers-action", "_Delete Layer"), NULL,
     NC_("layers-action", "Delete this layer"),
     G_CALLBACK (layers_delete_cmd_callback),
     GIMP_HELP_LAYER_DELETE },
 
-  { "layers-raise", "go-up",
+  { "layers-raise", GIMP_STOCK_LAYER_UP,
     NC_("layers-action", "_Raise Layer"), NULL,
     NC_("layers-action", "Raise this layer one step in the layer stack"),
     G_CALLBACK (layers_raise_cmd_callback),
     GIMP_HELP_LAYER_RAISE },
 
-  { "layers-raise-to-top", "go-top",
+  { "layers-raise-to-top", GIMP_STOCK_TOP",
     NC_("layers-action", "Layer to _Top"), NULL,
     NC_("layers-action", "Move this layer to the top of the layer stack"),
     G_CALLBACK (layers_raise_to_top_cmd_callback),
     GIMP_HELP_LAYER_RAISE_TO_TOP },
 
-  { "layers-lower", "go-down",
+  { "layers-lower", GIMP_STOCK_LAYER_DOWN,
     NC_("layers-action", "_Lower Layer"), NULL,
     NC_("layers-action", "Lower this layer one step in the layer stack"),
     G_CALLBACK (layers_lower_cmd_callback),
     GIMP_HELP_LAYER_LOWER },
 
-  { "layers-lower-to-bottom", "go-bottom",
+  { "layers-lower-to-bottom", GIMP_STOCK_BOTTOM,
     NC_("layers-action", "Layer to _Bottom"), NULL,
     NC_("layers-action", "Move this layer to the bottom of the layer stack"),
     G_CALLBACK (layers_lower_to_bottom_cmd_callback),
diff --git a/icons/Color/16/gimp-layer-delete.png b/icons/Color/16/gimp-layer-delete.png
new file mode 100644
index 0000000..e224f6c
Binary files /dev/null and b/icons/Color/16/gimp-layer-delete.png differ
diff --git a/icons/Color/16/gimp-layer-down.png b/icons/Color/16/gimp-layer-down.png
new file mode 100644
index 0000000..f33086a
Binary files /dev/null and b/icons/Color/16/gimp-layer-down.png differ
diff --git a/icons/Color/16/gimp-layer-group-new.png b/icons/Color/16/gimp-layer-group-new.png
new file mode 100644
index 0000000..3630c66
Binary files /dev/null and b/icons/Color/16/gimp-layer-group-new.png differ
diff --git a/icons/Prototype/Color/16/gimp-layer-new.png b/icons/Color/16/gimp-layer-new.png
similarity index 74%
rename from icons/Prototype/Color/16/gimp-layer-new.png
rename to icons/Color/16/gimp-layer-new.png
index 450516d..4db089e 100644
Binary files a/icons/Prototype/Color/16/gimp-layer-new.png and b/icons/Color/16/gimp-layer-new.png differ
diff --git a/icons/Color/16/gimp-layer-up.png b/icons/Color/16/gimp-layer-up.png
new file mode 100644
index 0000000..9fe8de3
Binary files /dev/null and b/icons/Color/16/gimp-layer-up.png differ
diff --git a/icons/Color/scalable/gimp-layer-delete.svg b/icons/Color/scalable/gimp-layer-delete.svg
new file mode 100644
index 0000000..1a0f037
--- /dev/null
+++ b/icons/Color/scalable/gimp-layer-delete.svg
@@ -0,0 +1,116 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   viewBox="0 0 16 16"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-layer-delete.svg"
+   width="16"
+   height="16">
+  <metadata
+     id="metadata31">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1016"
+     id="namedview29"
+     showgrid="true"
+     inkscape:zoom="37.605198"
+     inkscape:cx="3.4530977"
+     inkscape:cy="7.1372497"
+     inkscape:current-layer="svg2"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1"
+     showguides="true">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4239" />
+  </sodipodi:namedview>
+  <defs
+     id="defs4">
+    <linearGradient
+       id="0"
+       x1="83.029999"
+       y1="40.924"
+       x2="66.309998"
+       y2="22.766001"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3188,0,0,0.37019,-12.922,-1.499)">
+      <stop
+         stop-color="#d0d0d0"
+         id="stop7" />
+      <stop
+         offset="1"
+         stop-color="#ececec"
+         id="stop9" />
+    </linearGradient>
+  </defs>
+  <g
+     id="g4257">
+    <g
+       transform="matrix(1.0011005,0,0,0.99669776,-0.0026029,0.04895858)"
+       style="fill-rule:evenodd"
+       id="g11">
+      <g
+         style="color:#000000;stroke-width:1.02999997;stroke-miterlimit:10"
+         id="g13"
+         stroke-miterlimit="10">
+        <path
+           inkscape:connector-curvature="0"
+           style="fill:url(#0);stroke:#9b9c98;stroke-linecap:round;stroke-linejoin:round"
+           id="path15"
+           d="m 5.5,5.925 h 11.06 v 8.543 H 5.5 Z"
+           transform="matrix(1,0,-0.33254,0.94309,0.854,0.869)" />
+        <path
+           style="fill:none;stroke:#ffffff"
+           inkscape:connector-curvature="0"
+           id="path17"
+           d="m 6.475,7 h 9.05 v 5.431 h -9.05 z"
+           transform="matrix(1,0,-0.33273,0.94302,0.854,0.869)" />
+      </g>
+      <g
+         id="g19"
+         transform="translate(-971.04,-168.99)">
+        <g
+           style="fill:none;fill-opacity:0.75;stroke:#ffffff"
+           id="g23" />
+      </g>
+    </g>
+    <rect
+       y="0"
+       x="0"
+       height="16"
+       width="15.9877"
+       id="rect3999"
+       
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
 />
+    <path
+       
style="fill:#cc0000;fill-opacity:1;stroke:#a40000;stroke-width:0.49064204;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 0.34609633,1.9059582 2.2887787,3.5874904 0.60045282,5.5326079 1.8964654,6.6544139 
3.5847911,4.7092964 5.5274698,6.3907306 6.6530232,5.0940836 4.7103409,3.4125514 6.3986676,1.467434 
5.1026551,0.34562806 3.4143282,2.2907454 1.4716498,0.6093113 Z"
+       id="rect11686"
+       inkscape:connector-curvature="0" />
+  </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-layer-down.svg b/icons/Color/scalable/gimp-layer-down.svg
new file mode 100644
index 0000000..463dee2
--- /dev/null
+++ b/icons/Color/scalable/gimp-layer-down.svg
@@ -0,0 +1,191 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   viewBox="0 0 16 16"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-layer-down.svg"
+   width="16"
+   height="16">
+  <metadata
+     id="metadata39">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1016"
+     id="namedview37"
+     showgrid="false"
+     inkscape:zoom="10.877888"
+     inkscape:cx="7.184466"
+     inkscape:cy="8"
+     inkscape:current-layer="svg2"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1" />
+  <defs
+     id="defs4">
+    <linearGradient
+       id="2"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3188,0,0,0.37019,-12.922,-1.499)"
+       x1="83.029999"
+       y1="40.924"
+       x2="66.309998"
+       y2="22.766001">
+      <stop
+         stop-color="#d0d0d0"
+         id="stop17" />
+      <stop
+         offset="1"
+         stop-color="#ececec"
+         id="stop19" />
+    </linearGradient>
+    <linearGradient
+       id="0-1"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.98502,0,0,1.52262,965.57613,-265.11011)"
+       x1="974.65002"
+       y1="180"
+       x2="964.14001"
+       y2="178.53">
+      <stop
+         stop-color="#ffbf00"
+         id="stop7-7" />
+      <stop
+         offset="1"
+         stop-color="#fff"
+         id="stop9-8" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#1-8"
+       id="linearGradient3887"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.98502,0,0,1.52262,965.57613,-265.11011)"
+       x1="966.52002"
+       y1="177.34"
+       x2="976.52002"
+       y2="181.09" />
+    <linearGradient
+       id="1-8"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.98502,0,0,1.52262,965.32,-266.15)"
+       x1="966.52002"
+       y1="177.34"
+       x2="976.52002"
+       y2="181.09">
+      <stop
+         stop-color="#5a5a5a"
+         id="stop12-0" />
+      <stop
+         offset="1"
+         id="stop14-2" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#2"
+       id="linearGradient4253"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3188,0,0,0.37019,-12.922,-1.499)"
+       x1="83.029999"
+       y1="40.924"
+       x2="66.309998"
+       y2="22.766001" />
+  </defs>
+  <g
+     id="g4279">
+    <g
+       id="g3970">
+      <g
+         id="g3953">
+        <g
+           id="g21"
+           style="fill-rule:evenodd">
+          <g
+             id="g23"
+             stroke-miterlimit="10"
+             transform="translate(0,0.501)"
+             style="color:#000000;stroke-width:1.02999997;stroke-miterlimit:10">
+            <path
+               id="3"
+               d="m 5.5,5.925 h 11.06 v 8.543 H 5.5 Z"
+               transform="matrix(1,0,-0.33254,0.94309,0.854,0.869)"
+               
style="fill:url(#linearGradient4253);stroke:#9b9c98;stroke-linecap:round;stroke-linejoin:round"
+               inkscape:connector-curvature="0" />
+            <path
+               id="4"
+               d="m 6.475,7 h 9.05 v 5.431 h -9.05 z"
+               transform="matrix(1,0,-0.33273,0.94302,0.854,0.869)"
+               inkscape:connector-curvature="0"
+               style="fill:none;stroke:#ffffff" />
+          </g>
+          <g
+             id="g29"
+             stroke-miterlimit="10"
+             transform="translate(-0.874,-5.499)"
+             style="color:#000000;stroke-width:1.02999997;stroke-miterlimit:10">
+            <use
+               id="use33"
+               xlink:href="#4"
+               x="0"
+               y="0"
+               width="100%"
+               height="100%" />
+          </g>
+        </g>
+        <path
+           sodipodi:nodetypes="cccccccc"
+           inkscape:connector-curvature="0"
+           id="path27-5"
+           d="m 15.07629,5.0869612 -2.94563,8.2506738 z m 0.04392,0.089844 -11.2078253,-0.039261 
-2.785156,7.7890628 11.2469653,0.07844 z"
+           style="fill:url(#0-1);stroke:url(#linearGradient3887)" />
+        <use
+           height="100%"
+           width="100%"
+           y="0"
+           x="0"
+           id="use31-5"
+           xlink:href="#3"
+           transform="translate(-0.35178104,-5.8167407)" />
+      </g>
+      <rect
+         
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.10246458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         id="rect3999"
+         width="16"
+         height="16"
+         x="0"
+         y="0" />
+    </g>
+    <path
+       inkscape:connector-curvature="0"
+       id="path19385"
+       d="M 5.1980256,9.2425176 H 7.8028911 V 11.815357 H 10.407756 L 6.5004582,15.659518 
2.5931597,11.815357 h 2.6048659 z"
+       
style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:0.48539755;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       sodipodi:nodetypes="cccccccc" />
+  </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-layer-group-new.svg b/icons/Color/scalable/gimp-layer-group-new.svg
new file mode 100644
index 0000000..58f33eb
--- /dev/null
+++ b/icons/Color/scalable/gimp-layer-group-new.svg
@@ -0,0 +1,145 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   viewBox="0 0 16 16"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-layer-newgroup.svg">
+  <metadata
+     id="metadata32">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1440"
+     inkscape:window-height="752"
+     id="namedview30"
+     showgrid="true"
+     inkscape:zoom="5.1278856"
+     inkscape:cx="-6.5703243"
+     inkscape:cy="6.732421"
+     inkscape:current-layer="svg2"
+     inkscape:window-x="240"
+     inkscape:window-y="27"
+     inkscape:window-maximized="0">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4243" />
+  </sodipodi:namedview>
+  <defs
+     id="defs4">
+    <linearGradient
+       id="0"
+       x1="83.03"
+       y1="40.924"
+       x2="66.31"
+       y2="22.766"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(.3188 0 0 .37019-12.922-1.499)">
+      <stop
+         stop-color="#d0d0d0"
+         id="stop7" />
+      <stop
+         offset="1"
+         stop-color="#ececec"
+         id="stop9" />
+    </linearGradient>
+    <linearGradient
+       id="1"
+       x1="83.03"
+       y1="40.924"
+       x2="66.31"
+       y2="22.766"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3188,0,-0.1231,0.34912,-12.658,-2.46)"
+       xlink:href="#0" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#0"
+       id="linearGradient3962"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3188,0,0,0.37019,-12.922,-1.499)"
+       x1="83.03"
+       y1="40.924"
+       x2="66.31"
+       y2="22.766" />
+  </defs>
+  <g
+     id="g4265">
+    <g
+       transform="matrix(0.99802811,0,0,1.0000063,0.0314179,-5.0699747e-5)"
+       id="g3964">
+      <g
+         id="g12"
+         transform="translate(-0.50009704,0.50068254)"
+         style="fill-rule:evenodd">
+        <g
+           stroke-miterlimit="10"
+           id="g14"
+           style="color:#000000;stroke-width:1.02999997;stroke-miterlimit:10">
+          <path
+             transform="matrix(1,0,-0.33254,0.94309,0.854,0.869)"
+             d="m 5.5,5.925 h 11.06 v 8.543 H 5.5 Z"
+             id="path16"
+             style="fill:url(#linearGradient3962);stroke:#9b9c98;stroke-linecap:round;stroke-linejoin:round"
+             inkscape:connector-curvature="0" />
+          <path
+             transform="matrix(1,0,-0.33273,0.94302,0.854,0.869)"
+             d="m 6.475,7 h 9.05 v 5.431 h -9.05 z"
+             id="path18"
+             inkscape:connector-curvature="0"
+             style="fill:none;stroke:#ffffff" />
+        </g>
+      </g>
+      <g
+         style="stroke-width:0.97100002"
+         id="g22">
+        <path
+           inkscape:connector-curvature="0"
+           style="fill:url(#1);stroke:#9b9c98;stroke-linecap:round;stroke-linejoin:round"
+           d="m 3.295,4.541 h 11.06 l -2.841,8.06 H 0.454 Z"
+           id="path24" />
+        <path
+           style="fill:none;stroke:#ffffff"
+           inkscape:connector-curvature="0"
+           d="m 3.938,5.517 h 9.05 l -1.807,5.122 h -9.05 z"
+           id="path26" />
+      </g>
+      <rect
+         
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#505050;stroke-width:0.10246458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         id="rect3999"
+         width="15.897535"
+         height="15.897535"
+         x="0.05123229"
+         y="0.051252291" />
+    </g>
+    <path
+       id="rect11686"
+       d="M 3.0361432,0.14457298 V 3.0356246 H 0.14457294 V 4.964279 H 3.0361432 V 7.8554271 H 4.9638568 V 
4.964279 H 7.855427 V 3.0356246 H 4.9638568 V 0.14457298 Z"
+       
style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.28914589;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:connector-curvature="0" />
+  </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-layer-new.svg b/icons/Color/scalable/gimp-layer-new.svg
new file mode 100644
index 0000000..445910f
--- /dev/null
+++ b/icons/Color/scalable/gimp-layer-new.svg
@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   viewBox="0 0 16 16"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.91+devel r"
+   sodipodi:docname="gimp-layer-new.svg">
+  <metadata
+     id="metadata23">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1016"
+     id="namedview21"
+     showgrid="false"
+     showguides="false"
+     inkscape:zoom="18.208"
+     inkscape:cx="4.1941748"
+     inkscape:cy="12.660194"
+     inkscape:current-layer="svg2"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1" />
+  <defs
+     id="defs4">
+    <linearGradient
+       id="0"
+       x1="83.03"
+       y1="40.924"
+       x2="66.31"
+       y2="22.766"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3188,0,0,0.37019,-12.922,-1.499)">
+      <stop
+         stop-color="#d0d0d0"
+         id="stop7" />
+      <stop
+         offset="1"
+         stop-color="#ececec"
+         id="stop9" />
+    </linearGradient>
+  </defs>
+  <g
+     id="g3159">
+    <g
+       id="g3953">
+      <g
+         id="g11"
+         transform="translate(-0.50009704,0.50068254)"
+         style="fill-rule:evenodd">
+        <g
+           stroke-miterlimit="10"
+           id="g13"
+           style="color:#000000;stroke-width:1.02999997;stroke-miterlimit:10">
+          <path
+             transform="matrix(1,0,-0.33254,0.94309,0.854,0.869)"
+             d="m 5.5,5.925 h 11.06 v 8.543 H 5.5 Z"
+             id="path15"
+             style="fill:url(#0);stroke:#9b9c98;stroke-linecap:round;stroke-linejoin:round"
+             inkscape:connector-curvature="0" />
+          <path
+             transform="matrix(1,0,-0.33273,0.94302,0.854,0.869)"
+             d="m 6.475,7 h 9.05 v 5.431 h -9.05 z"
+             id="path17"
+             inkscape:connector-curvature="0"
+             style="fill:none;stroke:#ffffff" />
+        </g>
+      </g>
+      <rect
+         
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.10246458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         id="rect3999"
+         width="16"
+         height="16"
+         x="0"
+         y="0" />
+    </g>
+    <path
+       id="rect11686-3"
+       d="M 3.2323245,0.20854401 V 3.204444 H 0.22852647 v 1.9986 H 3.2323245 v 2.9960004 h 2.002532 V 
5.203044 h 3.003798 v -1.9986 H 5.2348565 V 0.20854401 Z"
+       
style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:connector-curvature="0" />
+  </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-layer-up.svg b/icons/Color/scalable/gimp-layer-up.svg
new file mode 100644
index 0000000..ddb1ca1
--- /dev/null
+++ b/icons/Color/scalable/gimp-layer-up.svg
@@ -0,0 +1,195 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   viewBox="0 0 16 16"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-layer-up.svg"
+   width="16"
+   height="16">
+  <metadata
+     id="metadata39">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1016"
+     id="namedview37"
+     showgrid="true"
+     inkscape:zoom="31.273927"
+     inkscape:cx="7.184466"
+     inkscape:cy="3.8576052"
+     inkscape:current-layer="svg2"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4251" />
+  </sodipodi:namedview>
+  <defs
+     id="defs4">
+    <linearGradient
+       id="2"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3188,0,0,0.37019,-12.922,-1.499)"
+       x1="83.029999"
+       y1="40.924"
+       x2="66.309998"
+       y2="22.766001">
+      <stop
+         stop-color="#d0d0d0"
+         id="stop17" />
+      <stop
+         offset="1"
+         stop-color="#ececec"
+         id="stop19" />
+    </linearGradient>
+    <linearGradient
+       id="0-1"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.98502,0,0,1.52262,965.57613,-265.11011)"
+       x1="974.65002"
+       y1="180"
+       x2="964.14001"
+       y2="178.53">
+      <stop
+         stop-color="#ffbf00"
+         id="stop7-7" />
+      <stop
+         offset="1"
+         stop-color="#fff"
+         id="stop9-8" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#1-8"
+       id="linearGradient3887"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.98502,0,0,1.52262,965.57613,-265.11011)"
+       x1="966.52002"
+       y1="177.34"
+       x2="976.52002"
+       y2="181.09" />
+    <linearGradient
+       id="1-8"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.98502,0,0,1.52262,965.32,-266.15)"
+       x1="966.52002"
+       y1="177.34"
+       x2="976.52002"
+       y2="181.09">
+      <stop
+         stop-color="#5a5a5a"
+         id="stop12-0" />
+      <stop
+         offset="1"
+         id="stop14-2" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#2"
+       id="linearGradient4255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3188,0,0,0.37019,-12.922,-1.499)"
+       x1="83.029999"
+       y1="40.924"
+       x2="66.309998"
+       y2="22.766001" />
+  </defs>
+  <g
+     id="g4281">
+    <g
+       id="g3970">
+      <g
+         id="g3953">
+        <g
+           id="g21"
+           style="fill-rule:evenodd">
+          <g
+             id="g23"
+             stroke-miterlimit="10"
+             transform="translate(0,0.501)"
+             style="color:#000000;stroke-width:1.02999997;stroke-miterlimit:10">
+            <path
+               id="3"
+               d="m 5.5,5.925 h 11.06 v 8.543 H 5.5 Z"
+               transform="matrix(1,0,-0.33254,0.94309,0.854,0.869)"
+               
style="fill:url(#linearGradient4255);stroke:#9b9c98;stroke-linecap:round;stroke-linejoin:round"
+               inkscape:connector-curvature="0" />
+            <path
+               id="4"
+               d="m 6.475,7 h 9.05 v 5.431 h -9.05 z"
+               transform="matrix(1,0,-0.33273,0.94302,0.854,0.869)"
+               inkscape:connector-curvature="0"
+               style="fill:none;stroke:#ffffff" />
+          </g>
+          <g
+             id="g29"
+             stroke-miterlimit="10"
+             transform="translate(-0.874,-5.499)"
+             style="color:#000000;stroke-width:1.02999997;stroke-miterlimit:10">
+            <use
+               id="use33"
+               xlink:href="#4"
+               x="0"
+               y="0"
+               width="100%"
+               height="100%" />
+          </g>
+        </g>
+        <path
+           sodipodi:nodetypes="cccccccc"
+           inkscape:connector-curvature="0"
+           id="path27-5"
+           d="m 15.07629,5.0869612 -2.94563,8.2506738 z m 0.04392,0.089844 -11.2078253,-0.039261 
-2.785156,7.7890628 11.2469653,0.07844 z"
+           style="fill:url(#0-1);stroke:url(#linearGradient3887)" />
+        <use
+           height="100%"
+           width="100%"
+           y="0"
+           x="0"
+           id="use31-5"
+           xlink:href="#3"
+           transform="translate(-0.35178104,-5.8167407)" />
+      </g>
+      <rect
+         
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.10246458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         id="rect3999"
+         width="16"
+         height="16"
+         x="0"
+         y="0" />
+    </g>
+    <path
+       inkscape:connector-curvature="0"
+       id="path19385"
+       d="M 5.197939,14.757334 H 7.8020623 V 12.184447 H 10.406185 L 6.5000007,8.3402154 2.5938152,12.184447 
H 5.197939 Z"
+       
style="fill:#f57900;fill-opacity:1;stroke:#ce5c00;stroke-width:0.48533288;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       sodipodi:nodetypes="cccccccc" />
+  </g>
+</svg>
diff --git a/icons/Symbolic/16/gimp-layer-delete.png b/icons/Symbolic/16/gimp-layer-delete.png
new file mode 100644
index 0000000..5139b5b
Binary files /dev/null and b/icons/Symbolic/16/gimp-layer-delete.png differ
diff --git a/icons/Symbolic/16/gimp-layer-down.png b/icons/Symbolic/16/gimp-layer-down.png
new file mode 100644
index 0000000..c3b0319
Binary files /dev/null and b/icons/Symbolic/16/gimp-layer-down.png differ
diff --git a/icons/Symbolic/16/gimp-layer-group-new.png b/icons/Symbolic/16/gimp-layer-group-new.png
new file mode 100644
index 0000000..4c08143
Binary files /dev/null and b/icons/Symbolic/16/gimp-layer-group-new.png differ
diff --git a/icons/Symbolic/16/gimp-layer-new.png b/icons/Symbolic/16/gimp-layer-new.png
new file mode 100644
index 0000000..642846e
Binary files /dev/null and b/icons/Symbolic/16/gimp-layer-new.png differ
diff --git a/icons/Symbolic/16/gimp-layer-up.png b/icons/Symbolic/16/gimp-layer-up.png
new file mode 100644
index 0000000..be22367
Binary files /dev/null and b/icons/Symbolic/16/gimp-layer-up.png differ
diff --git a/icons/Symbolic/scalable/gimp-layer-delete.svg b/icons/Symbolic/scalable/gimp-layer-delete.svg
new file mode 100644
index 0000000..8b96bf8
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-layer-delete.svg
@@ -0,0 +1,164 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb";
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-layer-delete.svg">
+  <defs
+     id="defs30573">
+    <linearGradient
+       id="linearGradient19282"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,378.84797,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284"
+         style="stop-color:#505050;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient19282-1"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,356.69172,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284-8"
+         style="stop-color:#505050;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient19282-2"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,356.69172,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284-1"
+         style="stop-color:#666666;stop-opacity:1" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="15.348735"
+     inkscape:cx="34.982976"
+     inkscape:cy="1.0455811"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     units="px"
+     inkscape:snap-page="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:object-nodes="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:snap-object-midpoints="true"
+     inkscape:snap-center="true"
+     inkscape:snap-text-baseline="true"
+     showborder="false"
+     inkscape:window-width="1920"
+     inkscape:window-height="1016"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1"
+     inkscape:snap-global="false"
+     showguides="false">
+    <inkscape:grid
+       type="xygrid"
+       id="grid3949" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata30576">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>
+          image/svg+xml
+        </dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Klaus Staedtler       </dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1036.3622)">
+    <g
+       id="g3960">
+      <g
+         id="g3943">
+        <g
+           id="g4017">
+          <g
+             id="g3992">
+            <rect
+               style="fill:none;stroke:none"
+               id="rect28186-4"
+               width="16"
+               height="16"
+               x="0"
+               y="1036.3622"
+               rx="0" />
+            <rect
+               style="opacity:0.3;fill:none;stroke:none"
+               id="rect6884"
+               width="16"
+               height="16"
+               x="0"
+               y="1036.3622" />
+            <g
+               transform="translate(-41.000198,597.3622)"
+               style="display:inline"
+               id="gimp-layers"
+               inkscape:label="gimp-layers">
+              <rect
+                 y="439"
+                 x="41.000198"
+                 height="16"
+                 width="16"
+                 id="rect11958"
+                 style="fill:none;stroke:none" />
+            </g>
+            <path
+               style="fill:#bebebe;stroke-width:1.00320625"
+               inkscape:connector-curvature="0"
+               id="path8"
+               d="M 4.0402858,1046.4185 0,1052.3622 h 12 l 4,-6 z"
+               sodipodi:nodetypes="ccccc" />
+          </g>
+        </g>
+        <path
+           id="path39843"
+           d="m 2,1036.3622 c -0.554,0 -1,0.446 -1,1 v 7 c 0,0.554 0.446,1 1,1 h 7 c 0.554,0 1,-0.446 1,-1 v 
-7 c 0,-0.554 -0.446,-1 -1,-1 z m 1.90625,0.7188 1.78125,2.1562 1.78125,-2.1562 1.53125,1.2812 
-2.03125,2.4375 2.03125,2.4688 -1.53125,1.2812 -1.78125,-2.1562 -1.78125,2.1562 -1.53125,-1.2812 
2.03125,-2.4688 -2.03125,-2.4375 z"
+           style="fill:#bebebe;fill-opacity:1;stroke:none"
+           inkscape:connector-curvature="0" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-layer-down.svg b/icons/Symbolic/scalable/gimp-layer-down.svg
new file mode 100644
index 0000000..4dea452
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-layer-down.svg
@@ -0,0 +1,176 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb";
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-layer-down.svg">
+  <defs
+     id="defs30573">
+    <linearGradient
+       id="linearGradient19282"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,378.84797,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284"
+         style="stop-color:#505050;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient19282-1"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,356.69172,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284-8"
+         style="stop-color:#505050;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient19282-2"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,356.69172,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284-1"
+         style="stop-color:#666666;stop-opacity:1" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="4.5060506"
+     inkscape:cx="-26.611894"
+     inkscape:cy="14.988086"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:snap-page="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:object-nodes="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:snap-object-midpoints="true"
+     inkscape:snap-center="true"
+     inkscape:snap-text-baseline="true"
+     showborder="false"
+     inkscape:window-width="1920"
+     inkscape:window-height="1016"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1"
+     inkscape:snap-global="false"
+     showguides="false" />
+  <metadata
+     id="metadata30576">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>
+          image/svg+xml
+        </dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Klaus Staedtler       </dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1036.3622)">
+    <g
+       id="g3948">
+      <g
+         id="g3964">
+        <g
+           id="g4023">
+          <g
+             id="g4017">
+            <g
+               id="g3992">
+              <rect
+                 rx="0"
+                 y="1036.3622"
+                 x="0"
+                 height="16"
+                 width="16"
+                 id="rect28186-4"
+                 style="fill:none;stroke:none" />
+              <rect
+                 y="1036.3622"
+                 x="0"
+                 height="16"
+                 width="16"
+                 id="rect6884"
+                 style="opacity:0.3;fill:none;stroke:none" />
+              <g
+                 inkscape:label="gimp-layers"
+                 id="gimp-layers"
+                 style="display:inline"
+                 transform="translate(-41.000198,597.3622)">
+                <rect
+                   style="fill:none;stroke:none"
+                   id="rect11958"
+                   width="16"
+                   height="16"
+                   x="41.000198"
+                   y="439" />
+              </g>
+              <path
+                 style="fill:#bebebe"
+                 d="m 15.949219,10.019531 -5.8125,0.02734 L 8.1875,11.988281 6.2578125,10.066406 
4.0273438,10.076172 0,16 h 11.960938 z"
+                 transform="translate(0,1036.3622)"
+                 id="path8"
+                 inkscape:connector-curvature="0" />
+            </g>
+          </g>
+          <g
+             id="g4019" />
+        </g>
+        <g
+           transform="matrix(1,0,0,-1,-105,1659.7244)"
+           id="g3984">
+          <path
+             inkscape:connector-curvature="0"
+             id="path19385"
+             d="m 112,617.15053 h 2 v -2.00001 h 2 l -3,-2.98832 -3,2.98832 h 2 z"
+             style="fill:#bebebe;fill-opacity:1;stroke:none"
+             sodipodi:nodetypes="cccccccc" />
+        </g>
+      </g>
+      <path
+         style="opacity:0.3;fill:#bebebe"
+         inkscape:connector-curvature="0"
+         id="path8-8"
+         d="M 4.02739,1036.7404 0,1042.6651 h 11.961698 l 3.987233,-5.9808 z"
+         sodipodi:nodetypes="ccccc" />
+    </g>
+  </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-layer-group-new.svg 
b/icons/Symbolic/scalable/gimp-layer-group-new.svg
new file mode 100644
index 0000000..569c26f
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-layer-group-new.svg
@@ -0,0 +1,138 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb";
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-layer-group-new.svg">
+  <defs
+     id="defs30573">
+    <linearGradient
+       id="linearGradient19282"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,356.69172,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284"
+         style="stop-color:#006666;stop-opacity:1;" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="7.8856883"
+     inkscape:cx="-7.7067406"
+     inkscape:cy="6.6316579"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:snap-page="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:object-nodes="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:snap-object-midpoints="true"
+     inkscape:snap-center="true"
+     inkscape:snap-text-baseline="true"
+     showborder="false"
+     inkscape:window-width="1920"
+     inkscape:window-height="1016"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata30576">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>
+          image/svg+xml
+        </dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Klaus Staedtler       </dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1036.3622)">
+    <g
+       id="g3938">
+      <g
+         inkscape:label="#new_layer"
+         id="layer-new"
+         transform="translate(-105,509.00002)">
+        <rect
+           style="fill:none;fill-opacity:1;stroke:none"
+           id="rect10817"
+           width="16"
+           height="16"
+           x="105"
+           y="15"
+           transform="translate(0,512.36218)"
+           rx="0"
+           ry="1" />
+        <path
+           sodipodi:nodetypes="ccccc"
+           inkscape:connector-curvature="0"
+           id="path11591"
+           d="m 106,542.36218 3,-3 h 11 l -3,3 z"
+           style="fill:#bebebe;fill-opacity:0.99607843;stroke:none" />
+        <g
+           transform="translate(0,0.99999977)"
+           id="g3862">
+          <rect
+             ry="0"
+             y="526.36218"
+             x="114"
+             height="7.9999976"
+             width="2"
+             id="rect11686"
+             style="fill:#bebebe;fill-opacity:0.99607843;stroke:none" />
+          <rect
+             y="529.36218"
+             x="111"
+             height="2"
+             width="8"
+             id="rect11688"
+             style="fill:#bebebe;fill-opacity:0.99607843;stroke:none" />
+        </g>
+      </g>
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path11591-96"
+         d="m 1,1048.3622 3,-3 h 11 l -3,3 z"
+         style="fill:#bebebe;fill-opacity:0.99607843;stroke:none" />
+    </g>
+  </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-layer-new.svg b/icons/Symbolic/scalable/gimp-layer-new.svg
new file mode 100644
index 0000000..a1c0ca6
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-layer-new.svg
@@ -0,0 +1,170 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb";
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-layer-new.svg">
+  <defs
+     id="defs30573">
+    <linearGradient
+       id="linearGradient19282"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,378.84797,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284"
+         style="stop-color:#505050;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient19282-1"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,356.69172,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284-8"
+         style="stop-color:#505050;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient19282-2"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,356.69172,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284-1"
+         style="stop-color:#666666;stop-opacity:1" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="4.5060506"
+     inkscape:cx="5.7329763"
+     inkscape:cy="7.488086"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:snap-page="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:object-nodes="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:snap-object-midpoints="true"
+     inkscape:snap-center="true"
+     inkscape:snap-text-baseline="true"
+     showborder="false"
+     inkscape:window-width="1558"
+     inkscape:window-height="761"
+     inkscape:window-x="292"
+     inkscape:window-y="27"
+     inkscape:window-maximized="0"
+     inkscape:snap-global="false"
+     showguides="false" />
+  <metadata
+     id="metadata30576">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>
+          image/svg+xml
+        </dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Klaus Staedtler       </dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1036.3622)">
+    <g
+       id="g4023">
+      <g
+         id="g4017">
+        <g
+           id="g3992">
+          <rect
+             rx="0"
+             y="1036.3622"
+             x="0"
+             height="16"
+             width="16"
+             id="rect28186-4"
+             style="fill:none;stroke:none" />
+          <rect
+             y="1036.3622"
+             x="0"
+             height="16"
+             width="16"
+             id="rect6884"
+             style="opacity:0.3;fill:none;stroke:none" />
+          <g
+             inkscape:label="gimp-layers"
+             id="gimp-layers"
+             style="display:inline"
+             transform="translate(-41.000198,597.3622)">
+            <rect
+               style="fill:none;stroke:none"
+               id="rect11958"
+               width="16"
+               height="16"
+               x="41.000198"
+               y="439" />
+          </g>
+          <path
+             sodipodi:nodetypes="ccccc"
+             d="M 4.02739,1046.4375 0,1052.3622 h 11.961698 l 3.987233,-5.9808 z"
+             id="path8"
+             inkscape:connector-curvature="0"
+             style="fill:#bebebe" />
+        </g>
+      </g>
+      <g
+         id="g4019">
+        <rect
+           style="fill:#bebebe;fill-opacity:1;stroke:none"
+           id="rect11686"
+           width="1.9701493"
+           height="7.8805947"
+           x="8.8656712"
+           y="1037.5861"
+           ry="0" />
+        <rect
+           style="fill:#bebebe;fill-opacity:1;stroke:none"
+           id="rect11688"
+           width="7.8805971"
+           height="1.9701493"
+           x="5.9104476"
+           y="1040.5413" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-layer-up.svg b/icons/Symbolic/scalable/gimp-layer-up.svg
new file mode 100644
index 0000000..ac99661
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-layer-up.svg
@@ -0,0 +1,153 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb";
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-layer-up.svg">
+  <defs
+     id="defs30573">
+    <linearGradient
+       id="linearGradient19282"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,378.84797,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284"
+         style="stop-color:#505050;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient19282-1"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,356.69172,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284-8"
+         style="stop-color:#505050;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient19282-2"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,356.69172,1794.4958)">
+      <stop
+         offset="0"
+         id="stop19284-1"
+         style="stop-color:#666666;stop-opacity:1" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.35739481"
+     inkscape:cx="-11.24326"
+     inkscape:cy="6.0455811"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:snap-page="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:object-nodes="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:snap-object-midpoints="true"
+     inkscape:snap-center="true"
+     inkscape:snap-text-baseline="true"
+     showborder="false"
+     inkscape:window-width="1558"
+     inkscape:window-height="761"
+     inkscape:window-x="292"
+     inkscape:window-y="27"
+     inkscape:window-maximized="0"
+     inkscape:snap-global="false"
+     showguides="false" />
+  <metadata
+     id="metadata30576">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>
+          image/svg+xml
+        </dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Klaus Staedtler       </dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1036.3622)">
+    <g
+       id="g3967">
+      <g
+         transform="matrix(1.0031839,0,0,1.0012225,0,-1.286508)"
+         id="g3960">
+        <g
+           id="g4023"
+           transform="translate(0,6.875)">
+          <g
+             id="g4017">
+            <g
+               id="g3992">
+              <g
+                 inkscape:label="gimp-layers"
+                 id="gimp-layers"
+                 style="display:inline"
+                 transform="translate(-41.000198,597.3622)" />
+              <path
+                 inkscape:connector-curvature="0"
+                 style="fill:#bebebe"
+                 d="M 15.949219,0.01953125 4.0273438,0.07617187 0,6 H 6.0292969 L 8,4.0371094 9.9707031,6 h 
1.9902349 z"
+                 transform="translate(0,1029.4872)"
+                 id="path8" />
+            </g>
+          </g>
+        </g>
+        <g
+           transform="translate(-105,429.00001)"
+           id="g3984">
+          <path
+             inkscape:connector-curvature="0"
+             id="path19385"
+             d="m 112,617.56927 h 2 v -2.00001 h 2 l -3,-2.98832 -3,2.98832 h 2 z"
+             style="fill:#bebebe;fill-opacity:1;stroke:none"
+             sodipodi:nodetypes="cccccccc" />
+        </g>
+      </g>
+      <path
+         style="opacity:0.3;fill:#bebebe"
+         inkscape:connector-curvature="0"
+         id="path8-2"
+         d="M 4.02739,1046.4375 0,1052.3622 h 11.961698 l 3.987233,-5.9808 z"
+         sodipodi:nodetypes="ccccc" />
+    </g>
+  </g>
+</svg>
diff --git a/icons/icon-list.mk b/icons/icon-list.mk
index ecda018..8e07e26 100644
--- a/icons/icon-list.mk
+++ b/icons/icon-list.mk
@@ -109,7 +109,12 @@ scalable_images = \
        scalable/gimp-layer-mask.svg                    \
        scalable/gimp-layers.svg                        \
        scalable/gimp-layer.svg                         \
+       scalable/gimp-layer-delete.svg                  \
+       scalable/gimp-layer-down.svg                    \
+       scalable/gimp-layer-group-new.svg               \
+       scalable/gimp-layer-new.svg                     \
        scalable/gimp-layer-to-imagesize.svg            \
+       scalable/gimp-layer-up.svg                      \
        scalable/gimp-letter-spacing.svg                \
        scalable/gimp-line-spacing.svg                  \
        scalable/gimp-linked.svg                        \
@@ -532,10 +537,15 @@ icons16_images = \
        16/gimp-join-miter.png                          \
        16/gimp-join-round.png                          \
        16/gimp-landscape.png                           \
-       16/gimp-layer-mask.png                          \
-       16/gimp-layer-to-imagesize.png                  \
        16/gimp-layer.png                               \
+       16/gimp-layer-delete.png                        \
+       16/gimp-layer-down.png                          \
+       16/gimp-layer-group-new.png                     \
+       16/gimp-layer-mask.png                          \
+       16/gimp-layer-new.png                           \
        16/gimp-layers.png                              \
+       16/gimp-layer-to-imagesize.png                  \
+       16/gimp-layer-up.png                            \
        16/gimp-list.png                                \
        16/gimp-merge-down.png                          \
        16/gimp-move-to-screen.png                      \
diff --git a/libgimpwidgets/gimpicons.c b/libgimpwidgets/gimpicons.c
index 14ee7b9..42abbbb 100644
--- a/libgimpwidgets/gimpicons.c
+++ b/libgimpwidgets/gimpicons.c
@@ -195,6 +195,12 @@ static const GtkStockItem gimp_stock_items[] =
 
   { GIMP_STOCK_IMAGE,                    NULL,        0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_LAYER,                    NULL,        0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_LAYER_DELETE,             NULL,        0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_LAYER_DOWN,               NULL,        0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_LAYER_GROUP_NEW,          NULL,        0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_LAYER_MASK,               NULL,        0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_LAYER_NEW,                NULL,        0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_LAYER_UP,                 NULL,        0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_TEXT_LAYER,               NULL,        0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_FLOATING_SELECTION,       NULL,        0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_CHANNEL,                  NULL,        0, 0, LIBGIMP_DOMAIN },
@@ -204,7 +210,6 @@ static const GtkStockItem gimp_stock_items[] =
   { GIMP_STOCK_CHANNEL_GRAY,             NULL,        0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_CHANNEL_INDEXED,          NULL,        0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_CHANNEL_ALPHA,            NULL,        0, 0, LIBGIMP_DOMAIN },
-  { GIMP_STOCK_LAYER_MASK,               NULL,        0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_PATH,                     NULL,        0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_TEMPLATE,                 NULL,        0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_COLORMAP,                 NULL,        0, 0, LIBGIMP_DOMAIN },
diff --git a/libgimpwidgets/gimpicons.h b/libgimpwidgets/gimpicons.h
index 60b0a9a..31f40cb 100644
--- a/libgimpwidgets/gimpicons.h
+++ b/libgimpwidgets/gimpicons.h
@@ -213,6 +213,11 @@ G_BEGIN_DECLS
 
 #define GIMP_STOCK_IMAGE                    "gimp-image"
 #define GIMP_STOCK_LAYER                    "gimp-layer"
+#define GIMP_STOCK_LAYER_DELETE             "gimp-layer-delete"
+#define GIMP_STOCK_LAYER_DOWN               "gimp-layer-down"
+#define GIMP_STOCK_LAYER_GROUP_NEW          "gimp-layer-group-new"
+#define GIMP_STOCK_LAYER_NEW                "gimp-layer-new"
+#define GIMP_STOCK_LAYER_UP                 "gimp-layer-up"
 #define GIMP_STOCK_TEXT_LAYER               "gimp-text-layer"
 #define GIMP_STOCK_FLOATING_SELECTION       "gimp-floating-selection"
 #define GIMP_STOCK_CHANNEL                  "gimp-channel"


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]