[BROWSEUI] CISFBand: Handle DBID_SETWINDOWTHEME. CORE-14176

This commit is contained in:
Giannis Adamopoulos 2018-01-16 11:36:34 +02:00
parent c779dbd4c5
commit 4c23b78b5e
2 changed files with 10 additions and 1 deletions

View file

@ -45,7 +45,7 @@ add_library(browseui SHARED
set_module_type(browseui win32dll UNICODE)
target_link_libraries(browseui shellbars atlnew uuid wine)
add_importlibs(browseui shlwapi shell32 comctl32 gdi32 ole32 oleaut32 user32 advapi32 msvcrt kernel32 ntdll)
add_importlibs(browseui uxtheme shlwapi shell32 comctl32 gdi32 ole32 oleaut32 user32 advapi32 msvcrt kernel32 ntdll)
add_pch(browseui precomp.h SOURCE)
add_cd_file(TARGET browseui DESTINATION reactos/system32 FOR all)

View file

@ -10,6 +10,8 @@
#include <commoncontrols.h>
#include <shellapi.h>
#include <wingdi.h>
#include <uxtheme.h>
/*
TODO:
@ -431,6 +433,13 @@ HRESULT CISFBand::CreateSimpleToolbar(HWND hWndParent)
if (IsEqualIID(*pguidCmdGroup, IID_IDeskBand))
{
if (nCmdID == DBID_SETWINDOWTHEME)
{
if (pvaIn && V_VT(pvaIn) == VT_BSTR && V_BSTR(pvaIn))
{
SetWindowTheme(m_hWnd, V_BSTR(pvaIn), NULL);
}
}
return S_OK;
}