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

58 lines
2.1 KiB
C#
Raw Normal View History

using System.Collections.Generic;
2015-02-07 21:27:48 +08:00
using System.IO;
2014-01-06 19:03:20 +08:00
using System.Linq;
2015-02-07 21:27:48 +08:00
using System.Reflection;
2015-01-04 23:08:26 +08:00
using Wox.Core.Plugin;
using Wox.Core.UserSettings;
2014-01-06 19:03:20 +08:00
namespace Wox.Plugin.PluginIndicator
2014-01-06 19:03:20 +08:00
{
public class PluginIndicator : 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
let customizedPluginConfig =
UserSettingStorage.Instance.CustomizedPluginConfigs.FirstOrDefault(o => o.ID == metadata.ID)
where customizedPluginConfig == null || !customizedPluginConfig.Disabled
select new Result
{
Title = keyword,
SubTitle = $"Activate {metadata.Name} plugin",
Score = 100,
IcoPath = metadata.FullIcoPath,
Action = (c) =>
{
context.API.ChangeQuery($"{keyword}{Plugin.Query.TermSeperater}");
return false;
},
};
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 GetLanguagesFolder()
{
return Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Languages");
}
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
}
}