mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
91 lines
2.5 KiB
C++
91 lines
2.5 KiB
C++
#pragma once
|
|
#include <interface/powertoy_module_interface.h>
|
|
#include "overlay_window.h"
|
|
#include "native_event_waiter.h"
|
|
|
|
#include "Generated Files/resource.h"
|
|
|
|
#include <common/hooks/LowlevelKeyboardEvent.h>
|
|
|
|
// We support only one instance of the overlay
|
|
extern class OverlayWindow* instance;
|
|
|
|
class TargetState;
|
|
|
|
class OverlayWindow : public PowertoyModuleIface
|
|
{
|
|
public:
|
|
OverlayWindow();
|
|
|
|
virtual const wchar_t* get_name() override;
|
|
virtual const wchar_t* get_key() override;
|
|
virtual bool get_config(wchar_t* buffer, int* buffer_size) override;
|
|
|
|
virtual void set_config(const wchar_t* config) override;
|
|
virtual void enable() override;
|
|
virtual void disable() override;
|
|
virtual bool is_enabled() override;
|
|
|
|
void on_held();
|
|
void on_held_press(DWORD vkCode);
|
|
void quick_hide();
|
|
void was_hidden();
|
|
|
|
intptr_t signal_event(LowlevelKeyboardEvent* event);
|
|
|
|
virtual void destroy() override;
|
|
|
|
bool overlay_visible() const;
|
|
|
|
bool is_disabled_app(wchar_t* exePath);
|
|
|
|
void get_exe_path(HWND window, wchar_t* exePath);
|
|
|
|
private:
|
|
std::wstring app_name;
|
|
//contains the non localized key of the powertoy
|
|
std::wstring app_key;
|
|
std::unique_ptr<TargetState> target_state;
|
|
std::unique_ptr<D2DOverlayWindow> winkey_popup;
|
|
bool _enabled = false;
|
|
HHOOK hook_handle;
|
|
std::unique_ptr<NativeEventWaiter> event_waiter;
|
|
std::vector<std::wstring> disabled_apps_array;
|
|
|
|
void init_settings();
|
|
void disable(bool trace_event);
|
|
void update_disabled_apps();
|
|
|
|
struct PressTime
|
|
{
|
|
PCWSTR name = L"press_time";
|
|
int value = 900; // ms
|
|
int resourceId = IDS_SETTING_DESCRIPTION_PRESS_TIME;
|
|
} pressTime;
|
|
|
|
struct OverlayOpacity
|
|
{
|
|
PCWSTR name = L"overlay_opacity";
|
|
int value = 90; // percent
|
|
int resourceId = IDS_SETTING_DESCRIPTION_OVERLAY_OPACITY;
|
|
} overlayOpacity;
|
|
|
|
struct Theme
|
|
{
|
|
PCWSTR name = L"theme";
|
|
std::wstring value = L"system";
|
|
int resourceId = IDS_SETTING_DESCRIPTION_THEME;
|
|
std::vector<std::pair<std::wstring, UINT>> keys_and_texts = {
|
|
{ L"system", IDS_SETTING_DESCRIPTION_THEME_SYSTEM },
|
|
{ L"light", IDS_SETTING_DESCRIPTION_THEME_LIGHT },
|
|
{ L"dark", IDS_SETTING_DESCRIPTION_THEME_DARK }
|
|
};
|
|
} theme;
|
|
|
|
struct DisabledApps
|
|
{
|
|
PCWSTR name = L"disabled_apps";
|
|
std::wstring value = L"";
|
|
} disabledApps;
|
|
};
|