mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[BROWSEUI] CISFBand: Handle DBID_SETWINDOWTHEME. CORE-14176
This commit is contained in:
parent
c779dbd4c5
commit
4c23b78b5e
2 changed files with 10 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue