mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 02:06:36 +02:00
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] Closes: #xxx <!-- - [ ] Closes: #yyy (add separate lines for additional resolved issues) --> - [ ] **Communication:** I've discussed this with core contributors already. If the work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end-user-facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed, or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Installer built, and every command works as expected, Now use sparse app deployment, so we don't need an extra msix --------- Co-authored-by: kaitao-ms <kaitao1105@gmail.com>
414 lines
15 KiB
C++
414 lines
15 KiB
C++
#include "pch.h"
|
|
#include <interface/powertoy_module_interface.h>
|
|
#include <common/SettingsAPI/settings_objects.h>
|
|
#include "trace.h"
|
|
#include "MouseHighlighter.h"
|
|
#include "common/utils/color.h"
|
|
#include <common/utils/EventWaiter.h>
|
|
#include <common/interop/shared_constants.h>
|
|
|
|
namespace
|
|
{
|
|
const wchar_t JSON_KEY_PROPERTIES[] = L"properties";
|
|
const wchar_t JSON_KEY_VALUE[] = L"value";
|
|
const wchar_t JSON_KEY_ACTIVATION_SHORTCUT[] = L"activation_shortcut";
|
|
const wchar_t JSON_KEY_LEFT_BUTTON_CLICK_COLOR[] = L"left_button_click_color";
|
|
const wchar_t JSON_KEY_RIGHT_BUTTON_CLICK_COLOR[] = L"right_button_click_color";
|
|
const wchar_t JSON_KEY_HIGHLIGHT_OPACITY[] = L"highlight_opacity";
|
|
const wchar_t JSON_KEY_ALWAYS_COLOR[] = L"always_color";
|
|
const wchar_t JSON_KEY_HIGHLIGHT_RADIUS[] = L"highlight_radius";
|
|
const wchar_t JSON_KEY_HIGHLIGHT_FADE_DELAY_MS[] = L"highlight_fade_delay_ms";
|
|
const wchar_t JSON_KEY_HIGHLIGHT_FADE_DURATION_MS[] = L"highlight_fade_duration_ms";
|
|
const wchar_t JSON_KEY_AUTO_ACTIVATE[] = L"auto_activate";
|
|
const wchar_t JSON_KEY_SPOTLIGHT_MODE[] = L"spotlight_mode";
|
|
}
|
|
|
|
extern "C" IMAGE_DOS_HEADER __ImageBase;
|
|
|
|
HMODULE m_hModule;
|
|
|
|
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
|
|
{
|
|
m_hModule = hModule;
|
|
switch (ul_reason_for_call)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
Trace::RegisterProvider();
|
|
break;
|
|
case DLL_THREAD_ATTACH:
|
|
case DLL_THREAD_DETACH:
|
|
break;
|
|
case DLL_PROCESS_DETACH:
|
|
Trace::UnregisterProvider();
|
|
break;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
// The PowerToy name that will be shown in the settings.
|
|
const static wchar_t* MODULE_NAME = L"MouseHighlighter";
|
|
// Add a description that will we shown in the module settings page.
|
|
const static wchar_t* MODULE_DESC = L"<no description>";
|
|
|
|
// Implement the PowerToy Module Interface and all the required methods.
|
|
class MouseHighlighter : public PowertoyModuleIface
|
|
{
|
|
private:
|
|
// The PowerToy state.
|
|
bool m_enabled = false;
|
|
|
|
// Hotkey to invoke the module
|
|
HotkeyEx m_hotkey;
|
|
|
|
// Mouse Highlighter specific settings
|
|
MouseHighlighterSettings m_highlightSettings;
|
|
|
|
// Event-driven trigger support
|
|
EventWaiter m_triggerEventWaiter;
|
|
|
|
public:
|
|
// Constructor
|
|
MouseHighlighter()
|
|
{
|
|
LoggerHelpers::init_logger(MODULE_NAME, L"ModuleInterface", LogSettings::mouseHighlighterLoggerName);
|
|
init_settings();
|
|
};
|
|
|
|
// Destroy the powertoy and free memory
|
|
virtual void destroy() override
|
|
{
|
|
// Tear down threads/handles before deletion to avoid abort() on joinable threads during shutdown
|
|
disable();
|
|
delete this;
|
|
}
|
|
|
|
// Return the localized display name of the powertoy
|
|
virtual const wchar_t* get_name() override
|
|
{
|
|
return MODULE_NAME;
|
|
}
|
|
|
|
// Return the non localized key of the powertoy, this will be cached by the runner
|
|
virtual const wchar_t* get_key() override
|
|
{
|
|
return MODULE_NAME;
|
|
}
|
|
|
|
// Return the configured status for the gpo policy for the module
|
|
virtual powertoys_gpo::gpo_rule_configured_t gpo_policy_enabled_configuration() override
|
|
{
|
|
return powertoys_gpo::getConfiguredMouseHighlighterEnabledValue();
|
|
}
|
|
|
|
// Return JSON with the configuration options.
|
|
virtual bool get_config(wchar_t* buffer, int* buffer_size) override
|
|
{
|
|
HINSTANCE hinstance = reinterpret_cast<HINSTANCE>(&__ImageBase);
|
|
PowerToysSettings::Settings settings(hinstance, get_name());
|
|
return settings.serialize_to_buffer(buffer, buffer_size);
|
|
}
|
|
|
|
// Signal from the Settings editor to call a custom action.
|
|
// This can be used to spawn more complex editors.
|
|
virtual void call_custom_action(const wchar_t* action) override
|
|
{
|
|
}
|
|
|
|
// Called by the runner to pass the updated settings values as a serialized JSON.
|
|
virtual void set_config(const wchar_t* config) override
|
|
{
|
|
try
|
|
{
|
|
// Parse the input JSON string.
|
|
PowerToysSettings::PowerToyValues values =
|
|
PowerToysSettings::PowerToyValues::from_json_string(config, get_key());
|
|
|
|
parse_settings(values);
|
|
|
|
MouseHighlighterApplySettings(m_highlightSettings);
|
|
}
|
|
catch (std::exception&)
|
|
{
|
|
Logger::error("Invalid json when trying to parse Mouse Highlighter settings json.");
|
|
}
|
|
}
|
|
|
|
// Enable the powertoy
|
|
virtual void enable()
|
|
{
|
|
m_enabled = true;
|
|
Trace::EnableMouseHighlighter(true);
|
|
std::thread([=]() { MouseHighlighterMain(m_hModule, m_highlightSettings); }).detach();
|
|
|
|
// Start listening for external trigger event so we can invoke the same logic as the hotkey.
|
|
m_triggerEventWaiter.start(CommonSharedConstants::MOUSE_HIGHLIGHTER_TRIGGER_EVENT, [this](DWORD) {
|
|
OnHotkeyEx();
|
|
});
|
|
}
|
|
|
|
// Disable the powertoy
|
|
virtual void disable()
|
|
{
|
|
m_enabled = false;
|
|
Trace::EnableMouseHighlighter(false);
|
|
MouseHighlighterDisable();
|
|
|
|
m_triggerEventWaiter.stop();
|
|
}
|
|
|
|
// Returns if the powertoys is enabled
|
|
virtual bool is_enabled() override
|
|
{
|
|
return m_enabled;
|
|
}
|
|
|
|
virtual std::optional<HotkeyEx> GetHotkeyEx() override
|
|
{
|
|
return m_hotkey;
|
|
}
|
|
|
|
virtual void OnHotkeyEx() override
|
|
{
|
|
MouseHighlighterSwitch();
|
|
}
|
|
|
|
// Load the settings file.
|
|
void init_settings()
|
|
{
|
|
try
|
|
{
|
|
// Load and parse the settings file for this PowerToy.
|
|
PowerToysSettings::PowerToyValues settings =
|
|
PowerToysSettings::PowerToyValues::load_from_settings_file(MouseHighlighter::get_key());
|
|
parse_settings(settings);
|
|
}
|
|
catch (std::exception&)
|
|
{
|
|
Logger::error("Invalid json when trying to load the Mouse Highlighter settings json from file.");
|
|
}
|
|
}
|
|
|
|
void parse_settings(PowerToysSettings::PowerToyValues& settings)
|
|
{
|
|
// TODO: refactor to use common/utils/json.h instead
|
|
auto settingsObject = settings.get_raw_json();
|
|
MouseHighlighterSettings highlightSettings;
|
|
if (settingsObject.GetView().Size())
|
|
{
|
|
try
|
|
{
|
|
// Parse HotKey
|
|
auto jsonPropertiesObject = settingsObject.GetNamedObject(JSON_KEY_PROPERTIES).GetNamedObject(JSON_KEY_ACTIVATION_SHORTCUT);
|
|
auto hotkey = PowerToysSettings::HotkeyObject::from_json(jsonPropertiesObject);
|
|
m_hotkey = HotkeyEx();
|
|
if (hotkey.win_pressed())
|
|
{
|
|
m_hotkey.modifiersMask |= MOD_WIN;
|
|
}
|
|
|
|
if (hotkey.ctrl_pressed())
|
|
{
|
|
m_hotkey.modifiersMask |= MOD_CONTROL;
|
|
}
|
|
|
|
if (hotkey.shift_pressed())
|
|
{
|
|
m_hotkey.modifiersMask |= MOD_SHIFT;
|
|
}
|
|
|
|
if (hotkey.alt_pressed())
|
|
{
|
|
m_hotkey.modifiersMask |= MOD_ALT;
|
|
}
|
|
|
|
m_hotkey.vkCode = hotkey.get_code();
|
|
}
|
|
catch (...)
|
|
{
|
|
Logger::warn("Failed to initialize Mouse Highlighter activation shortcut");
|
|
}
|
|
// Migration from <=1.1
|
|
auto version = (std::wstring)settingsObject.GetNamedString(L"version");
|
|
auto migration = false;
|
|
uint8_t opacity = 166;
|
|
if (version == L"1.0" || version == L"1.1")
|
|
{
|
|
migration = true;
|
|
try
|
|
{
|
|
// Parse Opacity
|
|
auto jsonPropertiesObject = settingsObject.GetNamedObject(JSON_KEY_PROPERTIES).GetNamedObject(JSON_KEY_HIGHLIGHT_OPACITY);
|
|
int value = static_cast<int>(jsonPropertiesObject.GetNamedNumber(JSON_KEY_VALUE));
|
|
if (value >= 0)
|
|
{
|
|
if (version == L"1.0")
|
|
{
|
|
opacity = value;
|
|
}
|
|
else
|
|
{
|
|
// 1.1
|
|
opacity = value * 255 / 100;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
throw std::runtime_error("Invalid Opacity value");
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
Logger::warn("Failed to initialize Opacity from settings. Will use default value");
|
|
}
|
|
}
|
|
try
|
|
{
|
|
// Parse left button click color
|
|
auto jsonPropertiesObject = settingsObject.GetNamedObject(JSON_KEY_PROPERTIES).GetNamedObject(JSON_KEY_LEFT_BUTTON_CLICK_COLOR);
|
|
auto leftColor = (std::wstring)jsonPropertiesObject.GetNamedString(JSON_KEY_VALUE);
|
|
uint8_t a = opacity, r, g, b;
|
|
if (!migration && !checkValidARGB(leftColor, &a, &r, &g, &b) || migration && !checkValidRGB(leftColor, &r, &g, &b))
|
|
{
|
|
Logger::error("Left click color ARGB value is invalid. Will use default value");
|
|
}
|
|
else
|
|
{
|
|
highlightSettings.leftButtonColor = winrt::Windows::UI::ColorHelper::FromArgb(a, r, g, b);
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
Logger::warn("Failed to initialize left click color from settings. Will use default value");
|
|
}
|
|
try
|
|
{
|
|
// Parse right button click color
|
|
auto jsonPropertiesObject = settingsObject.GetNamedObject(JSON_KEY_PROPERTIES).GetNamedObject(JSON_KEY_RIGHT_BUTTON_CLICK_COLOR);
|
|
auto rightColor = (std::wstring)jsonPropertiesObject.GetNamedString(JSON_KEY_VALUE);
|
|
uint8_t a = opacity, r, g, b;
|
|
if (!migration && !checkValidARGB(rightColor, &a, &r, &g, &b) || migration && !checkValidRGB(rightColor, &r, &g, &b))
|
|
{
|
|
Logger::error("Right click color ARGB value is invalid. Will use default value");
|
|
}
|
|
else
|
|
{
|
|
highlightSettings.rightButtonColor = winrt::Windows::UI::ColorHelper::FromArgb(a, r, g, b);
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
Logger::warn("Failed to initialize right click color from settings. Will use default value");
|
|
}
|
|
try
|
|
{
|
|
// Parse always color
|
|
auto jsonPropertiesObject = settingsObject.GetNamedObject(JSON_KEY_PROPERTIES).GetNamedObject(JSON_KEY_ALWAYS_COLOR);
|
|
auto alwaysColor = (std::wstring)jsonPropertiesObject.GetNamedString(JSON_KEY_VALUE);
|
|
uint8_t a, r, g, b;
|
|
if (!migration && !checkValidARGB(alwaysColor, &a, &r, &g, &b))
|
|
{
|
|
Logger::error("Always color ARGB value is invalid. Will use default value");
|
|
}
|
|
else
|
|
{
|
|
highlightSettings.alwaysColor = winrt::Windows::UI::ColorHelper::FromArgb(a, r, g, b);
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
Logger::warn("Failed to initialize always color from settings. Will use default value");
|
|
}
|
|
try
|
|
{
|
|
// Parse Radius
|
|
auto jsonPropertiesObject = settingsObject.GetNamedObject(JSON_KEY_PROPERTIES).GetNamedObject(JSON_KEY_HIGHLIGHT_RADIUS);
|
|
int value = static_cast<int>(jsonPropertiesObject.GetNamedNumber(JSON_KEY_VALUE));
|
|
if (value >= 0)
|
|
{
|
|
highlightSettings.radius = value;
|
|
}
|
|
else
|
|
{
|
|
throw std::runtime_error("Invalid Radius value");
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
Logger::warn("Failed to initialize Radius from settings. Will use default value");
|
|
}
|
|
try
|
|
{
|
|
// Parse Fade Delay
|
|
auto jsonPropertiesObject = settingsObject.GetNamedObject(JSON_KEY_PROPERTIES).GetNamedObject(JSON_KEY_HIGHLIGHT_FADE_DELAY_MS);
|
|
int value = static_cast<int>(jsonPropertiesObject.GetNamedNumber(JSON_KEY_VALUE));
|
|
if (value >= 0)
|
|
{
|
|
highlightSettings.fadeDelayMs = value;
|
|
}
|
|
else
|
|
{
|
|
throw std::runtime_error("Invalid Fade Delay value");
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
Logger::warn("Failed to initialize Fade Delay from settings. Will use default value");
|
|
}
|
|
try
|
|
{
|
|
// Parse Fade Duration
|
|
auto jsonPropertiesObject = settingsObject.GetNamedObject(JSON_KEY_PROPERTIES).GetNamedObject(JSON_KEY_HIGHLIGHT_FADE_DURATION_MS);
|
|
int value = static_cast<int>(jsonPropertiesObject.GetNamedNumber(JSON_KEY_VALUE));
|
|
if (value >= 0)
|
|
{
|
|
highlightSettings.fadeDurationMs = value;
|
|
}
|
|
else
|
|
{
|
|
throw std::runtime_error("Invalid Fade Duration value");
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
Logger::warn("Failed to initialize Fade Duration from settings. Will use default value");
|
|
}
|
|
try
|
|
{
|
|
// Parse auto activate
|
|
auto jsonPropertiesObject = settingsObject.GetNamedObject(JSON_KEY_PROPERTIES).GetNamedObject(JSON_KEY_AUTO_ACTIVATE);
|
|
highlightSettings.autoActivate = jsonPropertiesObject.GetNamedBoolean(JSON_KEY_VALUE);
|
|
}
|
|
catch (...)
|
|
{
|
|
Logger::warn("Failed to initialize auto activate from settings. Will use default value");
|
|
}
|
|
try
|
|
{
|
|
// Parse spotlight mode
|
|
auto jsonPropertiesObject = settingsObject.GetNamedObject(JSON_KEY_PROPERTIES).GetNamedObject(JSON_KEY_SPOTLIGHT_MODE);
|
|
highlightSettings.spotlightMode = jsonPropertiesObject.GetNamedBoolean(JSON_KEY_VALUE);
|
|
}
|
|
catch (...)
|
|
{
|
|
Logger::warn("Failed to initialize spotlight mode settings. Will use default value");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Logger::info("Mouse Highlighter settings are empty");
|
|
}
|
|
if (!m_hotkey.modifiersMask)
|
|
{
|
|
Logger::info("Mouse Highlighter is going to use default shortcut");
|
|
m_hotkey.modifiersMask = MOD_SHIFT | MOD_WIN;
|
|
m_hotkey.vkCode = 0x48; // H key
|
|
}
|
|
m_highlightSettings = highlightSettings;
|
|
}
|
|
};
|
|
|
|
extern "C" __declspec(dllexport) PowertoyModuleIface* __cdecl powertoy_create()
|
|
{
|
|
return new MouseHighlighter();
|
|
}
|