[gimp] icons: Bug 759904



commit 3842c581695791ce906f163ac1250cfd5dc60443
Author: klausstaedtler <staedtler-przyborski web de>
Date:   Sun Jun 5 20:22:03 2016 +0200

    icons: Bug 759904
    
    add
    gimp-image-open
    gimp-image-reload
    gimp-close-all
    gimp-save-as
    gimp-quit
    gimp-file-manager
    gimp-clipboard
    
    patch
    file-actions.c

 app/actions/file-actions.c                      |   16 +-
 icons/Color/16/gimp-clipboard.png               |  Bin 0 -> 575 bytes
 icons/Color/16/gimp-close-all.png               |  Bin 0 -> 845 bytes
 icons/Color/16/gimp-file-manager.png            |  Bin 0 -> 745 bytes
 icons/Color/16/gimp-image-open.png              |  Bin 0 -> 712 bytes
 icons/Color/16/gimp-image-reload.png            |  Bin 0 -> 814 bytes
 icons/Color/16/gimp-quit.png                    |  Bin 0 -> 690 bytes
 icons/Color/16/gimp-save-as.png                 |  Bin 0 -> 795 bytes
 icons/Color/scalable/gimp-clipboard.svg         |  330 ++++++++++++++++++++
 icons/Color/scalable/gimp-close-all.svg         |  256 ++++++++++++++++
 icons/Color/scalable/gimp-file-manager.svg      |  321 ++++++++++++++++++++
 icons/Color/scalable/gimp-image-open.svg        |  367 +++++++++++++++++++++++
 icons/Color/scalable/gimp-image-reload.svg      |  225 ++++++++++++++
 icons/Color/scalable/gimp-paste-as-new.svg      |  100 +------
 icons/Color/scalable/gimp-paste-into.svg        |   33 +--
 icons/Color/scalable/gimp-quit.svg              |  107 +++++++
 icons/Color/scalable/gimp-save-as.svg           |  266 ++++++++++++++++
 icons/Prototype/Color/16/gimp-image-open.png    |  Bin 855 -> 0 bytes
 icons/Prototype/Symbolic/16/gimp-image-open.png |  Bin 668 -> 0 bytes
 icons/Symbolic/16/gimp-clipboard.png            |  Bin 0 -> 481 bytes
 icons/Symbolic/16/gimp-close-all.png            |  Bin 0 -> 555 bytes
 icons/Symbolic/16/gimp-file-manager.png         |  Bin 0 -> 390 bytes
 icons/Symbolic/16/gimp-image-open.png           |  Bin 0 -> 519 bytes
 icons/Symbolic/16/gimp-quit.png                 |  Bin 0 -> 639 bytes
 icons/Symbolic/16/gimp-save-as.png              |  Bin 0 -> 480 bytes
 icons/Symbolic/scalable/gimp-clipboard.svg      |  192 ++++++++++++
 icons/Symbolic/scalable/gimp-close-all.svg      |  216 +++++++++++++
 icons/Symbolic/scalable/gimp-file-manager.svg   |   75 +++++
 icons/Symbolic/scalable/gimp-image-open.svg     |  126 ++++++++
 icons/Symbolic/scalable/gimp-image-reload.svg   |  201 +++++++++++++
 icons/Symbolic/scalable/gimp-quit.svg           |  115 +++++++
 icons/Symbolic/scalable/gimp-save-as.svg        |  179 +++++++++++
 icons/icon-list.mk                              |   14 +
 libgimpwidgets/gimpicons.c                      |    8 +
 libgimpwidgets/gimpicons.h                      |    9 +
 35 files changed, 3027 insertions(+), 129 deletions(-)
---
diff --git a/app/actions/file-actions.c b/app/actions/file-actions.c
index 25f4087..5f9e16f 100644
--- a/app/actions/file-actions.c
+++ b/app/actions/file-actions.c
@@ -72,7 +72,7 @@ static const GimpActionEntry file_actions[] =
   { "file-create-menu",      NULL, NC_("file-action", "Crea_te")      },
   { "file-open-recent-menu", NULL, NC_("file-action", "Open _Recent") },
 
-  { "file-open", "document-open",
+  { "file-open", GIMP_STOCK_IMAGE_OPEN,
     NC_("file-action", "_Open..."), "<primary>O",
     NC_("file-action", "Open an image file"),
     G_CALLBACK (file_open_cmd_callback),
@@ -96,31 +96,31 @@ static const GimpActionEntry file_actions[] =
     G_CALLBACK (file_create_template_cmd_callback),
     GIMP_HELP_FILE_CREATE_TEMPLATE },
 
-  { "file-revert", "document-revert",
+  { "file-revert", GIMP_STOCK_IMAGE_RELOAD,
     NC_("file-action", "Re_vert"), NULL,
     NC_("file-action", "Reload the image file from disk"),
     G_CALLBACK (file_revert_cmd_callback),
     GIMP_HELP_FILE_REVERT },
 
-  { "file-close-all", "window-close",
+  { "file-close-all", GIMP_STOCK_CLOSE_ALL,
     NC_("file-action", "Close all"), "<primary><shift>W",
     NC_("file-action", "Close all opened images"),
     G_CALLBACK (file_close_all_cmd_callback),
     GIMP_HELP_FILE_CLOSE_ALL },
 
-  { "file-copy-location", "edit-copy",
+  { "file-copy-location", GIMP_STOCK_CLIPBOARD
     NC_("file-action", "Copy _Image Location"), NULL,
     NC_("file-action", "Copy image file location to clipboard"),
     G_CALLBACK (file_copy_location_cmd_callback),
     GIMP_HELP_FILE_COPY_LOCATION },
 
-  { "file-show-in-file-manager", "gtk-directory",
+  { "file-show-in-file-manager", GIMP_STOCK_FILE_MANAGER
     NC_("file-action", "Show in _File Manager"), "<primary><alt>F",
     NC_("file-action", "Show image file location in the file manager"),
     G_CALLBACK (file_show_in_file_manager_cmd_callback),
     GIMP_HELP_FILE_SHOW_IN_FILE_MANAGER },
 
-  { "file-quit", "application-exit",
+  { "file-quit", GIMP_STOCK_QUIT,
     NC_("file-action", "_Quit"), "<primary>Q",
     NC_("file-action", "Quit the GNU Image Manipulation Program"),
     G_CALLBACK (file_quit_cmd_callback),
@@ -129,13 +129,13 @@ static const GimpActionEntry file_actions[] =
 
 static const GimpEnumActionEntry file_save_actions[] =
 {
-  { "file-save", "document-save",
+  { "file-save", GIMP_STOCK_SAVE,
     NC_("file-action", "_Save"), "<primary>S",
     NC_("file-action", "Save this image"),
     GIMP_SAVE_MODE_SAVE, FALSE,
     GIMP_HELP_FILE_SAVE },
 
-  { "file-save-as", "document-save-as",
+  { "file-save-as", GIMP_STOCK_SAVE_AS,
     NC_("file-action", "Save _As..."), "<primary><shift>S",
     NC_("file-action", "Save this image with a different name"),
     GIMP_SAVE_MODE_SAVE_AS, FALSE,
diff --git a/icons/Color/16/gimp-clipboard.png b/icons/Color/16/gimp-clipboard.png
new file mode 100644
index 0000000..563cc8b
Binary files /dev/null and b/icons/Color/16/gimp-clipboard.png differ
diff --git a/icons/Color/16/gimp-close-all.png b/icons/Color/16/gimp-close-all.png
new file mode 100644
index 0000000..862bf1e
Binary files /dev/null and b/icons/Color/16/gimp-close-all.png differ
diff --git a/icons/Color/16/gimp-file-manager.png b/icons/Color/16/gimp-file-manager.png
new file mode 100644
index 0000000..8c4f944
Binary files /dev/null and b/icons/Color/16/gimp-file-manager.png differ
diff --git a/icons/Color/16/gimp-image-open.png b/icons/Color/16/gimp-image-open.png
new file mode 100644
index 0000000..0d1430f
Binary files /dev/null and b/icons/Color/16/gimp-image-open.png differ
diff --git a/icons/Color/16/gimp-image-reload.png b/icons/Color/16/gimp-image-reload.png
new file mode 100644
index 0000000..e342c4b
Binary files /dev/null and b/icons/Color/16/gimp-image-reload.png differ
diff --git a/icons/Color/16/gimp-quit.png b/icons/Color/16/gimp-quit.png
new file mode 100644
index 0000000..8e4e6b1
Binary files /dev/null and b/icons/Color/16/gimp-quit.png differ
diff --git a/icons/Color/16/gimp-save-as.png b/icons/Color/16/gimp-save-as.png
new file mode 100644
index 0000000..65b7ac8
Binary files /dev/null and b/icons/Color/16/gimp-save-as.png differ
diff --git a/icons/Color/scalable/gimp-clipboard.svg b/icons/Color/scalable/gimp-clipboard.svg
new file mode 100644
index 0000000..79d9cb6
--- /dev/null
+++ b/icons/Color/scalable/gimp-clipboard.svg
@@ -0,0 +1,330 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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: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";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-clipboard.svg">
+  <defs
+     id="defs30573">
+    <linearGradient
+       id="linearGradient19282"
+       osb:paint="solid"
+       gradientTransform="matrix(1.2178615,0,0,1.043881,356.69172,1794.4958)">
+      <stop
+         style="stop-color:#666666;stop-opacity:1;"
+         offset="0"
+         id="stop19284" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5148">
+      <stop
+         id="stop5150"
+         stop-color="#d0d0d0" />
+      <stop
+         offset="1"
+         id="stop5152"
+         stop-color="#ececec" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14484"
+       id="linearGradient14490"
+       x1="6.1071744"
+       y1="10.45129"
+       x2="33.857143"
+       y2="37.87986"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient14484">
+      <stop
+         style="stop-color:#c68827;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop14486" />
+      <stop
+         style="stop-color:#89601f;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop14488" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient15218">
+      <stop
+         style="stop-color:#f0f0ef;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop15220" />
+      <stop
+         id="stop2269"
+         offset="0.59928656"
+         style="stop-color:#e8e8e8;stop-opacity:1;" />
+      <stop
+         id="stop2267"
+         offset="0.82758623"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         style="stop-color:#d8d8d3;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop15222" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2259"
+       id="linearGradient2265"
+       x1="26.076092"
+       y1="26.696676"
+       x2="30.811172"
+       y2="42.007351"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.95292569,0,0,0.94435365,1.0888961,2.0575967)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2259">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop2261" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop2263" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient15234"
+       id="linearGradient15240"
+       x1="25.404572"
+       y1="3.8180194"
+       x2="25.464211"
+       y2="9.3233509"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.052632,0,0,1,-1.789474,0)" />
+    <linearGradient
+       id="linearGradient15234">
+      <stop
+         style="stop-color:#97978a;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop15236" />
+      <stop
+         id="stop15242"
+         offset="0.50000000"
+         style="stop-color:#c2c2b9;stop-opacity:1.0000000;" />
+      <stop
+         style="stop-color:#7d7d6f;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop15238" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient15234"
+       id="linearGradient2283"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.538743,0,0,0.511806,10.8008,-0.58264)"
+       x1="25.404572"
+       y1="3.8180194"
+       x2="25.404572"
+       y2="6.481061" />
+    <linearGradient
+       id="linearGradient2224">
+      <stop
+         style="stop-color:#7c7c7c;stop-opacity:1;"
+         offset="0"
+         id="stop2226" />
+      <stop
+         style="stop-color:#b8b8b8;stop-opacity:1;"
+         offset="1"
+         id="stop2228" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4169-3">
+      <stop
+         id="stop4171"
+         stop-color="#ffffff" />
+      <stop
+         id="stop4177"
+         offset="0.5"
+         stop-color="#e6ff8f"
+         stop-opacity="0.932039" />
+      <stop
+         offset="1"
+         id="stop4173"
+         stop-color="#ff3a20"
+         stop-opacity="0.019417" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="26.807756"
+     inkscape:cx="6.7667315"
+     inkscape:cy="5.2174907"
+     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">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4287" />
+  </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:title></dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Klaus Staedtler</dc:title>
+          </cc:Agent>
+        </dc:creator>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1036.3622)">
+    <g
+       style="display:inline"
+       id="gimp-layer"
+       inkscape:export-xdpi="269.99994"
+       inkscape:export-ydpi="269.99994"
+       transform="translate(6.6912468e-8,1036.3622)">
+      <rect
+         y="0.20775324"
+         x="0.20775312"
+         height="15.584494"
+         width="15.584494"
+         id="rect4002"
+         
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;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:#000000;stroke-width:0.41550624;stroke-linecap:round;stroke-linejoin:miter;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"
 />
+    </g>
+    <g
+       id="g3216"
+       transform="matrix(0.40030051,0,0,0.34721775,-1.6000704,1036.3619)">
+      <rect
+         ry="1.3879364"
+         rx="1.3879371"
+         y="4.5"
+         x="4.4643173"
+         height="41.045437"
+         width="39.035683"
+         id="rect12368"
+         
style="opacity:1;fill:url(#linearGradient14490);fill-opacity:1;fill-rule:evenodd;stroke:#714c16;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
+      <rect
+         ry="0.55103934"
+         rx="0.55784029"
+         y="7.6848006"
+         x="8.5216608"
+         height="34.994312"
+         width="30.477974"
+         id="rect12413"
+         
style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.97867846;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
+      <rect
+         ry="0.98387533"
+         rx="0.98387533"
+         y="0"
+         x="18"
+         height="4"
+         width="12"
+         id="rect13756"
+         
style="opacity:1;fill:#5c5c5c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
+      <rect
+         ry="0"
+         rx="0"
+         y="9.1086941"
+         x="10.158024"
+         height="32.146523"
+         width="27.648327"
+         id="rect15244"
+         
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2265);stroke-width:0.94863045;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
+      <rect
+         ry="0.47879848"
+         rx="0.47879848"
+         y="5.4307775"
+         x="5.4393425"
+         height="39.092987"
+         width="37.085655"
+         id="rect15974"
+         
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c68827;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
+      <rect
+         
style="opacity:0.10795456;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="rect2208"
+         width="18.947376"
+         height="7"
+         x="14.791488"
+         y="4.4722719"
+         rx="1.3879377"
+         ry="1.3879364" />
+      <rect
+         
style="opacity:1;fill:url(#linearGradient15240);fill-opacity:1;fill-rule:evenodd;stroke:#5c5c5c;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="rect2285"
+         width="18.947376"
+         height="7"
+         x="14.526322"
+         y="3.5"
+         rx="1.3879377"
+         ry="1.3879364" />
+      <rect
+         
style="opacity:1;fill:url(#linearGradient2283);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="rect2281"
+         width="9.6973763"
+         height="3.5826404"
+         x="19.151323"
+         y="1.2086792"
+         rx="0.32543635"
+         ry="0.32543635" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc"
+         id="path2212"
+         d="m 38.484935,36.572053 0.04419,5.919851 -7.646606,-0.902998 z"
+         
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.48863639;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
 />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc"
+         id="path2210"
+         d="m 30.059082,42.086864 c 1.791141,0.167652 8.456356,-3.188725 8.947469,-7.207148 
-3.696746,0.490779 -4.314906,0.143624 -8.423664,0.302634 0,0 0.288695,6.404514 -0.523805,6.904514 z"
+         
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#868a84;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
 />
+    </g>
+  </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-close-all.svg b/icons/Color/scalable/gimp-close-all.svg
new file mode 100644
index 0000000..9711f8d
--- /dev/null
+++ b/icons/Color/scalable/gimp-close-all.svg
@@ -0,0 +1,256 @@
+<?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";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-close-all.svg">
+  <defs
+     id="defs30573">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2065">
+      <stop
+         style="stop-color:#555753"
+         offset="0"
+         id="stop2067" />
+      <stop
+         style="stop-color:#fcaf3e"
+         offset="1"
+         id="stop2069" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4928">
+      <stop
+         id="stop4930"
+         offset="0"
+         style="stop-color:#fce94f;stop-opacity:1;" />
+      <stop
+         id="stop4932"
+         offset="1"
+         style="stop-color:#fce94f;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4616">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4618" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop4620" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4928"
+       id="radialGradient4915-6"
+       cx="-6.0070167"
+       cy="32.837029"
+       fx="-6.0070167"
+       fy="32.837029"
+       r="9.90625"
+       gradientTransform="matrix(0.462962,0,0,0.44272,14.86446,6.713194)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2065"
+       id="linearGradient4045"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.462962,0,0,0.466802,21.0145,5.928547)"
+       x1="-11.986486"
+       y1="13.122552"
+       x2="-11.986486"
+       y2="29.726542" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4616"
+       id="linearGradient4047"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.462962,0,0,0.461866,4.347921,5.985305)"
+       x1="25.355263"
+       y1="34.006802"
+       x2="25.355263"
+       y2="32.409008" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="21.73877"
+     inkscape:cx="9.7343465"
+     inkscape:cy="12.273932"
+     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="grid4277" />
+  </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="g4335">
+      <g
+         transform="matrix(1.0019641,0,0,1.024312,0.00852164,-24.307233)"
+         id="g3976-3-4">
+        <g
+           transform="matrix(0.69565065,0,0,0.80000484,24.148475,1040.5518)"
+           id="g4028-9-9">
+          <g
+             transform="translate(-38.71351,-12.237062)"
+             id="g2403-3-0">
+            <path
+               id="rect2063-4-2"
+               transform="matrix(1.4346853,0,0,1.2203239,3.9877753,5.9154639)"
+               d="M 5.734375 4.4101562 L 7.6308594 6.2148438 A 0.90577965 0.90395022 2.7469447 1 1 6.3808594 
7.5234375 L 4.03125 5.2851562 L 2.3476562 7.0683594 L 2.3476562 13.423828 C 2.3476562 13.515562 2.4120218 
13.589844 2.4902344 13.589844 L 13.509766 13.589844 C 13.587978 13.589844 13.652344 13.515562 13.652344 
13.423828 L 13.652344 4.5761719 C 13.652344 4.4844382 13.587978 4.4101562 13.509766 4.4101562 L 5.734375 
4.4101562 z "
+               
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:0.75575954;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
+          </g>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.99999942,0,0,1.0000436,1.627693e-6,-0.04588736)"
+         id="g4138" />
+      <g
+         transform="matrix(1.0019641,0,0,1.024312,2.0083336,-22.307513)"
+         id="g3976-3">
+        <g
+           transform="matrix(0.69565065,0,0,0.80000484,24.148475,1040.5518)"
+           id="g4028-9">
+          <g
+             transform="translate(-38.71351,-12.237062)"
+             id="g2403-3">
+            <g
+               id="g3799-7"
+               transform="matrix(0.557846,0,0,0.461866,-85.36183,64.50698)"
+               inkscape:r_cx="true"
+               inkscape:r_cy="true"
+               style="opacity:0.58241763" />
+            <rect
+               
style="opacity:1;fill:url(#linearGradient4045);fill-opacity:1;stroke:#888a85;stroke-width:0.99999893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+               id="rect2063-4"
+               width="16.216183"
+               height="11.203236"
+               x="7.3571453"
+               y="11.296763"
+               rx="0.20254599"
+               ry="0.20206636" />
+            <path
+               
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4915-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+               d="m 11.79411,16.401215 c -2.392951,0.151471 -4.296871,2.150075 -4.296871,4.575364 0,0.09366 
0.00889,0.181964 0.014468,0.274234 h 9.143509 c 0.0056,-0.09227 0.01447,-0.180574 0.01447,-0.274234 
0,-2.523879 -2.056354,-4.575364 -4.586223,-4.575364 -0.09882,0 -0.192077,-0.0062 -0.289351,0 z"
+               id="path4898-0"
+               inkscape:r_cx="true"
+               inkscape:r_cy="true"
+               inkscape:connector-curvature="0" />
+            <rect
+               
style="opacity:1;fill:url(#linearGradient4047);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+               id="rect1324-7"
+               width="15.740722"
+               height="0.92373294"
+               x="7.5886593"
+               y="21.226898"
+               rx="0"
+               ry="0" />
+            <path
+               
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+               d="m 18.031043,21.675958 c 0,0 -0.257213,-1.424098 -0.257213,-2.296525 0.0071,-0.39799 
3.604954,-3.498458 3.614237,-3.960285 l -0.836462,0.727219 -0.585726,-1.589717 1.974613,0.204118 
0.925925,-0.923733 -1.048689,0.768044 -0.360661,-0.08165 -0.4425,-1.610129 0.22506,1.569306 -1.63441,-0.08165 
0.511509,1.29875 -1.416971,-1.400809 1.498813,1.949752 c 3.7e-5,0.43486 -2.954107,3.089518 -2.949079,2.631777 
L 16.024282,17.241 l -0.102301,-2.216308 0.925925,-0.263924 0.811179,-1.99555 -1.069313,1.844378 
-0.834796,-0.03774 -1.868696,-1.574507 -2.565841,-0.979767 2.192051,1.201894 -1.757172,0.155689 h 2.314813 l 
1.388887,1.385599 0.163681,2.393383 -2.478493,-2.393383 1.042268,1.250322 -1.505231,1.05901 
1.653439,-0.923733 2.615524,3.286696 -0.1023,2.242895 h 1.183137 z"
+               id="path2079-2"
+               sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc"
+               inkscape:connector-curvature="0" />
+            <path
+               inkscape:r_cy="true"
+               inkscape:r_cx="true"
+               id="path4924-8"
+               d="m 11.925565,18.563623 c -1.305803,0.08266 -2.344749,1.17327 -2.344749,2.49672 0,0.05111 
0.00485,0.0993 0.00789,0.149646 h 4.989498 c 0.003,-0.05035 0.0079,-0.09854 0.0079,-0.149646 0,-1.377249 
-1.122129,-2.49672 -2.502647,-2.49672 -0.05393,0 -0.104814,-0.0034 -0.157896,0 z"
+               
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#fef39e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+               inkscape:connector-curvature="0" />
+            <path
+               
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#fffbd7;fill-opacity:0.55681817;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+               d="m 11.963041,19.163267 c -0.995873,0.06304 -1.788226,0.894796 -1.788226,1.904128 0,0.03898 
0.0037,0.07573 0.006,0.114127 h 3.805249 c 0.0023,-0.0384 0.006,-0.07515 0.006,-0.114127 0,-1.050362 
-0.855793,-1.904128 -1.908647,-1.904128 -0.04113,0 -0.07994,-0.0026 -0.12042,0 z"
+               id="path4926-6"
+               inkscape:r_cx="true"
+               inkscape:r_cy="true"
+               inkscape:connector-curvature="0" />
+          </g>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.97708844,-0.02572862,0.02596958,0.97512904,8.7509474,45.595332)"
+         id="g7082">
+        <g
+           id="g7078" />
+      </g>
+      <g
+         transform="matrix(0.97708844,-0.02572862,0.02596958,0.97512904,8.7509474,45.595332)"
+         id="g7082-7">
+        <path
+           inkscape:connector-curvature="0"
+           id="path6388-7-7-4-7"
+           transform="matrix(-0.52318027,-0.52606273,0.52606273,-0.52318027,-31.980627,1027.6939)"
+           d="M 7.9238281,1.0175781 A 1.2480887,1.2480887 0 0 0 6.71875,2.2714844 L 6.7441406,6.7519531 
2.265625,6.75 a 1.2490235,1.2490235 0 1 0 0,2.4980469 h 4.4921875 l 0.025391,4.4941411 a 1.2476247,1.2476247 
0 0 0 2.1621094,0.861328 1.2476247,1.2476247 0 0 0 0.3339844,-0.876954 L 9.2539063,9.2480469 H 13.734375 A 
1.2477951,1.2477951 0 0 0 14.634766,8.8828125 1.2477951,1.2477951 0 0 0 13.734375,6.7539062 L 
9.2402344,6.7519531 9.2148438,2.2597656 A 1.2480887,1.2480887 0 0 0 7.9238281,1.0175781 Z"
+           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:miter;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"
 /

+        <g
+           id="g7078-1" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-file-manager.svg b/icons/Color/scalable/gimp-file-manager.svg
new file mode 100644
index 0000000..327ba92
--- /dev/null
+++ b/icons/Color/scalable/gimp-file-manager.svg
@@ -0,0 +1,321 @@
+<?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";
+   version="1.1"
+   width="16"
+   height="16"
+   id="svg2"
+   viewBox="0 0 16 15.999999"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-file-manager.svg">
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1346"
+     inkscape:window-height="1016"
+     id="namedview1697"
+     showgrid="true"
+     inkscape:zoom="8.734375"
+     inkscape:cx="8"
+     inkscape:cy="-4.7548948"
+     inkscape:window-x="642"
+     inkscape:window-y="460"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="svg2"
+     showguides="false">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4157" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata90">
+    <rdf:RDF>
+      <cc:Work>
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title></dc:title>
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title>many unknown and unnamed, Andrew Chadwick, Alexandre Prokoudine, Aryeom Han, Benoit 
Touchette, Jakub Steiner, Jehan, Johannes Matschke, Kevin Payne, Klaus Staedtler, Marek Dvoroznak, Michael 
Natterer</dc:title>
+          </cc:Agent>
+        </dc:contributor>
+        <dc:description>Enhanced, extended tango-art-libre for GIMP</dc:description>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs7386">
+    <radialGradient
+       r="13"
+       fy="57.5"
+       fx="320"
+       cy="57.5"
+       cx="320"
+       gradientTransform="matrix(0.50035643,0,0,0.40561314,-152.61688,-13.82275)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient5805"
+       xlink:href="#linearGradient4015-7-7-4-9-3-3-4-4"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4015-7-7-4-9-3-3-4-4">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4017-0-8-9-9-0-6-7-8" />
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="1"
+         id="stop4019-0-7-6-9-1-1-6-75" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4390-1-2-7-2"
+       id="linearGradient5756"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.42857145,0,0,0.4166667,-129.14285,-27.95833)"
+       x1="314.9375"
+       y1="76.337502"
+       x2="314.9375"
+       y2="98.224396" />
+    <linearGradient
+       id="linearGradient4390-1-2-7-2"
+       inkscape:collect="always">
+      <stop
+         id="stop4392-5-4-1-97"
+         offset="0"
+         style="stop-color:#babdb6;stop-opacity:1" />
+      <stop
+         id="stop4394-6-5-9-7"
+         offset="1"
+         style="stop-color:#555753;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4390-1-2-7-2"
+       id="linearGradient5759"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.42857145,0,0,0.4166667,-129.14285,-22.95833)"
+       x1="314.9375"
+       y1="75.4375"
+       x2="314.9375"
+       y2="92.073906" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4015-7-7-4-9-3-3-4-4"
+       id="radialGradient5773"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.50035643,0,0,0.40561314,-152.61688,-18.82275)"
+       cx="320"
+       cy="57.5"
+       fx="320"
+       fy="57.5"
+       r="13" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5836"
+       id="radialGradient5776"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.74479232,0,0,0.40561314,-230.83351,-20.82275)"
+       cx="320"
+       cy="57.5"
+       fx="320"
+       fy="57.5"
+       r="13" />
+    <linearGradient
+       id="linearGradient5836"
+       inkscape:collect="always">
+      <stop
+         id="stop5838"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         id="stop5840"
+         offset="1"
+         style="stop-color:#eeeeec;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4063-0-6-3-2"
+       id="linearGradient5780"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.51851926,0,0,0.41551247,-158.42615,-22.51939)"
+       x1="307.62076"
+       y1="58.927143"
+       x2="330.49265"
+       y2="88.158249" />
+    <linearGradient
+       id="linearGradient4063-0-6-3-2">
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="0"
+         id="stop4065-1-5-0-6" />
+      <stop
+         id="stop4075-3-2-8-1"
+         offset="0.29354656"
+         style="stop-color:#eeeeec;stop-opacity:1" />
+      <stop
+         id="stop4073-6-4-7-6"
+         offset="0.58624208"
+         style="stop-color:#babdb6;stop-opacity:1" />
+      <stop
+         id="stop4071-1-2-3-4"
+         offset="0.79022098"
+         style="stop-color:#eeeeec;stop-opacity:1" />
+      <stop
+         style="stop-color:#babdb6;stop-opacity:1"
+         offset="1"
+         id="stop4067-4-8-8-1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4047-8-4-4-4"
+       id="linearGradient5782"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.51851926,0,0,0.41551247,-158.42615,-22.51939)"
+       x1="333.5"
+       y1="94.4375"
+       x2="318.25"
+       y2="53" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4047-8-4-4-4">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop4049-5-7-2-8" />
+      <stop
+         style="stop-color:#babdb6;stop-opacity:1"
+         offset="1"
+         id="stop4051-7-7-2-3" />
+    </linearGradient>
+  </defs>
+  <g
+     id="g4374">
+    <rect
+       y="0.77065057"
+       x="0.77065116"
+       height="14.458698"
+       width="14.458697"
+       id="rect4353"
+       
style="opacity:0;fill:#babdb6;fill-opacity:1;stroke:#babdb6;stroke-width:1.54130232;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
 />
