Use dark theme on checkbox buttons on Windows 11
- replace style and class strings with macro Fix #14929, close #14930pull/14939/head
parent
a61f3ab13f
commit
6204f00e88
|
@ -864,7 +864,7 @@ namespace NppDarkMode
|
||||||
|
|
||||||
if (!g_menuTheme)
|
if (!g_menuTheme)
|
||||||
{
|
{
|
||||||
g_menuTheme = OpenThemeData(hWnd, L"Menu");
|
g_menuTheme = OpenThemeData(hWnd, VSCLASS_MENU);
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (iBackgroundStateID)
|
switch (iBackgroundStateID)
|
||||||
|
@ -1017,7 +1017,7 @@ namespace NppDarkMode
|
||||||
{
|
{
|
||||||
if (!hTheme)
|
if (!hTheme)
|
||||||
{
|
{
|
||||||
hTheme = OpenThemeData(hwnd, WC_BUTTON);
|
hTheme = OpenThemeData(hwnd, VSCLASS_BUTTON);
|
||||||
}
|
}
|
||||||
return hTheme != nullptr;
|
return hTheme != nullptr;
|
||||||
}
|
}
|
||||||
|
@ -2290,12 +2290,12 @@ namespace NppDarkMode
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (wcscmp(className, L"Static") == 0)
|
if (wcscmp(className, WC_STATIC) == 0)
|
||||||
{
|
{
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (wcscmp(className, L"msctls_trackbar32") == 0)
|
if (wcscmp(className, TRACKBAR_CLASS) == 0)
|
||||||
{
|
{
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
@ -2331,6 +2331,12 @@ namespace NppDarkMode
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (NppDarkMode::isWindows11() && p._theme)
|
||||||
|
{
|
||||||
|
SetWindowTheme(hwnd, p._themeClassName, nullptr);
|
||||||
|
}
|
||||||
|
|
||||||
if (p._subclass)
|
if (p._subclass)
|
||||||
{
|
{
|
||||||
NppDarkMode::subclassButtonControl(hwnd);
|
NppDarkMode::subclassButtonControl(hwnd);
|
||||||
|
|
Loading…
Reference in New Issue