[gimp] icons: Bug 759904
- From: Jehan Pagès <jehanp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] icons: Bug 759904
- Date: Fri, 10 Jun 2016 11:56:11 +0000 (UTC)
commit b79e75448037fe9a65cec751f98537aa61d127c4
Author: klausstaedtler <staedtler-przyborski web de>
Date: Wed Jun 8 21:27:20 2016 +0200
icons: Bug 759904
add
gimp-open
patch: replace "document-open" by "gimp-open" (or GIMP_STOCK_OPEN)
gimp/plug-ins/imagemap/imap_browse.c: icon = gtk_image_new_from_icon_name ("document-open",
GTK_ICON_SIZE_BUTTON);
gimp/libgimpwidgets/gimpfileentry.c: image = gtk_image_new_from_icon_name ("document-open",
GTK_ICON_SIZE_BUTTON);
gimp/app/actions/text-editor-actions.c: { "text-editor-load", "document-open",
gimp/app/actions/vectors-actions.c: { "vectors-import", "document-open",
gimp/app/actions/patterns-actions.c: { "patterns-open-as-image", "document-open",
gimp/app/actions/documents-actions.c: { "documents-open", "document-open",
gimp/app/actions/brushes-actions.c: { "brushes-open-as-image", "document-open",
gimp/app/actions/text-tool-actions.c: { "text-tool-load", "document-open",
gimp/app/actions/file-actions.c: entries[i].icon_name = "document-open";
gimp/app/widgets/gimpsettingsbox.c: "document-open",
gimp/app/widgets/gimpsettingseditor.c: "document-open",
patch
gimpicons.c
gimpicons.h
app/actions/brushes-actions.c | 2 +-
app/actions/documents-actions.c | 2 +-
app/actions/file-actions.c | 2 +-
app/actions/patterns-actions.c | 2 +-
app/actions/text-editor-actions.c | 2 +-
app/actions/text-tool-actions.c | 2 +-
app/actions/vectors-actions.c | 2 +-
app/widgets/gimpsettingsbox.c | 2 +-
app/widgets/gimpsettingseditor.c | 2 +-
icons/Color/16/gimp-open.png | Bin 0 -> 558 bytes
icons/Color/scalable/gimp-open.svg | 208 ++++++++++++++++++++
icons/Prototype/Color/16/gimp-file-open.png | Bin 772 -> 0 bytes
icons/Prototype/Symbolic/16/gimp-color-profile.png | Bin 730 -> 0 bytes
icons/Prototype/Symbolic/16/gimp-file-open.png | Bin 614 -> 0 bytes
icons/Symbolic/16/gimp-open.png | Bin 0 -> 393 bytes
icons/Symbolic/scalable/gimp-open.svg | 75 +++++++
icons/icon-list.mk | 2 +
libgimpwidgets/gimpfileentry.c | 2 +-
libgimpwidgets/gimpicons.c | 1 +
libgimpwidgets/gimpicons.h | 1 +
plug-ins/imagemap/imap_browse.c | 2 +-
21 files changed, 298 insertions(+), 11 deletions(-)
---
diff --git a/app/actions/brushes-actions.c b/app/actions/brushes-actions.c
index 303094b..78816bd 100644
--- a/app/actions/brushes-actions.c
+++ b/app/actions/brushes-actions.c
@@ -43,7 +43,7 @@ static const GimpActionEntry brushes_actions[] =
NC_("brushes-action", "Brushes Menu"), NULL, NULL, NULL,
GIMP_HELP_BRUSH_DIALOG },
- { "brushes-open-as-image", "document-open",
+ { "brushes-open-as-image", GIMP_STOCK_OPEN,
NC_("brushes-action", "_Open Brush as Image"), NULL,
NC_("brushes-action", "Open brush as image"),
G_CALLBACK (data_open_as_image_cmd_callback),
diff --git a/app/actions/documents-actions.c b/app/actions/documents-actions.c
index 88daed0..cc6284b 100644
--- a/app/actions/documents-actions.c
+++ b/app/actions/documents-actions.c
@@ -42,7 +42,7 @@ static const GimpActionEntry documents_actions[] =
NC_("documents-action", "Documents Menu"), NULL, NULL, NULL,
GIMP_HELP_DOCUMENT_DIALOG },
- { "documents-open", "document-open",
+ { "documents-open", GIMP_STOCK_OPEN,
NC_("documents-action", "_Open Image"), NULL,
NC_("documents-action", "Open the selected entry"),
G_CALLBACK (documents_open_cmd_callback),
diff --git a/app/actions/file-actions.c b/app/actions/file-actions.c
index 5f9e16f..765f442 100644
--- a/app/actions/file-actions.c
+++ b/app/actions/file-actions.c
@@ -198,7 +198,7 @@ file_actions_setup (GimpActionGroup *group)
{
entries[i].name = g_strdup_printf ("file-open-recent-%02d",
i + 1);
- entries[i].icon_name = "document-open";
+ entries[i].icon_name = "gimp-open";
entries[i].label = entries[i].name;
entries[i].tooltip = NULL;
entries[i].value = i;
diff --git a/app/actions/patterns-actions.c b/app/actions/patterns-actions.c
index a0080a5..c0fdf97 100644
--- a/app/actions/patterns-actions.c
+++ b/app/actions/patterns-actions.c
@@ -43,7 +43,7 @@ static const GimpActionEntry patterns_actions[] =
NC_("patterns-action", "Patterns Menu"), NULL, NULL, NULL,
GIMP_HELP_PATTERN_DIALOG },
- { "patterns-open-as-image", "document-open",
+ { "patterns-open-as-image", GIMP_STOCK_OPEN,
NC_("patterns-action", "_Open Pattern as Image"), NULL,
NC_("patterns-action", "Open this pattern as an image"),
G_CALLBACK (data_open_as_image_cmd_callback),
diff --git a/app/actions/text-editor-actions.c b/app/actions/text-editor-actions.c
index fbdd86c..ad325e3 100644
--- a/app/actions/text-editor-actions.c
+++ b/app/actions/text-editor-actions.c
@@ -40,7 +40,7 @@ static const GimpActionEntry text_editor_actions[] =
"Text Editor Toolbar", NULL, NULL, NULL,
GIMP_HELP_TEXT_EDITOR_DIALOG },
- { "text-editor-load", "document-open",
+ { "text-editor-load", GIMP_STOCK_OPEN,
NC_("text-editor-action", "Open"), NULL,
NC_("text-editor-action", "Load text from file"),
G_CALLBACK (text_editor_load_cmd_callback),
diff --git a/app/actions/text-tool-actions.c b/app/actions/text-tool-actions.c
index cbe8965..0bb6f66 100644
--- a/app/actions/text-tool-actions.c
+++ b/app/actions/text-tool-actions.c
@@ -74,7 +74,7 @@ static const GimpActionEntry text_tool_actions[] =
G_CALLBACK (text_tool_delete_cmd_callback),
NULL },
- { "text-tool-load", "document-open",
+ { "text-tool-load", GIMP_STOCK_OPEN,
NC_("text-tool-action", "_Open text file..."), NULL, NULL,
G_CALLBACK (text_tool_load_cmd_callback),
NULL },
diff --git a/app/actions/vectors-actions.c b/app/actions/vectors-actions.c
index 99bbfff..50ed4db 100644
--- a/app/actions/vectors-actions.c
+++ b/app/actions/vectors-actions.c
@@ -147,7 +147,7 @@ static const GimpActionEntry vectors_actions[] =
G_CALLBACK (vectors_export_cmd_callback),
GIMP_HELP_PATH_EXPORT },
- { "vectors-import", "document-open",
+ { "vectors-import", GIMP_STOCK_OPEN,
NC_("vectors-action", "I_mport Path..."), "", NULL,
G_CALLBACK (vectors_import_cmd_callback),
GIMP_HELP_PATH_IMPORT }
diff --git a/app/widgets/gimpsettingsbox.c b/app/widgets/gimpsettingsbox.c
index d91a5e5..d64a172 100644
--- a/app/widgets/gimpsettingsbox.c
+++ b/app/widgets/gimpsettingsbox.c
@@ -315,7 +315,7 @@ gimp_settings_box_constructed (GObject *object)
private->import_item =
gimp_settings_box_menu_item_add (box,
- "document-open",
+ GIMP_STOCK_OPEN,
_("_Import Settings from File..."),
G_CALLBACK (gimp_settings_box_import_activate));
diff --git a/app/widgets/gimpsettingseditor.c b/app/widgets/gimpsettingseditor.c
index 30595aa..6893796 100644
--- a/app/widgets/gimpsettingseditor.c
+++ b/app/widgets/gimpsettingseditor.c
@@ -190,7 +190,7 @@ gimp_settings_editor_constructed (GObject *object)
private->import_button =
gimp_editor_add_button (GIMP_EDITOR (tree_view),
- "document-open",
+ GIMP_STOCK_OPEN,
_("Import settings from a file"),
NULL,
G_CALLBACK (gimp_settings_editor_import_clicked),
diff --git a/icons/Color/16/gimp-open.png b/icons/Color/16/gimp-open.png
new file mode 100644
index 0000000..af446e0
Binary files /dev/null and b/icons/Color/16/gimp-open.png differ
diff --git a/icons/Color/scalable/gimp-open.svg b/icons/Color/scalable/gimp-open.svg
new file mode 100644
index 0000000..277401c
--- /dev/null
+++ b/icons/Color/scalable/gimp-open.svg
@@ -0,0 +1,208 @@
+<?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="16"
+ height="16"
+ id="svg8597"
+ sodipodi:version="0.32"
+ inkscape:version="0.92pre1 unknown"
+ sodipodi:docname="gimp-open.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ version="1.1"
+ viewBox="0 0 16 16">
+ <defs
+ id="defs8599">
+ <linearGradient
+ id="linearGradient259">
+ <stop
+ id="stop260"
+ offset="0.0000000"
+ style="stop-color:#fafafa;stop-opacity:1.0000000;" />
+ <stop
+ id="stop261"
+ offset="1.0000000"
+ style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient269">
+ <stop
+ id="stop270"
+ offset="0.0000000"
+ style="stop-color:#a3a3a3;stop-opacity:1.0000000;" />
+ <stop
+ id="stop271"
+ offset="1"
+ style="stop-color:#8a8a8a;stop-opacity:1;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient15662"
+ id="radialGradient1992"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.968273,0,0,1.032767,3.353553,0.646447)"
+ cx="8.1435566"
+ cy="7.2678967"
+ fx="8.1435566"
+ fy="7.2678967"
+ r="38.158695" />
+ <linearGradient
+ id="linearGradient15662">
+ <stop
+ id="stop15664"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1.0000000;" />
+ <stop
+ id="stop15666"
+ offset="1.0000000"
+ style="stop-color:#f8f8f8;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient259"
+ id="radialGradient1996"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.148355,0.01009137,-0.01104438,0.162365,25.06011,12.81706)"
+ cx="30.653816"
+ cy="14.9373"
+ fx="30.653816"
+ fy="14.9373"
+ r="86.70845" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient269"
+ id="radialGradient1998"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.331735,0,0,0.353831,20.10526,9.5823)"
+ cx="31.863327"
+ cy="2.3667307"
+ fx="31.863327"
+ fy="2.3667307"
+ r="37.751713" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="15.942428"
+ inkscape:cx="12.304478"
+ inkscape:cy="3.953589"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ 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="grid4281" />
+ </sodipodi:namedview>
+ <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="g4293"
+ transform="matrix(1.0000007,0,0,0.99993443,-5.674392e-6,0.00104343)">
+ <g
+ transform="matrix(0.98317894,0,0,1.0097947,-3.8143197e-6,-0.1555793)"
+ 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 H 36.667346
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 H 21.080082 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 H 2.3224188 c -0.4137696,0
-0.7857312,0.4204542 -0.7439232,0.8409082 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>
+ </g>
+ <g
+ id="g3978"
+ transform="matrix(0.87675879,0,0,0.87501264,1.2219577,-906.7553)">
+ <g
+ style="display:inline"
+ id="g1978"
+ transform="matrix(0.38153269,0,0,0.38153269,-1.4421386,1035.0811)">
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="rect15391"
+ d="m 7.7526014,3.6464462 23.4470146,-0.015625 10.278937,12.3134538 4e-6,27.473617 c 0,0.636573
-0.512476,1.149048 -1.149049,1.149048 H 7.7526054 c -0.6365729,0 -1.1490486,-0.512475 -1.1490486,-1.149048 V
4.7954948 c 0,-0.6365729 0.5124757,-1.1490486 1.1490446,-1.1490486 z"
+
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:#a3a3a3;stroke-width:1;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"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="rect15660"
+ d="M 7.8151023,4.5839462 H 32.691494 c 0,0 7.750446,8.0214268 7.750446,8.1039998 v 30.693336 c
0,0.08257 -0.06648,0.149049 -0.149048,0.149049 H 7.8151023 c -0.082573,0 -0.1490485,-0.06648
-0.1490485,-0.149049 V 4.7329948 c 0,-0.082573 0.066476,-0.1490486 0.1490485,-0.1490486 z"
+
style="color:#000000;display:block;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient1992);stroke-width:1;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"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+ sodipodi:nodetypes="cccc"
+ id="path2210"
+ d="M 41.41056,15.872435 31.175441,3.6354934 31.234655,15.968145 Z"
+
style="color:#000000;display:block;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient1996);fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient1998);stroke-width:1;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"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#fafafa;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 39.121563,14.816434 -6.9251,-8.3787965 0.04198,8.2560805 z"
+ id="path2247"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <path
+ inkscape:r_cy="true"
+ inkscape:r_cx="true"
+
style="color:#000000;display:block;overflow:visible;visibility:visible;opacity:1;fill:#6194cb;fill-opacity:1;fill-rule:nonzero;stroke:#3465a4;stroke-width:0.34667295;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.8396377,15.676801 c 0.034988,0.07452 0.1049626,0.149032 0.2099251,0.149032 H 13.315585 c
0.06998,0 0.176276,-0.04451 0.239529,-0.09315 0.179399,-0.137969 0.221494,-0.215793 0.301968,-0.343031
0.828038,-1.309255 1.963492,-6.7928027 1.963492,-6.7928027 0.03499,-0.074515 -0.03499,-0.1490287
-0.139951,-0.1490287 H 3.8682902 c -0.1049626,0 -0.5601023,5.6759104 -1.6448275,6.7963724 l
-0.4188125,0.43261 h 0.034987 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.383006,8.8453169 H 4.1677124 c 0,0 -0.7264396,5.6449991 -1.597229,6.4276261 2.7468177,0
10.6784166,-0.01714 10.6851206,-0.01714 0.592468,0 1.659927,-4.45275 2.127402,-6.410488 z"
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.52272728;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.34672552;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.6;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/icons/Symbolic/16/gimp-open.png b/icons/Symbolic/16/gimp-open.png
new file mode 100644
index 0000000..648c2b6
Binary files /dev/null and b/icons/Symbolic/16/gimp-open.png differ
diff --git a/icons/Symbolic/scalable/gimp-open.svg b/icons/Symbolic/scalable/gimp-open.svg
new file mode 100644
index 0000000..a7fcf20
--- /dev/null
+++ b/icons/Symbolic/scalable/gimp-open.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="gimp-open.svg"
+ viewBox="0 0 16 16">
+ <defs
+ id="defs10" />
+ <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="namedview8"
+ showgrid="true"
+ inkscape:zoom="27.78125"
+ inkscape:cx="8"
+ inkscape:cy="8.9538808"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg7384">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4233" />
+ </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="layer12"
+ transform="matrix(1,0,0,0.99995334,-160,-645.96911)">
+ <path
+ id="rect3845-5-8"
+ style="fill:#bebebe"
+ d="m 160.53,651 c -0.28913,0 -0.53125,0.2421 -0.53125,0.5313 v 9.9375 c 0,0.2985 0.23264,0.5312
0.53125,0.5312 h 13.812 c 0.2986,0 0.53125,-0.2326 0.53125,-0.5312 l 1.125,-4.9159 c 0,-0.2891
-0.24212,-0.5312 -0.53125,-0.5312 h -11.594 l -0.875,3.4783 c 0,0.277 -0.223,0.5 -0.5,0.5 -0.277,0
-0.5,-0.223 -0.5,-0.5 v -4.9966 c 0,-0.277 0.223,-0.5 0.5,-0.5 h 0.46615 V 651 Z"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path1234-3"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#bebebe"
+ d="m 164.81,645.99963 c -0.4584,0.0875 -0.82072,0.5334 -0.8125,1 v 7 H 165 v -7.00033 h 4.9975 v
4.00019 H 174 v 3.00014 h 0.9975 v -3.4375 c 0.006,-0.2641 -0.0976,-0.529 -0.28125,-0.7188 l -3.5625,-3.5624
c -0.18978,-0.1837 -0.45469,-0.28737 -0.71875,-0.28125 h -5.4375 c -0.0312,-10e-4 -0.0625,-10e-4 -0.0937,0
-0.0312,-10e-4 -0.0625,-10e-4 -0.0937,0 z"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccc" />
+ </g>
+</svg>
diff --git a/icons/icon-list.mk b/icons/icon-list.mk
index 6e705e1..9d8d5e7 100644
--- a/icons/icon-list.mk
+++ b/icons/icon-list.mk
@@ -109,6 +109,7 @@ scalable_images = \
scalable/gimp-move-to-screen.svg \
scalable/gimp-navigation.svg \
scalable/gimp-next.svg \
+ scalable/gimp-open.svg \
scalable/gimp-paste-as-new.svg \
scalable/gimp-paste-into.svg \
scalable/gimp-path.svg \
@@ -522,6 +523,7 @@ icons16_images = \
16/gimp-move-to-screen.png \
16/gimp-navigation.png \
16/gimp-next.png \
+ 16/gimp-open.png \
16/gimp-paste-as-new.png \
16/gimp-paste-into.png \
16/gimp-path-delete.png \
diff --git a/libgimpwidgets/gimpfileentry.c b/libgimpwidgets/gimpfileentry.c
index 386530e..9978027 100644
--- a/libgimpwidgets/gimpfileentry.c
+++ b/libgimpwidgets/gimpfileentry.c
@@ -153,7 +153,7 @@ gimp_file_entry_init (GimpFileEntry *entry)
gtk_box_pack_end (GTK_BOX (entry), entry->browse_button, FALSE, FALSE, 0);
gtk_widget_show (entry->browse_button);
- image = gtk_image_new_from_icon_name ("document-open", GTK_ICON_SIZE_BUTTON);
+ image = gtk_image_new_from_icon_name ("gimp-open", GTK_ICON_SIZE_BUTTON);
gtk_container_add (GTK_CONTAINER (entry->browse_button), image);
gtk_widget_show (image);
diff --git a/libgimpwidgets/gimpicons.c b/libgimpwidgets/gimpicons.c
index 41a2ee7..7d67096 100644
--- a/libgimpwidgets/gimpicons.c
+++ b/libgimpwidgets/gimpicons.c
@@ -69,6 +69,7 @@ static const GtkStockItem gimp_stock_items[] =
{ GIMP_STOCK_VISIBLE, N_("Visible"), 0, 0, LIBGIMP_DOMAIN },
{ GIMP_STOCK_NEXT, N_("Ne_xt"), 0, 0, LIBGIMP_DOMAIN },
{ GIMP_STOCK_PREVIOUS, N_("Pre_vious"), 0, 0, LIBGIMP_DOMAIN },
+ { GIMP_STOCK_OPEN, N_("_Open"), 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 },
diff --git a/libgimpwidgets/gimpicons.h b/libgimpwidgets/gimpicons.h
index d38d469..da89ade 100644
--- a/libgimpwidgets/gimpicons.h
+++ b/libgimpwidgets/gimpicons.h
@@ -44,6 +44,7 @@ G_BEGIN_DECLS
#define GIMP_STOCK_VISIBLE "gimp-visible"
#define GIMP_STOCK_NEXT "gimp-next"
#define GIMP_STOCK_PREVIOUS "gimp-previous"
+#define GIMP_STOCK_OPEN "gimp-open"
#define GIMP_STOCK_SAVE "gimp-save"
#define GIMP_STOCK_SAVE_AS "gimp-save-as"
#define GIMP_STOCK_CANCEL "gimp-cancel"
diff --git a/plug-ins/imagemap/imap_browse.c b/plug-ins/imagemap/imap_browse.c
index e947bf0..af569f8 100644
--- a/plug-ins/imagemap/imap_browse.c
+++ b/plug-ins/imagemap/imap_browse.c
@@ -140,7 +140,7 @@ browse_widget_new (const gchar *name)
gtk_widget_show (browse->file);
browse->button = button = gtk_button_new ();
- icon = gtk_image_new_from_icon_name ("document-open", GTK_ICON_SIZE_BUTTON);
+ icon = gtk_image_new_from_icon_name ("gimp-open", GTK_ICON_SIZE_BUTTON);
gtk_container_add (GTK_CONTAINER (button), icon);
gtk_widget_show (icon);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]