+    <g
+       id="g4351">
+      <g
+         style="display:inline"
+         transform="translate(-349.26361,65.017169)"
+         id="preferences">
+        <g
+           style="enable-background:new"
+           transform="matrix(0.18716422,0,0,0.17557411,341.45688,-65.660281)"
+           id="gimp-prefs-default-comment" />
+      </g>
+      <path
+         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5780);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5782);stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         d="M 3.50002,0.50000003 1.50002,2.5 1.5,15.5 h 13.00002 v -13 l -2,-1.99999997 z"
+         id="rect2846-4-7-4"
+         sodipodi:nodetypes="ccccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.22811674;fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         d="m 2.49997,14.5 h 11.00001 l 4e-5,-12 h -11 z"
+         id="path3802-5-8-5"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient5776);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         d="M 2.50002,2.5 H 13.45837"
+         id="rect2846-7-9-2-4-0"
+         sodipodi:nodetypes="cc"
+         inkscape:connector-curvature="0" />
+      <path
+         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient5773);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         d="m 4.50002,4.5 h 7"
+         id="rect2846-7-9-0-9-9-4-2-1"
+         sodipodi:nodetypes="cc"
+         inkscape:connector-curvature="0" />
+      <g
+         style="display:inline;enable-background:new"
+         id="g5243-54"
+         transform="translate(-349.99998,-172)">
+        <path
+           sodipodi:nodetypes="cc"
+           id="path4185-6-7-7"
+           d="m 356.5,178 h 3"
+           
style="display:inline;fill:none;stroke:#888a85;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="cc"
+           id="path4185-4-7"
+           d="m 356.5,177.5 h 3"
+           
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           inkscape:connector-curvature="0" />
+        <circle
+           transform="matrix(0.81012567,0,0,0.81012611,100.50029,123.41142)"
+           id="path4260-1-4"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
+           cx="316"
+           cy="66.765625"
+           r="1.2343757" />
+      </g>
+      <rect
+         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:url(#linearGradient5759);stroke-width:0.99999964;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         id="rect2846-4-5-0-1-7-0-8-1"
+         width="9"
+         height="5"
+         x="3.50002"
+         y="8.5" />
+      <rect
+         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:url(#linearGradient5756);stroke-width:0.99999964;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         id="rect2846-4-5-0-1-7-0-8"
+         width="9"
+         height="5"
+         x="3.50002"
+         y="3.5" />
+      <path
+         
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient5805);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         d="m 4.50002,9.5 h 7"
+         id="rect2846-7-9-0-9-9-4-2-1-2"
+         sodipodi:nodetypes="cc"
+         inkscape:connector-curvature="0" />
+      <g
+         style="display:inline;enable-background:new"
+         id="g5243-54-7"
+         transform="translate(-349.99998,-167)">
+        <path
+           sodipodi:nodetypes="cc"
+           id="path4185-6-7-7-2"
+           d="m 356.5,178 h 3"
+           
style="display:inline;fill:none;stroke:#888a85;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;enable-background:new"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="cc"
+           id="path4185-4-7-6"
+           d="m 356.5,177.5 h 3"
+           
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
+           inkscape:connector-curvature="0" />
+        <circle
+           transform="matrix(0.81012567,0,0,0.81012611,100.50029,123.41142)"
+           id="path4260-1-4-0"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate"
+           cx="316"
+           cy="66.765625"
+           r="1.2343757" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-image-open.svg b/icons/Color/scalable/gimp-image-open.svg
new file mode 100644
index 0000000..ac4c073
--- /dev/null
+++ b/icons/Color/scalable/gimp-image-open.svg
@@ -0,0 +1,367 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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";
+   width="16px"
+   height="16px"
+   id="svg8597"
+   sodipodi:version="0.32"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="gimp-image-open.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   version="1.1">
+  <defs
+     id="defs8599">
+    <linearGradient
+       id="linearGradient9229"
+       gradientUnits="userSpaceOnUse"
+       x1="71.999496"
+       y1="14.2578"
+       x2="71.999496"
+       y2="19.9583"
+       gradientTransform="matrix(1.0033404,0,0,1,-8.2374684,8)">
+      <stop
+         offset="0.00445589"
+         style="stop-color:#feebd6;stop-opacity:0;"
+         id="stop9231" />
+      <stop
+         id="stop9233"
+         style="stop-color:#f5f5f5;stop-opacity:0.53"
+         offset="0.46138024" />
+      <stop
+         offset="1"
+         style="stop-color:#f5f5f5;stop-opacity:0"
+         id="stop9235" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient9247">
+      <stop
+         style="stop-color:#8fb3d9;stop-opacity:1"
+         offset="0"
+         id="stop9249" />
+      <stop
+         style="stop-color:#3465a4;stop-opacity:1"
+         offset="1"
+         id="stop9251" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient17648">
+      <stop
+         id="stop17650"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:0.6" />
+      <stop
+         id="stop17652"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8591">
+      <stop
+         id="stop8593"
+         offset="0"
+         style="stop-color:#555753;stop-opacity:1" />
+      <stop
+         id="stop8595"
+         offset="1"
+         style="stop-color:#555753;stop-opacity:0" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4809">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1"
+         offset="0"
+         id="stop4811" />
+      <stop
+         style="stop-color:white;stop-opacity:1"
+         offset="1"
+         id="stop4813" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient9766">
+      <stop
+         style="stop-color:#6194cb;stop-opacity:1;"
+         offset="0"
+         id="stop9768" />
+      <stop
+         style="stop-color:#729fcf;stop-opacity:1;"
+         offset="1"
+         id="stop9770" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2807"
+       id="linearGradient2813"
+       x1="34.197105"
+       y1="33.725819"
+       x2="17.160702"
+       y2="17.396523"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.51166,0,0,0.475019,3.220846,5.837432)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2807">
+      <stop
+         style="stop-color:#d3d7cf"
+         offset="0"
+         id="stop2809" />
+      <stop
+         style="stop-color:#eeeeec"
+         offset="1"
+         id="stop2811" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2065"
+       id="linearGradient2071"
+       x1="-11.986486"
+       y1="13.122552"
+       x2="-11.986486"
+       y2="29.726542"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.462962,0,0,0.466802,21.0145,5.928547)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2065">
+      <stop
+         style="stop-color:#555753"
+         offset="0"
+         id="stop2067" />
+      <stop
+         style="stop-color:#fcaf3e"
+         offset="1"
+         id="stop2069" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4928"
+       id="radialGradient4915"
+       cx="-6.0070167"
+       cy="32.837029"
+       fx="-6.0070167"
+       fy="32.837029"
+       r="9.90625"
+       gradientTransform="matrix(0.462962,0,0,0.44272,14.86446,6.713194)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient4928">
+      <stop
+         id="stop4930"
+         offset="0"
+         style="stop-color:#fce94f;stop-opacity:1;" />
+      <stop
+         id="stop4932"
+         offset="1"
+         style="stop-color:#fce94f;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4616"
+       id="linearGradient4622"
+       x1="25.355263"
+       y1="34.006802"
+       x2="25.355263"
+       y2="32.409008"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.462962,0,0,0.461866,4.347921,5.985305)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4616">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4618" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop4620" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9766"
+       id="linearGradient13162"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.34401996,0,0,0.35668095,17.523358,1.5817023)"
+       x1="22.175976"
+       y1="36.987999"
+       x2="22.065331"
+       y2="32.050499" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient17648"
+       id="linearGradient155"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4890371,0,0,0.24548263,-0.38526837,2.0433889)"
+       x1="19.116116"
+       y1="28.946041"
+       x2="19.426924"
+       y2="51.912693" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="26.076374"
+     inkscape:cx="8.2812116"
+     inkscape:cy="3.953589"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="594"
+     inkscape:window-height="428"
+     inkscape:window-x="760"
+     inkscape:window-y="301"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata8602">
+    <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>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <g
+       id="g3183">
+      <g
+         transform="translate(-0.26844223,0)"
+         id="g4005">
+        <g
+           id="g3998"
+           transform="matrix(0.34792613,0,0,0.34792613,-0.34774361,2.0817097)">
+          <path
+             inkscape:r_cy="true"
+             inkscape:r_cx="true"
+             transform="matrix(1.004486,0,0,1.005825,-0.08234449,-0.221964)"
+             d="m 4.6200285,38.651015 c 0.041808,0.420455 0.4973856,0.840909 0.9111553,0.840909 l 
31.1361622,0 c 0.41377,0 0.785732,-0.420454 0.743924,-0.840909 L 34.714653,11.531728 C 34.672845,11.111274 
34.217267,10.69082 33.803498,10.69082 l -12.723416,0 c -0.590546,0 -1.209083,-0.379552 -1.402861,-0.9603351 L 
18.574219,6.4246085 C 18.404967,5.9173308 18.027069,5.6888138 17.259746,5.6888138 l -14.9373272,0 c 
-0.4137696,0 -0.7857312,0.4204542 -0.7439232,0.8409082 l 3.0415329,32.121293 z"
+             id="path2375"
+             
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#5a5a5a;stroke-width:0.99487108;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+             sodipodi:nodetypes="ccccccssssccc"
+             inkscape:connector-curvature="0" />
+        </g>
+        <rect
+           
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;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="rect4001"
+           width="16"
+           height="16"
+           x="0"
+           y="-0.00047515213" />
+      </g>
+      <g
+         transform="matrix(0.52173881,0,0,0.52173881,21.363277,3.5707947)"
+         id="g4028">
+        <g
+           id="g2403"
+           transform="translate(-38.71351,-12.237062)">
+          <g
+             style="opacity:0.58241763"
+             inkscape:r_cy="true"
+             inkscape:r_cx="true"
+             transform="matrix(0.557846,0,0,0.461866,-85.36183,64.50698)"
+             id="g3799" />
+          <rect
+             ry="1.8185979"
+             rx="1.8229138"
+             y="7.4999981"
+             x="4.500001"
+             height="19.00001"
+             width="22.000015"
+             id="rect2073"
+             
style="opacity:1;fill:url(#linearGradient2813);fill-opacity:1;stroke:#8a8a8a;stroke-width:0.99999869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
+          <rect
+             ry="0.20206636"
+             rx="0.20254599"
+             y="11.296763"
+             x="7.3571453"
+             height="11.203236"
+             width="16.216183"
+             id="rect2063"
+             
style="opacity:1;fill:url(#linearGradient2071);fill-opacity:1;stroke:#888a85;stroke-width:0.99999893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
+          <path
+             inkscape:connector-curvature="0"
+             inkscape:r_cy="true"
+             inkscape:r_cx="true"
+             id="path4898"
+             d="m 11.79411,16.401215 c -2.392951,0.151471 -4.296871,2.150075 -4.296871,4.575364 0,0.09366 
0.00889,0.181964 0.014468,0.274234 l 9.143509,0 c 0.0056,-0.09227 0.01447,-0.180574 0.01447,-0.274234 
0,-2.523879 -2.056354,-4.575364 -4.586223,-4.575364 -0.09882,0 -0.192077,-0.0062 -0.289351,0 z"
+             
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4915);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
 />
+          <rect
+             ry="0"
+             rx="0"
+             y="21.226898"
+             x="7.5886593"
+             height="0.92373294"
+             width="15.740722"
+             id="rect1324"
+             
style="opacity:1;fill:url(#linearGradient4622);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
+          <rect
+             ry="1.4227122"
+             rx="1.42609"
+             y="8.4999981"
+             x="5.5000043"
+             height="16.99999"
+             width="20.000008"
+             id="rect2077"
+             
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
+          <path
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc"
+             id="path2079"
+             d="m 18.031043,21.675958 c 0,0 -0.257213,-1.424098 -0.257213,-2.296525 0.0071,-0.39799 
3.604954,-3.498458 3.614237,-3.960285 l -0.836462,0.727219 -0.585726,-1.589717 1.974613,0.204118 
0.925925,-0.923733 -1.048689,0.768044 -0.360661,-0.08165 -0.4425,-1.610129 0.22506,1.569306 -1.63441,-0.08165 
0.511509,1.29875 -1.416971,-1.400809 1.498813,1.949752 c 3.7e-5,0.43486 -2.954107,3.089518 -2.949079,2.631777 
L 16.024282,17.241 l -0.102301,-2.216308 0.925925,-0.263924 0.811179,-1.99555 -1.069313,1.844378 
-0.834796,-0.03774 -1.868696,-1.574507 -2.565841,-0.979767 2.192051,1.201894 -1.757172,0.155689 2.314813,0 
1.388887,1.385599 0.163681,2.393383 -2.478493,-2.393383 1.042268,1.250322 -1.505231,1.05901 
1.653439,-0.923733 2.615524,3.286696 -0.1023,2.242895 1.183137,0 z"
+             
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
 />
+          <path
+             inkscape:connector-curvature="0"
+             
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#fef39e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+             d="m 11.925565,18.563623 c -1.305803,0.08266 -2.344749,1.17327 -2.344749,2.49672 0,0.05111 
0.00485,0.0993 0.00789,0.149646 l 4.989498,0 c 0.003,-0.05035 0.0079,-0.09854 0.0079,-0.149646 0,-1.377249 
-1.122129,-2.49672 -2.502647,-2.49672 -0.05393,0 -0.104814,-0.0034 -0.157896,0 z"
+             id="path4924"
+             inkscape:r_cx="true"
+             inkscape:r_cy="true" />
+          <path
+             inkscape:connector-curvature="0"
+             inkscape:r_cy="true"
+             inkscape:r_cx="true"
+             id="path4926"
+             d="m 11.963041,19.163267 c -0.995873,0.06304 -1.788226,0.894796 -1.788226,1.904128 0,0.03898 
0.0037,0.07573 0.006,0.114127 l 3.805249,0 c 0.0023,-0.0384 0.006,-0.07515 0.006,-0.114127 0,-1.050362 
-0.855793,-1.904128 -1.908647,-1.904128 -0.04113,0 -0.07994,-0.0026 -0.12042,0 z"
+             
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#fffbd7;fill-opacity:0.55681817;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
 />
+        </g>
+      </g>
+      <path
+         inkscape:r_cy="true"
+         inkscape:r_cx="true"
+         
style="color:#000000;display:block;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient13162);fill-opacity:1;fill-rule:nonzero;stroke:#3465a4;stroke-width:0.34792617;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+         d="m 1.6026734,15.675961 c 0.035586,0.0738 0.1067584,0.147586 0.2135167,0.147586 l 11.4587719,0 c 
0.07118,0 0.179291,-0.04408 0.243626,-0.09225 0.182469,-0.136631 0.225285,-0.2137 0.307135,-0.339704 
0.842204,-1.296556 1.997085,-6.7269145 1.997085,-6.7269145 0.03559,-0.073792 -0.03559,-0.1475832 
-0.142345,-0.1475832 l -12.0144292,0 c -0.1067584,0 -0.569685,5.6208557 -1.6729686,6.7304497 l 
-0.4259778,0.428414 0.035586,0 z"
+         id="path2401"
+         sodipodi:nodetypes="cccsscccscc"
+         inkscape:export-filename="/home/jimmac/ximian_art/icons/nautilus/suse93/gnome-fs-directory.png"
+         inkscape:export-xdpi="74.800003"
+         inkscape:export-ydpi="74.800003"
+         inkscape:connector-curvature="0" />
+      <path
+         inkscape:r_cy="true"
+         inkscape:r_cx="true"
+         sodipodi:nodetypes="cccsc"
+         id="path324"
+         d="m 15.377754,8.9135901 -11.4071752,0 c 0,0 -0.7388682,5.5902439 -1.6245558,6.3652799 2.7938126,0 
10.861113,-0.01697 10.867931,-0.01697 0.602605,0 1.688326,-4.40956 2.1638,-6.3483078 z"
+         
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.52272728;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient155);stroke-width:0.34792626px;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+         inkscape:connector-curvature="0" />
+    </g>
+  </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-image-reload.svg b/icons/Color/scalable/gimp-image-reload.svg
new file mode 100644
index 0000000..8ef949c
--- /dev/null
+++ b/icons/Color/scalable/gimp-image-reload.svg
@@ -0,0 +1,225 @@
+<?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";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-image-reload.svg">
+  <defs
+     id="defs30573">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient2065">
+      <stop
+         style="stop-color:#555753"
+         offset="0"
+         id="stop2067" />
+      <stop
+         style="stop-color:#fcaf3e"
+         offset="1"
+         id="stop2069" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4928">
+      <stop
+         id="stop4930"
+         offset="0"
+         style="stop-color:#fce94f;stop-opacity:1;" />
+      <stop
+         id="stop4932"
+         offset="1"
+         style="stop-color:#fce94f;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4616">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop4618" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:0;"
+         offset="1"
+         id="stop4620" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4928"
+       id="radialGradient4915-6"
+       cx="-6.0070167"
+       cy="32.837029"
+       fx="-6.0070167"
+       fy="32.837029"
+       r="9.90625"
+       gradientTransform="matrix(0.462962,0,0,0.44272,14.86446,6.713194)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2065"
+       id="linearGradient4045"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.462962,0,0,0.466802,21.0145,5.928547)"
+       x1="-11.986486"
+       y1="13.122552"
+       x2="-11.986486"
+       y2="29.726542" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4616"
+       id="linearGradient4047"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.462962,0,0,0.461866,4.347921,5.985305)"
+       x1="25.355263"
+       y1="34.006802"
+       x2="25.355263"
+       y2="32.409008" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="21.73877"
+     inkscape:cx="9.7343465"
+     inkscape:cy="12.273932"
+     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="1440"
+     inkscape:window-height="752"
+     inkscape:window-x="480"
+     inkscape:window-y="27"
+     inkscape:window-maximized="0"
+     inkscape:snap-global="false"
+     showguides="false">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4277" />
+  </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></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1036.3622)">
+    <g
+       id="g4279">
+      <g
+         id="g4138" />
+      <path
+         id="path4874"
+         d="m 9.0125159,1036.5345 a 0.80323728,0.7804304 0 0 0 -0.7905492,0.792 v 0.6434 c 
-0.6700284,-0.5785 -1.4941016,-0.9726 -2.386662,-1.1171 -0.5326351,-0.086 -1.0873497,-0.086 -1.6439032,0.012 
-2.2262103,0.3918 -3.89758745,2.2412 -4.01281707,4.4361 -0.1152312,2.1949 1.35490827,4.168 3.53084147,4.7319 
2.1759346,0.5641 4.4894871,-0.4294 5.5502219,-2.3799 l -1.4117915,-0.7137 c -0.7140143,1.3131 
-2.2484545,1.9708 -3.7097046,1.5919 -1.4612509,-0.3786 -2.4397051,-1.6894 -2.3620872,-3.1678 0.077617,-1.4785 
1.1894665,-2.7072 2.6843142,-2.9703 1.1405136,-0.2008 2.2575699,0.2053 2.9792328,1.0135 H 6.0797047 a 
0.80356616,0.78075 0 1 0 0,1.5615 h 3.7479371 v -3.6416 a 0.80323728,0.7804304 0 0 0 -0.8151259,-0.792 z"
+         
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;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:#fcaf3e;fill-opacity:1;fill-rule:nonzero;stroke:#f57900;stroke-width:0.34453622;stroke-linecap:butt;stroke-linejoin:miter;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:accumulat
 e"
