Module: wine Branch: master Commit: bad62c02671ce9ee366ef3b923af7dac86f18da3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=bad62c02671ce9ee366ef3b923...
Author: Daniel Jelinski djelinski1@gmail.com Date: Sat Jan 5 23:17:25 2013 +0100
comctl32/listview: Support header images.
---
dlls/comctl32/listview.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index d670a9b..3076249 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -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: