mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
b266e336b5
* Added a keyboard hook to the runner * Update RootKeyboardHook * Enable reading the whole JsonObject property * Renamed RootKeyboardHook to CentralizedKeyboardHook * Fixed build break, changed callback return type to bool * Added Hotkey struct which somehow went missing + Cherry-pick fixes * Reorganized the kb hook * Basic version works * Various fixes * Finishing touches * Fix potential threading issue * int -> size_t * Add default initializers to the Hotkey struct * Added a suggested comment * Unified a constant * Use C# classes instead of native calls for sync * Added a claryfing comment * Use std::move * Renamed a method * Possible fix for compilation errors * Fix a regression * Show a message on failure * Added DISABLE_LOWLEVEL_HOOK support * Allow running Launcher as standalone * Rename string constants
67 lines
1.8 KiB
C++
67 lines
1.8 KiB
C++
#include "pch.h"
|
|
#include "powertoy_module.h"
|
|
#include "centralized_kb_hook.h"
|
|
|
|
std::map<std::wstring, PowertoyModule>& modules()
|
|
{
|
|
static std::map<std::wstring, PowertoyModule> modules;
|
|
return modules;
|
|
}
|
|
|
|
PowertoyModule load_powertoy(const std::wstring_view filename)
|
|
{
|
|
auto handle = winrt::check_pointer(LoadLibraryW(filename.data()));
|
|
auto create = reinterpret_cast<powertoy_create_func>(GetProcAddress(handle, "powertoy_create"));
|
|
if (!create)
|
|
{
|
|
FreeLibrary(handle);
|
|
winrt::throw_last_error();
|
|
}
|
|
auto module = create();
|
|
if (!module)
|
|
{
|
|
FreeLibrary(handle);
|
|
winrt::throw_hresult(winrt::hresult(E_POINTER));
|
|
}
|
|
return PowertoyModule(module, handle);
|
|
}
|
|
|
|
json::JsonObject PowertoyModule::json_config() const
|
|
{
|
|
int size = 0;
|
|
module->get_config(nullptr, &size);
|
|
std::wstring result;
|
|
result.resize(size - 1);
|
|
module->get_config(result.data(), &size);
|
|
return json::JsonObject::Parse(result);
|
|
}
|
|
|
|
PowertoyModule::PowertoyModule(PowertoyModuleIface* module, HMODULE handle) :
|
|
handle(handle), module(module)
|
|
{
|
|
if (!module)
|
|
{
|
|
throw std::runtime_error("Module not initialized");
|
|
}
|
|
|
|
update_hotkeys();
|
|
}
|
|
|
|
void PowertoyModule::update_hotkeys()
|
|
{
|
|
CentralizedKeyboardHook::ClearModuleHotkeys(module->get_name());
|
|
|
|
size_t hotkeyCount = module->get_hotkeys(nullptr, 0);
|
|
std::vector<PowertoyModuleIface::Hotkey> hotkeys(hotkeyCount);
|
|
module->get_hotkeys(hotkeys.data(), hotkeyCount);
|
|
|
|
auto modulePtr = module.get();
|
|
|
|
for (size_t i = 0; i < hotkeyCount; i++)
|
|
{
|
|
CentralizedKeyboardHook::SetHotkeyAction(module->get_name(), hotkeys[i], [modulePtr, i] {
|
|
return modulePtr->on_hotkey(i);
|
|
});
|
|
}
|
|
}
|