namespace Qrakhen.TilingFrames.Models; /// /// Flags for declaring the buttons on a /// [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 }