mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
This PR introduces a new built-in extension for Remote Desktop users. It allows you to view past RDP connections, save predefined connections, and connect to any of them. Or start a new RDP connection. https://github.com/user-attachments/assets/6a5041a6-5741-4df0-a305-da7166f962e1 ### GitHub issue maintenance stuff Closes #38305 --------- Co-authored-by: Niels Laute <niels.laute@live.nl> Co-authored-by: Jiří Polášek <me@jiripolasek.com>
180 lines
7.4 KiB
C#
180 lines
7.4 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 ManagedCommon;
|
|
using Microsoft.CmdPal.Core.Common;
|
|
using Microsoft.CmdPal.Core.Common.Helpers;
|
|
using Microsoft.CmdPal.Core.Common.Services;
|
|
using Microsoft.CmdPal.Core.ViewModels;
|
|
using Microsoft.CmdPal.Ext.Apps;
|
|
using Microsoft.CmdPal.Ext.Bookmarks;
|
|
using Microsoft.CmdPal.Ext.Calc;
|
|
using Microsoft.CmdPal.Ext.ClipboardHistory;
|
|
using Microsoft.CmdPal.Ext.Indexer;
|
|
using Microsoft.CmdPal.Ext.Registry;
|
|
using Microsoft.CmdPal.Ext.RemoteDesktop;
|
|
using Microsoft.CmdPal.Ext.Shell;
|
|
using Microsoft.CmdPal.Ext.System;
|
|
using Microsoft.CmdPal.Ext.TimeDate;
|
|
using Microsoft.CmdPal.Ext.WebSearch;
|
|
using Microsoft.CmdPal.Ext.WindowsServices;
|
|
using Microsoft.CmdPal.Ext.WindowsSettings;
|
|
using Microsoft.CmdPal.Ext.WindowsTerminal;
|
|
using Microsoft.CmdPal.Ext.WindowWalker;
|
|
using Microsoft.CmdPal.Ext.WinGet;
|
|
using Microsoft.CmdPal.UI.Helpers;
|
|
using Microsoft.CmdPal.UI.ViewModels;
|
|
using Microsoft.CmdPal.UI.ViewModels.BuiltinCommands;
|
|
using Microsoft.CmdPal.UI.ViewModels.Models;
|
|
using Microsoft.CommandPalette.Extensions;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.PowerToys.Telemetry;
|
|
using Microsoft.UI.Xaml;
|
|
|
|
// To learn more about WinUI, the WinUI project structure,
|
|
// and more about our project templates, see: http://aka.ms/winui-project-info.
|
|
namespace Microsoft.CmdPal.UI;
|
|
|
|
/// <summary>
|
|
/// Provides application-specific behavior to supplement the default Application class.
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
private readonly GlobalErrorHandler _globalErrorHandler = new();
|
|
|
|
/// <summary>
|
|
/// Gets the current <see cref="App"/> instance in use.
|
|
/// </summary>
|
|
public static new App Current => (App)Application.Current;
|
|
|
|
public Window? AppWindow { get; private set; }
|
|
|
|
public ETWTrace EtwTrace { get; private set; } = new ETWTrace();
|
|
|
|
/// <summary>
|
|
/// Gets the <see cref="IServiceProvider"/> instance to resolve application services.
|
|
/// </summary>
|
|
public IServiceProvider Services { get; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="App"/> class.
|
|
/// Initializes the singleton application object. This is the first line of authored code
|
|
/// executed, and as such is the logical equivalent of main() or WinMain().
|
|
/// </summary>
|
|
public App()
|
|
{
|
|
#if !CMDPAL_DISABLE_GLOBAL_ERROR_HANDLER
|
|
_globalErrorHandler.Register(this);
|
|
#endif
|
|
|
|
Services = ConfigureServices();
|
|
|
|
this.InitializeComponent();
|
|
|
|
// Ensure types used in XAML are preserved for AOT compilation
|
|
TypePreservation.PreserveTypes();
|
|
|
|
NativeEventWaiter.WaitForEventLoop(
|
|
"Local\\PowerToysCmdPal-ExitEvent-eb73f6be-3f22-4b36-aee3-62924ba40bfd", () =>
|
|
{
|
|
EtwTrace?.Dispose();
|
|
AppWindow?.Close();
|
|
Environment.Exit(0);
|
|
});
|
|
|
|
// Connect the PT logging to the core project's logging.
|
|
// This way, log statements from the core project will be captured by the PT logs
|
|
var logWrapper = new LogWrapper();
|
|
CoreLogger.InitializeLogger(logWrapper);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Invoked when the application is launched.
|
|
/// </summary>
|
|
/// <param name="args">Details about the launch request and process.</param>
|
|
protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args)
|
|
{
|
|
AppWindow = new MainWindow();
|
|
|
|
var activatedEventArgs = Microsoft.Windows.AppLifecycle.AppInstance.GetCurrent().GetActivatedEventArgs();
|
|
((MainWindow)AppWindow).HandleLaunchNonUI(activatedEventArgs);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Configures the services for the application
|
|
/// </summary>
|
|
private static ServiceProvider ConfigureServices()
|
|
{
|
|
// TODO: It's in the Labs feed, but we can use Sergio's AOT-friendly source generator for this: https://github.com/CommunityToolkit/Labs-Windows/discussions/463
|
|
ServiceCollection services = new();
|
|
|
|
// Root services
|
|
services.AddSingleton(TaskScheduler.FromCurrentSynchronizationContext());
|
|
|
|
// Built-in Commands. Order matters - this is the order they'll be presented by default.
|
|
var allApps = new AllAppsCommandProvider();
|
|
var files = new IndexerCommandsProvider();
|
|
files.SuppressFallbackWhen(ShellCommandsProvider.SuppressFileFallbackIf);
|
|
services.AddSingleton<ICommandProvider>(allApps);
|
|
|
|
services.AddSingleton<ICommandProvider, ShellCommandsProvider>();
|
|
services.AddSingleton<ICommandProvider, CalculatorCommandProvider>();
|
|
services.AddSingleton<ICommandProvider>(files);
|
|
services.AddSingleton<ICommandProvider, BookmarksCommandProvider>(_ => BookmarksCommandProvider.CreateWithDefaultStore());
|
|
|
|
services.AddSingleton<ICommandProvider, WindowWalkerCommandsProvider>();
|
|
services.AddSingleton<ICommandProvider, WebSearchCommandsProvider>();
|
|
services.AddSingleton<ICommandProvider, ClipboardHistoryCommandsProvider>();
|
|
|
|
// GH #38440: Users might not have WinGet installed! Or they might have
|
|
// a ridiculously old version. Or might be running as admin.
|
|
// We shouldn't explode in the App ctor if we fail to instantiate an
|
|
// instance of PackageManager, which will happen in the static ctor
|
|
// for WinGetStatics
|
|
try
|
|
{
|
|
var winget = new WinGetExtensionCommandsProvider();
|
|
var callback = allApps.LookupApp;
|
|
winget.SetAllLookup(callback);
|
|
services.AddSingleton<ICommandProvider>(winget);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Logger.LogError("Couldn't load winget");
|
|
Logger.LogError(ex.ToString());
|
|
}
|
|
|
|
services.AddSingleton<ICommandProvider, WindowsTerminalCommandsProvider>();
|
|
services.AddSingleton<ICommandProvider, WindowsSettingsCommandsProvider>();
|
|
services.AddSingleton<ICommandProvider, RegistryCommandsProvider>();
|
|
services.AddSingleton<ICommandProvider, WindowsServicesCommandsProvider>();
|
|
services.AddSingleton<ICommandProvider, BuiltInsCommandProvider>();
|
|
services.AddSingleton<ICommandProvider, TimeDateCommandsProvider>();
|
|
services.AddSingleton<ICommandProvider, SystemCommandExtensionProvider>();
|
|
services.AddSingleton<ICommandProvider, RemoteDesktopCommandProvider>();
|
|
|
|
// Models
|
|
services.AddSingleton<TopLevelCommandManager>();
|
|
services.AddSingleton<AliasManager>();
|
|
services.AddSingleton<HotkeyManager>();
|
|
var sm = SettingsModel.LoadSettings();
|
|
services.AddSingleton(sm);
|
|
var state = AppStateModel.LoadState();
|
|
services.AddSingleton(state);
|
|
services.AddSingleton<IExtensionService, ExtensionService>();
|
|
services.AddSingleton<TrayIconService>();
|
|
services.AddSingleton<IRunHistoryService, RunHistoryService>();
|
|
|
|
services.AddSingleton<IRootPageService, PowerToysRootPageService>();
|
|
services.AddSingleton<IAppHostService, PowerToysAppHostService>();
|
|
services.AddSingleton<ITelemetryService, TelemetryForwarder>();
|
|
|
|
// ViewModels
|
|
services.AddSingleton<ShellViewModel>();
|
|
services.AddSingleton<IPageViewModelFactoryService, CommandPalettePageViewModelFactory>();
|
|
|
|
return services.BuildServiceProvider();
|
|
}
|
|
}
|