qamp/Qrakhen.TilingFrames/Models/FrameButtons.cs

20 lines
382 B
C#

namespace Qrakhen.TilingFrames.Models;
/// <summary>
/// Flags for declaring the buttons on a <see cref="HostFrame"/>
/// </summary>
[Flags]
public enum FrameButtons
{
None = 0,
Close = 1 << 0,
Minimize = 1 << 1,
Pin = 1 << 2,
Split = 1 << 3,
PopOut = 1 << 4,
Options = 1 << 5,
Help = 1 << 6,
Default = Close | Pin | PopOut
}