Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved delayhook to phlib #2284

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Conversation

DartVanya
Copy link
Contributor

  • phlib PhIsThemeSupportEnabled, exported for plugins.
  • New option EnableThemeUseWindowsTheme - Use Windows app color mode. On default settings PH will use current Windows theme.
  • New option EnableThemeTabBorders (default 0).

Theme switches use this logic:

BOOLEAN PhIsThemeSupportEnabled(
    VOID
    )
{
    if (PhGetIntegerSetting(L"EnableThemeSupport"))
    {
        if (PhGetIntegerSetting(L"EnableThemeUseWindowsTheme"))
            return PhShouldAppsUseDarkMode();
        else
            return TRUE;
    }
    else
    {
        return FALSE;
    }
}
EnableThemeUseWindowsTheme.mp4

- phlib PhIsThemeSupportEnabled, exported for plugins.
- New option EnableThemeUseWindowsTheme - Use Windows app color mode. On default settings PH will use current Windows theme.
- New option EnableThemeTabBorders (default 0).
@dmex dmex self-requested a review November 17, 2024 14:19
@dmex dmex self-assigned this Nov 17, 2024
- KphObjectAttributesInformation -> KphObjectExtendedInformation, retrieve object address, type index and flags.
- Public hndlmenu.h APIs. ID_HANDLE_OBJECTPROPERTIES[1/2] menu support for Device/File, Key, Section handles.
- Add Security menu item.
- Add Name and Original name columns for Device/File, Key, ALPC Port.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants