2024-08-08 15:26:43 +01:00
|
|
|
#pragma once
|
|
|
|
|
#include "Constants.g.h"
|
|
|
|
|
namespace winrt::PowerToys::Interop::implementation
|
|
|
|
|
{
|
|
|
|
|
struct Constants : ConstantsT<Constants>
|
|
|
|
|
{
|
|
|
|
|
Constants() = default;
|
|
|
|
|
|
|
|
|
|
static uint32_t VK_WIN_BOTH();
|
|
|
|
|
static hstring AppDataPath();
|
|
|
|
|
static hstring PowerLauncherSharedEvent();
|
|
|
|
|
static hstring PowerLauncherCentralizedHookSharedEvent();
|
|
|
|
|
static hstring RunSendSettingsTelemetryEvent();
|
|
|
|
|
static hstring RunExitEvent();
|
|
|
|
|
static hstring FZEExitEvent();
|
|
|
|
|
static hstring FZEToggleEvent();
|
|
|
|
|
static hstring ColorPickerSendSettingsTelemetryEvent();
|
|
|
|
|
static hstring ShowColorPickerSharedEvent();
|
2024-08-22 16:17:12 +02:00
|
|
|
static hstring AdvancedPasteShowUIMessage();
|
|
|
|
|
static hstring AdvancedPasteMarkdownMessage();
|
|
|
|
|
static hstring AdvancedPasteJsonMessage();
|
|
|
|
|
static hstring AdvancedPasteCustomActionMessage();
|
2024-08-08 15:26:43 +01:00
|
|
|
static hstring ShowPowerOCRSharedEvent();
|
|
|
|
|
static hstring MouseJumpShowPreviewEvent();
|
|
|
|
|
static hstring AwakeExitEvent();
|
|
|
|
|
static hstring ShowPeekEvent();
|
|
|
|
|
static hstring PowerAccentExitEvent();
|
|
|
|
|
static hstring ShortcutGuideTriggerEvent();
|
|
|
|
|
static hstring RegistryPreviewTriggerEvent();
|
|
|
|
|
static hstring MeasureToolTriggerEvent();
|
|
|
|
|
static hstring GcodePreviewResizeEvent();
|
|
|
|
|
static hstring QoiPreviewResizeEvent();
|
|
|
|
|
static hstring DevFilesPreviewResizeEvent();
|
|
|
|
|
static hstring MarkdownPreviewResizeEvent();
|
|
|
|
|
static hstring PdfPreviewResizeEvent();
|
|
|
|
|
static hstring SvgPreviewResizeEvent();
|
|
|
|
|
static hstring ShowHostsSharedEvent();
|
|
|
|
|
static hstring ShowHostsAdminSharedEvent();
|
|
|
|
|
static hstring CropAndLockThumbnailEvent();
|
|
|
|
|
static hstring CropAndLockReparentEvent();
|
|
|
|
|
static hstring ShowEnvironmentVariablesSharedEvent();
|
|
|
|
|
static hstring ShowEnvironmentVariablesAdminSharedEvent();
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace winrt::PowerToys::Interop::factory_implementation
|
|
|
|
|
{
|
|
|
|
|
struct Constants : ConstantsT<Constants, implementation::Constants>
|
|
|
|
|
{
|
|
|
|
|
};
|
|
|
|
|
}
|