+         inkscape:connector-curvature="0" />
+      <g
+         transform="matrix(1.0019647,0,0,1.0242673,2.0083331,-22.260655)"
+         id="g3976-3">
+        <g
+           transform="matrix(0.69565065,0,0,0.80000484,24.148475,1040.5518)"
+           id="g4028-9">
+          <g
+             transform="translate(-38.71351,-12.237062)"
+             id="g2403-3">
+            <g
+               id="g3799-7"
+               transform="matrix(0.557846,0,0,0.461866,-85.36183,64.50698)"
+               inkscape:r_cx="true"
+               inkscape:r_cy="true"
+               style="opacity:0.58241763" />
+            <rect
+               
style="opacity:1;fill:url(#linearGradient4045);fill-opacity:1;stroke:#888a85;stroke-width:0.99999893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+               id="rect2063-4"
+               width="16.216183"
+               height="11.203236"
+               x="7.3571453"
+               y="11.296763"
+               rx="0.20254599"
+               ry="0.20206636" />
+            <path
+               
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient4915-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+               d="m 11.79411,16.401215 c -2.392951,0.151471 -4.296871,2.150075 -4.296871,4.575364 0,0.09366 
0.00889,0.181964 0.014468,0.274234 h 9.143509 c 0.0056,-0.09227 0.01447,-0.180574 0.01447,-0.274234 
0,-2.523879 -2.056354,-4.575364 -4.586223,-4.575364 -0.09882,0 -0.192077,-0.0062 -0.289351,0 z"
+               id="path4898-0"
+               inkscape:r_cx="true"
+               inkscape:r_cy="true"
+               inkscape:connector-curvature="0" />
+            <rect
+               
style="opacity:1;fill:url(#linearGradient4047);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+               id="rect1324-7"
+               width="15.740722"
+               height="0.92373294"
+               x="7.5886593"
+               y="21.226898"
+               rx="0"
+               ry="0" />
+            <path
+               
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+               d="m 18.031043,21.675958 c 0,0 -0.257213,-1.424098 -0.257213,-2.296525 0.0071,-0.39799 
3.604954,-3.498458 3.614237,-3.960285 l -0.836462,0.727219 -0.585726,-1.589717 1.974613,0.204118 
0.925925,-0.923733 -1.048689,0.768044 -0.360661,-0.08165 -0.4425,-1.610129 0.22506,1.569306 -1.63441,-0.08165 
0.511509,1.29875 -1.416971,-1.400809 1.498813,1.949752 c 3.7e-5,0.43486 -2.954107,3.089518 -2.949079,2.631777 
L 16.024282,17.241 l -0.102301,-2.216308 0.925925,-0.263924 0.811179,-1.99555 -1.069313,1.844378 
-0.834796,-0.03774 -1.868696,-1.574507 -2.565841,-0.979767 2.192051,1.201894 -1.757172,0.155689 h 2.314813 l 
1.388887,1.385599 0.163681,2.393383 -2.478493,-2.393383 1.042268,1.250322 -1.505231,1.05901 
1.653439,-0.923733 2.615524,3.286696 -0.1023,2.242895 h 1.183137 z"
+               id="path2079-2"
+               sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc"
+               inkscape:connector-curvature="0" />
+            <path
+               inkscape:r_cy="true"
+               inkscape:r_cx="true"
+               id="path4924-8"
+               d="m 11.925565,18.563623 c -1.305803,0.08266 -2.344749,1.17327 -2.344749,2.49672 0,0.05111 
0.00485,0.0993 0.00789,0.149646 h 4.989498 c 0.003,-0.05035 0.0079,-0.09854 0.0079,-0.149646 0,-1.377249 
-1.122129,-2.49672 -2.502647,-2.49672 -0.05393,0 -0.104814,-0.0034 -0.157896,0 z"
+               
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#fef39e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+               inkscape:connector-curvature="0" />
+            <path
+               
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#fffbd7;fill-opacity:0.55681817;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+               d="m 11.963041,19.163267 c -0.995873,0.06304 -1.788226,0.894796 -1.788226,1.904128 0,0.03898 
0.0037,0.07573 0.006,0.114127 h 3.805249 c 0.0023,-0.0384 0.006,-0.07515 0.006,-0.114127 0,-1.050362 
-0.855793,-1.904128 -1.908647,-1.904128 -0.04113,0 -0.07994,-0.0026 -0.12042,0 z"
+               id="path4926-6"
+               inkscape:r_cx="true"
+               inkscape:r_cy="true"
+               inkscape:connector-curvature="0" />
+          </g>
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-paste-as-new.svg b/icons/Color/scalable/gimp-paste-as-new.svg
index 0f51916..f77a4ec 100644
--- a/icons/Color/scalable/gimp-paste-as-new.svg
+++ b/icons/Color/scalable/gimp-paste-as-new.svg
@@ -2,7 +2,6 @@
 <!-- Created with Inkscape (http://www.inkscape.org/) -->
 
 <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#";
@@ -16,30 +15,11 @@
    viewBox="0 0 16 16"
    id="svg30571"
    version="1.1"
-   inkscape:version="0.91+devel r"
+   inkscape:version="0.92pre1 unknown"
    sodipodi:docname="gimp-paste-as-new.svg">
   <defs
      id="defs30573">
     <linearGradient
-       id="linearGradient19282"
-       osb:paint="solid"
-       gradientTransform="matrix(1.2178615,0,0,1.043881,356.69172,1794.4958)">
-      <stop
-         style="stop-color:#666666;stop-opacity:1;"
-         offset="0"
-         id="stop19284" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient5148">
-      <stop
-         id="stop5150"
-         stop-color="#d0d0d0" />
-      <stop
-         offset="1"
-         id="stop5152"
-         stop-color="#ececec" />
-    </linearGradient>
-    <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient14484"
        id="linearGradient14490"
@@ -61,35 +41,6 @@
     </linearGradient>
     <linearGradient
        inkscape:collect="always"
-       xlink:href="#linearGradient15218"
-       id="linearGradient15224"
-       x1="22.308331"
-       y1="18.99214"
-       x2="35.785294"
-       y2="39.498238"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0493919,0,0,0.96062778,-1.4206112,1.4064082)" />
-    <linearGradient
-       id="linearGradient15218">
-      <stop
-         style="stop-color:#f0f0ef;stop-opacity:1.0000000;"
-         offset="0.0000000"
-         id="stop15220" />
-      <stop
-         id="stop2269"
-         offset="0.59928656"
-         style="stop-color:#e8e8e8;stop-opacity:1;" />
-      <stop
-         id="stop2267"
-         offset="0.82758623"
-         style="stop-color:#ffffff;stop-opacity:1;" />
-      <stop
-         style="stop-color:#d8d8d3;stop-opacity:1.0000000;"
-         offset="1.0000000"
-         id="stop15222" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
        xlink:href="#linearGradient2259"
        id="linearGradient2265"
        x1="26.076092"
@@ -145,47 +96,6 @@
        y1="3.8180194"
        x2="25.404572"
        y2="6.481061" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2216"
-       id="linearGradient2222"
-       x1="36.8125"
-       y1="39.15625"
-       x2="37.142365"
-       y2="42.0625"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       id="linearGradient2216">
-      <stop
-         style="stop-color:#000000;stop-opacity:1;"
-         offset="0"
-         id="stop2218" />
-      <stop
-         style="stop-color:#000000;stop-opacity:0;"
-         offset="1"
-         id="stop2220" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2224"
-       id="linearGradient2230"
-       x1="35.996582"
-       y1="40.458221"
-       x2="33.664921"
-       y2="37.770721"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       id="linearGradient2224">
-      <stop
-         style="stop-color:#7c7c7c;stop-opacity:1;"
-         offset="0"
-         id="stop2226" />
-      <stop
-         style="stop-color:#b8b8b8;stop-opacity:1;"
-         offset="1"
-         id="stop2228" />
-    </linearGradient>
     <radialGradient
        gradientTransform="matrix(0.45357935,0,0,0.4706815,-5.2048501,1036.0092)"
        inkscape:collect="always"
@@ -221,7 +131,7 @@
      inkscape:pageshadow="2"
      inkscape:zoom="26.807756"
      inkscape:cx="6.6356455"
-     inkscape:cy="5.702425"
+     inkscape:cy="5.9448921"
      inkscape:document-units="px"
      inkscape:current-layer="layer1"
      showgrid="true"
@@ -302,7 +212,7 @@
            rx="1.3879371"
            ry="1.3879364" />
         <rect
-           
style="opacity:1;fill:url(#linearGradient15224);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.97867846;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+           
style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.97867846;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
            id="rect12413"
            width="30.477974"
            height="34.994312"
@@ -365,13 +275,13 @@
            id="rect2281"
            
style="opacity:1;fill:url(#linearGradient2283);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
         <path
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.48863639;fill:url(#linearGradient2222);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.48863639;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
            d="m 38.484935,36.572053 0.04419,5.919851 -7.646606,-0.902998 z"
            id="path2212"
            sodipodi:nodetypes="cccc"
            inkscape:connector-curvature="0" />
         <path
-           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient2230);fill-opacity:1;fill-rule:evenodd;stroke:#868a84;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#868a84;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
            d="m 30.059082,42.086864 c 1.791141,0.167652 8.456356,-3.188725 8.947469,-7.207148 
-3.696746,0.490779 -4.314906,0.143624 -8.423664,0.302634 0,0 0.288695,6.404514 -0.523805,6.904514 z"
            id="path2210"
            sodipodi:nodetypes="cccc"
diff --git a/icons/Color/scalable/gimp-paste-into.svg b/icons/Color/scalable/gimp-paste-into.svg
index 9c4a1a7..9be4041 100644
--- a/icons/Color/scalable/gimp-paste-into.svg
+++ b/icons/Color/scalable/gimp-paste-into.svg
@@ -14,16 +14,16 @@
    height="16"
    id="svg11300"
    sodipodi:version="0.32"
-   inkscape:version="0.91+devel r"
+   inkscape:version="0.92pre1 unknown"
    sodipodi:docname="gimp-paste-into.svg"
    version="1.0"
    viewBox="0 0 16 16">
   <sodipodi:namedview
-     inkscape:cy="7.6255777"
-     inkscape:cx="4.0299328"
+     inkscape:cy="7.4606301"
+     inkscape:cx="7.9379232"
      inkscape:zoom="39.406443"
      inkscape:window-height="1016"
-     inkscape:window-width="1920"
+     inkscape:window-width="1346"
      inkscape:pageshadow="2"
      inkscape:pageopacity="0.0"
      borderopacity="0.17254902"
@@ -38,7 +38,7 @@
      width="16px"
      height="16px"
      showgrid="true"
-     inkscape:window-maximized="1"
+     inkscape:window-maximized="0"
      inkscape:document-units="px"
      inkscape:snap-global="false">
     <inkscape:grid
@@ -81,16 +81,6 @@
          id="stop14488" />
     </linearGradient>
     <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient15218"
-       id="linearGradient15224"
-       x1="22.308331"
-       y1="18.99214"
-       x2="35.785294"
-       y2="39.498238"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.0875708,0,0,0.98353989,-1.8376287,0.24520207)" />
-    <linearGradient
        id="linearGradient15218">
       <stop
          style="stop-color:#f0f0ef;stop-opacity:1.0000000;"
@@ -155,15 +145,6 @@
        x2="25.404572"
        y2="6.481061" />
     <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient2224"
-       id="linearGradient2230"
-       x1="35.996582"
-       y1="40.458221"
-       x2="33.664921"
-       y2="37.770721"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
        id="linearGradient2224">
       <stop
          style="stop-color:#7c7c7c;stop-opacity:1;"
@@ -262,7 +243,7 @@
              height="35.828964"
              width="31.586821"
              id="rect12413"
-             
style="opacity:1;fill:url(#linearGradient15224);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00813413;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
+             
style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00813413;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 />
           <rect
              ry="0.98387533"
              rx="0.98387533"
@@ -328,7 +309,7 @@
              sodipodi:nodetypes="cccc"
              id="path2210"
              d="m 30.7208,42.086864 c 1.791141,0.167652 8.576153,-3.668487 9.067266,-7.68691 
-2.886699,0.0861 -4.789521,0.09899 -8.898279,0.258003 z"
-             
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient2230);fill-opacity:1;fill-rule:evenodd;stroke:#868a84;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
 />
+             
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#868a84;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
 />
         </g>
       </g>
       <g
diff --git a/icons/Color/scalable/gimp-quit.svg b/icons/Color/scalable/gimp-quit.svg
new file mode 100644
index 0000000..3a69f15
--- /dev/null
+++ b/icons/Color/scalable/gimp-quit.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";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-quit.svg">
+  <defs
+     id="defs30573" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="22.627417"
+     inkscape:cx="8.3318802"
+     inkscape:cy="3.011428"
+     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="1346"
+     inkscape:window-height="1016"
+     inkscape:window-x="518"
+     inkscape:window-y="27"
+     inkscape:window-maximized="0"
+     inkscape:snap-global="true">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4237" />
+  </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="g4246">
+      <g
+         id="g4239">
+        <g
+           id="g7082"
+           transform="matrix(1.70995,-0.0450243,0.04544797,1.7064456,17.314404,-697.44834)">
+          <path
+             
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.14838593;stroke-linecap:round;stroke-linejoin:miter;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:accu
 mulate"
