mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 01:36:31 +02:00
Adds IDs to all the PT extension commands. This will let all the PT commands be pinned, ala #45191
55 lines
2.1 KiB
C#
55 lines
2.1 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 Microsoft.CommandPalette.Extensions.Toolkit;
|
|
using PowerToysExtension.Commands;
|
|
using PowerToysExtension.Helpers;
|
|
using PowerToysExtension.Pages;
|
|
using PowerToysExtension.Properties;
|
|
using static Common.UI.SettingsDeepLink;
|
|
|
|
namespace PowerToysExtension.Modules;
|
|
|
|
internal sealed class FancyZonesModuleCommandProvider : ModuleCommandProvider
|
|
{
|
|
public override IEnumerable<ListItem> BuildCommands()
|
|
{
|
|
var module = SettingsWindow.FancyZones;
|
|
var title = module.ModuleDisplayName();
|
|
var icon = module.ModuleIcon();
|
|
|
|
if (ModuleEnablementService.IsModuleEnabled(module))
|
|
{
|
|
yield return new ListItem(new CommandItem(new FancyZonesLayoutsPage() { Id = "com.microsoft.powertoys.fancyZones.layouts" }))
|
|
{
|
|
Title = Resources.FancyZones_Layouts_Title,
|
|
Subtitle = Resources.FancyZones_Layouts_Subtitle,
|
|
Icon = icon,
|
|
};
|
|
|
|
yield return new ListItem(new CommandItem(new FancyZonesMonitorsPage() { Id = "com.microsoft.powertoys.fancyZones.monitors" }))
|
|
{
|
|
Title = Resources.FancyZones_Monitors_Title,
|
|
Subtitle = Resources.FancyZones_Monitors_Subtitle,
|
|
Icon = icon,
|
|
};
|
|
|
|
yield return new ListItem(new OpenFancyZonesEditorCommand() { Id = "com.microsoft.powertoys.fancyZones.openEditor" })
|
|
{
|
|
Title = Resources.FancyZones_OpenEditor_Title,
|
|
Subtitle = Resources.FancyZones_OpenEditor_Subtitle,
|
|
Icon = icon,
|
|
};
|
|
}
|
|
|
|
yield return new ListItem(new OpenInSettingsCommand(module, title) { Id = "com.microsoft.powertoys.fancyZones.openSettings" })
|
|
{
|
|
Title = title,
|
|
Subtitle = Resources.FancyZones_Settings_Subtitle,
|
|
Icon = icon,
|
|
};
|
|
}
|
|
}
|