Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9d1c9604
Commit
9d1c9604
authored
Jan 18, 2004
by
Martin Fuchs
Committed by
Alexandre Julliard
Jan 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ShellView_CreateList(), SIC_Initialize(): enable transparent icons on
the desktop.
parent
87326ba7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
iconcache.c
dlls/shell32/iconcache.c
+4
-4
shlview.c
dlls/shell32/shlview.c
+9
-0
No files found.
dlls/shell32/iconcache.c
View file @
9d1c9604
...
...
@@ -241,11 +241,11 @@ BOOL SIC_Initialize(void)
return
(
FALSE
);
}
ShellSmallIconList
=
ImageList_Create
(
16
,
16
,
ILC_COLORDDB
|
ILC_MASK
,
0
,
0x20
);
ShellBigIconList
=
ImageList_Create
(
32
,
32
,
ILC_COLORDDB
|
ILC_MASK
,
0
,
0x20
);
ShellSmallIconList
=
ImageList_Create
(
16
,
16
,
ILC_COLOR32
|
ILC_MASK
,
0
,
0x20
);
ShellBigIconList
=
ImageList_Create
(
32
,
32
,
ILC_COLOR32
|
ILC_MASK
,
0
,
0x20
);
ImageList_SetBkColor
(
ShellSmallIconList
,
GetSysColor
(
COLOR_WINDOW
)
);
ImageList_SetBkColor
(
ShellBigIconList
,
GetSysColor
(
COLOR_WINDOW
)
);
ImageList_SetBkColor
(
ShellSmallIconList
,
CLR_NONE
);
ImageList_SetBkColor
(
ShellBigIconList
,
CLR_NONE
);
for
(
index
=
1
;
index
<
39
;
index
++
)
{
...
...
dlls/shell32/shlview.c
View file @
9d1c9604
...
...
@@ -314,6 +314,15 @@ static BOOL ShellView_CreateList (IShellViewImpl * This)
This
->
ListViewSortInfo
.
nHeaderID
=
-
1
;
This
->
ListViewSortInfo
.
nLastHeaderID
=
-
1
;
if
(
This
->
FolderSettings
.
fFlags
&
FWF_DESKTOP
)
{
if
(
0
)
/* FIXME: look into registry vale HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ListviewShadow and activate drop shadows */
ListView_SetTextBkColor
(
This
->
hWndList
,
CLR_NONE
);
else
ListView_SetTextBkColor
(
This
->
hWndList
,
GetSysColor
(
COLOR_DESKTOP
));
ListView_SetTextColor
(
This
->
hWndList
,
RGB
(
255
,
255
,
255
));
}
/* UpdateShellSettings(); */
return
TRUE
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment