mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
* add resx comment to sys plugin (#18843) * number examples calc plugin (#18934) * TD description fix (#17377) * small fixes * add comments * make spell checker happy
118 lines
4.1 KiB
C#
118 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.Diagnostics;
|
|
using System.Globalization;
|
|
using System.Threading;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Input;
|
|
using ManagedCommon;
|
|
using Microsoft.PowerToys.Run.Plugin.TimeDate.Components;
|
|
using Microsoft.PowerToys.Run.Plugin.TimeDate.Properties;
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
|
using Wox.Plugin;
|
|
|
|
namespace Microsoft.PowerToys.Run.Plugin.TimeDate
|
|
{
|
|
public class Main : IPlugin, IPluginI18n, ISettingProvider, IContextMenu
|
|
{
|
|
private PluginInitContext _context;
|
|
|
|
public string IconTheme { get; set; }
|
|
|
|
public string Name => Resources.Microsoft_plugin_timedate_plugin_name;
|
|
|
|
public string Description => GetTranslatedPluginDescription();
|
|
|
|
public IEnumerable<PluginAdditionalOption> AdditionalOptions
|
|
{
|
|
get
|
|
{
|
|
return TimeDateSettings.GetAdditionalOptions();
|
|
}
|
|
}
|
|
|
|
public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
|
|
{
|
|
if (!(selectedResult?.ContextData is AvailableResult data))
|
|
{
|
|
return new List<ContextMenuResult>(0);
|
|
}
|
|
|
|
return new List<ContextMenuResult>()
|
|
{
|
|
new ContextMenuResult
|
|
{
|
|
AcceleratorKey = Key.C,
|
|
AcceleratorModifiers = ModifierKeys.Control,
|
|
FontFamily = "Segoe MDL2 Assets",
|
|
Glyph = "\xE8C8", // E8C8 => Symbol: Copy
|
|
Title = Resources.Microsoft_plugin_timedate_CopyToClipboard,
|
|
Action = _ => ResultHelper.CopyToClipBoard(data.Value),
|
|
},
|
|
};
|
|
}
|
|
|
|
public void Init(PluginInitContext context)
|
|
{
|
|
_context = context;
|
|
_context.API.ThemeChanged += OnThemeChanged;
|
|
UpdateIconTheme(_context.API.GetCurrentTheme());
|
|
}
|
|
|
|
public List<Result> Query(Query query)
|
|
{
|
|
if (query == null)
|
|
{
|
|
throw new ArgumentNullException(paramName: nameof(query));
|
|
}
|
|
|
|
return SearchController.ExecuteSearch(query, IconTheme);
|
|
}
|
|
|
|
private void UpdateIconTheme(Theme theme)
|
|
{
|
|
if (theme == Theme.Light || theme == Theme.HighContrastWhite)
|
|
{
|
|
IconTheme = "light";
|
|
}
|
|
else
|
|
{
|
|
IconTheme = "dark";
|
|
}
|
|
}
|
|
|
|
private void OnThemeChanged(Theme currentTheme, Theme newTheme)
|
|
{
|
|
UpdateIconTheme(newTheme);
|
|
}
|
|
|
|
public string GetTranslatedPluginDescription()
|
|
{
|
|
// The extra strings for the examples are required for correct translations.
|
|
string timeExample = Resources.Microsoft_plugin_timedate_plugin_description_example_time + "::" + DateTime.Now.ToString("T", CultureInfo.CurrentCulture);
|
|
string dayExample = Resources.Microsoft_plugin_timedate_plugin_description_example_day + "::" + DateTime.Now.ToString("d", CultureInfo.CurrentCulture);
|
|
string calendarWeekExample = Resources.Microsoft_plugin_timedate_plugin_description_example_calendarWeek + "::" + DateTime.Now.ToString("d", CultureInfo.CurrentCulture);
|
|
return string.Format(CultureInfo.CurrentCulture, Resources.Microsoft_plugin_timedate_plugin_description, Resources.Microsoft_plugin_timedate_plugin_description_example_day, dayExample, timeExample, calendarWeekExample);
|
|
}
|
|
|
|
public string GetTranslatedPluginTitle()
|
|
{
|
|
return Resources.Microsoft_plugin_timedate_plugin_name;
|
|
}
|
|
|
|
public Control CreateSettingPanel()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void UpdateSettings(PowerLauncherPluginSettings settings)
|
|
{
|
|
TimeDateSettings.Instance.UpdateSettings(settings);
|
|
}
|
|
}
|
|
}
|