mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
commit
fcd3a86589
123
Wox.Plugin.SystemPlugins/ColorsPlugin.cs
Normal file
123
Wox.Plugin.SystemPlugins/ColorsPlugin.cs
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Drawing.Imaging;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
namespace Wox.Plugin.SystemPlugins
|
||||||
|
{
|
||||||
|
public sealed class ColorsPlugin : BaseSystemPlugin
|
||||||
|
{
|
||||||
|
private const string DIR_PATH = ".\\Plugins\\Colors\\";
|
||||||
|
private const int IMG_SIZE = 32;
|
||||||
|
|
||||||
|
private DirectoryInfo ColorsDirectory { get; set; }
|
||||||
|
|
||||||
|
public ColorsPlugin()
|
||||||
|
{
|
||||||
|
if (!Directory.Exists(DIR_PATH))
|
||||||
|
{
|
||||||
|
ColorsDirectory = Directory.CreateDirectory(DIR_PATH);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ColorsDirectory = new DirectoryInfo(DIR_PATH);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override List<Result> QueryInternal(Query query)
|
||||||
|
{
|
||||||
|
var raw = query.RawQuery;
|
||||||
|
if (!IsAvailable(raw)) return new List<Result>(0);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var cached = Find(raw);
|
||||||
|
if (cached.Length == 0)
|
||||||
|
{
|
||||||
|
var path = CreateImage(raw);
|
||||||
|
return new List<Result>
|
||||||
|
{
|
||||||
|
new Result
|
||||||
|
{
|
||||||
|
Title = raw,
|
||||||
|
IcoPath = path,
|
||||||
|
Action = _ =>
|
||||||
|
{
|
||||||
|
Clipboard.SetText(raw);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return cached.Select(x => new Result
|
||||||
|
{
|
||||||
|
Title = raw,
|
||||||
|
IcoPath = x.FullName,
|
||||||
|
Action = _ =>
|
||||||
|
{
|
||||||
|
Clipboard.SetText(raw);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}).ToList();
|
||||||
|
}
|
||||||
|
catch (Exception exception)
|
||||||
|
{
|
||||||
|
// todo: log
|
||||||
|
return new List<Result>(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool IsAvailable(string query)
|
||||||
|
{
|
||||||
|
// todo: rgb, names
|
||||||
|
var length = query.Length - 1; // minus `#` sign
|
||||||
|
return query.StartsWith("#") && (length == 3 || length == 6);
|
||||||
|
}
|
||||||
|
|
||||||
|
public FileInfo[] Find(string name)
|
||||||
|
{
|
||||||
|
var file = string.Format("{0}.png", name.Substring(1));
|
||||||
|
return ColorsDirectory.GetFiles(file, SearchOption.TopDirectoryOnly);
|
||||||
|
}
|
||||||
|
|
||||||
|
public string CreateImage(string name)
|
||||||
|
{
|
||||||
|
using (var bitmap = new Bitmap(IMG_SIZE, IMG_SIZE))
|
||||||
|
using (var graphics = Graphics.FromImage(bitmap))
|
||||||
|
{
|
||||||
|
var color = ColorTranslator.FromHtml(name);
|
||||||
|
graphics.Clear(color);
|
||||||
|
|
||||||
|
var path = CreateFileName(name);
|
||||||
|
bitmap.Save(path, ImageFormat.Png);
|
||||||
|
return path;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private string CreateFileName(string name)
|
||||||
|
{
|
||||||
|
return string.Format("{0}{1}.png", ColorsDirectory.FullName, name.Substring(1));
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string Name
|
||||||
|
{
|
||||||
|
get { return "Colors"; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string Description
|
||||||
|
{
|
||||||
|
get { return string.Empty; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string IcoPath
|
||||||
|
{
|
||||||
|
get { return "Images/color2.png"; }
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void InitInternal(PluginInitContext context)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -55,6 +55,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="CMD\CMDStorage.cs" />
|
<Compile Include="CMD\CMDStorage.cs" />
|
||||||
|
<Compile Include="ColorsPlugin.cs" />
|
||||||
<Compile Include="FileSystem\FileSystemSettings.xaml.cs">
|
<Compile Include="FileSystem\FileSystemSettings.xaml.cs">
|
||||||
<DependentUpon>FileSystemSettings.xaml</DependentUpon>
|
<DependentUpon>FileSystemSettings.xaml</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
BIN
Wox/Images/color2.png
Normal file
BIN
Wox/Images/color2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
@ -367,6 +367,13 @@
|
|||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Resource>
|
</Resource>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Images\color2.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Images\url1.png" />
|
||||||
|
<Resource Include="Images\url2.png" />
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
|
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
Loading…
Reference in New Issue
Block a user