mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using Wox.Plugin.Program.Programs;
|
|
|
|
namespace Wox.Plugin.Program
|
|
{
|
|
public class Settings
|
|
{
|
|
public List<ProgramSource> ProgramSources { get; set; } = new List<ProgramSource>();
|
|
public string[] ProgramSuffixes { get; set; } = {"bat", "appref-ms", "exe", "lnk"};
|
|
|
|
public bool EnableStartMenuSource { get; set; } = true;
|
|
|
|
public bool EnableRegistrySource { get; set; } = true;
|
|
|
|
public bool EnableProgramSourceOnly { get; set; } = false;
|
|
|
|
internal const char SuffixSeperator = ';';
|
|
|
|
/// <summary>
|
|
/// Contains user added folder location contents as well as all user disabled applications
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>Win32 class applications sets UniqueIdentifier using their full path</para>
|
|
/// <para>UWP class applications sets UniqueIdentifier using their Application User Model ID</para>
|
|
/// </remarks>
|
|
public class ProgramSource
|
|
{
|
|
private string name;
|
|
|
|
public string Location { get; set; }
|
|
public string Name { get => name ?? new DirectoryInfo(Location).Name; set => name = value; }
|
|
public bool Enabled { get; set; } = true;
|
|
public string UniqueIdentifier { get; set; }
|
|
}
|
|
}
|
|
}
|