// 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 PowerLauncher.Helper; using PowerLauncher.ViewModel; using Wox.Core.Plugin; using Wox.Core.Resource; using Wox.Infrastructure; using Wox.Infrastructure.Image; using Wox.Plugin; namespace Wox { public class PublicAPIInstance : IPublicAPI, IDisposable { private readonly SettingWindowViewModel _settingsVM; private readonly MainViewModel _mainVM; private readonly Alphabet _alphabet; private readonly ThemeManager _themeManager; private bool _disposed = false; public event ThemeChangedHandler ThemeChanged; public PublicAPIInstance(SettingWindowViewModel settingsVM, MainViewModel mainVM, Alphabet alphabet, ThemeManager themeManager) { _settingsVM = settingsVM ?? throw new ArgumentNullException(nameof(settingsVM)); _mainVM = mainVM ?? throw new ArgumentNullException(nameof(mainVM)); _alphabet = alphabet ?? throw new ArgumentNullException(nameof(alphabet)); _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(); _alphabet.Save(); } public void ReloadAllPluginData() { PluginManager.ReloadData(); } public void ShowMsg(string title, string subTitle = "", string iconPath = "", bool useMainWindowAsOwner = true) { } public void InstallPlugin(string path) { Application.Current.Dispatcher.Invoke(() => PluginManager.InstallPlugin(path)); } public string GetTranslation(string key) { return InternationalizationManager.Instance.GetTranslation(key); } public List 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; } } } } }