mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
|
|
// Copyright (c) Microsoft Corporation
|
||
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
||
|
|
// See the LICENSE file in the project root for more information.
|
||
|
|
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using Common.UI;
|
||
|
|
using Microsoft.CommandPalette.Extensions.Toolkit;
|
||
|
|
using PowerToysExtension.Commands;
|
||
|
|
using PowerToysExtension.Helpers;
|
||
|
|
|
||
|
|
namespace PowerToysExtension.Modules;
|
||
|
|
|
||
|
|
internal sealed class AdvancedPasteModuleCommandProvider : ModuleCommandProvider
|
||
|
|
{
|
||
|
|
public override IEnumerable<ListItem> BuildCommands()
|
||
|
|
{
|
||
|
|
var module = SettingsDeepLink.SettingsWindow.AdvancedPaste;
|
||
|
|
var title = module.ModuleDisplayName();
|
||
|
|
var icon = module.ModuleIcon();
|
||
|
|
|
||
|
|
if (ModuleEnablementService.IsModuleEnabled(module))
|
||
|
|
{
|
||
|
|
yield return new ListItem(new OpenAdvancedPasteCommand())
|
||
|
|
{
|
||
|
|
Title = "Open Advanced Paste",
|
||
|
|
Subtitle = "Launch the Advanced Paste UI",
|
||
|
|
Icon = icon,
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
yield return new ListItem(new OpenInSettingsCommand(module, title))
|
||
|
|
{
|
||
|
|
Title = title,
|
||
|
|
Subtitle = "Open Advanced Paste settings",
|
||
|
|
Icon = icon,
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}
|