2020-05-27 21:41:41 +00:00
|
|
|
|
using System;
|
2020-06-21 22:43:59 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
using System.Reflection;
|
2020-05-19 08:46:42 +00:00
|
|
|
|
|
|
|
|
|
|
namespace Flow.Launcher.Plugin.Explorer.Search
|
|
|
|
|
|
{
|
2020-05-27 21:41:41 +00:00
|
|
|
|
internal static class Constants
|
2020-05-19 08:46:42 +00:00
|
|
|
|
{
|
2020-05-27 21:41:41 +00:00
|
|
|
|
internal const string FolderImagePath = "Images\\folder.png";
|
|
|
|
|
|
internal const string FileImagePath = "Images\\file.png";
|
|
|
|
|
|
internal const string DeleteFileFolderImagePath = "Images\\deletefilefolder.png";
|
|
|
|
|
|
internal const string CopyImagePath = "Images\\copy.png";
|
|
|
|
|
|
internal const string IndexImagePath = "Images\\index.png";
|
2020-06-02 10:58:22 +00:00
|
|
|
|
internal const string ExcludeFromIndexImagePath = "Images\\excludeindexpath.png";
|
2020-06-03 12:00:18 +00:00
|
|
|
|
internal const string ExplorerIconImagePath = "Images\\explorer.png";
|
2020-06-08 04:47:57 +00:00
|
|
|
|
internal const string DifferentUserIconImagePath = "Images\\user.png";
|
2020-06-08 08:41:59 +00:00
|
|
|
|
internal const string IndexingOptionsIconImagePath = "Images\\windowsindexingoptions.png";
|
2021-01-26 09:21:12 +00:00
|
|
|
|
internal const string QuickAccessImagePath = "Images\\quickaccess.png";
|
2021-01-27 09:55:53 +00:00
|
|
|
|
internal const string RemoveQuickAccessImagePath = "Images\\removequickaccess.png";
|
2020-05-27 21:41:41 +00:00
|
|
|
|
|
2020-06-29 20:45:04 +00:00
|
|
|
|
internal const string ToolTipOpenDirectory = "Ctrl + Enter to open the directory";
|
2020-05-19 08:46:42 +00:00
|
|
|
|
|
2020-06-29 22:15:10 +00:00
|
|
|
|
internal const string ToolTipOpenContainingFolder = "Ctrl + Enter to open the containing folder";
|
2020-05-19 08:46:42 +00:00
|
|
|
|
|
2020-05-28 11:35:12 +00:00
|
|
|
|
internal const char AllFilesFolderSearchWildcard = '>';
|
|
|
|
|
|
|
2020-08-25 22:06:51 +00:00
|
|
|
|
internal const string DefaultContentSearchActionKeyword = "doc:";
|
|
|
|
|
|
|
2020-05-28 11:35:12 +00:00
|
|
|
|
internal const char DirectorySeperator = '\\';
|
2020-06-08 08:41:59 +00:00
|
|
|
|
|
|
|
|
|
|
internal const string WindowsIndexingOptions = "srchadmin.dll";
|
2020-06-21 22:43:59 +00:00
|
|
|
|
|
|
|
|
|
|
internal static string ExplorerIconImageFullPath
|
|
|
|
|
|
=> Directory.GetParent(Assembly.GetExecutingAssembly().Location.ToString()) + "\\" + ExplorerIconImagePath;
|
2020-05-19 08:46:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|