mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-05 04:39:08 +08:00
130 lines
4.2 KiB
C#
130 lines
4.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using Microsoft.Win32;
|
|
using Wox.Infrastructure;
|
|
|
|
namespace Wox.Plugin.System
|
|
{
|
|
public class Program
|
|
{
|
|
public string Title { get; set; }
|
|
public string IcoPath { get; set; }
|
|
public string ExecutePath { get; set; }
|
|
public int Score { get; set; }
|
|
}
|
|
|
|
public class Programs : BaseSystemPlugin
|
|
{
|
|
private List<string> indexDirectory = new List<string>();
|
|
private List<string> indexPostfix = new List<string> { "lnk", "exe" };
|
|
|
|
List<Program> installedList = new List<Program>();
|
|
|
|
|
|
[DllImport("shell32.dll")]
|
|
static extern bool SHGetSpecialFolderPath(IntPtr hwndOwner,[Out] StringBuilder lpszPath, int nFolder, bool fCreate);
|
|
const int CSIDL_COMMON_STARTMENU = 0x16; // \Windows\Start Menu\Programs
|
|
const int CSIDL_COMMON_PROGRAMS = 0x17;
|
|
|
|
protected override List<Result> QueryInternal(Query query)
|
|
{
|
|
if (string.IsNullOrEmpty(query.RawQuery) || query.RawQuery.EndsWith(" ") || query.RawQuery.Length <= 1) return new List<Result>();
|
|
|
|
List<Program> returnList = installedList.Where(o => MatchProgram(o, query)).ToList();
|
|
returnList.ForEach(ScoreFilter);
|
|
|
|
return returnList.Select(c => new Result()
|
|
{
|
|
Title = c.Title,
|
|
IcoPath = c.IcoPath,
|
|
Score = c.Score,
|
|
Action = () =>
|
|
{
|
|
if (string.IsNullOrEmpty(c.ExecutePath))
|
|
{
|
|
MessageBox.Show("couldn't start" + c.Title);
|
|
}
|
|
else
|
|
{
|
|
Process.Start(c.ExecutePath);
|
|
}
|
|
}
|
|
}).ToList();
|
|
}
|
|
|
|
private bool MatchProgram(Program program, Query query)
|
|
{
|
|
if (program.Title.ToLower().Contains(query.RawQuery.ToLower())) return true;
|
|
if (ChineseToPinYin.ToPinYin(program.Title).Replace(" ", "").ToLower().Contains(query.RawQuery.ToLower())) return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
protected override void InitInternal(PluginInitContext context)
|
|
{
|
|
indexDirectory.Add(Environment.GetFolderPath(Environment.SpecialFolder.Programs));
|
|
|
|
StringBuilder commonStartMenuPath = new StringBuilder(560);
|
|
SHGetSpecialFolderPath(IntPtr.Zero, commonStartMenuPath, CSIDL_COMMON_PROGRAMS, false);
|
|
indexDirectory.Add(commonStartMenuPath.ToString());
|
|
|
|
GetAppFromStartMenu();
|
|
}
|
|
|
|
private void GetAppFromStartMenu()
|
|
{
|
|
foreach (string directory in indexDirectory)
|
|
{
|
|
GetAppFromDirectory(directory);
|
|
}
|
|
}
|
|
|
|
private void GetAppFromDirectory(string path)
|
|
{
|
|
foreach (string file in Directory.GetFiles(path))
|
|
{
|
|
if (indexPostfix.Any(o => file.EndsWith("." + o)))
|
|
{
|
|
Program p = new Program()
|
|
{
|
|
Title = getAppNameFromAppPath(file),
|
|
IcoPath = file,
|
|
Score = 10,
|
|
ExecutePath = file
|
|
};
|
|
installedList.Add(p);
|
|
}
|
|
}
|
|
|
|
foreach (var subDirectory in Directory.GetDirectories(path))
|
|
{
|
|
GetAppFromDirectory(subDirectory);
|
|
}
|
|
}
|
|
|
|
private void ScoreFilter(Program p)
|
|
{
|
|
if (p.Title.Contains("启动") || p.Title.ToLower().Contains("start"))
|
|
{
|
|
p.Score += 10;
|
|
}
|
|
if (p.Title.Contains("卸载") || p.Title.ToLower().Contains("uninstall"))
|
|
{
|
|
p.Score -= 5;
|
|
}
|
|
}
|
|
|
|
private string getAppNameFromAppPath(string app)
|
|
{
|
|
string temp = app.Substring(app.LastIndexOf('\\') + 1);
|
|
string name = temp.Substring(0, temp.LastIndexOf('.'));
|
|
return name;
|
|
}
|
|
}
|
|
} |