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
bad62c02
Commit
bad62c02
authored
Jan 05, 2013
by
Daniel Jelinski
Committed by
Alexandre Julliard
Jan 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/listview: Support header images.
parent
8257ab9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
listview.c
dlls/comctl32/listview.c
+6
-0
No files found.
dlls/comctl32/listview.c
View file @
bad62c02
...
...
@@ -1670,6 +1670,10 @@ static INT LISTVIEW_CreateHeader(LISTVIEW_INFO *infoPtr)
/* set header font */
SendMessageW
(
infoPtr
->
hwndHeader
,
WM_SETFONT
,
(
WPARAM
)
infoPtr
->
hFont
,
TRUE
);
/* set header image list */
if
(
infoPtr
->
himlSmall
)
SendMessageW
(
infoPtr
->
hwndHeader
,
HDM_SETIMAGELIST
,
0
,
(
LPARAM
)
infoPtr
->
himlSmall
);
LISTVIEW_UpdateSize
(
infoPtr
);
return
0
;
...
...
@@ -8631,6 +8635,8 @@ static HIMAGELIST LISTVIEW_SetImageList(LISTVIEW_INFO *infoPtr, INT nType, HIMAG
himlOld
=
infoPtr
->
himlSmall
;
infoPtr
->
himlSmall
=
himl
;
if
(
infoPtr
->
uView
!=
LV_VIEW_ICON
)
set_icon_size
(
&
infoPtr
->
iconSize
,
himl
,
TRUE
);
if
(
infoPtr
->
hwndHeader
)
SendMessageW
(
infoPtr
->
hwndHeader
,
HDM_SETIMAGELIST
,
0
,
(
LPARAM
)
himl
);
break
;
case
LVSIL_STATE
:
...
...
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