Skip to content

Commit b297c03

Browse files
committed
fix PhIsThemeTransparencyEnabled
1 parent 1b8c82a commit b297c03

File tree

3 files changed

+17
-13
lines changed

3 files changed

+17
-13
lines changed

phlib/delayhook.c

+10-9
Original file line numberDiff line numberDiff line change
@@ -768,6 +768,7 @@ typedef struct _PHP_THEME_WINDOW_HEADER_CONTEXT
768768
HTHEME ThemeHandle;
769769
BOOLEAN MouseActive;
770770
POINT CursorPos;
771+
HWND ParentWindow;
771772
} PHP_THEME_WINDOW_HEADER_CONTEXT, *PPHP_THEME_WINDOW_HEADER_CONTEXT;
772773

773774
VOID ThemeWindowRenderHeaderControl(
@@ -955,7 +956,7 @@ LRESULT CALLBACK PhHeaderWindowHookProcedure(
955956
if (!GetClassName(createStruct->hwndParent, windowClassName, RTL_NUMBER_OF(windowClassName)))
956957
windowClassName[0] = UNICODE_NULL;
957958

958-
if (PhEqualStringZ(windowClassName, L"PhTreeNew", FALSE))
959+
if (PhEqualStringZ(windowClassName, PH_TREENEW_CLASSNAME, FALSE))
959960
{
960961
LONG_PTR windowStyle = PhGetWindowStyle(createStruct->hwndParent);
961962

@@ -972,6 +973,7 @@ LRESULT CALLBACK PhHeaderWindowHookProcedure(
972973
context->ThemeHandle = PhOpenThemeData(WindowHandle, VSCLASS_HEADER, PhGetWindowDpi(WindowHandle));
973974
context->CursorPos.x = LONG_MIN;
974975
context->CursorPos.y = LONG_MIN;
976+
context->ParentWindow = createStruct->hwndParent;
975977
PhSetWindowContext(WindowHandle, LONG_MAX, context);
976978

977979
PhSetControlTheme(WindowHandle, L"DarkMode_ItemsView");
@@ -1062,7 +1064,7 @@ LRESULT CALLBACK PhHeaderWindowHookProcedure(
10621064
case WM_PAINT:
10631065
{
10641066
// 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))
10661068
{
10671069
PhRemoveWindowContext(WindowHandle, LONG_MAX);
10681070
if (context->ThemeHandle)
@@ -2055,12 +2057,6 @@ VOID PhRegisterDetoursHooks(
20552057
NTSTATUS status;
20562058
PVOID baseAddress;
20572059

2058-
// For early TaskDialog with PhStartupParameters.ShowOptions
2059-
if (!PhThemeWindowBackgroundBrush)
2060-
{
2061-
PhThemeWindowBackgroundBrush = CreateSolidBrush(PhThemeWindowBackgroundColor);
2062-
}
2063-
20642060
if (baseAddress = PhGetLoaderEntryDllBaseZ(L"user32.dll"))
20652061
{
20662062
DefaultCreateWindowEx = PhGetDllBaseProcedureAddress(baseAddress, "CreateWindowExW", 0);
@@ -2140,7 +2136,8 @@ BOOLEAN PhIsThemeTransparencyEnabled(
21402136
0
21412137
)))
21422138
{
2143-
themesEnableTransparency = !!PhQueryRegistryUlongZ(keyHandle, L"EnableTransparency");
2139+
ULONG enableTransparency = PhQueryRegistryUlongZ(keyHandle, L"EnableTransparency");
2140+
themesEnableTransparency = enableTransparency != ULONG_MAX ? !!enableTransparency : FALSE;
21442141
NtClose(keyHandle);
21452142
}
21462143

@@ -2158,6 +2155,10 @@ VOID PhInitializeSuperclassControls(
21582155
if (PhEnableThemeAcrylicSupport)
21592156
PhEnableThemeAcrylicSupport = PhIsThemeTransparencyEnabled();
21602157

2158+
// For early TaskDialog with PhStartupParameters.ShowOptions
2159+
if (!PhThemeWindowBackgroundBrush)
2160+
PhThemeWindowBackgroundBrush = CreateSolidBrush(PhThemeWindowBackgroundColor);
2161+
21612162
// If PreferredAppMode is not set, PhShouldAppsUseDarkMode returns current Windows app color mode.
21622163
// When app mode set to always dark/light all subsequent calls to PhShouldAppsUseDarkMode always ignore
21632164
// the current Windows app color mode and return:

phlib/phlib.vcxproj.filters

+3
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,9 @@
205205
</ClCompile>
206206
<ClCompile Include="searchbox.c">
207207
<Filter>Source Files</Filter>
208+
</ClCompile>
209+
<ClCompile Include="delayhook.c">
210+
<Filter>Source Files</Filter>
208211
</ClCompile>
209212
</ItemGroup>
210213
<ItemGroup>

phlib/theme.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ VOID PhInitializeWindowTheme(
185185
WCHAR windowClassName[MAX_PATH];
186186
if (!GetClassName(WindowHandle, windowClassName, RTL_NUMBER_OF(windowClassName)))
187187
windowClassName[0] = UNICODE_NULL;
188-
if (PhEqualStringZ(windowClassName, L"PhTreeNew", FALSE) || PhEqualStringZ(windowClassName, WC_LISTVIEW, FALSE))
188+
if (PhEqualStringZ(windowClassName, PH_TREENEW_CLASSNAME, FALSE) || PhEqualStringZ(windowClassName, WC_LISTVIEW, FALSE))
189189
PhAllowDarkModeForWindow(WindowHandle, TRUE); // HACK for dynamically generated plugin tabs
190190
}
191191
}
@@ -384,7 +384,7 @@ VOID PhWindowThemeSetDarkMode(
384384
_In_ BOOLEAN EnableDarkMode
385385
)
386386
{
387-
if (EnableDarkMode && PhEnableThemeSupport) // ShouldAppsUseDarkMode_I()
387+
if (EnableDarkMode && PhEnableThemeSupport) // PhShouldAppsUseDarkMode()
388388
{
389389
PhSetControlTheme(WindowHandle, L"DarkMode_Explorer");
390390
//PhSetControlTheme(WindowHandle, L"DarkMode_ItemsView");
@@ -738,7 +738,7 @@ BOOLEAN CALLBACK PhpThemeWindowEnumChildWindows(
738738
PhWindowThemeSetDarkMode(WindowHandle, TRUE);
739739
//InvalidateRect(WindowHandle, NULL, FALSE);
740740
}
741-
else if (PhEqualStringZ(windowClassName, L"PhTreeNew", FALSE))
741+
else if (PhEqualStringZ(windowClassName, PH_TREENEW_CLASSNAME, FALSE))
742742
{
743743
if (WindowsVersion >= WINDOWS_10_RS5)
744744
{
@@ -900,7 +900,7 @@ BOOLEAN CALLBACK PhpReInitializeThemeWindowEnumChildWindows(
900900
PhWindowThemeSetDarkMode(WindowHandle, TRUE);
901901
}
902902
}
903-
else if (PhEqualStringZ(windowClassName, L"PhTreeNew", FALSE))
903+
else if (PhEqualStringZ(windowClassName, PH_TREENEW_CLASSNAME, FALSE))
904904
{
905905
//switch (PhpThemeColorMode)
906906
//{

0 commit comments

Comments
 (0)