2025-03-31 05:26:09 +00:00
|
|
|
|
namespace Flow.Launcher.Plugin;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Enum for search delay time
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public enum SearchDelayTime
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2025-03-31 09:05:23 +00:00
|
|
|
|
/// Very long search delay time. 250ms.
|
2025-03-31 05:26:09 +00:00
|
|
|
|
/// </summary>
|
2025-03-31 09:05:23 +00:00
|
|
|
|
VeryLong,
|
2025-03-31 05:26:09 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-03-31 09:05:23 +00:00
|
|
|
|
/// Long search delay time. 200ms.
|
2025-03-31 05:26:09 +00:00
|
|
|
|
/// </summary>
|
2025-03-31 09:05:23 +00:00
|
|
|
|
Long,
|
2025-03-31 05:26:09 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-03-31 09:05:23 +00:00
|
|
|
|
/// Normal search delay time. 150ms. Default value.
|
2025-03-31 05:26:09 +00:00
|
|
|
|
/// </summary>
|
2025-03-31 09:05:23 +00:00
|
|
|
|
Normal,
|
2025-03-31 05:26:09 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-03-31 09:05:23 +00:00
|
|
|
|
/// Short search delay time. 100ms.
|
2025-03-31 05:26:09 +00:00
|
|
|
|
/// </summary>
|
2025-03-31 09:05:23 +00:00
|
|
|
|
Short,
|
2025-03-31 05:26:09 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-03-31 09:05:23 +00:00
|
|
|
|
/// Very short search delay time. 50ms.
|
2025-03-31 05:26:09 +00:00
|
|
|
|
/// </summary>
|
2025-03-31 09:05:23 +00:00
|
|
|
|
VeryShort
|
2025-03-31 05:26:09 +00:00
|
|
|
|
}
|