Move WebSearch into featureBox

This commit is contained in:
Yeechan Lu
2014-03-29 16:13:36 +08:00
parent 80ec16b9bd
commit c9790d7bb8
9 changed files with 146 additions and 94 deletions

View File

@@ -11,7 +11,7 @@ using Wox.Plugin.SystemPlugins.SuggestionSources;
namespace Wox.Plugin.SystemPlugins
{
public class WebSearchPlugin : BaseSystemPlugin
public class WebSearchPlugin : BaseSystemPlugin, ISettingProvider
{
private PluginInitContext context;
@@ -96,5 +96,14 @@ namespace Wox.Plugin.SystemPlugins
{
get { return base.Description; }
}
#region ISettingProvider Members
public System.Windows.Controls.Control CreateSettingPanel()
{
return new WebSearchesSetting();
}
#endregion
}
}