mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
* move existing generator classes * add new generators * implement new generators * fixes * improvements * shorten query tags * make spellcheck happy * add tests * dev docs * fix typos * fix tests
165 lines
4.8 KiB
C#
165 lines
4.8 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.Runtime.InteropServices;
|
|
using System.Threading;
|
|
using System.Windows;
|
|
using Community.PowerToys.Run.Plugin.ValueGenerator.Properties;
|
|
using ManagedCommon;
|
|
using Wox.Plugin;
|
|
using Wox.Plugin.Logger;
|
|
|
|
namespace Community.PowerToys.Run.Plugin.ValueGenerator
|
|
{
|
|
public class Main : IPlugin, IPluginI18n, IDisposable
|
|
{
|
|
public string Name => Resources.plugin_name;
|
|
|
|
public string Description => Resources.plugin_description;
|
|
|
|
public static string PluginID => "a26b1bb4dbd911edafa10242ac120002";
|
|
|
|
private PluginInitContext _context;
|
|
private static bool _isLightTheme = true;
|
|
private bool _disposed;
|
|
private static InputParser _inputParser = new InputParser();
|
|
|
|
public void Init(PluginInitContext context)
|
|
{
|
|
context = context ?? throw new ArgumentNullException(paramName: nameof(context));
|
|
|
|
_context = context;
|
|
_context.API.ThemeChanged += OnThemeChanged;
|
|
UpdateIconPath(_context.API.GetCurrentTheme());
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(disposing: true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
private void OnThemeChanged(Theme currentTheme, Theme newTheme)
|
|
{
|
|
UpdateIconPath(newTheme);
|
|
}
|
|
|
|
private static void UpdateIconPath(Theme theme)
|
|
{
|
|
if (theme == Theme.Light || theme == Theme.HighContrastWhite)
|
|
{
|
|
_isLightTheme = true;
|
|
}
|
|
else
|
|
{
|
|
_isLightTheme = false;
|
|
}
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (!_disposed)
|
|
{
|
|
if (disposing)
|
|
{
|
|
if (_context != null && _context.API != null)
|
|
{
|
|
_context.API.ThemeChanged -= OnThemeChanged;
|
|
}
|
|
|
|
_disposed = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
public string GetTranslatedPluginDescription()
|
|
{
|
|
return Resources.plugin_description;
|
|
}
|
|
|
|
public string GetTranslatedPluginTitle()
|
|
{
|
|
return Resources.plugin_name;
|
|
}
|
|
|
|
public List<Result> Query(Query query)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(query);
|
|
|
|
var results = new List<Result>();
|
|
try
|
|
{
|
|
IComputeRequest computeRequest = _inputParser.ParseInput(query);
|
|
var result = GetResult(computeRequest);
|
|
|
|
if (!string.IsNullOrEmpty(result.Title))
|
|
{
|
|
results.Add(result);
|
|
}
|
|
else
|
|
{
|
|
return results;
|
|
}
|
|
}
|
|
catch (ArgumentException e)
|
|
{
|
|
results.Add(GetErrorResult(e.Message));
|
|
}
|
|
catch (FormatException e)
|
|
{
|
|
Log.Debug(GetTranslatedPluginTitle() + ": " + e.Message, GetType());
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
private Result GetResult(IComputeRequest request)
|
|
{
|
|
request.Compute();
|
|
|
|
return new Result
|
|
{
|
|
ContextData = request.Result,
|
|
Title = request.ResultToString(),
|
|
IcoPath = _isLightTheme ? "Images/ValueGenerator.light.png" : "Images/ValueGenerator.dark.png",
|
|
Score = 300,
|
|
SubTitle = request.Description,
|
|
Action = c =>
|
|
{
|
|
var ret = false;
|
|
var thread = new Thread(() =>
|
|
{
|
|
try
|
|
{
|
|
Clipboard.SetText(request.ResultToString());
|
|
ret = true;
|
|
}
|
|
catch (ExternalException)
|
|
{
|
|
MessageBox.Show(Properties.Resources.copy_failed);
|
|
}
|
|
});
|
|
thread.SetApartmentState(ApartmentState.STA);
|
|
thread.Start();
|
|
thread.Join();
|
|
return ret;
|
|
},
|
|
};
|
|
}
|
|
|
|
private Result GetErrorResult(string errorMessage)
|
|
{
|
|
return new Result
|
|
{
|
|
Title = Resources.error_title,
|
|
SubTitle = errorMessage,
|
|
IcoPath = _isLightTheme ? "Images/Warning.light.png" : "Images/Warning.dark.png",
|
|
Action = _ => { return true; },
|
|
};
|
|
}
|
|
}
|
|
}
|