Module: wine Branch: stable Commit: cba37d347756ec9c89a414a6d61299a0f634c584 URL: https://source.winehq.org/git/wine.git/?a=commit;h=cba37d347756ec9c89a414a6d...
Author: Alex Henrie alexhenrie24@gmail.com Date: Sun Aug 26 22:20:54 2018 -0600
shell32: Add blank icons.
Signed-off-by: Alex Henrie alexhenrie24@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org (cherry picked from commit 45227d13e63332ade32298c1893fd799f0dea018) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
dlls/shell32/Makefile.in | 1 + dlls/shell32/resources/blank.ico | Bin 0 -> 4375 bytes dlls/shell32/resources/blank.svg | 97 +++++++++++++++++++++++++++++++++++++++ dlls/shell32/shell32.rc | 12 +++++ dlls/shell32/shresdef.h | 4 ++ 5 files changed, 114 insertions(+)
diff --git a/dlls/shell32/Makefile.in b/dlls/shell32/Makefile.in index bb1b0df..19e6b5b 100644 --- a/dlls/shell32/Makefile.in +++ b/dlls/shell32/Makefile.in @@ -62,6 +62,7 @@ IDL_SRCS = \ shell32_tlb.idl
SVG_SRCS = \ + resources/blank.svg \ resources/cdrom.svg \ resources/control.svg \ resources/delete.svg \ diff --git a/dlls/shell32/resources/blank.ico b/dlls/shell32/resources/blank.ico new file mode 100644 index 0000000..63b7cdd Binary files /dev/null and b/dlls/shell32/resources/blank.ico differ diff --git a/dlls/shell32/resources/blank.svg b/dlls/shell32/resources/blank.svg new file mode 100644 index 0000000..fc53114 --- /dev/null +++ b/dlls/shell32/resources/blank.svg @@ -0,0 +1,97 @@ +<?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" + id="svg8" + version="1.1" + viewBox="0 0 632 272" + height="272" + width="632"> + <defs + id="defs2" /> + <metadata + id="metadata5"> + rdf:RDF + <cc:Work + rdf:about=""> + dc:formatimage/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + dc:title</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <rect + id="icon:256-32" + height="256" + width="256" + y="8" + x="8" + style="fill:none" /> + <rect + id="icon:48-32" + height="48" + width="48" + y="220" + x="272" + style="fill:none" /> + <rect + id="icon:48-8" + height="48" + width="48" + y="220" + x="328" + style="fill:none" /> + <rect + id="icon:48-4" + height="48" + width="48" + y="220" + x="384" + style="fill:none" /> + <rect + id="icon:32-32" + height="32" + width="32" + y="236" + x="440" + style="fill:none" /> + <rect + id="icon:32-8" + height="32" + width="32" + y="236" + x="480" + style="fill:none" /> + <rect + id="icon:32-4" + height="32" + width="32" + y="236" + x="520" + style="fill:none" /> + <rect + id="icon:16-32" + height="16" + width="16" + y="252" + x="560" + style="fill:none" /> + <rect + id="icon:16-8" + height="16" + width="16" + y="252" + x="584" + style="fill:none" /> + <rect + id="icon:16-32" + height="16" + width="16" + y="252" + x="608" + style="fill:none" /> +</svg> diff --git a/dlls/shell32/shell32.rc b/dlls/shell32/shell32.rc index bd9595b..7daa201 100644 --- a/dlls/shell32/shell32.rc +++ b/dlls/shell32/shell32.rc @@ -506,6 +506,18 @@ IDI_SHELL_RIGHTS ICON resources/lock.ico /* @makedep: resources/shut_down.ico */ IDI_SHELL_CONFIRM_SHUTDOWN ICON resources/shut_down.ico
+/* @makedep: resources/blank.ico */ +IDI_SHELL_BLANK1 ICON resources/blank.ico + +/* @makedep: resources/blank.ico */ +IDI_SHELL_BLANK2 ICON resources/blank.ico + +/* @makedep: resources/blank.ico */ +IDI_SHELL_BLANK3 ICON resources/blank.ico + +/* @makedep: resources/blank.ico */ +IDI_SHELL_BLANK4 ICON resources/blank.ico + /* @makedep: resources/trash_file.ico */ IDI_SHELL_TRASH_FILE ICON resources/trash_file.ico
diff --git a/dlls/shell32/shresdef.h b/dlls/shell32/shresdef.h index 83e97ab..ce5a10c 100644 --- a/dlls/shell32/shresdef.h +++ b/dlls/shell32/shresdef.h @@ -214,6 +214,10 @@ #define IDI_SHELL_UPDATE 47 #define IDI_SHELL_RIGHTS 48 #define IDI_SHELL_CONFIRM_SHUTDOWN 49 +#define IDI_SHELL_BLANK1 50 +#define IDI_SHELL_BLANK2 51 +#define IDI_SHELL_BLANK3 52 +#define IDI_SHELL_BLANK4 53 #define IDI_SHELL_REMOTE_PRINTER 140 #define IDI_SHELL_TO_FILE_PRINTER 141 #define IDI_SHELL_TRASH_FILE 142