#nullable enable
namespace Terminal.Gui.Views;
///
/// Styles for .
///
[Flags]
public enum FlagSelectorStyles
{
///
/// No styles.
///
None = 0b_0000_0000,
///
/// Show the `None` checkbox. This will add a checkbox with the title "None" and a value of 0
/// even if the flags do not contain a value of 0.
///
ShowNone = 0b_0000_0001,
///
/// Show the value edit. This will add a read-only to the to allow
/// the user to see the value.
///
ShowValueEdit = 0b_0000_0010,
///
/// All styles.
///
All = ShowNone | ShowValueEdit
}