mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 08:11:25 +00:00
59 lines
2.0 KiB
C#
59 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Wox.Infrastructure;
|
|
|
|
namespace Wox.Plugin.System
|
|
{
|
|
public class ThirdpartyPluginIndicator : BaseSystemPlugin
|
|
{
|
|
private List<PluginPair> allPlugins = new List<PluginPair>();
|
|
private Action<string> changeQuery;
|
|
|
|
protected override List<Result> QueryInternal(Query query)
|
|
{
|
|
List<Result> results = new List<Result>();
|
|
if (string.IsNullOrEmpty(query.RawQuery)) return results;
|
|
|
|
foreach (PluginMetadata metadata in allPlugins.Select(o => o.Metadata))
|
|
{
|
|
if (metadata.ActionKeyword.StartsWith(query.RawQuery))
|
|
{
|
|
PluginMetadata metadataCopy = metadata;
|
|
Result result = new Result
|
|
{
|
|
Title = metadata.ActionKeyword,
|
|
SubTitle = string.Format("Activate {0} plugin", metadata.Name),
|
|
Score = 50,
|
|
IcoPath = "Images/work.png",
|
|
Action = (c) => changeQuery(metadataCopy.ActionKeyword + " "),
|
|
DontHideWoxAfterSelect = true
|
|
};
|
|
results.Add(result);
|
|
}
|
|
}
|
|
|
|
results.AddRange(CommonStorage.Instance.UserSetting.WebSearches.Where(o => o.ActionWord.StartsWith(query.RawQuery) && o.Enabled).Select(n => new Result()
|
|
{
|
|
Title = n.ActionWord,
|
|
SubTitle = string.Format("Activate {0} web search", n.ActionWord),
|
|
Score = 50,
|
|
IcoPath = "Images/work.png",
|
|
Action = (c) => changeQuery(n.ActionWord + " "),
|
|
DontHideWoxAfterSelect = true
|
|
}));
|
|
|
|
return results;
|
|
}
|
|
|
|
protected override void InitInternal(PluginInitContext context)
|
|
{
|
|
allPlugins = context.Plugins;
|
|
changeQuery = context.ChangeQuery;
|
|
}
|
|
|
|
|
|
}
|
|
}
|