mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-21 15:27:55 +08:00
397b1533f0
* Basic WPF searchbox working * Updated key navigation and removed coldstart for searhbox * refactored and added code back in commented * Removed XAML Island references * Basic searchbox+listview working * Getting a bit more back * got color there * Result list bit better now * Added image loader for WPF Image * Partially got the context menus rendering again * adjusting coldstart to load, control will load with main form * getting context menus back * mouse over works now * Click now works, started to remove Win.XAML references * being a bit more forcusful on focus * Shadow text is not aligned * fixing focus if listbox was used * small tweak to fix shadow text * inputs don't work but gotta figure out why. commenting out * preview text * adding back in delay * fixed height issue * Applied the correct context button styles * Created custom ItemContainerStyle to fix the blue highlights behind the command buttons * Applied the correct highlight / mouseover styling * Removed vertical scrollbar in listview * fixed for alt-space prompt * Fixed right click focus issue * Somil55/wpf modifier keys (#3378) * Removed DPI change as it was not required * Global key hooks for context menu items * Updated Key for shell, folder and indexer plugin * Updated key mapping for indexer plugin * Somil55/wpf context menu selection (#3389) * Removed DPI change as it was not required * Global key hooks for context menu items * Updated Key for shell, folder and indexer plugin * Updated key mapping for indexer plugin * Add trigger to selection on tabbing * Minor shadow adjustments so its more similiar to default shell shadow. Added intro/outro animations * Added UWP-like scrollbar style for the results list * Fixed formating and naming * Removed Powerlauncher UI project * Update PowerToys.sln * Commented out scrollbar and fade in/out animations * Added missing features from UWP branch * Fixed formatting for Product.wxs * Add dragging to WPF window Co-authored-by: Clint Rutkas <clint@rutkas.com> Co-authored-by: Niels Laute <niels.laute@live.nl>
108 lines
3.5 KiB
C#
108 lines
3.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Windows;
|
|
using Wox.Infrastructure.Logger;
|
|
using Wox.Plugin;
|
|
using Microsoft.Plugin.Indexer.SearchHelper;
|
|
using System.Windows.Input;
|
|
using System.Reflection;
|
|
|
|
namespace Microsoft.Plugin.Indexer
|
|
{
|
|
internal class ContextMenuLoader : IContextMenu
|
|
{
|
|
private readonly PluginInitContext _context;
|
|
|
|
public enum ResultType
|
|
{
|
|
Folder,
|
|
File
|
|
}
|
|
|
|
public ContextMenuLoader(PluginInitContext context)
|
|
{
|
|
_context = context;
|
|
}
|
|
|
|
public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
|
|
{
|
|
var contextMenus = new List<ContextMenuResult>();
|
|
if (selectedResult.ContextData is SearchResult record)
|
|
{
|
|
ResultType type = Path.HasExtension(record.Path) ? ResultType.File : ResultType.Folder;
|
|
|
|
if (type == ResultType.File)
|
|
{
|
|
contextMenus.Add(CreateOpenContainingFolderResult(record));
|
|
}
|
|
|
|
var fileOrFolder = (type == ResultType.File) ? "file" : "folder";
|
|
contextMenus.Add(new ContextMenuResult
|
|
{
|
|
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
|
Title = "Copy path",
|
|
Glyph = "\xE8C8",
|
|
FontFamily = "Segoe MDL2 Assets",
|
|
SubTitle = $"Copy the current {fileOrFolder} path to clipboard",
|
|
AcceleratorKey = Key.C,
|
|
AcceleratorModifiers = ModifierKeys.Control,
|
|
|
|
Action = (context) =>
|
|
{
|
|
try
|
|
{
|
|
Clipboard.SetText(record.Path);
|
|
return true;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
var message = "Fail to set text in clipboard";
|
|
LogException(message, e);
|
|
_context.API.ShowMsg(message);
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
return contextMenus;
|
|
}
|
|
|
|
private ContextMenuResult CreateOpenContainingFolderResult(SearchResult record)
|
|
{
|
|
return new ContextMenuResult
|
|
{
|
|
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
|
Title = "Open containing folder",
|
|
Glyph = "\xE838",
|
|
FontFamily = "Segoe MDL2 Assets",
|
|
AcceleratorKey = Key.E,
|
|
AcceleratorModifiers = (ModifierKeys.Control | ModifierKeys.Shift),
|
|
Action = _ =>
|
|
{
|
|
try
|
|
{
|
|
Process.Start("explorer.exe", $" /select,\"{record.Path}\"");
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
var message = $"Fail to open file at {record.Path}";
|
|
LogException(message, e);
|
|
_context.API.ShowMsg(message);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
},
|
|
};
|
|
}
|
|
|
|
public void LogException(string message, Exception e)
|
|
{
|
|
Log.Exception($"|Microsoft.Plugin.Folder.ContextMenu|{message}", e);
|
|
}
|
|
}
|
|
|
|
} |