shell32: Add blank icons.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b8bc0a3d0d
commit
45227d13e6
|
@ -62,6 +62,7 @@ IDL_SRCS = \
|
|||
shell32_tlb.idl
|
||||
|
||||
SVG_SRCS = \
|
||||
resources/blank.svg \
|
||||
resources/cdrom.svg \
|
||||
resources/control.svg \
|
||||
resources/delete.svg \
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 4.3 KiB |
|
@ -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:format>image/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>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -572,6 +572,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
|
||||
|
||||
|
|
|
@ -218,6 +218,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
|
||||
|
|
Loading…
Reference in New Issue