+             d="m -36.19078,1023.5633 a 0.925994,0.925994 0 0 0 1.290106,-0.022 l 2.343724,-2.3574 
2.342044,2.357 a 0.92671247,0.92671247 0 1 0 1.314129,-1.307 l -2.350224,-2.3631 2.350916,-2.3646 a 
0.92564974,0.92564974 0 0 0 -0.67806,-1.5881 0.92564974,0.92564974 0 0 0 -0.636067,0.2831 l -2.342696,2.3565 
-2.344093,-2.3571 a 0.92577617,0.92577617 0 0 0 -0.663203,-0.2825 0.92577617,0.92577617 0 0 0 
-0.648871,1.5874 l 2.350218,2.3653 -2.349888,2.3635 a 0.925994,0.925994 0 0 0 0.02197,1.3291 z"
+             id="path6388-7-7-4-7"
+             inkscape:connector-curvature="0" />
+          <g
+             id="g7078" />
+        </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.4848485;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="1036.3622" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-save-as.svg b/icons/Color/scalable/gimp-save-as.svg
new file mode 100644
index 0000000..202ef68
--- /dev/null
+++ b/icons/Color/scalable/gimp-save-as.svg
@@ -0,0 +1,266 @@
+<?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";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-save-as.svg">
+  <defs
+     id="defs30573">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4991">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4993" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4995" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="40.943935"
+       x2="36.183067"
+       y1="28.481176"
+       x1="7.6046205"
+       id="linearGradient4234"
+       xlink:href="#linearGradient4228"
+       inkscape:collect="always"
+       gradientTransform="matrix(0.32678414,0,0,0.32678414,-53.918925,1015.5923)" />
+    <linearGradient
+       id="linearGradient4228">
+      <stop
+         id="stop4230"
+         offset="0.0000000"
+         style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
+      <stop
+         id="stop4232"
+         offset="1.0000000"
+         style="stop-color:#9f9f9f;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <radialGradient
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.42032349,0.25544651,-0.23227229,0.38219105,-54.688288,1013.9987)"
+       r="20.935818"
+       fy="2.958519"
+       fx="15.571491"
+       cy="2.958519"
+       cx="15.571491"
+       id="radialGradient4250"
+       xlink:href="#linearGradient4244"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient4244">
+      <stop
+         id="stop4246"
+         offset="0.0000000"
+         style="stop-color:#e4e4e4;stop-opacity:1.0000000;" />
+      <stop
+         id="stop4248"
+         offset="1.0000000"
+         style="stop-color:#d3d3d3;stop-opacity:1.0000000;" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="47.620636"
+       x2="44.0961"
+       y1="4.433136"
+       x1="12.378357"
+       id="linearGradient4260"
+       xlink:href="#linearGradient4991"
+       inkscape:collect="always"
+       gradientTransform="matrix(0.32678414,0,0,0.32678414,-53.918925,1015.5923)" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="7.483362"
+     inkscape:cx="10.375382"
+     inkscape:cy="2.690834"
+     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="1440"
+     inkscape:window-height="752"
+     inkscape:window-x="307"
+     inkscape:window-y="27"
+     inkscape:window-maximized="0"
+     inkscape:snap-global="false"
+     showguides="false">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4284" />
+  </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></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1036.3622)">
+    <g
+       id="g4258">
+      <g
+         transform="matrix(1.116248,0,0,1.1126945,59.353582,-92.213571)"
+         id="g4124">
+        <g
+           style="display:inline"
+           id="g5022"
+           transform="matrix(0.00788009,0,0,0.00630433,-39.053668,1027.5615)" />
+        <path
+           sodipodi:nodetypes="cccsccccccccc"
+           id="path4196"
+           d="m -50.23094,1018.1944 c -0.20424,0 -0.336996,0.095 -0.418692,0.2757 0,0 -2.113885,5.5892 
-2.113885,5.5892 0,0 -0.0817,0.2194 -0.0817,0.5821 0,0 0,3.1534 0,3.1534 0,0.3538 0.214954,0.5311 
0.541236,0.5311 h 12.601613 c 0.321834,0 0.520812,-0.2347 0.520812,-0.6026 v -3.1534 c 0,0 0.03463,-0.2518 
-0.03064,-0.4289 l -2.195581,-5.6198 c -0.0603,-0.1673 -0.20813,-0.3229 -0.367632,-0.3268 h -8.455539 z"
+           
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#535353;stroke-width:0.65356827;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="ccccccccc"
+           id="path4170"
+           d="m -52.849167,1024.4145 0.24986,-0.2262 12.29025,0.02 1.131459,0.1037 v 3.4111 c 0,0.3678 
-0.198364,0.6024 -0.520198,0.6024 h -12.608308 c -0.326283,0 -0.543063,-0.1771 -0.543063,-0.5309 v -3.3805 z"
+           
style="fill:url(#linearGradient4234);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.02044296px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="csccccccs"
+           id="path3093"
+           d="m -52.75914,1024.0607 c -0.233418,0.4786 -2.02e-4,0.782 0.338455,0.782 0,0 12.74458,0 
12.74458,0 0.365687,-0.01 0.602995,-0.3307 0.466835,-0.7003 l -2.194122,-5.6241 c -0.0603,-0.1673 
-0.213966,-0.3229 -0.373468,-0.3268 h -8.449704 c -0.20424,0 -0.338455,0.099 -0.42015,0.2801 0,0 
-2.112426,5.5891 -2.112426,5.5891 z"
+           
style="fill:url(#radialGradient4250);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+           inkscape:connector-curvature="0" />
+        <path
+           sodipodi:nodetypes="cccccccc"
+           id="path4201"
+           d="m -39.28025,1023.9674 c 0.02076,0.4085 -0.135289,0.7568 -0.432046,0.7659 0,0 -12.456592,0 
-12.456592,0 -0.421301,0 -0.610346,-0.1062 -0.681035,-0.2837 0.02999,0.3086 0.269864,0.539 0.681035,0.539 0,0 
12.456592,0 12.456592,0 0.351622,-0.011 0.572789,-0.4654 0.441865,-0.9787 l -0.0098,-0.042 z"
+           
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+           inkscape:connector-curvature="0" />
+        <path
+           
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4260);stroke-width:0.32678422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           d="m -50.114336,1018.3425 c -0.196623,0 -0.324428,0.091 -0.403077,0.2654 0,0 -2.096325,5.4216 
-2.096325,5.4216 0,0 -0.07865,0.2113 -0.07865,0.5604 0,0 0,3.0358 0,3.0358 0,0.4427 0.145111,0.5317 
0.521052,0.5317 h 12.315482 c 0.432377,0 0.501391,-0.1034 0.501391,-0.6005 v -3.0359 c 0,0 0.03333,-0.2423 
-0.02949,-0.4129 l -2.154551,-5.4919 c -0.05805,-0.161 -0.179944,-0.27 -0.333498,-0.2737 h -8.242331 z"
+           id="path4252"
+           sodipodi:nodetypes="cccsccccccccc"
+           inkscape:connector-curvature="0" />
+      </g>
+      <path
+         sodipodi:nodetypes="cccccccccc"
+         inkscape:connector-curvature="0"
+         id="rect4157"
+         d="m 6.2931459,1036.5595 v 5.0129 l -1.8800295,0.027 1.8417981,2.3265 1.8417981,2.1366 
1.7495965,-2.1741 1.7495949,-2.3635 -2.0374466,0.022 v -4.9927 z"
+         
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:#8ae234;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:0.38341436;stroke-linecap:butt;stroke-linejoin:miter;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"
 />
+    </g>
+    <g
+       id="g4557"
+       transform="matrix(0.53308013,0,0,0.53002581,5.5811917,493.46795)">
+      <g
+         transform="translate(0.54321437,0.45964293)"
+         id="g3943">
+        <g
+           id="g3977"
+           transform="rotate(-36.421499,-3.2571674,1058.0244)">
+          <g
+             transform="matrix(-1.3896672,0.05353424,-0.04181733,-1.7790417,2.5015123,2860.3502)"
+             id="g7078" />
+        </g>
+        <g
+           id="g3939"
+           transform="matrix(0.75258206,0.75039082,-0.75039082,0.75258206,803.6233,277.20486)">
+          <g
+             id="g3936">
+            <path
+               sodipodi:type="star"
+               
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:2.91199994;stroke-linecap:butt;stroke-linejoin:miter;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="path3937"
+               sodipodi:sides="3"
+               sodipodi:cx="-20.516788"
+               sodipodi:cy="1049.0612"
+               sodipodi:r1="0.42613241"
+               sodipodi:r2="0.21306621"
+               sodipodi:arg1="1.3734008"
+               sodipodi:arg2="2.4205983"
+               inkscape:flatsided="false"
+               inkscape:rounded="0"
+               inkscape:randomized="0"
+               d="m -20.433217,1049.479 -0.243616,-0.2772 -0.243616,-0.2772 0.361875,-0.072 0.361875,-0.072 
-0.118259,0.3495 z"
+               inkscape:transform-center-x="-0.00082815806"
+               inkscape:transform-center-y="0.05656081"
+               transform="matrix(0.52647596,0.10929736,-0.10929736,0.52647596,105.00055,497.0293)" />
+          </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.4848485;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.24242425"
+           y="1036.1198" />
+      </g>
+      <g
+         transform="matrix(0.02366087,-0.02366001,0.01606034,0.01581229,-7.7776755,1042.5007)"
+         id="g4498">
+        <path
+           style="fill:#7489a5"
+           d="m 104.37145,580.93362 c 0,-23.4 0,-46.8 0,-70.2 202.8,0 405.60001,0 608.40001,0 0,46.8 0,93.6 
0,140.4 -202.8,0 -405.60001,0 -608.40001,0 0,-23.4 0,-46.8 0,-70.2 z m 65.7,29.47025 c 0.27315,-19.60316 
-27.82549,-8.91068 -22.28474,-25.04984 -14.0664,-3.29552 -19.92991,6.04689 -11.53041,17.69277 
12.48593,4.95716 18.35088,12.77065 33.81515,7.35707 z m 80.55,-0.57129 c 26.02793,-18.06452 
-7.07746,-37.99142 -27.07461,-33.79598 -3.58631,-15.36802 47.02675,-0.83284 24.4341,-19.12267 
-24.31303,-12.88927 -57.02365,22.78464 -23.08994,31.95473 16.32819,-7.26571 33.16414,14.87051 
7.94766,11.71794 -14.02556,-4.68763 -38.05184,7.64744 -10.73733,10.93451 9.45724,-0.4937 19.3138,1.12922 
28.52012,-1.68853 z m 37.35,-19.89896 c 1.642,-8.81494 -4.83958,-25.5425 9.9,-21.6 15.09784,3.79935 
11.06989,-16.60792 -2.5412,-10.47409 -11.48318,-0.11883 -22.96636,-0.23765 -34.44954,-0.35648 
-4.67811,18.72056 25.66319,4.7488 15.36016,28.94103 -7.20234,23.47378 16.52032,34.89917 11.64499,7.5122
 1 0.0285,-1.34089 0.0571,-2.68178 0.0856,-4.02267 z m 21.1184,18.32428 c 2.77648,-13.45321 
35.96927,-13.12486 32.4316,2.82572 20.58835,1.42571 12.01636,-43.0308 6.48669,-54.43258 -33.18806,-7.78386 
-38.67956,33.37057 -52.83669,53.927 3.94572,1.25375 11.42694,2.12093 13.9184,-2.32014 z m 11.92016,-19.78572 
c 1.59903,-28.96264 35.18921,-17.99597 14.41584,0.50349 -4.801,0.008 -9.66009,0.33714 -14.41584,-0.50349 z m 
84.41144,17.66144 c -0.1023,-10.35047 -18.40576,-3.05968 -26.38599,-5.77456 -15.2542,-20.63685 
29.26752,-1.14906 23.23599,-19.7017 -6.65248,-0.93572 -39.23679,-3.55943 -20.51315,-12.03431 7.32808,-2.6348 
24.44142,4.72204 23.93306,-5.91447 -8.29357,-10.45601 -55.55076,-12.55667 -42.11809,17.49701 
-3.21922,28.16237 18.85046,44.2234 41.84818,25.92803 z m 50.01995,4.37271 c 33.97084,-17.82606 
5.81567,-68.12589 -29.22341,-53.94444 -16.61574,-3.51071 -7.03507,17.36695 -9.54653,26.70283 
-3.68751,20.55521 1.3485,35.449 25.35642,28.13574 4.46469,-0.26034 8.99271,-0.0861 13.41
 352,-0.89413 z m -26.46994,-10.37271 c -6.56944,-20.02738 1.89163,-46.14129 25.86469,-27.92009 
11.78788,20.72096 -5.90589,34.08535 -25.86469,27.92009 z m 73.2,-10.2 c 1.48145,-9.10514 -4.68038,-25.59635 
10.26048,-21.69503 22.73189,-10.47447 -20.26343,-14.59788 -31.55579,-11.25532 -18.38225,1.15517 
-3.42127,17.41809 8.87683,12.51323 -5.51555,15.09999 9.00459,63.15289 12.22357,29.59798 0.065,-3.05361 
0.12994,-6.10728 0.19491,-9.16086 z m 58.05,16.2 c 2.00903,-12.25136 -22.23108,0.81039 -22.53929,-9.27602 
-2.03492,-12.44787 6.19605,-46.9894 -11.49124,-37.47191 0.92492,22.24941 -11.79253,63.07125 24.17651,51.84199 
4.5986,-0.92725 12.1642,2.76445 9.85402,-5.09406 z m 51.18274,3.375 c 4.60258,-20.82571 -38.72883,3.52354 
-28.95963,-19.70104 10.1375,2.91201 37.2531,-3.08312 19.88753,-10.67993 -16.48355,6.87418 -31.23692,-13.73568 
-8.5206,-10.55179 19.7413,6.98944 24.13302,-17.15808 2.08118,-11.81285 -38.20319,-11.87584 -26.80032,31.88336 
-25.59766,54.09273 12.94396,0.0349 29.57031,3
 .06427 41.10918,-1.34712 z m 20.17445,-8.27157 c 2.95605,-30.81581 19.0577,7.57343 29.17725,10.07149 
19.15499,-3.76801 -20.56352,-27.62411 3.12594,-36.71573 5.85427,-21.07192 -46.55293,-27.68156 
-43.81038,-8.41203 2.92124,14.46395 -7.98278,42.59001 7.97499,45.07643 6.11331,1.47493 2.30377,-6.64428 
3.5322,-10.02016 z m 1.31781,-23.11173 c -9.11845,-22.89646 38.03556,-2.41138 8.18213,0.9249 l 
-5.12713,-0.0185 -3.05509,-0.90642 z m -457.77133,21.15693 c 24.2241,-22.25902 -0.0904,-63.88178 
-30.28939,-45.28568 -17.63589,25.9235 40.6826,-5.5604 26.79011,27.39314 -7.77307,5.49178 -8.60881,29.92315 
3.49928,17.89254 z m -11.53039,-9.12363 c 25.09815,-31.07709 -26.87243,-26.93401 -26.55881,-8.06297 
24.99831,-6.01563 2.78969,19.61724 26.55881,8.06297 z m 514.71956,-24.7955 c -7.61395,-6.76622 
5.09065,7.20986 0,0 z m 12.97196,0.57315 c 2.51887,-4.08193 -6.69095,4.86639 0,0 z m -4.26143,-4.27994 c 
5.19484,-13.85034 -15.20404,-0.76877 -3e-5,0 z m -8.38525,-9.19486 c 5.28916,-7.02083 -7.92
 279,7.25103 0,0 z m 14.33188,2.07903 c -4.24835,-4.74465 -7.21646,-5.85596 0,0 z"
+           id="path4510"
+           inkscape:connector-curvature="0" />
+        <path
+           style="fill:#2a4679"
+           d="m 107.52145,650.23362 c -2.84624,-45.59697 -0.6651,-91.82932 -1.35,-137.7 89.2,-2.85992 
178.68987,-0.93275 268.00622,-1.67682 112.41458,-0.0844 224.82921,-0.0468 337.24379,-0.12337 
-0.15734,46.20006 -0.31468,92.40013 -0.47201,138.60019 -197.54267,0.14866 -395.08533,0.29731 -592.628,0.44595 
l 594.00001,0.9081 c -201.59998,-0.10482 -403.20158,0.65821 -604.80001,-0.45405 z m 8.79213,-0.59035 
-2.77122,0.22288 z m 55.52578,-37.62099 c 14.92774,-22.30549 26.08789,-68.30401 -17.33556,-63.28086 
-15.94443,2.28503 -16.82545,9.92182 -10.41095,20.6235 -32.05915,21.29863 -1.08823,52.94758 27.74651,42.65736 
z m 36.78195,-33.84364 c 8.44291,15.00125 37.22109,27.74283 6.85353,31.46494 -5.90884,9.59218 
-1.58867,-24.26562 -6.85353,-31.46494 z m 80.07014,34.07498 c 3.72126,-21.13506 -7.79175,-45.53193 
19.7217,-46.06572 5.43491,-16.72418 -18.83324,-7.78366 -28.69712,-10.00428 -18.99197,-6.12306 
-31.00737,11.50907 -5.24458,16.4385 3.83828,12.47151 -10.4289,49.60509 14.22,39.6315 z 
 m 62.96617,-55.16725 c -441.952225,-177.418 -220.97611,-88.709 0,0 z m -12.38617,24.88 C 256.68309,545.02212 
174.09473,508.07788 91.506366,471.13363 174.09473,508.07788 256.68309,545.02212 339.27145,581.96637 Z m 
66.97639,30.82096 c 14.21693,-22.90715 -49.44803,-8.99745 -20.73217,-22.20157 30.5786,7.4371 
17.27412,-23.56325 -5.58339,-13.09127 -8.49287,-17.21814 44.90655,1.92329 23.43969,-21.90499 
-20.90657,-0.6143 -49.26068,-5.36925 -41.40124,25.33274 -10.82085,38.2222 17.89263,33.52164 44.27711,31.86509 
z m 49.86719,-0.84063 c 31.67262,-13.50481 13.01108,-68.03414 -21.40858,-56.04974 -33.47052,-8.34765 
-15.32229,36.97455 -18.72323,56.68658 13.35056,0.92069 26.8654,1.57425 40.13181,-0.63684 z m 
-25.94357,-27.86308 c -7.29816,-35.30201 49.61313,-2.71978 17.7015,15.05571 -12.53653,2.8407 
-22.50985,0.57975 -17.7015,-15.05571 z m 72.93068,27.39267 c 2.76957,-20.32945 -7.42864,-45.0964 
17.97454,-44.76232 2.78674,-21.37542 -36.42444,-9.76006 -48.76337,-8.68387 -9.32286,18.71378 28.
 01422,5.59129 16.49116,28.56435 -0.53533,9.72923 -4.05079,35.04898 14.29767,24.88184 z m 59.18873,-4.8121 c 
-8.1406,-10.99871 -30.96067,-6.85725 -23.21941,-31.55258 8.61073,-18.3611 -17.76049,-30.18254 
-14.9584,-6.3571 -1.70074,24.37318 -5.7359,55.0727 28.42336,44.20142 3.9229,-1.58789 14.36007,4.07093 
9.75445,-6.29174 z m 50.82639,1.26943 c 3.81996,-17.57767 -48.87527,-3.89794 -22.59579,-17.45021 
30.13971,6.64171 17.40356,-23.20144 -5.39462,-12.99251 -8.60877,-17.90046 41.29223,3.67357 25.64521,-20.16421 
-31.79697,-11.62161 -52.51484,6.57155 -44.03821,39.77791 -5.07159,24.20434 40.45071,18.39423 
46.38341,10.82902 z m 19.03059,4.85371 c -1.8881,-13.52111 6.07754,-33.60227 16.70361,-12.33931 
3.50122,23.59898 34.05653,8.4735 11.8659,-8.42959 -3.11858,-13.37065 16.08282,-33.62746 -11.92794,-36.14812 
-19.45134,-4.78384 -38.65926,-0.87721 -30.51049,23.44839 3.28519,11.92125 -9.31178,41.53021 13.86892,33.46863 
z m 1.42361,-39.50371 c 8.31979,-14.48354 26.18921,11.12776 1.13685,4.1
 6857 l -1.32148,-0.95898 z m 55.2278,-3.49094 c 26.66782,-15.06013 -27.21563,-34.12855 -14.19136,-4.33383 
2.98338,4.34852 9.19492,7.04288 14.19136,4.33383 z m -5.7278,-5.45594 c 1.3243,-5.68402 3.12688,4.83684 0,0 z 
m 6.04443,-2.57099 c 0.7237,-14.87203 4.30511,4.11911 0,0 z m -11.21747,-2.88213 c 0.37874,-6.78924 
0.80131,7.26801 0,0 z M 116.29645,511.93757 c -5.63973,-2.24504 -1.02056,2.07656 0,0 z m 445.50001,-0.0789 c 
-109.9063,-0.11414 -219.81291,-0.18307 -329.71905,0.0894 121.26257,0.21454 242.52552,0.21454 363.78809,0 
-11.35623,-0.0647 -22.71268,-0.0654 -34.06904,-0.0894 z"
+           id="path4504"
+           inkscape:connector-curvature="0"
+           
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccczczcccccccccccc" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path4502"
+           d="m 209.92921,650.54823 c -347.46662,-239.7259 -173.733309,-119.86295 0,0 z m 
-102.87334,-2.78961 c -0.0304,-44.54998 -0.0334,-89.10002 -0.008,-133.65 201.69993,-3.41264 
421.28633,-1.56423 602.84213,-1.575 1.05653,45.57509 0.082,91.20238 0.12403,136.8 -210.73913,-0.15708 
-422.11771,0.44852 -602.95816,-1.575 z M 221.69401,511.04804 c -355.30982,-146.72578 -177.654909,-73.36289 
0,0 z"
+           style="fill:#1a3d80"
+           sodipodi:nodetypes="ccccccccc" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/icons/Symbolic/16/gimp-clipboard.png b/icons/Symbolic/16/gimp-clipboard.png
new file mode 100644
index 0000000..5732e89
Binary files /dev/null and b/icons/Symbolic/16/gimp-clipboard.png differ
diff --git a/icons/Symbolic/16/gimp-close-all.png b/icons/Symbolic/16/gimp-close-all.png
new file mode 100644
index 0000000..964bc79
Binary files /dev/null and b/icons/Symbolic/16/gimp-close-all.png differ
diff --git a/icons/Symbolic/16/gimp-file-manager.png b/icons/Symbolic/16/gimp-file-manager.png
new file mode 100644
index 0000000..66b5660
Binary files /dev/null and b/icons/Symbolic/16/gimp-file-manager.png differ
diff --git a/icons/Symbolic/16/gimp-image-open.png b/icons/Symbolic/16/gimp-image-open.png
new file mode 100644
index 0000000..d58609d
Binary files /dev/null and b/icons/Symbolic/16/gimp-image-open.png differ
diff --git a/icons/Symbolic/16/gimp-quit.png b/icons/Symbolic/16/gimp-quit.png
new file mode 100644
index 0000000..af48f73
Binary files /dev/null and b/icons/Symbolic/16/gimp-quit.png differ
diff --git a/icons/Symbolic/16/gimp-save-as.png b/icons/Symbolic/16/gimp-save-as.png
new file mode 100644
index 0000000..487b42b
Binary files /dev/null and b/icons/Symbolic/16/gimp-save-as.png differ
diff --git a/icons/Symbolic/scalable/gimp-clipboard.svg b/icons/Symbolic/scalable/gimp-clipboard.svg
new file mode 100644
index 0000000..9e974a8
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-clipboard.svg
@@ -0,0 +1,192 @@
+<?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: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.000001 16"
+   id="svg7384"
+   height="16"
+   width="16.000002"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-clipboard.svg">
+  <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="namedview1510"
+     showgrid="true"
+     inkscape:zoom="41.7193"
+     inkscape:cx="7.6639757"
+     inkscape:cy="8.8368515"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg7384">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4289" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata90">
+    <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></dc:title>
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title>Barbara Muraus, Jakub Steiner, Klaus Staedtler</dc:title>
+          </cc:Agent>
+        </dc:contributor>
+        <dc:description>Images originally created as the &quot;Art Libre&quot; icon set. Extended and 
adopted for GIMP</dc:description>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs7386">
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient8074">
+      <stop
+         id="stop8072"
+         offset="0"
+         style="stop-color:#be00be;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient7561">
+      <stop
+         id="stop7558"
+         offset="0"
+         style="stop-color:#a5a5a5;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient7548">
+      <stop
+         id="stop7546"
+         offset="0"
+         style="stop-color:#ebebeb;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient7542">
+      <stop
+         id="stop7538"
+         offset="0"
+         style="stop-color:#c9c9c9;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0,-735328.32,170712.69,0,2464326300,577972450)"
+       osb:paint="solid"
+       id="linearGradient19282">
+      <stop
+         id="stop19284"
+         offset="0"
+         style="stop-color:#b4b4b4;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.34682586,0,0,0.30620888,-113.35187,142.03851)"
+       osb:paint="solid"
+       id="linearGradient19282-4">
+      <stop
+         id="stop19284-0"
+         offset="0"
+         style="stop-color:#bebebe;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="translate(706.45257,-184.97289)"
+       gradientUnits="userSpaceOnUse"
+       y2="411.5"
+       x2="-187"
+       y1="411.5"
+       x1="-200"
+       id="linearGradient10150"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="matrix(1.1701311,0,0,0.98437498,543.58716,-395.22331)"
+       gradientUnits="userSpaceOnUse"
+       y2="629"
+       x2="51.000198"
+       y1="629"
+       x1="44.000198"
+       id="linearGradient10152"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="matrix(0.98291014,0,0,1.0208334,457.66167,-410.38902)"
+       gradientUnits="userSpaceOnUse"
+       y2="622.5"
+       x2="50.000198"
+       y1="622.5"
+       x1="45.000198"
+       id="linearGradient10154"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="translate(465.45237,-401.97289)"
+       gradientUnits="userSpaceOnUse"
+       y2="622.03961"
+       x2="57.000198"
+       y1="622.03961"
+       x1="51.093372"
+       id="linearGradient10156"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="matrix(-1,0,0,1,-693.34788,-184.97289)"
+       gradientUnits="userSpaceOnUse"
+       y2="411.5"
+       x2="-187"
+       y1="411.5"
+       x1="-200"
+       id="linearGradient10150-2"
+       xlink:href="#linearGradient19282-4" />
+  </defs>
+  <rect
+     style="fill:none;stroke:none;stroke-width:0.99989343"
+     id="rect14038"
+     width="15.996591"
+     height="16"
+     x="-6.357422e-07"
+     y="0"
+     rx="0" />
+  <g
+     id="g4287"
+     transform="matrix(1.2206042,0,0,1.1428571,0,-2.2857143)">
+    <rect
+       ry="0.54137862"
+       rx="0.52126682"
+       y="2.0000002"
+       x="4.095459"
+       height="3.0625"
+       width="4.9145508"
+       id="rect6874"
+       style="fill:url(#linearGradient10154);fill-opacity:1;stroke:none;stroke-width:1.0016923" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path6973"
+       d="M 2.4572754,6.3750007 V 14.250001 H 8.1909178 L 10.648193,11.625 V 6.3750007 Z"
+       style="fill:url(#linearGradient10152);fill-opacity:1;stroke:none;stroke-width:1.07324171"
+       sodipodi:nodetypes="cccccc" />
+    <path
+       id="path6977"
+       d="M 0.61431884,2.8750001 C 0.03634894,2.8843088 0.21356579,3.2657735 0.00390625,3.515625 
0.00373508,3.5211811 0,3.5256518 0,3.53125 v 11.9375 C 0,15.76255 0.23745,16 0.53125,16 H 0.63671875 12.46875 
12.574219 c 0.2938,0 0.53125,-0.23745 0.53125,-0.53125 V 3.53125 c 0,-0.00559 -0.0037,-0.010077 
-0.0039,-0.015625 C 13.163999,3.1667243 12.776387,2.8750001 12.49115,2.8750001 H 9.8291014 v 0.8750001 h 
1.7451176 c 0.273043,0 0.681817,0.4578522 0.712158,0.722656 V 14.46875 c -0.0027,0.293787 -0.523827,0.656251 
-0.817627,0.656251 H 1.6367188 c -0.2938001,0 -0.76803412,-0.362464 -0.77075202,-0.656251 l -0.046875,-10 C 
0.85121668,4.2058778 1.2595787,3.7500002 1.53125,3.7500002 H 3.2763671 V 2.8750001 Z"
+       style="fill:url(#linearGradient10150);fill-opacity:1;stroke:none"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccsssccssscsccsccssccsccc" />
+  </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-close-all.svg b/icons/Symbolic/scalable/gimp-close-all.svg
new file mode 100644
index 0000000..8d54abc
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-close-all.svg
@@ -0,0 +1,216 @@
+<?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: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 15.999999 16"
+   id="svg7384"
+   height="16"
+   width="16"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-close-all.svg">
+  <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="namedview1512"
+     showgrid="true"
+     inkscape:zoom="7.375"
+     inkscape:cx="4.1338796"
+     inkscape:cy="6.7588059"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg7384">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4289" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata90">
+    <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 />
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title>Barbara Muraus, Jakub Steiner, Klaus Staedtler</dc:title>
+          </cc:Agent>
+        </dc:contributor>
+        <dc:description>Images originally created as the &quot;Art Libre&quot; icon set. Extended and 
adopted for GIMP</dc:description>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs7386">
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient8074">
+      <stop
+         id="stop8072"
+         offset="0"
+         style="stop-color:#be00be;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient7561">
+      <stop
+         id="stop7558"
+         offset="0"
+         style="stop-color:#a5a5a5;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient7548">
+      <stop
+         id="stop7546"
+         offset="0"
+         style="stop-color:#ebebeb;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient7542">
+      <stop
+         id="stop7538"
+         offset="0"
+         style="stop-color:#c9c9c9;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0,-735328.32,170712.69,0,2464326300,577972450)"
+       osb:paint="solid"
+       id="linearGradient19282">
+      <stop
+         id="stop19284"
+         offset="0"
+         style="stop-color:#b4b4b4;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.34682586,0,0,0.30620888,-154.35207,-275.32368)"
+       osb:paint="solid"
+       id="linearGradient19282-4">
+      <stop
+         id="stop19284-0"
+         offset="0"
+         style="stop-color:#bebebe;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="translate(501.70996,197.05797)"
+       gradientUnits="userSpaceOnUse"
+       y2="5.9638672"
+       x2="11"
+       y1="5.9638672"
+       x1="1"
+       id="linearGradient10182"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="translate(702.39394,275.88115)"
+       gradientUnits="userSpaceOnUse"
+       y2="168.53931"
+       x2="-86.829536"
+       y1="168.53931"
+       x1="-96.900002"
+       id="linearGradient10184"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="translate(702.39394,275.85822)"
+       gradientUnits="userSpaceOnUse"
+       y2="168.60001"
+       x2="-87"
+       y1="168.60001"
+       x1="-96.900002"
+       id="linearGradient10186"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="translate(702.39394,275.85822)"
+       gradientUnits="userSpaceOnUse"
+       y2="386.95001"
+       x2="156.0002"
+       y1="386.95001"
+       x1="142.0002"
+       id="linearGradient10188"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="matrix(0.71428571,0,0,0.70921986,404.28124,-69.788492)"
+       gradientUnits="userSpaceOnUse"
+       y2="386.95001"
+       x2="156.0002"
+       y1="386.95001"
+       x1="142.0002"
+       id="linearGradient10188-0"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="matrix(0.71428571,0,0,0.70921986,578.42424,86.112217)"
+       gradientUnits="userSpaceOnUse"
+       y2="168.60001"
+       x2="-87"
+       y1="168.60001"
+       x1="-96.900002"
+       id="linearGradient10186-2"
+       xlink:href="#linearGradient19282-4" />
+  </defs>
+  <g
+     id="g4268">
+    <path
+       sodipodi:nodetypes="cccccccccccccccccccccccccc"
+       inkscape:connector-curvature="0"
+       id="rect5882-1-3"
+       d="M 5.03125,4 C 5.4422871,4.267001 5,3.9355469 5.9785156,5 L 13,5.0644531 V 6 H 6 v 7 H 5 V 5 C 
5,4.3422492 4.6709224,5 4,4.9375 V 14 h 2 v 2 H 16 V 6 H 14 V 4 Z M 7,7.0644531 h 8 v 5.9570309 h -1 v 
-0.0059 l -1,-0.03125 V 13 H 7 Z"
+       style="fill:url(#linearGradient10188-0);fill-opacity:1;stroke:none;stroke-width:0.7117483" />
+    <rect
+       y="-1.7382812e-05"
+       x="0"
+       height="16"
+       width="16"
+       id="rect6346-19"
+       style="fill:none;stroke:none" />
+    <g
+       id="g3172-4"
+       transform="matrix(0.71428571,0,0,0.70921986,-95.428714,-263.43262)" />
+    <path
+       inkscape:connector-curvature="0"
+       style="opacity:0.3;fill:url(#linearGradient10186-2);fill-opacity:1;stroke:none;stroke-width:0.7117483"
+       d="m 7.4999997,7.5602885 v 4.9645395 l 0.6428571,-0.07092 c 0,-0.535568 0.479695,-0.975178 
1.0714286,-0.975178 0.5917336,0 1.0714286,0.43961 1.0714286,0.975178 H 11 v -1.06383 c 10e-5,-0.699099 
-0.519572,-1.045404 -1.4285717,-1.4627662 0,0 0.02105,2.624e-4 0.1785714,0 C 10.04145,9.9865298 
10.737228,10.175608 11,10.348409 10.929864,10.096253 10.899278,9.7146999 10.6875,9.3953949 
10.475707,9.0761183 9.5714283,8.4423807 9.5714283,8.4423807 L 9.6160713,8.420253 C 9.6558425,8.3917424 
10.291285,8.9631608 10.508928,8.9078417 10.412392,8.6773665 10.323578,8.457714 10.21875,8.3316006 l 
0.133928,-0.022128 c 0.254493,0.4194823 0.333457,0.5128298 0.602679,0.8200355 0.08909,0.040496 -0.0222,-0.03 
0.758928,-0.4210993 v 0.1993971 c 0,0 -0.758928,0.2198085 -0.535714,0.6427305 0.158914,0.2168298 
0.28445,0.7164896 0.535714,0.7757096 0,0 0.607208,-0.8690216 1.071429,-1.1524826 0,0 -0.156593,-0.360844 
-0.15625,-0.554078 2.64e-4,-0.1483546 0.111607,-0.4210993 0.111607,-0.4210993 0.01656,0
 .2805744 -0.0021,0.5892978 0.200893,0.8643617 l 0.669643,-0.8643617 h 0.245535 c 0,0 -1.607771,1.6940425 
