mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 11:17:53 +01:00
131 lines
4.0 KiB
C#
131 lines
4.0 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;
|
|
using System.Threading;
|
|
using System.Windows;
|
|
using Common.UI;
|
|
using ManagedCommon;
|
|
using PowerToys.Interop;
|
|
using WorkspacesLauncherUI.ViewModels;
|
|
|
|
namespace WorkspacesLauncherUI
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App : Application, IDisposable
|
|
{
|
|
private static Mutex _instanceMutex;
|
|
|
|
// Create an instance of the IPC wrapper.
|
|
private static TwoWayPipeMessageIPCManaged ipcmanager;
|
|
|
|
private StatusWindow _mainWindow;
|
|
|
|
private MainViewModel _mainViewModel;
|
|
|
|
public static ThemeManager ThemeManager { get; set; }
|
|
|
|
private bool _isDisposed;
|
|
|
|
public static Action<string> IPCMessageReceivedCallback { get; set; }
|
|
|
|
public App()
|
|
{
|
|
}
|
|
|
|
private void OnStartup(object sender, StartupEventArgs e)
|
|
{
|
|
Logger.InitializeLogger("\\Workspaces\\WorkspacesLauncherUI");
|
|
AppDomain.CurrentDomain.UnhandledException += OnUnhandledException;
|
|
|
|
const string appName = "Local\\PowerToys_Workspaces_LauncherUI_InstanceMutex";
|
|
bool createdNew;
|
|
_instanceMutex = new Mutex(true, appName, out createdNew);
|
|
if (!createdNew)
|
|
{
|
|
Logger.LogWarning("Another instance of Workspaces Launcher UI is already running. Exiting this instance.");
|
|
_instanceMutex = null;
|
|
Shutdown(0);
|
|
return;
|
|
}
|
|
|
|
if (PowerToys.GPOWrapperProjection.GPOWrapper.GetConfiguredWorkspacesEnabledValue() == PowerToys.GPOWrapperProjection.GpoRuleConfigured.Disabled)
|
|
{
|
|
Logger.LogWarning("Tried to start with a GPO policy setting the utility to always be disabled. Please contact your systems administrator.");
|
|
Shutdown(0);
|
|
return;
|
|
}
|
|
|
|
ipcmanager = new TwoWayPipeMessageIPCManaged("\\\\.\\pipe\\powertoys_workspaces_ui_", "\\\\.\\pipe\\powertoys_workspaces_launcher_ui_", (string message) =>
|
|
{
|
|
if (IPCMessageReceivedCallback != null && message.Length > 0)
|
|
{
|
|
IPCMessageReceivedCallback(message);
|
|
}
|
|
});
|
|
ipcmanager.Start();
|
|
|
|
ThemeManager = new ThemeManager(this);
|
|
|
|
if (_mainViewModel == null)
|
|
{
|
|
_mainViewModel = new MainViewModel();
|
|
}
|
|
|
|
// normal start of editor
|
|
if (_mainWindow == null)
|
|
{
|
|
_mainWindow = new StatusWindow(_mainViewModel);
|
|
}
|
|
|
|
// reset main window owner to keep it on the top
|
|
_mainWindow.ShowActivated = true;
|
|
_mainWindow.Topmost = true;
|
|
_mainWindow.Show();
|
|
}
|
|
|
|
private void OnExit(object sender, ExitEventArgs e)
|
|
{
|
|
if (_instanceMutex != null)
|
|
{
|
|
_instanceMutex.ReleaseMutex();
|
|
}
|
|
|
|
Dispose();
|
|
}
|
|
|
|
private void OnUnhandledException(object sender, UnhandledExceptionEventArgs args)
|
|
{
|
|
Logger.LogError("Unhandled exception occurred", args.ExceptionObject as Exception);
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (!_isDisposed)
|
|
{
|
|
if (disposing)
|
|
{
|
|
ThemeManager?.Dispose();
|
|
|
|
ipcmanager?.End();
|
|
ipcmanager?.Dispose();
|
|
|
|
_instanceMutex?.Dispose();
|
|
}
|
|
|
|
_isDisposed = true;
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
// Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method
|
|
Dispose(disposing: true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
}
|
|
}
|