@@ -768,6 +768,7 @@ typedef struct _PHP_THEME_WINDOW_HEADER_CONTEXT
768
768
HTHEME ThemeHandle ;
769
769
BOOLEAN MouseActive ;
770
770
POINT CursorPos ;
771
+ HWND ParentWindow ;
771
772
} PHP_THEME_WINDOW_HEADER_CONTEXT , * PPHP_THEME_WINDOW_HEADER_CONTEXT ;
772
773
773
774
VOID ThemeWindowRenderHeaderControl (
@@ -955,7 +956,7 @@ LRESULT CALLBACK PhHeaderWindowHookProcedure(
955
956
if (!GetClassName (createStruct -> hwndParent , windowClassName , RTL_NUMBER_OF (windowClassName )))
956
957
windowClassName [0 ] = UNICODE_NULL ;
957
958
958
- if (PhEqualStringZ (windowClassName , L"PhTreeNew" , FALSE))
959
+ if (PhEqualStringZ (windowClassName , PH_TREENEW_CLASSNAME , FALSE))
959
960
{
960
961
LONG_PTR windowStyle = PhGetWindowStyle (createStruct -> hwndParent );
961
962
@@ -972,6 +973,7 @@ LRESULT CALLBACK PhHeaderWindowHookProcedure(
972
973
context -> ThemeHandle = PhOpenThemeData (WindowHandle , VSCLASS_HEADER , PhGetWindowDpi (WindowHandle ));
973
974
context -> CursorPos .x = LONG_MIN ;
974
975
context -> CursorPos .y = LONG_MIN ;
976
+ context -> ParentWindow = createStruct -> hwndParent ;
975
977
PhSetWindowContext (WindowHandle , LONG_MAX , context );
976
978
977
979
PhSetControlTheme (WindowHandle , L"DarkMode_ItemsView" );
@@ -1062,7 +1064,7 @@ LRESULT CALLBACK PhHeaderWindowHookProcedure(
1062
1064
case WM_PAINT :
1063
1065
{
1064
1066
// Don't apply header theme for unsupported dialogs: Advanced Security, Digital Signature Details, etc. (Dart Vanya)
1065
- if (!PhIsDarkModeAllowedForWindow (GetParent ( WindowHandle ) ))
1067
+ if (!PhIsDarkModeAllowedForWindow (context -> ParentWindow ))
1066
1068
{
1067
1069
PhRemoveWindowContext (WindowHandle , LONG_MAX );
1068
1070
if (context -> ThemeHandle )
@@ -2055,12 +2057,6 @@ VOID PhRegisterDetoursHooks(
2055
2057
NTSTATUS status ;
2056
2058
PVOID baseAddress ;
2057
2059
2058
- // For early TaskDialog with PhStartupParameters.ShowOptions
2059
- if (!PhThemeWindowBackgroundBrush )
2060
- {
2061
- PhThemeWindowBackgroundBrush = CreateSolidBrush (PhThemeWindowBackgroundColor );
2062
- }
2063
-
2064
2060
if (baseAddress = PhGetLoaderEntryDllBaseZ (L"user32.dll" ))
2065
2061
{
2066
2062
DefaultCreateWindowEx = PhGetDllBaseProcedureAddress (baseAddress , "CreateWindowExW" , 0 );
@@ -2140,7 +2136,8 @@ BOOLEAN PhIsThemeTransparencyEnabled(
2140
2136
0
2141
2137
)))
2142
2138
{
2143
- themesEnableTransparency = !!PhQueryRegistryUlongZ (keyHandle , L"EnableTransparency" );
2139
+ ULONG enableTransparency = PhQueryRegistryUlongZ (keyHandle , L"EnableTransparency" );
2140
+ themesEnableTransparency = enableTransparency != ULONG_MAX ? !!enableTransparency : FALSE;
2144
2141
NtClose (keyHandle );
2145
2142
}
2146
2143
@@ -2158,6 +2155,10 @@ VOID PhInitializeSuperclassControls(
2158
2155
if (PhEnableThemeAcrylicSupport )
2159
2156
PhEnableThemeAcrylicSupport = PhIsThemeTransparencyEnabled ();
2160
2157
2158
+ // For early TaskDialog with PhStartupParameters.ShowOptions
2159
+ if (!PhThemeWindowBackgroundBrush )
2160
+ PhThemeWindowBackgroundBrush = CreateSolidBrush (PhThemeWindowBackgroundColor );
2161
+
2161
2162
// If PreferredAppMode is not set, PhShouldAppsUseDarkMode returns current Windows app color mode.
2162
2163
// When app mode set to always dark/light all subsequent calls to PhShouldAppsUseDarkMode always ignore
2163
2164
// the current Windows app color mode and return:
0 commit comments