[gimp/icons-wip] icons: Bug 759904
- From: Klaus Staedtler <klausstaedtler src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/icons-wip] icons: Bug 759904
- Date: Tue, 28 Jun 2016 17:12:21 +0000 (UTC)
commit 3c3218f08cb49ab145afc09879e6f78d039184cd
Author: klausstaedtler <staedtler-przyborski web de>
Date: Tue Jun 28 19:11:53 2016 +0200
icons: Bug 759904
add:
gimp-view-fullscreen
patch:
replace "view-fullscreen" by "gimp-view-fullscreen"
gimp/app/actions/view-actions.c: { "view-fullscreen", "view-fullscreen",
add:
gimp-window-new
patch:
replace "window-new" by "gimp-window-new"
gimp/app/actions/view-actions.c: { "view-new", "window-new",
rename:
gimp-revert > gimp-view-refresh
patch:
replace "view-refresh" by "gimp-view-refresh"
gimp/plug-ins/help-browser/dialog.c: "reload", "view-refresh",
gimp/plug-ins/common/animation-play.c: { "refresh", "view-refresh",
gimp/app/actions/palettes-actions.c: { "palettes-refresh", "view-refresh",
gimp/app/actions/mypaint-brushes-actions.c: { "mypaint-brushes-refresh", "view-refresh",
gimp/app/actions/dynamics-actions.c: { "dynamics-refresh", "view-refresh",
gimp/app/actions/tool-presets-actions.c: { "tool-presets-refresh", "view-refresh",
gimp/app/actions/patterns-actions.c: { "patterns-refresh", "view-refresh",
gimp/app/actions/documents-actions.c: { "documents-recreate-preview", "view-refresh",
gimp/app/actions/brushes-actions.c: { "brushes-refresh", "view-refresh",
gimp/app/actions/gradients-actions.c: { "gradients-refresh", "view-refresh",
gimp/app/actions/fonts-actions.c: { "fonts-refresh", "view-refresh",
gimp/app/dialogs/preferences-dialog.c: button = prefs_button_add ("view-refresh",
add:
gimp-revert
app/actions/brushes-actions.c | 2 +-
app/actions/documents-actions.c | 2 +-
app/actions/dynamics-actions.c | 2 +-
app/actions/fonts-actions.c | 2 +-
app/actions/gradients-actions.c | 2 +-
app/actions/mypaint-brushes-actions.c | 2 +-
app/actions/palettes-actions.c | 2 +-
app/actions/patterns-actions.c | 2 +-
app/actions/tool-presets-actions.c | 2 +-
app/actions/view-actions.c | 4 +-
app/dialogs/preferences-dialog.c | 2 +-
icons/Color/16/gimp-revert.png | Bin 772 -> 741 bytes
icons/Color/16/gimp-view-fullscreen.png | Bin 0 -> 513 bytes
icons/Color/16/gimp-view-refresh.png | Bin 0 -> 772 bytes
icons/Color/16/gimp-window-new.png | Bin 0 -> 456 bytes
icons/Color/scalable/gimp-revert.svg | 15 ++-
icons/Color/scalable/gimp-view-fullscreen.svg | 143 ++++++++++++++++++++++
icons/Color/scalable/gimp-view-refresh.svg | 109 ++++++++++++++++
icons/Color/scalable/gimp-window-new.svg | 128 +++++++++++++++++++
icons/Symbolic/16/gimp-revert.png | Bin 590 -> 616 bytes
icons/Symbolic/16/gimp-view-fullscreen.png | Bin 0 -> 424 bytes
icons/Symbolic/16/gimp-view-refresh.png | Bin 0 -> 590 bytes
icons/Symbolic/16/gimp-window-new.png | Bin 0 -> 459 bytes
icons/Symbolic/scalable/gimp-revert.svg | 4 +-
icons/Symbolic/scalable/gimp-view-fullscreen.svg | 82 ++++++++++++
icons/Symbolic/scalable/gimp-view-refresh.svg | 120 ++++++++++++++++++
icons/Symbolic/scalable/gimp-window-new.svg | 123 +++++++++++++++++++
icons/icon-list.mk | 6 +
libgimpwidgets/gimpicons.c | 3 +
libgimpwidgets/gimpicons.h | 3 +
plug-ins/common/animation-play.c | 2 +-
plug-ins/help-browser/dialog.c | 2 +-
32 files changed, 741 insertions(+), 23 deletions(-)
---
diff --git a/app/actions/brushes-actions.c b/app/actions/brushes-actions.c
index 9c4e35f..a034025 100644
--- a/app/actions/brushes-actions.c
+++ b/app/actions/brushes-actions.c
@@ -79,7 +79,7 @@ static const GimpActionEntry brushes_actions[] =
G_CALLBACK (data_delete_cmd_callback),
GIMP_HELP_BRUSH_DELETE },
- { "brushes-refresh", "view-refresh",
+ { "brushes-refresh", GIMP_STOCK_VIEW_REFRESH,
NC_("brushes-action", "_Refresh Brushes"), NULL,
NC_("brushes-action", "Refresh brushes"),
G_CALLBACK (data_refresh_cmd_callback),
diff --git a/app/actions/documents-actions.c b/app/actions/documents-actions.c
index 5609ff0..8970f35 100644
--- a/app/actions/documents-actions.c
+++ b/app/actions/documents-actions.c
@@ -84,7 +84,7 @@ static const GimpActionEntry documents_actions[] =
G_CALLBACK (documents_clear_cmd_callback),
GIMP_HELP_DOCUMENT_CLEAR },
- { "documents-recreate-preview", "view-refresh",
+ { "documents-recreate-preview", GIMP_STOCK_VIEW_REFRESH,
NC_("documents-action", "Recreate _Preview"), NULL,
NC_("documents-action", "Recreate preview"),
G_CALLBACK (documents_recreate_preview_cmd_callback),
diff --git a/app/actions/dynamics-actions.c b/app/actions/dynamics-actions.c
index b202fb0..d875bb4 100644
--- a/app/actions/dynamics-actions.c
+++ b/app/actions/dynamics-actions.c
@@ -73,7 +73,7 @@ static const GimpActionEntry dynamics_actions[] =
G_CALLBACK (data_delete_cmd_callback),
GIMP_HELP_DYNAMICS_DELETE },
- { "dynamics-refresh", "view-refresh",
+ { "dynamics-refresh", GIMP_STOCK_VIEW_REFRESH,
NC_("dynamics-action", "_Refresh Dynamics"), NULL,
NC_("dynamics-action", "Refresh dynamics"),
G_CALLBACK (data_refresh_cmd_callback),
diff --git a/app/actions/fonts-actions.c b/app/actions/fonts-actions.c
index 10b815b..61c29bd 100644
--- a/app/actions/fonts-actions.c
+++ b/app/actions/fonts-actions.c
@@ -44,7 +44,7 @@ static const GimpActionEntry fonts_actions[] =
NC_("fonts-action", "Fonts Menu"), NULL, NULL, NULL,
GIMP_HELP_FONT_DIALOG },
- { "fonts-refresh", "view-refresh",
+ { "fonts-refresh", GIMP_STOCK_VIEW_REFRESH,
NC_("fonts-action", "_Rescan Font List"), NULL,
NC_("fonts-action", "Rescan the installed fonts"),
G_CALLBACK (fonts_refresh_cmd_callback),
diff --git a/app/actions/gradients-actions.c b/app/actions/gradients-actions.c
index df469ae..77ade5d 100644
--- a/app/actions/gradients-actions.c
+++ b/app/actions/gradients-actions.c
@@ -80,7 +80,7 @@ static const GimpActionEntry gradients_actions[] =
G_CALLBACK (data_delete_cmd_callback),
GIMP_HELP_GRADIENT_DELETE },
- { "gradients-refresh", "view-refresh",
+ { "gradients-refresh", GIMP_STOCK_VIEW_REFRESH,
NC_("gradients-action", "_Refresh Gradients"), NULL,
NC_("gradients-action", "Refresh gradients"),
G_CALLBACK (data_refresh_cmd_callback),
diff --git a/app/actions/mypaint-brushes-actions.c b/app/actions/mypaint-brushes-actions.c
index 9b705bf..aab22ed 100644
--- a/app/actions/mypaint-brushes-actions.c
+++ b/app/actions/mypaint-brushes-actions.c
@@ -73,7 +73,7 @@ static const GimpActionEntry mypaint_brushes_actions[] =
G_CALLBACK (data_delete_cmd_callback),
GIMP_HELP_MYPAINT_BRUSH_DELETE },
- { "mypaint-brushes-refresh", "view-refresh",
+ { "mypaint-brushes-refresh", GIMP_STOCK_VIEW_REFRESH,
NC_("mypaint-brushes-action", "_Refresh MyPaint Brushes"), NULL,
NC_("mypaint-brushes-action", "Refresh MyPaint brushes"),
G_CALLBACK (data_refresh_cmd_callback),
diff --git a/app/actions/palettes-actions.c b/app/actions/palettes-actions.c
index 423f165..ffecc59 100644
--- a/app/actions/palettes-actions.c
+++ b/app/actions/palettes-actions.c
@@ -86,7 +86,7 @@ static const GimpActionEntry palettes_actions[] =
G_CALLBACK (data_delete_cmd_callback),
GIMP_HELP_PALETTE_DELETE },
- { "palettes-refresh", "view-refresh",
+ { "palettes-refresh", GIMP_STOCK_VIEW_REFRESH,
NC_("palettes-action", "_Refresh Palettes"), NULL,
NC_("palettes-action", "Refresh palettes"),
G_CALLBACK (data_refresh_cmd_callback),
diff --git a/app/actions/patterns-actions.c b/app/actions/patterns-actions.c
index 35c4f63..9fb4e64 100644
--- a/app/actions/patterns-actions.c
+++ b/app/actions/patterns-actions.c
@@ -79,7 +79,7 @@ static const GimpActionEntry patterns_actions[] =
G_CALLBACK (data_delete_cmd_callback),
GIMP_HELP_PATTERN_DELETE },
- { "patterns-refresh", "view-refresh",
+ { "patterns-refresh", GIMP_STOCK_VIEW_REFRESH,
NC_("patterns-action", "_Refresh Patterns"), NULL,
NC_("patterns-action", "Refresh patterns"),
G_CALLBACK (data_refresh_cmd_callback),
diff --git a/app/actions/tool-presets-actions.c b/app/actions/tool-presets-actions.c
index 04f59f4..efcf130 100644
--- a/app/actions/tool-presets-actions.c
+++ b/app/actions/tool-presets-actions.c
@@ -82,7 +82,7 @@ static const GimpActionEntry tool_presets_actions[] =
G_CALLBACK (data_delete_cmd_callback),
GIMP_HELP_TOOL_PRESET_DELETE },
- { "tool-presets-refresh", "view-refresh",
+ { "tool-presets-refresh", GIMP_STOCK_VIEW_REFRESH,
NC_("tool-presets-action", "_Refresh Tool Presets"), NULL,
NC_("tool-presets-action", "Refresh tool presets"),
G_CALLBACK (data_refresh_cmd_callback),
diff --git a/app/actions/view-actions.c b/app/actions/view-actions.c
index ee45bb2..8085399 100644
--- a/app/actions/view-actions.c
+++ b/app/actions/view-actions.c
@@ -85,7 +85,7 @@ static const GimpActionEntry view_actions[] =
NC_("view-action", "Move to Screen"), NULL, NULL, NULL,
GIMP_HELP_VIEW_CHANGE_SCREEN },
- { "view-new", "window-new",
+ { "view-new", GIMP_STOCK_WINDOW_NEW,
NC_("view-action", "_New View"), NULL,
NC_("view-action", "Create another view on this image"),
G_CALLBACK (view_new_cmd_callback),
@@ -295,7 +295,7 @@ static const GimpToggleActionEntry view_toggle_actions[] =
TRUE,
GIMP_HELP_VIEW_SHOW_STATUSBAR },
- { "view-fullscreen", "view-fullscreen",
+ { "view-fullscreen", GIMP_STOCK_VIEW_FULLSCREEN,
NC_("view-action", "Fullscr_een"), "F11",
NC_("view-action", "Toggle fullscreen view"),
G_CALLBACK (view_fullscreen_cmd_callback),
diff --git a/app/dialogs/preferences-dialog.c b/app/dialogs/preferences-dialog.c
index f45fae6..65339b1 100644
--- a/app/dialogs/preferences-dialog.c
+++ b/app/dialogs/preferences-dialog.c
@@ -1831,7 +1831,7 @@ prefs_dialog_new (Gimp *gimp,
gtk_box_pack_start (GTK_BOX (vbox2), hbox, FALSE, FALSE, 0);
gtk_widget_show (hbox);
- button = prefs_button_add ("view-refresh",
+ button = prefs_button_add (GIMP_STOCK_VIEW_REFRESH,
_("Reload C_urrent Theme"),
GTK_BOX (hbox));
g_signal_connect (button, "clicked",
diff --git a/icons/Color/16/gimp-revert.png b/icons/Color/16/gimp-revert.png
index 106bee6..1b79450 100644
Binary files a/icons/Color/16/gimp-revert.png and b/icons/Color/16/gimp-revert.png differ
diff --git a/icons/Color/16/gimp-view-fullscreen.png b/icons/Color/16/gimp-view-fullscreen.png
new file mode 100644
index 0000000..928d551
Binary files /dev/null and b/icons/Color/16/gimp-view-fullscreen.png differ
diff --git a/icons/Color/16/gimp-view-refresh.png b/icons/Color/16/gimp-view-refresh.png
new file mode 100644
index 0000000..106bee6
Binary files /dev/null and b/icons/Color/16/gimp-view-refresh.png differ
diff --git a/icons/Color/16/gimp-window-new.png b/icons/Color/16/gimp-window-new.png
new file mode 100644
index 0000000..9414306
Binary files /dev/null and b/icons/Color/16/gimp-window-new.png differ
diff --git a/icons/Color/scalable/gimp-revert.svg b/icons/Color/scalable/gimp-revert.svg
index 54204d4..828dacf 100644
--- a/icons/Color/scalable/gimp-revert.svg
+++ b/icons/Color/scalable/gimp-revert.svg
@@ -13,7 +13,7 @@
id="svg30571"
version="1.1"
inkscape:version="0.92pre1 unknown"
- sodipodi:docname="gimp-reverta.svg">
+ sodipodi:docname="gimp-revert.svg">
<defs
id="defs30573" />
<sodipodi:namedview
@@ -24,7 +24,7 @@
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="21.232704"
- inkscape:cx="7.2618067"
+ inkscape:cx="11.874704"
inkscape:cy="9.375823"
inkscape:document-units="px"
inkscape:current-layer="layer1"
@@ -45,11 +45,11 @@
inkscape:snap-center="true"
inkscape:snap-text-baseline="true"
showborder="false"
- inkscape:window-width="1606"
- inkscape:window-height="871"
+ inkscape:window-width="1920"
+ inkscape:window-height="1016"
inkscape:window-x="0"
inkscape:window-y="27"
- inkscape:window-maximized="0"
+ inkscape:window-maximized="1"
showguides="true">
<inkscape:grid
type="xygrid"
@@ -80,7 +80,8 @@
id="layer1"
transform="translate(0,-1036.3622)">
<g
- id="g4237">
+ id="g4237"
+ transform="matrix(-1,0,0,1,16,0)">
<g
style="fill:#4e9a06"
transform="matrix(1.0376102,0,0,1.0091341,0.21343527,-9.8486241)"
@@ -93,7 +94,7 @@
id="path4874"
transform="matrix(1.3056012,0,0,1.3056012,-42.119746,1003.0953)"
d="M 13.669922,0.76171875 A 1.1490108,1.1490108 0 0 0 12.539062,1.9277344 V 2.875 C
11.580602,2.023266 10.401786,1.4430604 9.125,1.2304688 8.3630798,1.1036306 7.5695734,1.1033626
6.7734375,1.2480469 3.5888993,1.8249458 1.198036,4.5477589 1.0332031,7.7792969 0.86836872,11.010911
2.9713663,13.915672 6.0839844,14.746094 9.1966032,15.576439 12.506084,14.113891 14.023438,11.242188 L
12.003906,10.191406 C 10.982525,12.124462 8.7875478,13.09283 6.6972656,12.535156 4.6069827,11.977635
3.2073278,10.047869 3.3183594,7.8710938 3.4293887,5.6943955 5.0198611,3.885378 7.1582031,3.4980469
8.78968,3.2025274 10.3876,3.8003497 11.419922,4.9902344 H 9.4746094 a 1.149414,1.149414 0 1 0 0,2.2988281 H
14.835938 V 1.9277344 A 1.1490108,1.1490108 0 0 0 13.669922,0.76171875 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:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:0.5;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"
+
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:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:0.5;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"
inkscape:connector-curvature="0" />
</g>
</g>
diff --git a/icons/Color/scalable/gimp-view-fullscreen.svg b/icons/Color/scalable/gimp-view-fullscreen.svg
new file mode 100644
index 0000000..058d21d
--- /dev/null
+++ b/icons/Color/scalable/gimp-view-fullscreen.svg
@@ -0,0 +1,143 @@
+<?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"
+ width="16"
+ height="16"
+ viewBox="0 0 16 16"
+ id="svg30571"
+ version="1.1"
+ inkscape:version="0.92pre1 unknown"
+ sodipodi:docname="gimp-view-fullscreen.svg">
+ <defs
+ id="defs30573" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="16"
+ inkscape:cx="15.952017"
+ inkscape:cy="2.0993751"
+ 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="true"
+ inkscape:guide-bbox="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4274" />
+ </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
+ id="g4373">
+ <g
+ transform="translate(-0.14368483,1036.1439)"
+ style="display:inline;enable-background:new"
+ id="g16">
+ <path
+ inkscape:connector-curvature="0"
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47481346;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:nodetypes="cccc"
+ id="path103"
+ d="m 3.1436848,4.2183 v 8 L 0.14368483,8.2183009 Z" />
+ </g>
+ <g
+ transform="matrix(1.0094643,0,0,1.3052327,-422.02915,752.03256)"
+ id="g6086-2"
+ style="display:inline;enable-background:new">
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="rect4627-2-3-0"
+ d="m 429.49474,221.36813 v 5.19865 h -6.99461 v -5.19865 z"
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;stroke:#888a85;stroke-width:0.93049449;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:new"
/>
+ </g>
+ <g
+ transform="matrix(-1,0,0,1,16.143685,1036.1439)"
+ style="display:inline;enable-background:new"
+ id="g16-3">
+ <path
+ inkscape:connector-curvature="0"
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47481346;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:nodetypes="cccc"
+ id="path103-6"
+ d="m 3.1436848,4.2183 v 8 L 0.14368483,8.2183009 Z" />
+ </g>
+ <g
+ transform="rotate(90,-510.06814,526.28644)"
+ style="display:inline;enable-background:new"
+ id="g16-7">
+ <path
+ inkscape:connector-curvature="0"
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47481346;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:nodetypes="cccc"
+ id="path103-5"
+ d="m 3.00762,4.2183 v 8 L 0.00762003,8.2183009 Z" />
+ </g>
+ <g
+ transform="matrix(0,-1,-1,0,16.2183,1052.3698)"
+ style="display:inline;enable-background:new"
+ id="g16-7-3">
+ <path
+ inkscape:connector-curvature="0"
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47481346;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:nodetypes="cccc"
+ id="path103-5-5"
+ d="m 3.00762,4.2183 v 8 L 0.00762003,8.2183009 Z" />
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-view-refresh.svg b/icons/Color/scalable/gimp-view-refresh.svg
new file mode 100644
index 0000000..54204d4
--- /dev/null
+++ b/icons/Color/scalable/gimp-view-refresh.svg
@@ -0,0 +1,109 @@
+<?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-reverta.svg">
+ <defs
+ id="defs30573" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="21.232704"
+ inkscape:cx="7.2618067"
+ inkscape:cy="9.375823"
+ 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="1606"
+ inkscape:window-height="871"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="0"
+ showguides="true">
+ <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></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-1036.3622)">
+ <g
+ id="g4237">
+ <g
+ style="fill:#4e9a06"
+ transform="matrix(1.0376102,0,0,1.0091341,0.21343527,-9.8486241)"
+ id="g3946">
+ <g
+ style="fill:#4e9a06"
+ id="refresh"
+ transform="matrix(0.74272062,0,0,0.74272062,31.29055,291.82008)">
+ <path
+ id="path4874"
+ transform="matrix(1.3056012,0,0,1.3056012,-42.119746,1003.0953)"
+ d="M 13.669922,0.76171875 A 1.1490108,1.1490108 0 0 0 12.539062,1.9277344 V 2.875 C
11.580602,2.023266 10.401786,1.4430604 9.125,1.2304688 8.3630798,1.1036306 7.5695734,1.1033626
6.7734375,1.2480469 3.5888993,1.8249458 1.198036,4.5477589 1.0332031,7.7792969 0.86836872,11.010911
2.9713663,13.915672 6.0839844,14.746094 9.1966032,15.576439 12.506084,14.113891 14.023438,11.242188 L
12.003906,10.191406 C 10.982525,12.124462 8.7875478,13.09283 6.6972656,12.535156 4.6069827,11.977635
3.2073278,10.047869 3.3183594,7.8710938 3.4293887,5.6943955 5.0198611,3.885378 7.1582031,3.4980469
8.78968,3.2025274 10.3876,3.8003497 11.419922,4.9902344 H 9.4746094 a 1.149414,1.149414 0 1 0 0,2.2988281 H
14.835938 V 1.9277344 A 1.1490108,1.1490108 0 0 0 13.669922,0.76171875 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:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:0.5;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"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <rect
+ y="1036.3622"
+ x="0"
+ height="16"
+ width="16"
+ id="rect3999-8"
+
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.10246458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
/>
+ </g>
+ </g>
+</svg>
diff --git a/icons/Color/scalable/gimp-window-new.svg b/icons/Color/scalable/gimp-window-new.svg
new file mode 100644
index 0000000..27c0ecb
--- /dev/null
+++ b/icons/Color/scalable/gimp-window-new.svg
@@ -0,0 +1,128 @@
+<?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.000076"
+ height="15.999846"
+ id="svg2"
+ viewBox="0 0 16.000076 15.999845"
+ inkscape:version="0.92pre1 unknown"
+ sodipodi:docname="gimp-window-new.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="namedview1700"
+ showgrid="true"
+ inkscape:zoom="36.087908"
+ inkscape:cx="7.3391294"
+ inkscape:cy="5.6966425"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2">
+ <inkscape:grid
+ type="xygrid"
+ id="grid3447" />
+ </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
+ gradientUnits="userSpaceOnUse"
+ r="7"
+ cy="7.75"
+ cx="39.75"
+ id="radialGradient4175"
+ xlink:href="#linearGradient4169-3"
+ gradientTransform="matrix(0.42857142,0,0,0.42857145,-4.035713,-0.32158255)" />
+ <linearGradient
+ id="linearGradient4169-3">
+ <stop
+ stop-color="#ffffff"
+ id="stop4171" />
+ <stop
+ stop-opacity="0.932039"
+ stop-color="#e6ff8f"
+ offset="0.5"
+ id="stop4177" />
+ <stop
+ stop-opacity="0.019417"
+ stop-color="#ff3a20"
+ id="stop4173"
+ offset="1" />
+ </linearGradient>
+ </defs>
+ <g
+ id="g3497"
+ transform="matrix(0.99982314,0,0,1.0001806,0.00133458,-0.00154058)">
+ <g
+ style="display:inline"
+ id="g7390"
+ transform="matrix(0.01004766,0,0,0.01155023,17.00766,13.876329)" />
+ <rect
+ ry="0.47841677"
+ rx="0.46628499"
+ y="0.21484029"
+ x="0.21215792"
+ height="15.570165"
+ width="15.575768"
+ id="rect7400-7"
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.42698547;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"
/>
+ <rect
+ ry="0.074090302"
+ rx="0.083351634"
+ y="1.9998463"
+ x="2"
+ height="1"
+ width="12"
+ id="rect7402-6"
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.8067863;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"
/>
+ <rect
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.8067863;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"
+ id="rect3584"
+ width="12"
+ height="1"
+ x="2"
+ y="12.999846"
+ rx="0.083351634"
+ ry="0.074090302" />
+ </g>
+ <circle
+ r="3"
+ cy="2.9998465"
+ cx="13"
+ id="path4167"
+ stroke-miterlimit="10"
+
style="color:#000000;fill:url(#radialGradient4175);stroke-width:0.21428572;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
/>
+</svg>
diff --git a/icons/Symbolic/16/gimp-revert.png b/icons/Symbolic/16/gimp-revert.png
index 3350228..5cc4fe7 100644
Binary files a/icons/Symbolic/16/gimp-revert.png and b/icons/Symbolic/16/gimp-revert.png differ
diff --git a/icons/Symbolic/16/gimp-view-fullscreen.png b/icons/Symbolic/16/gimp-view-fullscreen.png
new file mode 100644
index 0000000..4d5370f
Binary files /dev/null and b/icons/Symbolic/16/gimp-view-fullscreen.png differ
diff --git a/icons/Symbolic/16/gimp-view-refresh.png b/icons/Symbolic/16/gimp-view-refresh.png
new file mode 100644
index 0000000..3350228
Binary files /dev/null and b/icons/Symbolic/16/gimp-view-refresh.png differ
diff --git a/icons/Symbolic/16/gimp-window-new.png b/icons/Symbolic/16/gimp-window-new.png
new file mode 100644
index 0000000..d5495f4
Binary files /dev/null and b/icons/Symbolic/16/gimp-window-new.png differ
diff --git a/icons/Symbolic/scalable/gimp-revert.svg b/icons/Symbolic/scalable/gimp-revert.svg
index c4c4ee5..4bef01c 100644
--- a/icons/Symbolic/scalable/gimp-revert.svg
+++ b/icons/Symbolic/scalable/gimp-revert.svg
@@ -70,7 +70,7 @@
<dc:title>Klaus Staedtler </dc:title>
</cc:Agent>
</dc:creator>
- <dc:title />
+ <dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
@@ -81,7 +81,7 @@
transform="translate(0,-1036.3622)">
<g
id="g3946"
- transform="matrix(1.03125,0,0,1.03125,-0.00757575,-32.87871)">
+ transform="matrix(-1.03125,0,0,1.03125,16.492425,-32.87871)">
<g
transform="matrix(0.74272062,0,0,0.74272062,31.29055,291.82008)"
id="refresh">
diff --git a/icons/Symbolic/scalable/gimp-view-fullscreen.svg
b/icons/Symbolic/scalable/gimp-view-fullscreen.svg
new file mode 100644
index 0000000..4b4c9a5
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-view-fullscreen.svg
@@ -0,0 +1,82 @@
+<?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"
+ sodipodi:docname="gimp-view-fullscreen.svg"
+ viewBox="0 0 16 16"
+ inkscape:version="0.92pre1 unknown">
+ <defs
+ id="defs18" />
+ <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="namedview16"
+ showgrid="true"
+ inkscape:snap-global="false"
+ inkscape:zoom="43.1875"
+ inkscape:cx="6.7713007"
+ inkscape:cy="7.8494935"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg7384">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4251" />
+ </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>Gnome Symbolic Icon Theme</dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <title
+ id="title9167">Gnome Symbolic Icon Theme</title>
+ <g
+ id="g4292">
+ <rect
+ y="8.6042284e-16"
+ x="0"
+ height="16"
+ width="16"
+ id="rect4287"
+
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:0.20284159;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke
fill markers" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path12113"
+ d="M 6.5039062,8.5 C 6.4515452,8.500406 6.3992978,8.50498 6.3476562,8.513672 6.1257158,8.538254
5.9185553,8.6373606 5.7597656,8.794922 l -2.75,2.759766 V 10.001953 C 3.0234006,9.4402107 2.5607908,8.9961002
2,9 H 1 v 6 h 6 v -1 0 C 7.0103655,13.43821 6.5490178,12.979184 5.9882812,12.986328 H 4.4296875 L
7.1835938,10.222656 C 7.8445429,9.6057506 7.4064634,8.4954458 6.5039062,8.5 Z"
+
style="color:#000000;text-indent:0;text-transform:none;fill:#bebebe;stroke-width:0.99427736;enable-background:new"
/>
+ <path
+ sodipodi:nodetypes="ccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path12113-6"
+ d="m 9.4975356,7.499986 c 0.052347,-4.06e-4 0.104581,-0.005 0.1562091,-0.01367 C 9.875627,7.461736
10.082733,7.362627 10.241482,7.205066 L 12.990761,4.4453 v 1.552735 c -0.01363,0.56174 0.448857,1.005851
1.009501,1.001951 H 15 V 0.99998603 H 9.0015718 v 0.99999997 0 c -0.010362,0.56179 0.4508641,1.020816
1.0114542,1.013672 h 1.558185 L 8.8180261,5.77733 C 8.1572501,6.394235 8.5952149,7.50454 9.4975356,7.499986 Z"
+
style="color:#000000;text-indent:0;text-transform:none;fill:#bebebe;stroke-width:0.99414712;enable-background:new"
/>
+ </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-view-refresh.svg b/icons/Symbolic/scalable/gimp-view-refresh.svg
new file mode 100644
index 0000000..c4c4ee5
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-view-refresh.svg
@@ -0,0 +1,120 @@
+<?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-revert.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="4.3423913"
+ inkscape:cy="9.988086"
+ 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"
+ showguides="false">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4233" />
+ </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="g3946"
+ transform="matrix(1.03125,0,0,1.03125,-0.00757575,-32.87871)">
+ <g
+ transform="matrix(0.74272062,0,0,0.74272062,31.29055,291.82008)"
+ id="refresh">
+ <path
+ sodipodi:type="arc"
+
style="display:inline;opacity:1;fill:none;stroke:#bebebe;stroke-width:3.00320578;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path4874"
+ sodipodi:cx="-20.820019"
+ sodipodi:cy="1013.6003"
+ sodipodi:rx="7.513957"
+ sodipodi:ry="7.6384649"
+ d="m -14.150104,1017.1176 a 7.513957,7.6384649 0 0 1 -8.596684,3.8657 7.513957,7.6384649 0 0 1
-5.581145,-7.6893 7.513957,7.6384649 0 0 1 6.169308,-7.21 7.513957,7.6384649 0 0 1 8.264328,4.5536"
+ transform="matrix(1,0,-0.01083068,0.99994135,0,0)"
+ sodipodi:start="0.4785358"
+ sodipodi:end="5.8848662"
+ sodipodi:open="true" />
+ <path
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0"
+ id="path8393-3-8-4-9-3-7"
+ d="m -29.507039,1011.1182 h 5.477342 v -5.4773"
+
style="display:inline;opacity:1;fill:none;stroke:#bebebe;stroke-width:2.9876411;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ inkscape:export-filename="/home/matthias/Arbeitsfläche/sifr/von Jay Philipz/Matti/navigation.png"
+ inkscape:export-xdpi="89"
+ inkscape:export-ydpi="89" />
+ </g>
+ <rect
+ y="1036.6046"
+ x="0.24242425"
+ height="15.515152"
+ width="15.515152"
+ id="rect3999"
+
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.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"
/>
+ </g>
+ </g>
+</svg>
diff --git a/icons/Symbolic/scalable/gimp-window-new.svg b/icons/Symbolic/scalable/gimp-window-new.svg
new file mode 100644
index 0000000..9dc4072
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-window-new.svg
@@ -0,0 +1,123 @@
+<?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-window-new.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="namedview1509"
+ showgrid="true"
+ inkscape:zoom="14.75"
+ inkscape:cx="1.1525424"
+ inkscape:cy="9.1864407"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg7384">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4258" />
+ </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 "Art Libre" icon set. Extended and
adopted for GIMP</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs7386">
+ <linearGradient
+ gradientTransform="matrix(0.34682586,0,0,0.30620888,-159.35206,741.03851)"
+ osb:paint="solid"
+ id="linearGradient19282-4">
+ <stop
+ id="stop19284-0"
+ offset="0"
+ style="stop-color:#bebebe;stop-opacity:1;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(882.47628,333.46232)"
+ gradientUnits="userSpaceOnUse"
+ y2="8"
+ x2="30"
+ y1="8"
+ x1="16"
+ id="linearGradient8141"
+ xlink:href="#linearGradient19282-4" />
+ <linearGradient
+ gradientTransform="translate(695.8189,355.96911)"
+ gradientUnits="userSpaceOnUse"
+ y2="3.5441902"
+ x2="130.98772"
+ y1="3.5441902"
+ x1="124"
+ id="linearGradient7460-6"
+ xlink:href="#linearGradient19282-4" />
+ </defs>
+ <g
+ transform="translate(-284.15567,-175.46232)"
+ style="display:inline"
+ id="preferences">
+ <g
+ transform="translate(289.15566,155.46232)"
+ id="gimp-prefs-image-title">
+ <g
+ id="g724"
+ transform="translate(-20,20)">
+ <rect
+ style="fill:none;stroke:none"
+ id="rect15294"
+ width="16"
+ height="16"
+ x="15.000013"
+ y="0" />
+ <path
+ style="fill:url(#linearGradient8141);fill-opacity:1;stroke:none"
+ d="M 1,1 V 15 H 15 V 8 C 14.826668,8.1266586 14.426971,7.9219776 14,7.666 V 14 H 2 V 5 H 9.514 C
9.715962,4.4637578 9.43544,4.361572 9.209,4 H 2 V 2 h 8.395 c 0.178268,-0.161658 0.324924,-0.5845492 0.478,-1
z"
+ transform="translate(15.00001)"
+ id="path15296"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccccc" />
+ </g>
+ </g>
+ </g>
+ <path
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient7460-6);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
+ d="m 15.001747,6.9999998 c -0.40319,0.30064 -1.98997,-1.1236 -2.48694,-1.12573 -0.49718,-0.002
-2.11373,1.42971 -2.51481,1.12573 -0.40093,-0.30387 0.74435,-2.04513 0.59271,-2.53484 -0.15168,-0.48991
-1.73746,-1.32666 -1.582,-1.81529 0.15541,-0.48846 1.95505,-0.31906 2.35832,-0.6196 0.40342,-0.30066
0.63836,-1.98624004 1.13554,-1.98425004 0.49697,0.002 0.76103,1.68027004 1.16188,1.98425004 0.40101,0.30409
2.15927,0.1595 2.31108,0.64934 0.15174,0.48967 -1.44059,1.3123 -1.59612,1.80072 -0.15559,0.48859
1.02369,2.2189 0.62034,2.51967 z"
+ id="path12190"
+ inkscape:connector-curvature="0" />
+</svg>
diff --git a/icons/icon-list.mk b/icons/icon-list.mk
index ab9b2dd..27c6f28 100644
--- a/icons/icon-list.mk
+++ b/icons/icon-list.mk
@@ -297,9 +297,12 @@ scalable_images = \
scalable/gimp-vchain-broken.svg \
scalable/gimp-vfill.svg \
scalable/gimp-video.svg \
+ scalable/gimp-view-fullscreen.svg \
+ scalable/gimp-view-refresh.svg \
scalable/gimp-visible.svg \
scalable/gimp-warning.svg \
scalable/gimp-web.svg \
+ scalable/gimp-window-new.svg \
scalable/gimp-wilber.svg \
scalable/gimp-wilber-eek.svg \
scalable/gimp-wilber-outline.svg \
@@ -723,8 +726,11 @@ icons16_images = \
16/gimp-up.png \
16/gimp-user-manual.png \
16/gimp-video.png \
+ 16/gimp-view-fullscreen.png \
+ 16/gimp-view-refresh.png \
16/gimp-warning.png \
16/gimp-web.png \
+ 16/gimp-window-new.png \
16/gimp-wilber.png \
16/gimp-yes.png \
16/gimp-zoom-fit-best.png \
diff --git a/libgimpwidgets/gimpicons.c b/libgimpwidgets/gimpicons.c
index cae01a5..2bdf32d 100644
--- a/libgimpwidgets/gimpicons.c
+++ b/libgimpwidgets/gimpicons.c
@@ -98,6 +98,9 @@ static const GtkStockItem gimp_stock_items[] =
{ GIMP_STOCK_ZOOM_IN, NULL, 0, 0, LIBGIMP_DOMAIN },
{ GIMP_STOCK_ZOOM_ORIGINAL, NULL, 0, 0, LIBGIMP_DOMAIN },
{ GIMP_STOCK_ZOOM_OUT, NULL, 0, 0, LIBGIMP_DOMAIN },
+ { GIMP_STOCK_VIEW_FULLSCREEN, NULL, 0, 0, LIBGIMP_DOMAIN },
+ { GIMP_STOCK_VIEW_REFRESH, NULL, 0, 0, LIBGIMP_DOMAIN },
+ { GIMP_STOCK_WINDOW_NEW, 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 8a70aab..2a5f861 100644
--- a/libgimpwidgets/gimpicons.h
+++ b/libgimpwidgets/gimpicons.h
@@ -73,6 +73,9 @@ G_BEGIN_DECLS
#define GIMP_STOCK_ZOOM_IN "gimp-zoom-in"
#define GIMP_STOCK_ZOOM_ORIGINAL "gimp-zoom-original"
#define GIMP_STOCK_ZOOM_OUT "gimp-zoom-out"
+#define GIMP_STOCK_VIEW_FULLSCREEN "gimp-view-fullscreen"
+#define GIMP_STOCK_VIEW_REFRESH "gimp-view-refresh"
+#define GIMP_STOCK_WINDOW_NEW "gimp-window-new"
#define GIMP_STOCK_GRADIENT_LINEAR "gimp-gradient-linear"
diff --git a/plug-ins/common/animation-play.c b/plug-ins/common/animation-play.c
index 0ed4dce..0cb1a9f 100644
--- a/plug-ins/common/animation-play.c
+++ b/plug-ins/common/animation-play.c
@@ -600,7 +600,7 @@ ui_manager_new (GtkWidget *window)
NULL, NULL, N_("Rewind the animation"),
G_CALLBACK (rewind_callback) },
- { "refresh", "view-refresh",
+ { "refresh", "gimp-view-refresh",
NULL, "<control>R", N_("Reload the image"),
G_CALLBACK (refresh_callback) },
diff --git a/plug-ins/help-browser/dialog.c b/plug-ins/help-browser/dialog.c
index 2658c78..1125788 100644
--- a/plug-ins/help-browser/dialog.c
+++ b/plug-ins/help-browser/dialog.c
@@ -562,7 +562,7 @@ ui_manager_new (GtkWidget *window)
G_CALLBACK (forward_callback)
},
{
- "reload", "view-refresh",
+ "reload", "gimp-view-refresh",
N_("_Reload"), "<control>R", N_("Reload current page"),
G_CALLBACK (reload_callback)
},
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]