This commit is contained in:
Charlie Kindel
2020-06-07 15:19:47 -06:00
committed by BDisp
parent 157255bc1b
commit 83ed0fa472

View File

@@ -968,18 +968,54 @@ namespace Terminal.Gui {
/// </summary>
public Rune UnSelected;
/// <summary>
/// Right Arrow.
/// </summary>
public Rune RightArrow;
/// <summary>
/// Left Arrow.
/// </summary>
public Rune LeftArrow;
/// <summary>
/// Down Arrow.
/// </summary>
public Rune DownArrow;
/// <summary>
/// Up Arrow.
/// </summary>
public Rune UpArrow;
/// <summary>
/// Left indicator for default action (e.g. '<' for <see cref="Button"/>).
/// </summary>
public Rune LeftDefaultIndicator;
/// <summary>
/// Right indicator for default action (e.g. '>' for <see cref="Button"/>).
/// </summary>
public Rune RightDefaultIndicator;
/// <summary>
/// Left frame/bracket (e.g. '[' for <see cref="Button"/>).
/// </summary>
public Rune LeftBracket;
/// <summary>
/// Right frame/bracket (e.g. ']' for <see cref="Button"/>).
/// </summary>
public Rune RightBracket;
/// <summary>
/// On Segment indicator for meter views (e.g. <see cref="ProgressBar"/>.
/// </summary>
public Rune OnMeterSegment;
/// <summary>
/// Off Segment indicator for meter views (e.g. <see cref="ProgressBar"/>.
/// </summary>
public Rune OffMeterSegement;
/// <summary>