mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 11:09:28 +08:00
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using WinAlfred.Plugin;
|
|
|
|
namespace WinAlfred.PluginLoader
|
|
{
|
|
public static class Plugins
|
|
{
|
|
private static List<PluginPair> plugins = new List<PluginPair>();
|
|
|
|
public static void Init(MainWindow window)
|
|
{
|
|
plugins.Clear();
|
|
plugins.AddRange(new PythonPluginLoader().LoadPlugin());
|
|
plugins.AddRange(new CSharpPluginLoader().LoadPlugin());
|
|
foreach (IPlugin plugin in plugins.Select(pluginPair => pluginPair.Plugin))
|
|
{
|
|
IPlugin plugin1 = plugin;
|
|
ThreadPool.QueueUserWorkItem(o => plugin1.Init(new PluginInitContext()
|
|
{
|
|
Plugins = plugins,
|
|
ChangeQuery = s => window.ChangeQuery(s),
|
|
CloseApp = window.CloseApp,
|
|
HideApp = window.HideApp,
|
|
ShowApp = window.ShowApp,
|
|
ShowMsg = (title,subTitle,iconPath) => window.ShowMsg(title,subTitle,iconPath)
|
|
}));
|
|
}
|
|
}
|
|
|
|
public static List<PluginPair> AllPlugins
|
|
{
|
|
get { return plugins; }
|
|
}
|
|
}
|
|
}
|