-1.428571,1.9725179 0.281821,-0.03404 1.428571,-0.2437945 1.428571,-0.2437945 v 0.044326 C 13.109364,10.21904 
12.663493,10.46009 12.428571,11.035466 v 1.41844 l 2.142857,0.07092 L 14.5,7.5602885 Z"
+       id="rect10683-5" />
+    <g
+       transform="matrix(-0.95044264,0.95567911,-0.95567911,-0.95044264,914.43077,981.34327)"
+       id="g7082">
+      <g
+         id="g4248">
+        <g
+           id="g7078" />
+      </g>
+    </g>
+    <g
+       transform="matrix(-0.95044264,0.95567911,-0.95567911,-0.95044264,914.43077,981.34327)"
+       id="g7082-6">
+      <g
+         id="g4248-3">
+        <path
+           sodipodi:nodetypes="ccccccccccccccccc"
+           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0331516
 
3;stroke-linecap:round;stroke-linejoin:miter;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"
+           d="m -40.717371,991.38023 c 0.01336,0.27923 0.246268,0.49825 0.525707,0.49437 l 1.854743,-0.0268 
0.02372,1.85419 c 0.01017,0.68847 1.042305,0.67949 1.034172,-0.009 l -0.0246,-1.85991 1.860407,-0.0268 c 
0.471987,5.3e-4 0.694805,-0.58002 0.34474,-0.89822 -0.09963,-0.0907 -0.230519,-0.13922 -0.364881,-0.13516 l 
-1.853939,0.0268 0.02179,-2.10171 c 0.338774,0.0317 -0.426052,0.62106 -0.526063,0.52318 -0.332358,-0.32441 
-0.681323,-0.84446 -0.668853,-0.38119 l 0.139841,1.9744 -1.85959,0.0268 c -0.291478,0.004 -0.521072,0.2477 
-0.507187,0.53896 z"
+           id="path6388-7-7-4-7"
+           inkscape:connector-curvature="0" />
+        <g
+           id="g7078-8" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-file-manager.svg b/icons/Symbolic/scalable/gimp-file-manager.svg
new file mode 100644
index 0000000..02c7922
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-file-manager.svg
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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";
+   id="svg7384"
+   height="16"
+   width="16"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="system-file-manager.svg"
+   viewBox="0 0 16 16">
+  <defs
+     id="defs9" />
+  <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"
+     inkscape:document-units="px"
+     id="namedview7"
+     showgrid="false"
+     inkscape:zoom="55.5625"
+     inkscape:cx="8"
+     inkscape:cy="10.15973"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg7384" />
+  <metadata
+     id="metadata90">
+    <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>Gnome Symbolic Icon Theme</dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <title
+     id="title9167">Gnome Symbolic Icon Theme</title>
+  <g
+     id="g4237">
+    <rect
+       y="0.27716514"
+       x="0.27716473"
+       height="15.44567"
+       width="15.44567"
+       id="rect4232"
+       
style="opacity:0;fill:none;fill-opacity:1;stroke:#f57900;stroke-width:0.55432945;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
 />
+    <g
+       transform="matrix(1,0,0,0.99995,-202,-489.9755)"
+       id="layer11">
+      <path
+         inkscape:connector-curvature="0"
+         d="m 205.19,490 c -1.21,0 -2.19,1.02 -2.19,2.22 v 11.562 c 0,1.2008 0.98238,2.2188 2.1875,2.2188 h 
9.625 c 1.2051,0 2.1875,-1.018 2.1875,-2.2188 V 492.22 c -0.01,-1.2 -0.99,-2.22 -2.2,-2.22 h -9.625 z m 
-0.1875,3 h 10 v 11 h -10 z m 1,1 v 4 h 8.0312 v -4 h -8.03 z m 2.3438,1.4375 a 0.50005,0.50005 0 0 1 
0.0625,0 0.50005,0.50005 0 0 1 0.59375,0.5 V 496 h 2 v -0.0625 a 0.50005,0.50005 0 1 1 1,0 v 0.06 c 0,0.54535 
-0.45465,1 -1,1 h -2 c -0.54535,0 -1,-0.45465 -1,-1 v -0.0625 a 0.50005,0.50005 0 0 1 0.34375,-0.5 z M 
206.0338,499 v 4 h 8.0312 v -4 z m 2.3125,1.4375 a 0.50005,0.50005 0 0 1 0.0625,0 0.50005,0.50005 0 0 1 
0.59375,0.5 V 501 h 2 v -0.0625 a 0.50005,0.50005 0 1 1 1,0 v 0.06 c 0,0.54535 -0.45465,1 -1,1 h -2 c 
-0.54535,0 -1,-0.45465 -1,-1 v -0.0625 a 0.50005,0.50005 0 0 1 0.34375,-0.5 z"
+         style="color:#000000;fill:#bebebe;fill-rule:evenodd"
+         id="rect11668-7" />
+    </g>
+  </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-image-open.svg b/icons/Symbolic/scalable/gimp-image-open.svg
new file mode 100644
index 0000000..7832ac2
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-image-open.svg
@@ -0,0 +1,126 @@
+<?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";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-image-open.svg">
+  <defs
+     id="defs30573" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="16"
+     inkscape:cx="-5.5003323"
+     inkscape:cy="18.300586"
+     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">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4240" />
+  </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="g4256">
+      <g
+         transform="translate(-285.00211,-95)"
+         id="document-open">
+        <g
+           transform="translate(24.0019,734.3622)"
+           id="g14298"
+           inkscape:label="folder-open">
+          <rect
+             style="color:#bebebe;fill:none;stroke-width:2"
+             id="rect12206"
+             width="16"
+             height="16"
+             x="261.00021"
+             y="397" />
+          <path
+             sodipodi:nodetypes="ssssscccccscccccscccccc"
+             id="path12212"
+             transform="translate(261.00021,397)"
+             d="m 0.57226562,1 c -0.2878,0 -0.52929687,0.24205 -0.52929687,0.53125 v 12.935547 c 0,0.2984 
0.23199687,0.53125 0.52929687,0.53125 H 14.320312 c 0.2972,0 0.529297,-0.23275 0.529297,-0.53125 L 
16,10.265625 C 15.745089,9.9581485 15.496909,10.032327 15.068359,10 11.273437,10 7.4785155,10 3.6835938,10 l 
-0.6542969,2.498047 c 0,0.277 -0.2223469,0.5 -0.4980469,0.5 -0.2757,0 -0.4966469,-0.223 -0.4980469,-0.5 L 2,6 
3.0683594,5.9375 2.9980469,1 H 1.0703125 Z M 4.0546875,8 3.9824219,8.3164062 V 8.7324219 H 14.214844 V 8 Z"
+             style="color:#000000;fill:#bebebe;fill-opacity:1"
+             inkscape:connector-curvature="0" />
+        </g>
+      </g>
+      <g
+         id="g3942"
+         style="display:inline"
+         transform="matrix(0.78571429,0,0,0.81081081,-107.57159,728.33517)">
+        <path
+           style="fill:#bebebe;fill-opacity:1;stroke:none"
+           d="m 142.0002,379.9 2e-4,11.1 h 13.9998 v -11.1 z m 1.27273,1.23334 h 11.45455 v 8.63333 h 
-11.45455 z"
+           id="rect5882"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccccccccc" />
+        <path
+           transform="translate(241.0002,217)"
+           style="opacity:0.3;fill:#bebebe;fill-opacity:1;stroke:none"
+           d="m -97,165 v 7 h 1 c 0,-0.75515 0.671573,-1.375 1.5,-1.375 0.828427,0 1.5,0.61985 1.5,1.375 h 1 
v -1.5 c 1.4e-4,-0.98573 -0.7274,-1.47402 -2,-2.0625 0,0 0.02947,3.7e-4 0.25,0 0.40803,0.0835 1.38212,0.3501 
1.75,0.59375 -0.09819,-0.35554 -0.14101,-0.89353 -0.4375,-1.34375 C -92.73401,167.23732 -94,166.34375 
-94,166.34375 l 0.0625,-0.0312 c 0.05568,-0.0402 0.9453,0.7655 1.25,0.6875 -0.13515,-0.32497 
-0.25949,-0.63468 -0.40625,-0.8125 l 0.1875,-0.0312 c 0.35629,0.59147 0.46684,0.72309 0.84375,1.15625 
0.12472,0.0571 -0.03108,-0.0423 1.0625,-0.59375 V 167 c 0,0 -1.0625,0.30993 -0.75,0.90625 0.22248,0.30573 
0.39823,1.01025 0.75,1.09375 0,0 0.85009,-1.22532 1.5,-1.625 0,0 -0.21923,-0.50879 -0.21875,-0.78125 
3.7e-4,-0.20918 0.15625,-0.59375 0.15625,-0.59375 0.02319,0.39561 -0.0029,0.83091 0.28125,1.21875 L 
-88.34375,166 H -88 c 0,0 -2.25088,2.3886 -2,2.78125 0.39455,-0.048 2,-0.34375 2,-0.34375 V 168.5 c 
-1.04689,0.34884 -1.67111,0.68872 -2,1.5 v 2 h 3 v -7 z"
+           id="rect10683"
+           inkscape:connector-curvature="0" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-image-reload.svg b/icons/Symbolic/scalable/gimp-image-reload.svg
new file mode 100644
index 0000000..afafdc5
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-image-reload.svg
@@ -0,0 +1,201 @@
+<?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: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 15.999999 16"
+   id="svg7384"
+   height="16"
+   width="16"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-image-reload.svg">
+  <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="namedview1512"
+     showgrid="true"
+     inkscape:zoom="14.75"
+     inkscape:cx="-6.2330009"
+     inkscape:cy="10.101695"
+     inkscape:window-x="0"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg7384"
+     inkscape:snap-global="false">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4277" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata90">
+    <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></dc:title>
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title>Barbara Muraus, Jakub Steiner, Klaus Staedtler</dc:title>
+          </cc:Agent>
+        </dc:contributor>
+        <dc:description>Images originally created as the &quot;Art Libre&quot; icon set. Extended and 
adopted for GIMP</dc:description>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs7386">
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient8074">
+      <stop
+         id="stop8072"
+         offset="0"
+         style="stop-color:#be00be;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient7561">
+      <stop
+         id="stop7558"
+         offset="0"
+         style="stop-color:#a5a5a5;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient7548">
+      <stop
+         id="stop7546"
+         offset="0"
+         style="stop-color:#ebebeb;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       osb:paint="solid"
+       id="linearGradient7542">
+      <stop
+         id="stop7538"
+         offset="0"
+         style="stop-color:#c9c9c9;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0,-735328.32,170712.69,0,2464326300,577972450)"
+       osb:paint="solid"
+       id="linearGradient19282">
+      <stop
+         id="stop19284"
+         offset="0"
+         style="stop-color:#b4b4b4;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.34682586,0,0,0.30620888,-154.35207,-275.32368)"
+       osb:paint="solid"
+       id="linearGradient19282-4">
+      <stop
+         id="stop19284-0"
+         offset="0"
+         style="stop-color:#bebebe;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="translate(501.70996,197.05797)"
+       gradientUnits="userSpaceOnUse"
+       y2="5.9638672"
+       x2="11"
+       y1="5.9638672"
+       x1="1"
+       id="linearGradient10182"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="translate(702.39394,275.88115)"
+       gradientUnits="userSpaceOnUse"
+       y2="168.53931"
+       x2="-86.829536"
+       y1="168.53931"
+       x1="-96.900002"
+       id="linearGradient10184"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="translate(944.79414,492.85822)"
+       gradientUnits="userSpaceOnUse"
+       y2="168.60001"
+       x2="-87"
+       y1="168.60001"
+       x1="-96.900002"
+       id="linearGradient10186"
+       xlink:href="#linearGradient19282-4" />
+    <linearGradient
+       gradientTransform="translate(703.79394,275.85821)"
+       gradientUnits="userSpaceOnUse"
+       y2="386.95001"
+       x2="156.0002"
+       y1="386.95001"
+       x1="142.0002"
+       id="linearGradient10188"
+       xlink:href="#linearGradient19282-4" />
+  </defs>
+  <g
+     id="g4286">
+    <g
+       id="refresh"
+       transform="matrix(0.44359232,0,0,0.43109129,18.091378,-432.8546)">
+      <path
+         sodipodi:open="true"
+         sodipodi:end="5.8848662"
+         sodipodi:start="0.7916927"
+         transform="matrix(1,0,-0.01098084,0.99993971,0,0)"
+         d="m -15.350555,1019.042 a 7.5224843,7.5425611 0 0 1 -8.853666,1.2733 7.5224843,7.5425611 0 0 1 
-3.809393,-8.1141 7.5224843,7.5425611 0 0 1 6.620343,-6.0303 7.5224843,7.5425611 0 0 1 7.690685,4.5787"
+         sodipodi:ry="7.5425611"
+         sodipodi:rx="7.5224843"
+         sodipodi:cy="1013.6752"
+         sodipodi:cx="-20.636168"
+         id="path4874"
+         
style="display:inline;opacity:1;fill:none;stroke:#bebebe;stroke-width:2.98598599;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         sodipodi:type="arc" />
+      <path
+         inkscape:export-ydpi="89"
+         inkscape:export-xdpi="89"
+         inkscape:export-filename="/home/matthias/Arbeitsfläche/sifr/von Jay Philipz/Matti/navigation.png"
+         
style="display:inline;opacity:1;fill:none;stroke:#bebebe;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="m -29.750012,1011.112 h 5.5 v -5.5"
+         id="path8393-3-8-4-9-3-7"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccc" />
+    </g>
+    <rect
+       y="-1.7382812e-05"
+       x="0"
+       height="16"
+       width="16"
+       id="rect6346-19"
+       style="fill:none;stroke:none" />
+    <g
+       id="g3172-4"
+       transform="matrix(0.71428571,0,0,0.70921986,-96.428714,-263.43262)">
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:url(#linearGradient10188);fill-opacity:1;stroke:none"
+         d="m 143.4002,379.89999 v 14.1 h 14 v -14.1 z m 1.4,1.5 h 11.2 v 8.4 h -11.2 z"
+         id="rect5882-1" />
+      <path
+         inkscape:connector-curvature="0"
+         style="opacity:0.3;fill:url(#linearGradient10186);fill-opacity:1;stroke:none"
+         d="m 145.5002,382.1 v 7 l 0.9,-0.1 c 0,-0.75515 0.67157,-1.375 1.5,-1.375 0.82843,0 1.5,0.61985 
1.5,1.375 h 1 v -1.5 c 1.4e-4,-0.98573 -0.7274,-1.47402 -2,-2.0625 0,0 0.0295,3.7e-4 0.25,0 0.40803,0.0835 
1.38212,0.3501 1.75,0.59375 -0.0982,-0.35554 -0.14101,-0.89353 -0.4375,-1.34375 -0.29651,-0.45018 
-1.5625,-1.34375 -1.5625,-1.34375 l 0.0625,-0.0312 c 0.0557,-0.0402 0.9453,0.7655 1.25,0.6875 
-0.13515,-0.32497 -0.25949,-0.63468 -0.40625,-0.8125 l 0.1875,-0.0312 c 0.35629,0.59147 0.46684,0.72309 
0.84375,1.15625 0.12472,0.0571 -0.0311,-0.0423 1.0625,-0.59375 V 384 c 0,0 -1.0625,0.30993 -0.75,0.90625 
0.22248,0.30573 0.39823,1.01025 0.75,1.09375 0,0 0.85009,-1.22532 1.5,-1.625 0,0 -0.21923,-0.50879 
-0.21875,-0.78125 3.7e-4,-0.20918 0.15625,-0.59375 0.15625,-0.59375 0.0232,0.39561 -0.003,0.83091 
0.28125,1.21875 L 154.05645,383 h 0.34375 c 0,0 -2.25088,2.3886 -2,2.78125 0.39455,-0.048 2,-0.34375 
2,-0.34375 V 385.5 c -1.04689,0.34884 -1.67111,0.68872 -2,1.5 v 2 l 3,0.1 -0.1
 ,-7 z"
+         id="rect10683-5" />
+    </g>
+  </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-quit.svg b/icons/Symbolic/scalable/gimp-quit.svg
new file mode 100644
index 0000000..28aec05
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-quit.svg
@@ -0,0 +1,115 @@
+<?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-quit.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>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="28.000354"
+     inkscape:cx="13.432765"
+     inkscape:cy="13.00024"
+     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:grid
+       type="xygrid"
+       id="grid4241" />
+  </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></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1036.3622)">
+    <g
+       id="g7082"
+       transform="matrix(-0.95044264,0.95567911,-0.95567911,-0.95044264,951.74982,2043.6895)">
+      <g
+         id="g4248">
+        <rect
+           transform="rotate(-134.8426)"
+           y="-747.18042"
+           x="-705.9458"
+           height="11.499722"
+           width="11.499722"
+           id="rect4243"
+           
style="opacity:0;fill:none;fill-opacity:1;stroke:#f57900;stroke-width:0.37115195;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
 />
