mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 11:46:30 +02:00
Improve instant search ue
This commit is contained in:
@@ -15,7 +15,13 @@ namespace Wox.Plugin
|
||||
/// <param name="query"></param>
|
||||
/// <param name="plugin"></param>
|
||||
/// <param name="results"></param>
|
||||
void PushResults(Query query,PluginMetadata plugin, List<Result> results);
|
||||
void PushResults(Query query, PluginMetadata plugin, List<Result> results);
|
||||
|
||||
/// <summary>
|
||||
/// Show context menu with giving results
|
||||
/// </summary>
|
||||
/// <param name="results"></param>
|
||||
void ShowContextMenu(PluginMetadata plugin, List<Result> results);
|
||||
|
||||
/// <summary>
|
||||
/// Execute command
|
||||
@@ -63,7 +69,7 @@ namespace Wox.Plugin
|
||||
/// Open setting dialog
|
||||
/// </summary>
|
||||
void OpenSettingDialog();
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Show loading animation
|
||||
/// </summary>
|
||||
|
||||
@@ -33,6 +33,8 @@ namespace Wox.Plugin
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
internal bool IsIntantQuery { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Return first search split by space if it has
|
||||
/// </summary>
|
||||
|
||||
@@ -73,6 +73,11 @@ namespace Wox.Plugin
|
||||
/// </summary>
|
||||
public List<Result> ContextMenu { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Additional data associate with this result
|
||||
/// </summary>
|
||||
public object ContextData { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Plugin ID that generate this result
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user