mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
* [Advanced Paste] AI gpo * address PR comments * XAML format * Fix showing Enable Paste with AI with module disabled * Rename variable in ViewModel for clarity * Update adml revision * Move policy registry key around * Update src/modules/AdvancedPaste/AdvancedPaste/Strings/en-us/Resources.resw Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> --------- Co-authored-by: Jaime Bernardo <jaime@janeasystems.com> Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com>
62 lines
3.5 KiB
C++
62 lines
3.5 KiB
C++
#pragma once
|
|
#include "GPOWrapper.g.h"
|
|
#include <common/utils/gpo.h>
|
|
|
|
namespace winrt::PowerToys::GPOWrapper::implementation
|
|
{
|
|
struct GPOWrapper : GPOWrapperT<GPOWrapper>
|
|
{
|
|
GPOWrapper() = default;
|
|
static GpoRuleConfigured GetConfiguredAlwaysOnTopEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredAwakeEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredCmdNotFoundEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredColorPickerEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredCropAndLockEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredFancyZonesEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredFileLocksmithEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredSvgPreviewEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredMarkdownPreviewEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredMonacoPreviewEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredMouseWithoutBordersEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredPdfPreviewEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredGcodePreviewEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredSvgThumbnailsEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredPdfThumbnailsEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredGcodeThumbnailsEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredStlThumbnailsEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredHostsFileEditorEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredImageResizerEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredKeyboardManagerEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredFindMyMouseEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredMouseHighlighterEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredMouseJumpEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredMousePointerCrosshairsEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredPowerRenameEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredPowerLauncherEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredQuickAccentEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredRegistryPreviewEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredScreenRulerEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredShortcutGuideEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredTextExtractorEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredAdvancedPasteEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredVideoConferenceMuteEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredPeekEnabledValue();
|
|
static GpoRuleConfigured GetDisableNewUpdateToastValue();
|
|
static GpoRuleConfigured GetDisableAutomaticUpdateDownloadValue();
|
|
static GpoRuleConfigured GetDisableShowWhatsNewAfterUpdatesValue();
|
|
static GpoRuleConfigured GetAllowExperimentationValue();
|
|
static GpoRuleConfigured GetRunPluginEnabledValue(winrt::hstring const& pluginID);
|
|
static GpoRuleConfigured GetConfiguredEnvironmentVariablesEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredQoiPreviewEnabledValue();
|
|
static GpoRuleConfigured GetConfiguredQoiThumbnailsEnabledValue();
|
|
static GpoRuleConfigured GetAllowedAdvancedPasteOnlineAIModelsValue();
|
|
};
|
|
}
|
|
|
|
namespace winrt::PowerToys::GPOWrapper::factory_implementation
|
|
{
|
|
struct GPOWrapper : GPOWrapperT<GPOWrapper, implementation::GPOWrapper>
|
|
{
|
|
};
|
|
}
|