mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 02:06:36 +02:00
* [Setup] Add support for installing both dotnet 3 and 5 (#12306) * [PowerToys Run] Update to net5 (#12286) * Change targets of projects * Update Microsoft.Toolkit.Uwp.Notifications, changed TargetFramework for PowerLauncher project in order to resolve an issue with ModernWpf * Specify windows version in order to fix build errors * Fixed suppressed warnings * Updated sdk * Removed usage of obsolete GlobalAssemblyCache * Removed obsolete DesktopNotificationManagerCompat * Update nuget versions * Update installer * [PowerToys Run] Obsolete APIs and warnings introduced in .net5 (#12423) * Change targets of projects * Update Microsoft.Toolkit.Uwp.Notifications, changed TargetFramework for PowerLauncher project in order to resolve an issue with ModernWpf * Fixed suppressed warnings * Removed obsolete DesktopNotificationManagerCompat * Get rid of binary formatter * Update tests * Don't include new image cache file to the report * There's no need to call IsOwner as it doesn't make sense * Fix different nullability exception * Exclude extra dlls from tests Co-authored-by: Andrey Nekrasov <yuyoyuppe@users.noreply.github.com>
139 lines
4.1 KiB
C#
139 lines
4.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;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Windows;
|
|
using ManagedCommon;
|
|
using Microsoft.PowerToys.Common.UI;
|
|
using Microsoft.Toolkit.Uwp.Notifications;
|
|
using PowerLauncher.Helper;
|
|
using PowerLauncher.Plugin;
|
|
using PowerLauncher.ViewModel;
|
|
using Windows.UI.Notifications;
|
|
using Wox.Infrastructure.Image;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox
|
|
{
|
|
public class PublicAPIInstance : IPublicAPI, IDisposable
|
|
{
|
|
private readonly SettingWindowViewModel _settingsVM;
|
|
private readonly MainViewModel _mainVM;
|
|
private readonly ThemeManager _themeManager;
|
|
private bool _disposed;
|
|
|
|
public event ThemeChangedHandler ThemeChanged;
|
|
|
|
public PublicAPIInstance(SettingWindowViewModel settingsVM, MainViewModel mainVM, ThemeManager themeManager)
|
|
{
|
|
_settingsVM = settingsVM ?? throw new ArgumentNullException(nameof(settingsVM));
|
|
_mainVM = mainVM ?? throw new ArgumentNullException(nameof(mainVM));
|
|
_themeManager = themeManager ?? throw new ArgumentNullException(nameof(themeManager));
|
|
_themeManager.ThemeChanged += OnThemeChanged;
|
|
WebRequest.RegisterPrefix("data", new DataWebRequestFactory());
|
|
}
|
|
|
|
public void ChangeQuery(string query, bool requery = false)
|
|
{
|
|
_mainVM.ChangeQueryText(query, requery);
|
|
}
|
|
|
|
public void RestartApp()
|
|
{
|
|
_mainVM.MainWindowVisibility = Visibility.Hidden;
|
|
|
|
// we must manually save
|
|
// UpdateManager.RestartApp() will call Environment.Exit(0)
|
|
// which will cause ungraceful exit
|
|
SaveAppAllSettings();
|
|
|
|
// Todo : Implement logic to restart this app.
|
|
Environment.Exit(0);
|
|
}
|
|
|
|
public void CheckForNewUpdate()
|
|
{
|
|
// _settingsVM.UpdateApp();
|
|
}
|
|
|
|
public void SaveAppAllSettings()
|
|
{
|
|
_mainVM.Save();
|
|
_settingsVM.Save();
|
|
PluginManager.Save();
|
|
ImageLoader.Save();
|
|
}
|
|
|
|
public void ReloadAllPluginData()
|
|
{
|
|
PluginManager.ReloadData();
|
|
}
|
|
|
|
public void ShowMsg(string title, string subTitle = "", string iconPath = "", bool useMainWindowAsOwner = true)
|
|
{
|
|
Application.Current.Dispatcher.Invoke(() =>
|
|
{
|
|
MessageBox.Show(subTitle, title);
|
|
});
|
|
}
|
|
|
|
public void ShowNotification(string text, string secondaryText = null)
|
|
{
|
|
var builder = new ToastContentBuilder().AddText(text);
|
|
|
|
if (!string.IsNullOrWhiteSpace(secondaryText))
|
|
{
|
|
builder.AddText(secondaryText);
|
|
}
|
|
|
|
Application.Current.Dispatcher.Invoke(() =>
|
|
{
|
|
var toast = new ToastNotification(builder.GetToastContent().GetXml());
|
|
ToastNotificationManagerCompat.CreateToastNotifier().Show(toast);
|
|
});
|
|
}
|
|
|
|
public void InstallPlugin(string path)
|
|
{
|
|
Application.Current.Dispatcher.Invoke(() => PluginManager.InstallPlugin(path));
|
|
}
|
|
|
|
public List<PluginPair> GetAllPlugins()
|
|
{
|
|
return PluginManager.AllPlugins.ToList();
|
|
}
|
|
|
|
public Theme GetCurrentTheme()
|
|
{
|
|
return _themeManager.GetCurrentTheme();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(disposing: true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
protected void OnThemeChanged(Theme oldTheme, Theme newTheme)
|
|
{
|
|
ThemeChanged?.Invoke(oldTheme, newTheme);
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (!_disposed)
|
|
{
|
|
if (disposing)
|
|
{
|
|
_themeManager.ThemeChanged -= OnThemeChanged;
|
|
_disposed = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|