+        <path
+           inkscape:connector-curvature="0"
+           id="path6388-7-7-4-7"
+           d="m -38.702291,1019.4401 a 1.2088921,1.2031036 45.157416 0 0 1.22702,1.1539 l 4.328611,-0.062 
0.05582,4.3273 a 1.2097974,1.2040046 45.157416 0 0 2.413556,-0.02 l -0.05786,-4.3407 4.341827,-0.062 a 
1.2086076,1.2028205 45.157416 0 0 0.804339,-2.0962 1.2086076,1.2028205 45.157416 0 0 -0.851595,-0.3155 l 
-4.326734,0.062 -0.05773,-4.3292 a 1.2086076,1.2028205 45.157416 0 0 -0.36448,-0.8671 1.2086076,1.2028205 
45.157416 0 0 -2.045307,0.8877 l 0.05601,4.3426 -4.339922,0.062 a 1.2088921,1.2031036 45.157416 0 0 
-1.183546,1.2577 z"
+           
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.4111805
 
;stroke-linecap:round;stroke-linejoin:miter;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"
 />
+        <g
+           id="g7078" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-save-as.svg b/icons/Symbolic/scalable/gimp-save-as.svg
new file mode 100644
index 0000000..4f097eb
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-save-as.svg
@@ -0,0 +1,179 @@
+<?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";
+   width="16"
+   height="16"
+   viewBox="0 0 16 16"
+   id="svg30571"
+   version="1.1"
+   inkscape:version="0.92pre1 unknown"
+   sodipodi:docname="gimp-save-as.svg">
+  <defs
+     id="defs30573" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="16"
+     inkscape:cx="14.900652"
+     inkscape:cy="17.081836"
+     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:grid
+       type="xygrid"
+       id="grid4237" />
+  </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></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1036.3622)">
+    <g
+       id="g4282">
+      <g
+         inkscape:label="gimp-save-tool-preset"
+         id="gimp-save"
+         style="display:inline"
+         transform="translate(-41.0002,617.3622)">
+        <g
+           id="g932"
+           inkscape:label="gimp-save-tool-preset">
+          <g
+             inkscape:label="document-save"
+             transform="translate(-118.9998,-119)"
+             id="g4561"
+             style="display:inline">
+            <rect
+               width="16"
+               height="16"
+               x="538"
+               y="160"
+               id="rect10837-5-8-4-4-4-1"
+               
style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:1;marker:none;enable-background:new"
+               transform="matrix(0,1,1,0,0,0)" />
+            <g
+               id="g4555" />
+          </g>
+        </g>
+        <g
+           transform="translate(-2.9960276)"
+           id="g4265">
+          <path
+             sodipodi:nodetypes="cccc"
+             inkscape:connector-curvature="0"
+             id="path11635"
+             d="m 49.0002,429 -4.02308,-4 h 8 z"
+             style="fill:#bebebe;fill-opacity:1;stroke:none" />
+          <path
+             transform="translate(-118.9998,-119)"
+             
style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#bebebe;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+             d="m 163.5,549 1,-1.5 m 7,0 1,1.5"
+             id="rect4390-9"
+             inkscape:connector-curvature="0"
+             sodipodi:nodetypes="cccc" />
+          <path
+             transform="translate(-118.9998,-119)"
+             
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+             d="m 163,549 v 4 h 10 v -4 z m 3.34375,1.4375 c 0.0208,-10e-4 0.0417,-10e-4 0.0625,0 
0.29096,-0.0556 0.59898,0.20383 0.59375,0.5 V 551 h 2 v -0.0625 c -0.004,-0.26416 0.23582,-0.50712 
0.5,-0.50712 0.26418,0 0.50373,0.24296 0.5,0.50712 V 551 c 0,0.54535 -0.45465,1 -1,1 h -2 c -0.54535,0 
-1,-0.45465 -1,-1 v -0.0625 c -0.0108,-0.21706 0.13723,-0.43234 0.34375,-0.5 z"
+             id="rect11668-7-5"
+             sodipodi:nodetypes="ccccccsccccsccccccc"
+             inkscape:connector-curvature="0" />
+          <rect
+             y="420"
+             x="48.000198"
+             height="7"
+             width="2"
+             id="rect11650"
+             style="fill:#bebebe;fill-opacity:1;stroke:none" />
+        </g>
+      </g>
+      <g
+         id="g3943"
+         transform="matrix(0.51881117,0,0,0.51934226,8.459839,499.3457)">
+        <g
+           id="g3939"
+           transform="matrix(0.75258206,0.75039082,-0.75039082,0.75258206,803.6233,277.20486)">
+          <g
+             id="g3936">
+            <rect
+               transform="matrix(0.99999992,4.0424081e-4,4.7678433e-4,0.99999989,0,0)"
+               
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:#bebebe;stroke-width:2.8874321;stroke-linecap:butt;stroke-linejoin:miter;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="rect3935"
+               width="0.3149831"
+               height="9.6140842"
+               x="-21.06229"
+               y="1034.1587" />
+            <path
+               sodipodi:type="star"
+               
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.5;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:#bebebe;stroke-width:2.91199994;stroke-linecap:butt;stroke-linejoin:miter;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="path3937"
+               sodipodi:sides="3"
+               sodipodi:cx="-20.516788"
+               sodipodi:cy="1049.0612"
+               sodipodi:r1="0.42613241"
+               sodipodi:r2="0.21306621"
+               sodipodi:arg1="1.3734008"
+               sodipodi:arg2="2.4205983"
+               inkscape:flatsided="false"
+               inkscape:rounded="0"
+               inkscape:randomized="0"
+               d="m -20.433217,1049.479 -0.243616,-0.2772 -0.243616,-0.2772 0.361875,-0.072 0.361875,-0.072 
-0.118259,0.3495 z"
+               inkscape:transform-center-x="-0.00088224651"
+               inkscape:transform-center-y="0.060034831"
+               transform="matrix(0.55885439,0.11601918,-0.11601918,0.55885439,112.74961,463.25289)" />
+          </g>
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/icons/icon-list.mk b/icons/icon-list.mk
index 46aa2e3..24df8d5 100644
--- a/icons/icon-list.mk
+++ b/icons/icon-list.mk
@@ -14,7 +14,9 @@ scalable_images = \
        scalable/gimp-channels.svg                      \
        scalable/gimp-channel.svg                       \
        scalable/gimp-char-picker.svg                   \
+       scalable/gimp-clipboard.svg                     \
        scalable/gimp-close.svg                         \
+       scalable/gimp-close-all.svg                     \
        scalable/gimp-colormap.svg                      \
        scalable/gimp-color-picker-black.svg            \
        scalable/gimp-color-picker-gray.svg             \
@@ -47,6 +49,7 @@ scalable_images = \
        scalable/gimp-dynamics.svg                      \
        scalable/gimp-edit.svg                          \
        scalable/gimp-error.svg                         \
+       scalable/gimp-file-manager.svg                  \
        scalable/gimp-flip-horizontal.svg               \
        scalable/gimp-flip-vertical.svg                 \
        scalable/gimp-floating-selection.svg            \
@@ -81,6 +84,8 @@ scalable_images = \
        scalable/gimp-histogram.svg                     \
        scalable/gimp-images.svg                        \
        scalable/gimp-image.svg                         \
+       scalable/gimp-image-open.svg                    \
+       scalable/gimp-image-reload.svg                  \
        scalable/gimp-info.svg                          \
        scalable/gimp-input-device.svg                  \
        scalable/gimp-invert.svg                        \
@@ -157,6 +162,7 @@ scalable_images = \
        scalable/gimp-question.svg                      \
        scalable/gimp-quick-mask-off.svg                \
        scalable/gimp-quick-mask-on.svg                 \
+       scalable/gimp-quit.svg                          \
        scalable/gimp-reset.svg                         \
        scalable/gimp-reshow-filter.svg                 \
        scalable/gimp-resize.svg                        \
@@ -165,6 +171,7 @@ scalable_images = \
        scalable/gimp-rotate-90.svg                     \
        scalable/gimp-sample-point.svg                  \
        scalable/gimp-save.svg                          \
+       scalabe/gimp-save-as.svg                        \
        scalable/gimp-scale.svg                         \
        scalable/gimp-selection.svg                     \
        scalable/gimp-selection-add.svg                 \
@@ -437,6 +444,8 @@ icons16_images = \
        16/gimp-channel-red.png                         \
        16/gimp-channel.png                             \
        16/gimp-channels.png                            \
+       16/gimp-clipboard.png                           \
+       16/gimp-close-all.png                           \
        16/gimp-color-pick-from-screen.png              \
        16/gimp-color-cmyk.png                          \
        16/gimp-color-palette.png                       \
@@ -465,6 +474,7 @@ icons16_images = \
        16/gimp-dynamics.png                            \
        16/gimp-edit.png                                \
        16/gimp-error.png                               \
+       16/gimp-file-manager.png                        \
        16/gimp-flip-horizontal.png                     \
        16/gimp-flip-vertical.png                       \
        16/gimp-floating-selection.png                  \
@@ -487,6 +497,8 @@ icons16_images = \
        16/gimp-histogram.png                           \
        16/gimp-image.png                               \
        16/gimp-images.png                              \
+       16/gimp-image-open.png                          \
+       16/gimp-image-reload.png                        \
        16/gimp-info.png                                \
        16/gimp-input-device.png                        \
        16/gimp-invert.png                              \
@@ -539,6 +551,7 @@ icons16_images = \
        16/gimp-previous.png                            \
        16/gimp-print-resolution.png                    \
        16/gimp-question.png                            \
+       16/gimp-quit.png                                \
        16/gimp-reset.png                               \
        16/gimp-reshow-filter.png                       \
        16/gimp-resize.png                              \
@@ -547,6 +560,7 @@ icons16_images = \
        16/gimp-rotate-90.png                           \
        16/gimp-sample-point.png                        \
        16/gimp-save.png                                \
+       16/gimp-save-as.png                             \
        16/gimp-scale.png                               \
        16/gimp-selection-add.png                       \
        16/gimp-selection-all.png                       \
diff --git a/libgimpwidgets/gimpicons.c b/libgimpwidgets/gimpicons.c
index 9a912ef..b4ca037 100644
--- a/libgimpwidgets/gimpicons.c
+++ b/libgimpwidgets/gimpicons.c
@@ -70,7 +70,15 @@ static const GtkStockItem gimp_stock_items[] =
   { GIMP_STOCK_NEXT,           N_("Ne_xt"),           0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_PREVIOUS,       N_("Pre_vious"),       0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_SAVE,           N_("_Save"),           0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_SAVE_AS,        N_("Save as"),         0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_CANCEL,         N_("_Cancel"),         0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_QUIT,           N_("_Quit"),           0, 0, LIBGIMP_DOMAIN },
+
+  { GIMP_STOCK_IMAGE_OPEN,                    NULL,   0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_IMAGE_RELOAD,                  NULL,   0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_CLOSE_ALL,                     NULL,   0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_CLIPBOARD,                     NULL,   0, 0, LIBGIMP_DOMAIN },
+  { GIMP_STOCK_FILE_MANAGER,                  NULL,   0, 0, LIBGIMP_DOMAIN },
 
   { GIMP_STOCK_GRADIENT_LINEAR,               NULL,   0, 0, LIBGIMP_DOMAIN },
   { GIMP_STOCK_GRADIENT_BILINEAR,             NULL,   0, 0, LIBGIMP_DOMAIN },
diff --git a/libgimpwidgets/gimpicons.h b/libgimpwidgets/gimpicons.h
index 4c73cc4..7ced0ae 100644
--- a/libgimpwidgets/gimpicons.h
+++ b/libgimpwidgets/gimpicons.h
@@ -45,7 +45,16 @@ G_BEGIN_DECLS
 #define GIMP_STOCK_NEXT                     "gimp-next"
 #define GIMP_STOCK_PREVIOUS                 "gimp-previous"
 #define GIMP_STOCK_SAVE                     "gimp-save"
+#define GIMP_STOCK_SAVE_AS                  "gimp-save-as"
 #define GIMP_STOCK_CANCEL                   "gimp-cancel"
+#define GIMP_STOCK_QUIT                     "gimp-quit"
+
+#define GIMP_STOCK_IMAGE_OPEN               "gimp-image-open"
+#define GIMP_STOCK_IMAGE_RELOAD             "gimp-image-reload"
+#define GIMP_STOCK_CLOSE_ALL                "gimp-close-all"
+#define GIMP_STOCK_CLIPBOARD                "gimp-clipboard"
+#define GIMP_STOCK_FILE_MANAGER             "gimp-file-manager"
+
 
 #define GIMP_STOCK_GRADIENT_LINEAR               "gimp-gradient-linear"
 #define GIMP_STOCK_GRADIENT_BILINEAR             "gimp-gradient-bilinear"


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