PowerToys/Plugins/Wox.Plugin.PluginIndicator/Main.cs

49 lines
1.7 KiB
C#
Raw Normal View History

using System.Collections.Generic;
2014-01-06 19:03:20 +08:00
using System.Linq;
2015-01-04 23:08:26 +08:00
using Wox.Core.Plugin;
2014-01-06 19:03:20 +08:00
namespace Wox.Plugin.PluginIndicator
2014-01-06 19:03:20 +08:00
{
2016-05-07 10:55:09 +08:00
public class Main : IPlugin, IPluginI18n
2014-01-06 19:03:20 +08:00
{
2014-07-05 23:10:34 +08:00
private PluginInitContext context;
2014-01-06 19:03:20 +08:00
public List<Result> Query(Query query)
2014-01-06 19:03:20 +08:00
{
2015-11-07 11:50:15 +08:00
var results = from keyword in PluginManager.NonGlobalPlugins.Keys
where keyword.StartsWith(query.Terms[0])
2015-11-07 11:50:15 +08:00
let metadata = PluginManager.NonGlobalPlugins[keyword].Metadata
2016-05-12 09:45:35 +08:00
let disabled = PluginManager.Settings.Plugins[metadata.ID].Disabled
where !disabled
select new Result
{
Title = keyword,
SubTitle = $"Activate {metadata.Name} plugin",
Score = 100,
IcoPath = metadata.IcoPath,
2016-01-07 05:34:42 +08:00
Action = c =>
{
context.API.ChangeQuery($"{keyword}{Plugin.Query.TermSeperater}");
return false;
2016-01-07 05:34:42 +08:00
}
};
return results.ToList();
2014-01-06 19:03:20 +08:00
}
public void Init(PluginInitContext context)
2014-01-06 19:03:20 +08:00
{
2014-07-05 23:10:34 +08:00
this.context = context;
2014-01-06 19:03:20 +08:00
}
2015-02-07 21:27:48 +08:00
public string GetTranslatedPluginTitle()
{
return context.API.GetTranslation("wox_plugin_pluginindicator_plugin_name");
}
public string GetTranslatedPluginDescription()
{
return context.API.GetTranslation("wox_plugin_pluginindicator_plugin_description");
2015-02-07 21:27:48 +08:00
}
2014-01-06 19:03:20 +08:00
}
}