diff --git a/Terminal.Gui/Drawing/Aligner.cs b/Terminal.Gui/Drawing/Aligner.cs
new file mode 100644
index 000000000..1b1357fb7
--- /dev/null
+++ b/Terminal.Gui/Drawing/Aligner.cs
@@ -0,0 +1,482 @@
+using System.ComponentModel;
+using Microsoft.CodeAnalysis;
+using static Terminal.Gui.Pos;
+
+namespace Terminal.Gui;
+
+///
+/// Controls how the aligns items within a container.
+///
+public enum Alignment
+{
+ ///
+ /// The items will be aligned to the left.
+ /// Set to to ensure at least one space between
+ /// each item.
+ ///
+ ///
+ ///
+ /// If the container is smaller than the total size of the items, the right items will be clipped (their locations
+ /// will be greater than the container size).
+ ///
+ ///
+ /// and have equivalent behavior.
+ ///
+ ///
+ ///
+ ///
+ /// 111 2222 33333
+ ///
+ ///
+ Left,
+
+ ///
+ /// The items will be aligned to the top.
+ /// Set to to ensure at least one line between
+ /// each item.
+ ///
+ ///
+ ///
+ /// If the container is smaller than the total size of the items, the bottom items will be clipped (their locations
+ /// will be greater than the container size).
+ ///
+ ///
+ /// and have equivalent behavior.
+ ///
+ ///
+ Top,
+
+ ///
+ /// The items will be aligned to the right.
+ /// Set to to ensure at least one space between
+ /// each item.
+ ///
+ ///
+ ///
+ /// If the container is smaller than the total size of the items, the left items will be clipped (their locations
+ /// will be negative).
+ ///
+ ///
+ /// and have equivalent behavior.
+ ///
+ ///
+ ///
+ ///
+ /// 111 2222 33333
+ ///
+ ///
+ Right,
+
+ ///
+ /// The items will be aligned to the bottom.
+ /// Set to to ensure at least one line between
+ /// each item.
+ ///
+ ///
+ ///
+ /// If the container is smaller than the total size of the items, the top items will be clipped (their locations
+ /// will be negative).
+ ///
+ ///
+ /// and have equivalent behavior.
+ ///
+ ///
+ Bottom,
+
+ ///
+ /// The group will be centered in the container.
+ /// If centering is not possible, the group will be left-aligned.
+ /// Set to to ensure at least one space between
+ /// each item.
+ ///
+ ///
+ ///
+ /// Extra space will be distributed between the items, biased towards the left.
+ ///
+ ///
+ ///
+ ///
+ /// 111 2222 33333
+ ///
+ ///
+ Centered,
+
+ ///
+ /// The items will be justified. Space will be added between the items such that the first item
+ /// is at the start and the right side of the last item against the end.
+ /// Set to to ensure at least one space between
+ /// each item.
+ ///
+ ///
+ ///
+ /// Extra space will be distributed between the items, biased towards the left.
+ ///
+ ///
+ ///
+ ///
+ /// 111 2222 33333
+ ///
+ ///
+ Justified,
+
+ ///
+ /// The first item will be aligned to the left and the remaining will aligned to the right.
+ /// Set to to ensure at least one space between
+ /// each item.
+ ///
+ ///
+ ///
+ /// If the container is smaller than the total size of the items, the right items will be clipped (their locations
+ /// will be greater than the container size).
+ ///
+ ///
+ /// and have equivalent behavior.
+ ///
+ ///
+ ///
+ ///
+ /// 111 2222 33333
+ ///
+ ///
+ FirstLeftRestRight,
+
+ ///
+ /// The first item will be aligned to the top and the remaining will aligned to the bottom.
+ /// Set to to ensure at least one line between
+ /// each item.
+ ///
+ ///
+ ///
+ /// If the container is smaller than the total size of the items, the bottom items will be clipped (their locations
+ /// will be greater than the container size).
+ ///
+ ///
+ /// and have equivalent behavior.
+ ///
+ ///
+ FirstTopRestBottom,
+
+ ///
+ /// The last item will be aligned to the right and the remaining will aligned to the left.
+ /// Set to to ensure at least one space between
+ /// each item.
+ ///
+ ///
+ ///
+ /// If the container is smaller than the total size of the items, the left items will be clipped (their locations
+ /// will be negative).
+ ///
+ ///
+ /// and have equivalent behavior.
+ ///
+ ///
+ ///
+ ///
+ /// 111 2222 33333
+ ///
+ ///
+ LastRightRestLeft,
+
+ ///
+ /// The last item will be aligned to the bottom and the remaining will aligned to the left.
+ /// Set to to ensure at least one line between
+ /// each item.
+ ///
+ ///
+ ///
+ /// If the container is smaller than the total size of the items, the top items will be clipped (their locations
+ /// will be negative).
+ ///
+ ///
+ /// and have equivalent behavior.
+ ///
+ ///
+ LastBottomRestTop
+}
+
+///
+/// Aligns items within a container based on the specified . Both horizontal and vertical alignments are supported.
+///
+public class Aligner : INotifyPropertyChanged
+{
+ private Alignment _alignment;
+
+ ///
+ /// Gets or sets how the aligns items within a container.
+ ///
+ public Alignment Alignment
+ {
+ get => _alignment;
+ set
+ {
+ _alignment = value;
+ PropertyChanged?.Invoke (this, new (nameof (Alignment)));
+ }
+ }
+
+ private int _containerSize;
+
+ ///
+ /// The size of the container.
+ ///
+ public int ContainerSize
+ {
+ get => _containerSize;
+ set
+ {
+ _containerSize = value;
+ PropertyChanged?.Invoke (this, new (nameof (ContainerSize)));
+ }
+ }
+
+ private bool _spaceBetweenItems;
+
+ ///
+ /// Gets or sets whether adds at least one space between items. Default is
+ /// .
+ ///
+ ///
+ ///
+ /// If the total size of the items is greater than the container size, the space between items will be ignored
+ /// starting from the right or bottom.
+ ///
+ ///
+ public bool SpaceBetweenItems
+ {
+ get => _spaceBetweenItems;
+ set
+ {
+ _spaceBetweenItems = value;
+ PropertyChanged?.Invoke (this, new (nameof (SpaceBetweenItems)));
+ }
+ }
+
+ ///
+ public event PropertyChangedEventHandler PropertyChanged;
+
+ ///
+ /// Takes a list of item sizes and returns a list of the positions of those items when aligned within
+ /// using the and settings.
+ ///
+ /// The sizes of the items to align.
+ /// The locations of the items, from left/top to right/bottom.
+ public int [] Align (int [] sizes) { return Align (Alignment, SpaceBetweenItems, ContainerSize, sizes); }
+
+ ///
+ /// Takes a list of item sizes and returns a list of the positions of those items when aligned within
+ /// using specified parameters.
+ ///
+ /// The sizes of the items to align.
+ /// Specifies how the items will be aligned.
+ ///
+ ///
+ /// Indicates whether at least one space should be added between items.
+ ///
+ ///
+ /// If the total size of the items is greater than the container size, the space between items will be ignored
+ /// starting from the right or bottom.
+ ///
+ ///
+ /// The size of the container.
+ /// The positions of the items, from left/top to right/bottom.
+ public static int [] Align (Alignment alignment, bool spaceBetweenItems, int containerSize, int [] sizes)
+ {
+ if (sizes.Length == 0)
+ {
+ return new int [] { };
+ }
+
+ int maxSpaceBetweenItems = spaceBetweenItems ? 1 : 0;
+
+ var positions = new int [sizes.Length]; // positions of the items. the return value.
+ int totalItemsSize = sizes.Sum ();
+ int totalGaps = sizes.Length - 1; // total gaps between items
+ int totalItemsAndSpaces = totalItemsSize + totalGaps * maxSpaceBetweenItems; // total size of items and spaces if we had enough room
+
+ int spaces = totalGaps * maxSpaceBetweenItems; // We'll decrement this below to place one space between each item until we run out
+
+ if (totalItemsSize >= containerSize)
+ {
+ spaces = 0;
+ }
+ else if (totalItemsAndSpaces > containerSize)
+ {
+ spaces = containerSize - totalItemsSize;
+ }
+
+ switch (alignment)
+ {
+ case Alignment.Left:
+ case Alignment.Top:
+ var currentPosition = 0;
+
+ for (var i = 0; i < sizes.Length; i++)
+ {
+ CheckSizeCannotBeNegative (i, sizes);
+
+ if (i == 0)
+ {
+ positions [0] = 0; // first item position
+
+ continue;
+ }
+
+ int spaceBefore = spaces-- > 0 ? maxSpaceBetweenItems : 0;
+
+ // subsequent items are placed one space after the previous item
+ positions [i] = positions [i - 1] + sizes [i - 1] + spaceBefore;
+ }
+
+ break;
+
+ case Alignment.Right:
+ case Alignment.Bottom:
+
+ currentPosition = containerSize - totalItemsSize - spaces;
+
+ for (var i = 0; i < sizes.Length; i++)
+ {
+ CheckSizeCannotBeNegative (i, sizes);
+ int spaceBefore = spaces-- > 0 ? maxSpaceBetweenItems : 0;
+
+ positions [i] = currentPosition;
+ currentPosition += sizes [i] + spaceBefore;
+ }
+
+ break;
+
+ case Alignment.Centered:
+ if (sizes.Length > 1)
+ {
+ // remaining space to be distributed before first and after the items
+ int remainingSpace = Math.Max (0, containerSize - totalItemsSize - spaces);
+
+ for (var i = 0; i < sizes.Length; i++)
+ {
+ CheckSizeCannotBeNegative (i, sizes);
+
+ if (i == 0)
+ {
+ positions [i] = remainingSpace / 2; // first item position
+
+ continue;
+ }
+
+ int spaceBefore = spaces-- > 0 ? maxSpaceBetweenItems : 0;
+
+ // subsequent items are placed one space after the previous item
+ positions [i] = positions [i - 1] + sizes [i - 1] + spaceBefore;
+ }
+ }
+ else if (sizes.Length == 1)
+ {
+ CheckSizeCannotBeNegative (0, sizes);
+ positions [0] = (containerSize - sizes [0]) / 2; // single item is centered
+ }
+
+ break;
+
+ case Alignment.Justified:
+ int spaceBetween = sizes.Length > 1 ? (containerSize - totalItemsSize) / (sizes.Length - 1) : 0;
+ int remainder = sizes.Length > 1 ? (containerSize - totalItemsSize) % (sizes.Length - 1) : 0;
+ currentPosition = 0;
+
+ for (var i = 0; i < sizes.Length; i++)
+ {
+ CheckSizeCannotBeNegative (i, sizes);
+ positions [i] = currentPosition;
+ int extraSpace = i < remainder ? 1 : 0;
+ currentPosition += sizes [i] + spaceBetween + extraSpace;
+ }
+
+ break;
+
+ // 111 2222 33333
+ case Alignment.LastRightRestLeft:
+ case Alignment.LastBottomRestTop:
+ if (sizes.Length > 1)
+ {
+ if (totalItemsSize > containerSize)
+ {
+ currentPosition = containerSize - totalItemsSize - spaces;
+ }
+ else
+ {
+ currentPosition = 0;
+ }
+
+ for (var i = 0; i < sizes.Length; i++)
+ {
+ CheckSizeCannotBeNegative (i, sizes);
+
+ if (i < sizes.Length - 1)
+ {
+ int spaceBefore = spaces-- > 0 ? maxSpaceBetweenItems : 0;
+
+ positions [i] = currentPosition;
+ currentPosition += sizes [i] + spaceBefore;
+ }
+ }
+
+ positions [sizes.Length - 1] = containerSize - sizes [^1];
+ }
+ else if (sizes.Length == 1)
+ {
+ CheckSizeCannotBeNegative (0, sizes);
+
+ positions [0] = containerSize - sizes [0]; // single item is flush right
+ }
+
+ break;
+
+ // 111 2222 33333
+ case Alignment.FirstLeftRestRight:
+ case Alignment.FirstTopRestBottom:
+ if (sizes.Length > 1)
+ {
+ currentPosition = 0;
+ positions [0] = currentPosition; // first item is flush left
+
+ for (int i = sizes.Length - 1; i >= 0; i--)
+ {
+ CheckSizeCannotBeNegative (i, sizes);
+
+ if (i == sizes.Length - 1)
+ {
+ // start at right
+ currentPosition = Math.Max (totalItemsSize, containerSize) - sizes [i];
+ positions [i] = currentPosition;
+ }
+
+ if (i < sizes.Length - 1 && i > 0)
+ {
+ int spaceBefore = spaces-- > 0 ? maxSpaceBetweenItems : 0;
+
+ positions [i] = currentPosition - sizes [i] - spaceBefore;
+ currentPosition = positions [i];
+ }
+ }
+ }
+ else if (sizes.Length == 1)
+ {
+ CheckSizeCannotBeNegative (0, sizes);
+ positions [0] = 0; // single item is flush left
+ }
+
+ break;
+
+ default:
+ throw new ArgumentOutOfRangeException (nameof (alignment), alignment, null);
+ }
+
+ return positions;
+ }
+
+ private static void CheckSizeCannotBeNegative (int i, int [] sizes)
+ {
+ if (sizes [i] < 0)
+ {
+ throw new ArgumentException ("The size of an item cannot be negative.");
+ }
+ }
+}
diff --git a/Terminal.Gui/Drawing/Justification.cs b/Terminal.Gui/Drawing/Justification.cs
deleted file mode 100644
index f1fba56a8..000000000
--- a/Terminal.Gui/Drawing/Justification.cs
+++ /dev/null
@@ -1,333 +0,0 @@
-namespace Terminal.Gui;
-
-///
-/// Controls how the justifies items within a container.
-///
-public enum Justification
-{
- ///
- /// The items will be aligned to the left.
- /// Set to to ensure at least one space between
- /// each item.
- ///
- ///
- ///
- /// 111 2222 33333
- ///
- ///
- Left,
-
- ///
- /// The items will be aligned to the right.
- /// Set to to ensure at least one space between
- /// each item.
- ///
- ///
- ///
- /// 111 2222 33333
- ///
- ///
- Right,
-
- ///
- /// The group will be centered in the container.
- /// If centering is not possible, the group will be left-justified.
- /// Set to to ensure at least one space between
- /// each item.
- ///
- ///
- ///
- /// 111 2222 33333
- ///
- ///
- Centered,
-
- ///
- /// The items will be justified. Space will be added between the items such that the first item
- /// is at the start and the right side of the last item against the end.
- /// Set to to ensure at least one space between
- /// each item.
- ///
- ///
- ///
- /// 111 2222 33333
- ///
- ///
- Justified,
-
- ///
- /// The first item will be aligned to the left and the remaining will aligned to the right.
- /// Set to to ensure at least one space between
- /// each item.
- ///
- ///
- ///
- /// 111 2222 33333
- ///
- ///
- FirstLeftRestRight,
-
- ///
- /// The last item will be aligned to the right and the remaining will aligned to the left.
- /// Set to to ensure at least one space between
- /// each item.
- ///
- ///
- ///
- /// 111 2222 33333
- ///
- ///
- LastRightRestLeft
-}
-
-///
-/// Justifies items within a container based on the specified .
-///
-public class Justifier
-{
- ///
- /// Gets or sets how the justifies items within a container.
- ///
- public Justification Justification { get; set; }
-
- ///
- /// The size of the container.
- ///
- public int ContainerSize { get; set; }
-
- ///
- /// Gets or sets whether puts a space is placed between items. Default is . If , a space will be
- /// placed between each item, which is useful for justifying text.
- ///
- public bool PutSpaceBetweenItems { get; set; }
-
- ///
- /// Takes a list of items and returns their positions when justified within a container wide based on the specified
- /// .
- ///
- /// The sizes of the items to justify.
- /// The locations of the items, from left to right.
- public int [] Justify (int [] sizes)
- {
- return Justify (Justification, PutSpaceBetweenItems, ContainerSize, sizes);
- }
-
- ///
- /// Takes a list of items and returns their positions when justified within a container wide based on the specified
- /// .
- ///
- /// The sizes of the items to justify.
- /// The justification style.
- ///
- /// The size of the container.
- /// The locations of the items, from left to right.
- public static int [] Justify (Justification justification, bool putSpaceBetweenItems, int containerSize, int [] sizes)
- {
- if (sizes.Length == 0)
- {
- return new int [] { };
- }
-
- int maxSpaceBetweenItems = putSpaceBetweenItems ? 1 : 0;
-
- var positions = new int [sizes.Length]; // positions of the items. the return value.
- int totalItemsSize = sizes.Sum ();
- int totalGaps = sizes.Length - 1; // total gaps between items
- int totalItemsAndSpaces = totalItemsSize + totalGaps * maxSpaceBetweenItems; // total size of items and spaces if we had enough room
-
- int spaces = totalGaps * maxSpaceBetweenItems; // We'll decrement this below to place one space between each item until we run out
- if (totalItemsSize >= containerSize)
- {
- spaces = 0;
- }
- else if (totalItemsAndSpaces > containerSize)
- {
- spaces = containerSize - totalItemsSize;
- }
-
- switch (justification)
- {
- case Justification.Left:
- var currentPosition = 0;
-
- for (var i = 0; i < sizes.Length; i++)
- {
- if (sizes [i] < 0)
- {
- throw new ArgumentException ("The size of an item cannot be negative.");
- }
-
- if (i == 0)
- {
- positions [0] = 0; // first item position
-
- continue;
- }
-
- int spaceBefore = spaces-- > 0 ? maxSpaceBetweenItems : 0;
-
- // subsequent items are placed one space after the previous item
- positions [i] = positions [i - 1] + sizes [i - 1] + spaceBefore;
- }
-
- break;
- case Justification.Right:
- currentPosition = Math.Max (0, containerSize - totalItemsSize - spaces);
-
- for (var i = 0; i < sizes.Length; i++)
- {
- if (sizes [i] < 0)
- {
- throw new ArgumentException ("The size of an item cannot be negative.");
- }
-
- int spaceBefore = spaces-- > 0 ? maxSpaceBetweenItems : 0;
-
- positions [i] = currentPosition;
- currentPosition += sizes [i] + spaceBefore;
- }
-
- break;
-
- case Justification.Centered:
- if (sizes.Length > 1)
- {
- // remaining space to be distributed before first and after the items
- int remainingSpace = Math.Max (0, containerSize - totalItemsSize - spaces);
-
- for (var i = 0; i < sizes.Length; i++)
- {
- if (sizes [i] < 0)
- {
- throw new ArgumentException ("The size of an item cannot be negative.");
- }
-
- if (i == 0)
- {
- positions [i] = remainingSpace / 2; // first item position
-
- continue;
- }
-
- int spaceBefore = spaces-- > 0 ? maxSpaceBetweenItems : 0;
-
- // subsequent items are placed one space after the previous item
- positions [i] = positions [i - 1] + sizes [i - 1] + spaceBefore;
- }
- }
- else if (sizes.Length == 1)
- {
- if (sizes [0] < 0)
- {
- throw new ArgumentException ("The size of an item cannot be negative.");
- }
-
- positions [0] = (containerSize - sizes [0]) / 2; // single item is centered
- }
-
- break;
-
- case Justification.Justified:
- int spaceBetween = sizes.Length > 1 ? (containerSize - totalItemsSize) / (sizes.Length - 1) : 0;
- int remainder = sizes.Length > 1 ? (containerSize - totalItemsSize) % (sizes.Length - 1) : 0;
- currentPosition = 0;
-
- for (var i = 0; i < sizes.Length; i++)
- {
- if (sizes [i] < 0)
- {
- throw new ArgumentException ("The size of an item cannot be negative.");
- }
-
- positions [i] = currentPosition;
- int extraSpace = i < remainder ? 1 : 0;
- currentPosition += sizes [i] + spaceBetween + extraSpace;
- }
-
- break;
-
- // 111 2222 33333
- case Justification.LastRightRestLeft:
- if (sizes.Length > 1)
- {
- currentPosition = 0;
-
- for (var i = 0; i < sizes.Length; i++)
- {
- if (sizes [i] < 0)
- {
- throw new ArgumentException ("The size of an item cannot be negative.");
- }
-
- if (i < sizes.Length - 1)
- {
- int spaceBefore = spaces-- > 0 ? maxSpaceBetweenItems : 0;
-
- positions [i] = currentPosition;
- currentPosition += sizes [i] + spaceBefore;
- }
- }
-
- positions [sizes.Length - 1] = containerSize - sizes [sizes.Length - 1];
- }
- else if (sizes.Length == 1)
- {
- if (sizes [0] < 0)
- {
- throw new ArgumentException ("The size of an item cannot be negative.");
- }
-
- positions [0] = containerSize - sizes [0]; // single item is flush right
- }
-
- break;
-
- // 111 2222 33333
- case Justification.FirstLeftRestRight:
- if (sizes.Length > 1)
- {
- currentPosition = 0;
- positions [0] = currentPosition; // first item is flush left
-
- for (int i = sizes.Length - 1; i >= 0; i--)
- {
- if (sizes [i] < 0)
- {
- throw new ArgumentException ("The size of an item cannot be negative.");
- }
-
- if (i == sizes.Length - 1)
- {
- // start at right
- currentPosition = containerSize - sizes [i];
- positions [i] = currentPosition;
- }
-
- if (i < sizes.Length - 1 && i > 0)
- {
- int spaceBefore = spaces-- > 0 ? maxSpaceBetweenItems : 0;
-
- positions [i] = currentPosition - sizes [i] - spaceBefore;
- currentPosition = positions [i];
- }
- }
- }
- else if (sizes.Length == 1)
- {
- if (sizes [0] < 0)
- {
- throw new ArgumentException ("The size of an item cannot be negative.");
- }
-
- positions [0] = 0; // single item is flush left
- }
-
- break;
-
- default:
- throw new ArgumentOutOfRangeException (nameof (justification), justification, null);
- }
-
- return positions;
- }
-}
diff --git a/Terminal.Gui/Drawing/Thickness.cs b/Terminal.Gui/Drawing/Thickness.cs
index 6070e6cbe..1060e21e7 100644
--- a/Terminal.Gui/Drawing/Thickness.cs
+++ b/Terminal.Gui/Drawing/Thickness.cs
@@ -230,8 +230,8 @@ public class Thickness : IEquatable
var tf = new TextFormatter
{
Text = label is null ? string.Empty : $"{label} {this}",
- Alignment = TextAlignment.Centered,
- VerticalAlignment = VerticalTextAlignment.Bottom,
+ Alignment = Alignment.Centered,
+ VerticalAlignment = Alignment.Bottom,
AutoSize = true
};
tf.Draw (rect, Application.Driver.CurrentAttribute, Application.Driver.CurrentAttribute, rect);
diff --git a/Terminal.Gui/Resources/config.json b/Terminal.Gui/Resources/config.json
index 368ccd8bf..c2a63fe15 100644
--- a/Terminal.Gui/Resources/config.json
+++ b/Terminal.Gui/Resources/config.json
@@ -24,7 +24,7 @@
"Themes": [
{
"Default": {
- "Dialog.DefaultButtonAlignment": "Center",
+ "Dialog.DefaultButtonAlignment": "Right",
"FrameView.DefaultBorderStyle": "Single",
"Window.DefaultBorderStyle": "Single",
"ColorSchemes": [
diff --git a/Terminal.Gui/Text/TextAlignment.cs b/Terminal.Gui/Text/TextAlignment.cs
deleted file mode 100644
index 44950cfd5..000000000
--- a/Terminal.Gui/Text/TextAlignment.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-namespace Terminal.Gui;
-
-/// Text alignment enumeration, controls how text is displayed.
-public enum TextAlignment
-{
- /// The text will be left-aligned.
- Left,
-
- /// The text will be right-aligned.
- Right,
-
- /// The text will be centered horizontally.
- Centered,
-
- ///
- /// The text will be justified (spaces will be added to existing spaces such that the text fills the container
- /// horizontally).
- ///
- Justified
-}
\ No newline at end of file
diff --git a/Terminal.Gui/Text/TextFormatter.cs b/Terminal.Gui/Text/TextFormatter.cs
index 5a6cbec5e..4aa9d6977 100644
--- a/Terminal.Gui/Text/TextFormatter.cs
+++ b/Terminal.Gui/Text/TextFormatter.cs
@@ -17,14 +17,14 @@ public class TextFormatter
private Size _size;
private int _tabWidth = 4;
private string _text;
- private TextAlignment _textAlignment;
+ private Alignment _textAlignment = Alignment.Left;
private TextDirection _textDirection;
- private VerticalTextAlignment _textVerticalAlignment;
+ private Alignment _textVerticalAlignment = Alignment.Top;
private bool _wordWrap = true;
- /// Controls the horizontal text-alignment property.
+ /// Get or sets the horizontal text alignment.
/// The text alignment.
- public TextAlignment Alignment
+ public Alignment Alignment
{
get => _textAlignment;
set => _textAlignment = EnableNeedsFormat (value);
@@ -34,8 +34,7 @@ public class TextFormatter
///
/// Used when is using to resize the view's to fit .
///
- /// AutoSize is ignored if and
- /// are used.
+ /// AutoSize is ignored if is used.
///
///
public bool AutoSize
@@ -70,9 +69,8 @@ public class TextFormatter
/// Only the first HotKey specifier found in is supported.
///
///
- /// If (the default) the width required for the HotKey specifier is returned. Otherwise the
- /// height
- /// is returned.
+ /// If (the default) the width required for the HotKey specifier is returned. Otherwise, the
+ /// height is returned.
///
///
/// The number of characters required for the . If the text
@@ -99,8 +97,8 @@ public class TextFormatter
///
public int CursorPosition { get; internal set; }
- /// Controls the text-direction property.
- /// The text vertical alignment.
+ /// Gets or sets the text-direction.
+ /// The text direction.
public TextDirection Direction
{
get => _textDirection;
@@ -114,8 +112,7 @@ public class TextFormatter
}
}
}
-
-
+
///
/// Determines if the viewport width will be used or only the text width will be used,
/// If all the viewport area will be filled with whitespaces and the same background color
@@ -227,9 +224,9 @@ public class TextFormatter
}
}
- /// Controls the vertical text-alignment property.
+ /// Gets or sets the vertical text-alignment.
/// The text vertical alignment.
- public VerticalTextAlignment VerticalAlignment
+ public Alignment VerticalAlignment
{
get => _textVerticalAlignment;
set => _textVerticalAlignment = EnableNeedsFormat (value);
@@ -322,10 +319,10 @@ public class TextFormatter
// When text is justified, we lost left or right, so we use the direction to align.
- int x, y;
+ int x = 0, y = 0;
// Horizontal Alignment
- if (Alignment is TextAlignment.Right)
+ if (Alignment is Alignment.Right)
{
if (isVertical)
{
@@ -340,7 +337,7 @@ public class TextFormatter
CursorPosition = screen.Width - runesWidth + (_hotKeyPos > -1 ? _hotKeyPos : 0);
}
}
- else if (Alignment is TextAlignment.Left)
+ else if (Alignment is Alignment.Left)
{
if (isVertical)
{
@@ -356,7 +353,7 @@ public class TextFormatter
CursorPosition = _hotKeyPos > -1 ? _hotKeyPos : 0;
}
- else if (Alignment is TextAlignment.Justified)
+ else if (Alignment is Alignment.Justified)
{
if (isVertical)
{
@@ -379,7 +376,7 @@ public class TextFormatter
CursorPosition = _hotKeyPos > -1 ? _hotKeyPos : 0;
}
- else if (Alignment is TextAlignment.Centered)
+ else if (Alignment is Alignment.Centered)
{
if (isVertical)
{
@@ -399,11 +396,13 @@ public class TextFormatter
}
else
{
- throw new ArgumentOutOfRangeException ($"{nameof (Alignment)}");
+ Debug.WriteLine ($"Unsupported Alignment: {nameof (VerticalAlignment)}");
+
+ return;
}
// Vertical Alignment
- if (VerticalAlignment is VerticalTextAlignment.Bottom)
+ if (VerticalAlignment is Alignment.Bottom)
{
if (isVertical)
{
@@ -414,7 +413,7 @@ public class TextFormatter
y = screen.Bottom - linesFormatted.Count + line;
}
}
- else if (VerticalAlignment is VerticalTextAlignment.Top)
+ else if (VerticalAlignment is Alignment.Top)
{
if (isVertical)
{
@@ -425,7 +424,7 @@ public class TextFormatter
y = screen.Top + line;
}
}
- else if (VerticalAlignment is VerticalTextAlignment.Justified)
+ else if (VerticalAlignment is Alignment.Justified)
{
if (isVertical)
{
@@ -439,7 +438,7 @@ public class TextFormatter
line < linesFormatted.Count - 1 ? screen.Height - interval <= 1 ? screen.Top + 1 : screen.Top + line * interval : screen.Bottom - 1;
}
}
- else if (VerticalAlignment is VerticalTextAlignment.Middle)
+ else if (VerticalAlignment is Alignment.Centered)
{
if (isVertical)
{
@@ -454,7 +453,9 @@ public class TextFormatter
}
else
{
- throw new ArgumentOutOfRangeException ($"{nameof (VerticalAlignment)}");
+ Debug.WriteLine ($"Unsupported Alignment: {nameof (VerticalAlignment)}");
+
+ return;
}
int colOffset = screen.X < 0 ? Math.Abs (screen.X) : 0;
@@ -475,8 +476,8 @@ public class TextFormatter
{
if (idx < 0
|| (isVertical
- ? VerticalAlignment != VerticalTextAlignment.Bottom && current < 0
- : Alignment != TextAlignment.Right && x + current + colOffset < 0))
+ ? VerticalAlignment != Alignment.Bottom && current < 0
+ : Alignment != Alignment.Right && x + current + colOffset < 0))
{
current++;
@@ -565,7 +566,7 @@ public class TextFormatter
if (HotKeyPos > -1 && idx == HotKeyPos)
{
- if ((isVertical && VerticalAlignment == VerticalTextAlignment.Justified) || (!isVertical && Alignment == TextAlignment.Justified))
+ if ((isVertical && VerticalAlignment == Alignment.Justified) || (!isVertical && Alignment == Alignment.Justified))
{
CursorPosition = idx - start;
}
@@ -703,7 +704,7 @@ public class TextFormatter
_lines = Format (
text,
Size.Height,
- VerticalAlignment == VerticalTextAlignment.Justified,
+ VerticalAlignment == Alignment.Justified,
Size.Width > colsWidth && WordWrap,
PreserveTrailingSpaces,
TabWidth,
@@ -727,7 +728,7 @@ public class TextFormatter
_lines = Format (
text,
Size.Width,
- Alignment == TextAlignment.Justified,
+ Alignment == Alignment.Justified,
Size.Height > 1 && WordWrap,
PreserveTrailingSpaces,
TabWidth,
@@ -981,7 +982,7 @@ public class TextFormatter
// if value is not wide enough
if (text.EnumerateRunes ().Sum (c => c.GetColumns ()) < width)
{
- // pad it out with spaces to the given alignment
+ // pad it out with spaces to the given Alignment
int toPad = width - text.EnumerateRunes ().Sum (c => c.GetColumns ());
return text + new string (' ', toPad);
@@ -1003,7 +1004,7 @@ public class TextFormatter
/// instance to access any of his objects.
/// A list of word wrapped lines.
///
- /// This method does not do any justification.
+ /// This method does not do any alignment.
/// This method strips Newline ('\n' and '\r\n') sequences before processing.
///
/// If is at most one space will be preserved
@@ -1035,7 +1036,7 @@ public class TextFormatter
List runes = StripCRLF (text).ToRuneList ();
int start = Math.Max (
- !runes.Contains ((Rune)' ') && textFormatter is { VerticalAlignment: VerticalTextAlignment.Bottom } && IsVerticalDirection (textDirection)
+ !runes.Contains ((Rune)' ') && textFormatter is { VerticalAlignment: Alignment.Bottom } && IsVerticalDirection (textDirection)
? runes.Count - width
: 0,
0);
@@ -1253,7 +1254,7 @@ public class TextFormatter
/// The number of columns to clip the text to. Text longer than will be
/// clipped.
///
- /// Alignment.
+ /// Alignment.
/// The text direction.
/// The number of columns used for a tab.
/// instance to access any of his objects.
@@ -1261,13 +1262,13 @@ public class TextFormatter
public static string ClipAndJustify (
string text,
int width,
- TextAlignment talign,
+ Alignment textAlignment,
TextDirection textDirection = TextDirection.LeftRight_TopBottom,
int tabWidth = 0,
TextFormatter textFormatter = null
)
{
- return ClipAndJustify (text, width, talign == TextAlignment.Justified, textDirection, tabWidth, textFormatter);
+ return ClipAndJustify (text, width, textAlignment == Alignment.Justified, textDirection, tabWidth, textFormatter);
}
/// Justifies text within a specified width.
@@ -1308,12 +1309,12 @@ public class TextFormatter
{
if (IsHorizontalDirection (textDirection))
{
- if (textFormatter is { Alignment: TextAlignment.Right })
+ if (textFormatter is { Alignment: Alignment.Right })
{
return GetRangeThatFits (runes, runes.Count - width, text, width, tabWidth, textDirection);
}
- if (textFormatter is { Alignment: TextAlignment.Centered })
+ if (textFormatter is { Alignment: Alignment.Centered })
{
return GetRangeThatFits (runes, Math.Max ((runes.Count - width) / 2, 0), text, width, tabWidth, textDirection);
}
@@ -1323,12 +1324,12 @@ public class TextFormatter
if (IsVerticalDirection (textDirection))
{
- if (textFormatter is { VerticalAlignment: VerticalTextAlignment.Bottom })
+ if (textFormatter is { VerticalAlignment: Alignment.Bottom })
{
return GetRangeThatFits (runes, runes.Count - width, text, width, tabWidth, textDirection);
}
- if (textFormatter is { VerticalAlignment: VerticalTextAlignment.Middle })
+ if (textFormatter is { VerticalAlignment: Alignment.Centered })
{
return GetRangeThatFits (runes, Math.Max ((runes.Count - width) / 2, 0), text, width, tabWidth, textDirection);
}
@@ -1346,14 +1347,14 @@ public class TextFormatter
if (IsHorizontalDirection (textDirection))
{
- if (textFormatter is { Alignment: TextAlignment.Right })
+ if (textFormatter is { Alignment: Alignment.Right })
{
if (GetRuneWidth (text, tabWidth, textDirection) > width)
{
return GetRangeThatFits (runes, runes.Count - width, text, width, tabWidth, textDirection);
}
}
- else if (textFormatter is { Alignment: TextAlignment.Centered })
+ else if (textFormatter is { Alignment: Alignment.Centered })
{
return GetRangeThatFits (runes, Math.Max ((runes.Count - width) / 2, 0), text, width, tabWidth, textDirection);
}
@@ -1365,14 +1366,14 @@ public class TextFormatter
if (IsVerticalDirection (textDirection))
{
- if (textFormatter is { VerticalAlignment: VerticalTextAlignment.Bottom })
+ if (textFormatter is { VerticalAlignment: Alignment.Bottom })
{
if (runes.Count - zeroLength > width)
{
return GetRangeThatFits (runes, runes.Count - width, text, width, tabWidth, textDirection);
}
}
- else if (textFormatter is { VerticalAlignment: VerticalTextAlignment.Middle })
+ else if (textFormatter is { VerticalAlignment: Alignment.Centered })
{
return GetRangeThatFits (runes, Math.Max ((runes.Count - width) / 2, 0), text, width, tabWidth, textDirection);
}
@@ -1479,7 +1480,7 @@ public class TextFormatter
/// Formats text into lines, applying text alignment and optionally wrapping text to new lines on word boundaries.
///
/// The number of columns to constrain the text to for word wrapping and clipping.
- /// Specifies how the text will be aligned horizontally.
+ /// Specifies how the text will be aligned horizontally.
///
/// If , the text will be wrapped to new lines no longer than
/// . If , forces text to fit a single line. Line breaks are converted
@@ -1502,7 +1503,7 @@ public class TextFormatter
public static List Format (
string text,
int width,
- TextAlignment talign,
+ Alignment textAlignment,
bool wordWrap,
bool preserveTrailingSpaces = false,
int tabWidth = 0,
@@ -1514,7 +1515,7 @@ public class TextFormatter
return Format (
text,
width,
- talign == TextAlignment.Justified,
+ textAlignment == Alignment.Justified,
wordWrap,
preserveTrailingSpaces,
tabWidth,
@@ -1888,7 +1889,7 @@ public class TextFormatter
return lineIdx;
}
- /// Calculates the rectangle required to hold text, assuming no word wrapping or justification.
+ /// Calculates the rectangle required to hold text, assuming no word wrapping or alignment.
///
/// This API will return incorrect results if the text includes glyphs who's width is dependent on surrounding
/// glyphs (e.g. Arabic).
diff --git a/Terminal.Gui/Text/VerticalTextAlignment.cs b/Terminal.Gui/Text/VerticalTextAlignment.cs
deleted file mode 100644
index ef7788577..000000000
--- a/Terminal.Gui/Text/VerticalTextAlignment.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-namespace Terminal.Gui;
-
-/// Vertical text alignment enumeration, controls how text is displayed.
-public enum VerticalTextAlignment
-{
- /// The text will be top-aligned.
- Top,
-
- /// The text will be bottom-aligned.
- Bottom,
-
- /// The text will centered vertically.
- Middle,
-
- ///
- /// The text will be justified (spaces will be added to existing spaces such that the text fills the container
- /// vertically).
- ///
- Justified
-}
\ No newline at end of file
diff --git a/Terminal.Gui/View/Layout/Pos.cs b/Terminal.Gui/View/Layout/Pos.cs
index c841b9191..edc6d6f55 100644
--- a/Terminal.Gui/View/Layout/Pos.cs
+++ b/Terminal.Gui/View/Layout/Pos.cs
@@ -1,3 +1,5 @@
+using System.ComponentModel;
+
namespace Terminal.Gui;
///
@@ -51,6 +53,14 @@ public enum Side
///
/// -
///
+///
+///
+///
+/// Creates a object that aligns a set of views.
+///
+///
+/// -
+///
///
///
///
@@ -150,6 +160,18 @@ public enum Side
///
public class Pos
{
+
+ ///
+ /// Creates a object that aligns a set of views according to the specified alignment setting.
+ ///
+ ///
+ ///
+ /// The optional, unique identifier for the set of views to align according to
+ /// .
+ ///
+ ///
+ public static Pos Align (Alignment alignment, int groupId = 0) { return new PosAlign (alignment, groupId); }
+
///
/// Creates a object that is anchored to the end (right side or
/// bottom) of the SuperView, minus the respective dimension of the View. This is equivalent to using
@@ -379,6 +401,165 @@ public class Pos
internal virtual bool ReferencesOtherViews () { return false; }
}
+
+///
+/// Enables alignment of a set of views.
+///
+///
+///
+/// The Group ID is used to identify a set of views that should be alignment together. When only a single
+/// set of views is aligned, setting the Group ID is not needed because it defaults to 0.
+///
+///
+/// The first view added to the Superview with a given Group ID is used to determine the alignment of the group.
+/// The alignment is applied to all views with the same Group ID.
+///
+///
+public class PosAlign : Pos
+{
+ // BUGBUG: PosAlign should be internal like all other Pos classes. It is public because the PosAlign Scenario uses it. Refactor that Scenario.
+ ///
+ /// The cached location. Used to store the calculated location to avoid recalculating it.
+ ///
+ private int? _location;
+
+ ///
+ /// Gets the identifier of a set of views that should be aligned together. When only a single
+ /// set of views is aligned, setting the is not needed because it defaults to 0.
+ ///
+ private readonly int _groupId;
+
+ ///
+ /// Gets the alignment settings.
+ ///
+ public Aligner Aligner { get; } = new ();
+
+ ///
+ /// Aligns the views in that have the same group ID as .
+ ///
+ ///
+ ///
+ ///
+ ///
+ private static void AlignGroup (int groupId, IList views, Dimension dimension, int size)
+ {
+ if (views is null)
+ {
+ return;
+ }
+
+ Aligner firstInGroup = null;
+ List dimensionsList = new ();
+
+ List viewsInGroup = views.Where (
+ v =>
+ {
+ if (dimension == Dimension.Width && v.X is PosAlign alignX)
+ {
+ return alignX._groupId == groupId;
+ }
+
+ if (dimension == Dimension.Height && v.Y is PosAlign alignY)
+ {
+ return alignY._groupId == groupId;
+ }
+
+ return false;
+ })
+ .ToList ();
+
+ if (viewsInGroup.Count == 0)
+ {
+ return;
+ }
+
+ foreach (View view in viewsInGroup)
+ {
+ PosAlign posAlign = dimension == Dimension.Width ? view.X as PosAlign : view.Y as PosAlign;
+
+ if (posAlign is { })
+ {
+ if (firstInGroup is null)
+ {
+ firstInGroup = posAlign.Aligner;
+ }
+
+ dimensionsList.Add (dimension == Dimension.Width ? view.Frame.Width : view.Frame.Height);
+ }
+ }
+
+ if (firstInGroup is null)
+ {
+ return;
+ }
+
+ firstInGroup.ContainerSize = size;
+ int [] locations = firstInGroup.Align (dimensionsList.ToArray ());
+
+ for (var index = 0; index < viewsInGroup.Count; index++)
+ {
+ View view = viewsInGroup [index];
+ PosAlign align = dimension == Dimension.Width ? view.X as PosAlign : view.Y as PosAlign;
+
+ if (align is { })
+ {
+ align._location = locations [index];
+ }
+ }
+ }
+
+ ///
+ /// Enables alignment of a set of views.
+ ///
+ ///
+ /// The unique identifier for the set of views to align according to .
+ public PosAlign (Alignment alignment, int groupId = 0)
+ {
+ Aligner.SpaceBetweenItems = true;
+ Aligner.Alignment = alignment;
+ _groupId = groupId;
+ Aligner.PropertyChanged += Aligner_PropertyChanged;
+ }
+
+ private void Aligner_PropertyChanged (object sender, PropertyChangedEventArgs e) { _location = null; }
+
+ ///
+ public override bool Equals (object other)
+ {
+ return other is PosAlign align && _groupId == align._groupId && _location == align._location && align.Aligner.Alignment == Aligner.Alignment;
+ }
+
+ ///
+ public override int GetHashCode () { return Aligner.GetHashCode () ^ _groupId.GetHashCode (); }
+
+ ///
+ public override string ToString () { return $"Align(groupId={_groupId}, alignment={Aligner.Alignment})"; }
+
+ internal override int Anchor (int width) { return _location ?? 0 - width; }
+
+ internal override int Calculate (int superviewDimension, Dim dim, View us, Dimension dimension)
+ {
+ if (_location.HasValue && Aligner.ContainerSize == superviewDimension)
+ {
+ return _location.Value;
+ }
+
+ if (us?.SuperView is null)
+ {
+ return 0;
+ }
+
+ AlignGroup (_groupId, us.SuperView.Subviews, dimension, superviewDimension);
+
+ if (_location.HasValue)
+ {
+ return _location.Value;
+ }
+
+ return 0;
+ }
+}
+
///
/// Represents an absolute position in the layout. This is used to specify a fixed position in the layout.
///
diff --git a/Terminal.Gui/View/ViewText.cs b/Terminal.Gui/View/ViewText.cs
index db526f67c..9a035362f 100644
--- a/Terminal.Gui/View/ViewText.cs
+++ b/Terminal.Gui/View/ViewText.cs
@@ -87,7 +87,7 @@ public partial class View
/// or are using , the will be adjusted to fit the text.
///
/// The text alignment.
- public virtual TextAlignment TextAlignment
+ public virtual Alignment TextAlignment
{
get => TextFormatter.Alignment;
set
@@ -105,7 +105,7 @@ public partial class View
///
/// or are using , the will be adjusted to fit the text.
///
- /// The text alignment.
+ /// The text direction.
public virtual TextDirection TextDirection
{
get => TextFormatter.Direction;
@@ -129,8 +129,8 @@ public partial class View
///
/// or are using , the will be adjusted to fit the text.
///
- /// The text alignment.
- public virtual VerticalTextAlignment VerticalTextAlignment
+ /// The vertical text alignment.
+ public virtual Alignment VerticalTextAlignment
{
get => TextFormatter.VerticalAlignment;
set
diff --git a/Terminal.Gui/Views/Button.cs b/Terminal.Gui/Views/Button.cs
index 52c72ab5f..dc0afde5e 100644
--- a/Terminal.Gui/Views/Button.cs
+++ b/Terminal.Gui/Views/Button.cs
@@ -37,8 +37,8 @@ public class Button : View
/// The width of the is computed based on the text length. The height will always be 1.
public Button ()
{
- TextAlignment = TextAlignment.Centered;
- VerticalTextAlignment = VerticalTextAlignment.Middle;
+ TextAlignment = Alignment.Centered;
+ VerticalTextAlignment = Alignment.Centered;
_leftBracket = Glyphs.LeftBracket;
_rightBracket = Glyphs.RightBracket;
diff --git a/Terminal.Gui/Views/CheckBox.cs b/Terminal.Gui/Views/CheckBox.cs
index c799c8c0f..d684ff312 100644
--- a/Terminal.Gui/Views/CheckBox.cs
+++ b/Terminal.Gui/Views/CheckBox.cs
@@ -155,13 +155,13 @@ public class CheckBox : View
{
switch (TextAlignment)
{
- case TextAlignment.Left:
- case TextAlignment.Centered:
- case TextAlignment.Justified:
+ case Alignment.Left:
+ case Alignment.Centered:
+ case Alignment.Justified:
TextFormatter.Text = $"{GetCheckedState ()} {GetFormatterText ()}";
break;
- case TextAlignment.Right:
+ case Alignment.Right:
TextFormatter.Text = $"{GetFormatterText ()} {GetCheckedState ()}";
break;
diff --git a/Terminal.Gui/Views/DatePicker.cs b/Terminal.Gui/Views/DatePicker.cs
index 075c9f890..e6e4f7d91 100644
--- a/Terminal.Gui/Views/DatePicker.cs
+++ b/Terminal.Gui/Views/DatePicker.cs
@@ -216,7 +216,6 @@ public class DatePicker : View
{
X = Pos.Center () - 2,
Y = Pos.Bottom (_calendar) - 1,
- Height = 1,
Width = 2,
Text = GetBackButtonText (),
WantContinuousButtonPressed = true,
@@ -235,7 +234,6 @@ public class DatePicker : View
{
X = Pos.Right (_previousMonthButton) + 2,
Y = Pos.Bottom (_calendar) - 1,
- Height = 1,
Width = 2,
Text = GetForwardButtonText(),
WantContinuousButtonPressed = true,
diff --git a/Terminal.Gui/Views/Dialog.cs b/Terminal.Gui/Views/Dialog.cs
index 5fcfd6b07..232830da5 100644
--- a/Terminal.Gui/Views/Dialog.cs
+++ b/Terminal.Gui/Views/Dialog.cs
@@ -15,21 +15,6 @@ namespace Terminal.Gui;
///
public class Dialog : Window
{
- /// Determines the horizontal alignment of the Dialog buttons.
- public enum ButtonAlignments
- {
- /// Center-aligns the buttons (the default).
- Center = 0,
-
- /// Justifies the buttons
- Justify,
-
- /// Left-aligns the buttons
- Left,
-
- /// Right-aligns the buttons
- Right
- }
// TODO: Reenable once border/borderframe design is settled
///
@@ -61,19 +46,22 @@ public class Dialog : Window
Y = Pos.Center ();
ValidatePosDim = true;
- Width = Dim.Percent (85);
+ Width = Dim.Percent (85);
Height = Dim.Percent (85);
ColorScheme = Colors.ColorSchemes ["Dialog"];
Modal = true;
ButtonAlignment = DefaultButtonAlignment;
- AddCommand (Command.QuitToplevel, () =>
- {
- Canceled = true;
- RequestStop ();
- return true;
- });
+ AddCommand (
+ Command.QuitToplevel,
+ () =>
+ {
+ Canceled = true;
+ RequestStop ();
+
+ return true;
+ });
KeyBindings.Add (Key.Esc, Command.QuitToplevel);
}
@@ -103,12 +91,14 @@ public class Dialog : Window
}
#endif
_canceled = value;
+
return;
}
}
+ // TODO: Update button.X = Pos.Justify when alignment changes
/// Determines how the s are aligned along the bottom of the dialog.
- public ButtonAlignments ButtonAlignment { get; set; }
+ public Alignment ButtonAlignment { get; set; }
/// Optional buttons to lay out at the bottom of the dialog.
public Button [] Buttons
@@ -128,11 +118,11 @@ public class Dialog : Window
}
}
- /// The default for .
+ /// The default for .
/// This property can be set in a Theme.
[SerializableConfigurationProperty (Scope = typeof (ThemeScope))]
[JsonConverter (typeof (JsonStringEnumConverter))]
- public static ButtonAlignments DefaultButtonAlignment { get; set; } = ButtonAlignments.Center;
+ public static Alignment DefaultButtonAlignment { get; set; } = Alignment.Right;
///
/// Adds a to the , its layout will be controlled by the
@@ -146,6 +136,9 @@ public class Dialog : Window
return;
}
+ button.X = Pos.Align (ButtonAlignment);
+ button.Y = Pos.AnchorEnd () - 1;
+
_buttons.Add (button);
Add (button);
@@ -157,20 +150,6 @@ public class Dialog : Window
}
}
- ///
- public override void LayoutSubviews ()
- {
- if (_inLayout)
- {
- return;
- }
-
- _inLayout = true;
- LayoutButtons ();
- base.LayoutSubviews ();
- _inLayout = false;
- }
-
// Get the width of all buttons, not including any Margin.
internal int GetButtonsWidth ()
{
@@ -184,109 +163,4 @@ public class Dialog : Window
return widths.Sum ();
}
-
- private void LayoutButtons ()
- {
- if (_buttons.Count == 0 || !IsInitialized)
- {
- return;
- }
-
- var shiftLeft = 0;
-
- int buttonsWidth = GetButtonsWidth ();
-
- switch (ButtonAlignment)
- {
- case ButtonAlignments.Center:
- // Center Buttons
- shiftLeft = (Viewport.Width - buttonsWidth - _buttons.Count - 1) / 2 + 1;
-
- for (int i = _buttons.Count - 1; i >= 0; i--)
- {
- Button button = _buttons [i];
- shiftLeft += button.Frame.Width + (i == _buttons.Count - 1 ? 0 : 1);
-
- if (shiftLeft > -1)
- {
- button.X = Pos.AnchorEnd (shiftLeft);
- }
- else
- {
- button.X = Viewport.Width - shiftLeft;
- }
-
- button.Y = Pos.AnchorEnd (1);
- }
-
- break;
-
- case ButtonAlignments.Justify:
- // Justify Buttons
- // leftmost and rightmost buttons are hard against edges. The rest are evenly spaced.
-
- var spacing = (int)Math.Ceiling ((double)(Viewport.Width - buttonsWidth) / (_buttons.Count - 1));
-
- for (int i = _buttons.Count - 1; i >= 0; i--)
- {
- Button button = _buttons [i];
-
- if (i == _buttons.Count - 1)
- {
- shiftLeft += button.Frame.Width;
- button.X = Pos.AnchorEnd (shiftLeft);
- }
- else
- {
- if (i == 0)
- {
- // first (leftmost) button
- int left = Viewport.Width;
- button.X = Pos.AnchorEnd (left);
- }
- else
- {
- shiftLeft += button.Frame.Width + spacing;
- button.X = Pos.AnchorEnd (shiftLeft);
- }
- }
-
- button.Y = Pos.AnchorEnd (1);
- }
-
- break;
-
- case ButtonAlignments.Left:
- // Left Align Buttons
- Button prevButton = _buttons [0];
- prevButton.X = 0;
- prevButton.Y = Pos.AnchorEnd (1);
-
- for (var i = 1; i < _buttons.Count; i++)
- {
- Button button = _buttons [i];
- button.X = Pos.Right (prevButton) + 1;
- button.Y = Pos.AnchorEnd (1);
- prevButton = button;
- }
-
- break;
-
- case ButtonAlignments.Right:
- // Right align buttons
- shiftLeft = _buttons [_buttons.Count - 1].Frame.Width;
- _buttons [_buttons.Count - 1].X = Pos.AnchorEnd (shiftLeft);
- _buttons [_buttons.Count - 1].Y = Pos.AnchorEnd (1);
-
- for (int i = _buttons.Count - 2; i >= 0; i--)
- {
- Button button = _buttons [i];
- shiftLeft += button.Frame.Width + 1;
- button.X = Pos.AnchorEnd (shiftLeft);
- button.Y = Pos.AnchorEnd (1);
- }
-
- break;
- }
- }
}
diff --git a/Terminal.Gui/Views/ListView.cs b/Terminal.Gui/Views/ListView.cs
index 725fe6bd8..0a028d5e4 100644
--- a/Terminal.Gui/Views/ListView.cs
+++ b/Terminal.Gui/Views/ListView.cs
@@ -1002,7 +1002,7 @@ public class ListWrapper : IListDataSource
private void RenderUstr (ConsoleDriver driver, string ustr, int col, int line, int width, int start = 0)
{
string str = start > ustr.GetColumns () ? string.Empty : ustr.Substring (Math.Min (start, ustr.ToRunes ().Length - 1));
- string u = TextFormatter.ClipAndJustify (str, width, TextAlignment.Left);
+ string u = TextFormatter.ClipAndJustify (str, width, Alignment.Left);
driver.AddStr (u);
width -= u.GetColumns ();
diff --git a/Terminal.Gui/Views/Menu/Menu.cs b/Terminal.Gui/Views/Menu/Menu.cs
index 11bc71c7e..1673862a0 100644
--- a/Terminal.Gui/Views/Menu/Menu.cs
+++ b/Terminal.Gui/Views/Menu/Menu.cs
@@ -890,7 +890,7 @@ internal sealed class Menu : View
var tf = new TextFormatter
{
AutoSize = true,
- Alignment = TextAlignment.Centered, HotKeySpecifier = MenuBar.HotKeySpecifier, Text = textToDraw
+ Alignment = Alignment.Centered, HotKeySpecifier = MenuBar.HotKeySpecifier, Text = textToDraw
};
// The -3 is left/right border + one space (not sure what for)
diff --git a/Terminal.Gui/Views/MessageBox.cs b/Terminal.Gui/Views/MessageBox.cs
index b0f9fc6af..0db5cfa60 100644
--- a/Terminal.Gui/Views/MessageBox.cs
+++ b/Terminal.Gui/Views/MessageBox.cs
@@ -325,7 +325,10 @@ public static class MessageBox
foreach (string s in buttons)
{
- var b = new Button { Text = s };
+ var b = new Button
+ {
+ Text = s,
+ };
if (count == defaultButton)
{
@@ -337,9 +340,9 @@ public static class MessageBox
}
}
- Dialog d;
-
- d = new Dialog
+ Alignment buttonJust = Dialog.DefaultButtonAlignment;
+ Dialog.DefaultButtonAlignment = Alignment.Centered;
+ var d = new Dialog
{
Buttons = buttonList.ToArray (),
Title = title,
@@ -347,6 +350,7 @@ public static class MessageBox
Width = Dim.Percent (60),
Height = 5 // Border + one line of text + vspace + buttons
};
+ Dialog.DefaultButtonAlignment = buttonJust;
if (width != 0)
{
@@ -370,7 +374,7 @@ public static class MessageBox
var messageLabel = new Label
{
Text = message,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
X = Pos.Center (),
Y = 0
};
diff --git a/Terminal.Gui/Views/ProgressBar.cs b/Terminal.Gui/Views/ProgressBar.cs
index 4e9c9dcf6..6b1eff593 100644
--- a/Terminal.Gui/Views/ProgressBar.cs
+++ b/Terminal.Gui/Views/ProgressBar.cs
@@ -184,7 +184,7 @@ public class ProgressBar : View
if (ProgressBarFormat != ProgressBarFormat.Simple && !_isActivity)
{
- var tf = new TextFormatter { Alignment = TextAlignment.Centered, Text = Text, AutoSize = true };
+ var tf = new TextFormatter { Alignment = Alignment.Centered, Text = Text, AutoSize = true };
var attr = new Attribute (ColorScheme.HotNormal.Foreground, ColorScheme.HotNormal.Background);
if (_fraction > .5)
diff --git a/Terminal.Gui/Views/Slider.cs b/Terminal.Gui/Views/Slider.cs
index 9182605b4..c05f9006e 100644
--- a/Terminal.Gui/Views/Slider.cs
+++ b/Terminal.Gui/Views/Slider.cs
@@ -930,7 +930,7 @@ public class Slider : View
}
}
- private string AlignText (string text, int width, TextAlignment textAlignment)
+ private string AlignText (string text, int width, Alignment alignment)
{
if (text is null)
{
@@ -947,20 +947,20 @@ public class Slider : View
string s2 = new (' ', w % 2);
// Note: The formatter doesn't handle all of this ???
- switch (textAlignment)
+ switch (alignment)
{
- case TextAlignment.Justified:
+ case Alignment.Justified:
return TextFormatter.Justify (text, width);
- case TextAlignment.Left:
+ case Alignment.Left:
return text + s1 + s1 + s2;
- case TextAlignment.Centered:
+ case Alignment.Centered:
if (text.Length % 2 != 0)
{
return s1 + text + s1 + s2;
}
return s1 + s2 + text + s1;
- case TextAlignment.Right:
+ case Alignment.Right:
return s1 + s1 + s2 + text;
default:
return text;
@@ -1293,7 +1293,7 @@ public class Slider : View
switch (_config._legendsOrientation)
{
case Orientation.Horizontal:
- text = AlignText (text, _config._innerSpacing + 1, TextAlignment.Centered);
+ text = AlignText (text, _config._innerSpacing + 1, Alignment.Centered);
break;
case Orientation.Vertical:
@@ -1311,7 +1311,7 @@ public class Slider : View
break;
case Orientation.Vertical:
- text = AlignText (text, _config._innerSpacing + 1, TextAlignment.Centered);
+ text = AlignText (text, _config._innerSpacing + 1, Alignment.Centered);
break;
}
diff --git a/Terminal.Gui/Views/TabView.cs b/Terminal.Gui/Views/TabView.cs
index 42e3ef96d..b2eadd17e 100644
--- a/Terminal.Gui/Views/TabView.cs
+++ b/Terminal.Gui/Views/TabView.cs
@@ -1265,6 +1265,7 @@ public class TabView : View
tab.Margin.Thickness = new Thickness (0, 0, 0, 0);
}
+ // BUGBUG: Dim.Anchor is internal. This should do something else to get the width.
tab.Width = Math.Max (tab.Width.Anchor (0) - 1, 1);
}
else
@@ -1280,6 +1281,7 @@ public class TabView : View
tab.Margin.Thickness = new Thickness (0, 0, 0, 0);
}
+ // BUGBUG: Dim.Anchor is internal. This should do something else to get the width.
tab.Width = Math.Max (tab.Width.Anchor (0) - 1, 1);
}
diff --git a/Terminal.Gui/Views/TableView/ColumnStyle.cs b/Terminal.Gui/Views/TableView/ColumnStyle.cs
index cbbc2a3ac..2d277abd9 100644
--- a/Terminal.Gui/Views/TableView/ColumnStyle.cs
+++ b/Terminal.Gui/Views/TableView/ColumnStyle.cs
@@ -8,10 +8,10 @@
public class ColumnStyle
{
///
- /// Defines a delegate for returning custom alignment per cell based on cell values. When specified this will
+ /// Defines a delegate for returning custom alignment per cell based on cell values. When specified this will
/// override
///
- public Func AlignmentGetter;
+ public Func AlignmentGetter;
///
/// Defines a delegate for returning a custom color scheme per cell based on cell values. Return null for the
@@ -20,26 +20,26 @@ public class ColumnStyle
public CellColorGetterDelegate ColorGetter;
///
- /// Defines a delegate for returning custom representations of cell values. If not set then
- /// is used. Return values from your delegate may be truncated e.g. based on
+ /// Defines a delegate for returning custom representations of cell values. If not set then
+ /// is used. Return values from your delegate may be truncated e.g. based on
///
///
public Func RepresentationGetter;
- private bool visible = true;
+ private bool _visible = true;
///
- /// Defines the default alignment for all values rendered in this column. For custom alignment based on cell
+ /// Defines the default alignment for all values rendered in this column. For custom alignment based on cell
/// contents use .
///
- public TextAlignment Alignment { get; set; }
+ public Alignment Alignment { get; set; }
/// Defines the format for values e.g. "yyyy-MM-dd" for dates
public string Format { get; set; }
///
- /// Set the maximum width of the column in characters. This value will be ignored if more than the tables
- /// . Defaults to
+ /// Set the maximum width of the column in characters. This value will be ignored if more than the tables
+ /// . Defaults to
///
public int MaxWidth { get; set; } = TableView.DefaultMaxCellWidth;
@@ -47,7 +47,7 @@ public class ColumnStyle
public int MinAcceptableWidth { get; set; } = TableView.DefaultMinAcceptableWidth;
///
- /// Set the minimum width of the column in characters. Setting this will ensure that even when a column has short
+ /// Set the minimum width of the column in characters. Setting this will ensure that even when a column has short
/// content/header it still fills a given width of the control.
///
/// This value will be ignored if more than the tables or the
@@ -64,8 +64,8 @@ public class ColumnStyle
/// If is 0 then will always return false.
public bool Visible
{
- get => MaxWidth >= 0 && visible;
- set => visible = value;
+ get => MaxWidth >= 0 && _visible;
+ set => _visible = value;
}
///
@@ -74,7 +74,7 @@ public class ColumnStyle
///
///
///
- public TextAlignment GetAlignment (object cellValue)
+ public Alignment GetAlignment (object cellValue)
{
if (AlignmentGetter is { })
{
diff --git a/Terminal.Gui/Views/TableView/TableStyle.cs b/Terminal.Gui/Views/TableView/TableStyle.cs
index 2cf258bee..4dd947734 100644
--- a/Terminal.Gui/Views/TableView/TableStyle.cs
+++ b/Terminal.Gui/Views/TableView/TableStyle.cs
@@ -15,11 +15,11 @@ public class TableStyle
///
public bool AlwaysUseNormalColorForVerticalCellLines { get; set; } = false;
- /// Collection of columns for which you want special rendering (e.g. custom column lengths, text alignment etc)
+ /// Collection of columns for which you want special rendering (e.g. custom column lengths, text justification, etc.)
public Dictionary ColumnStyles { get; set; } = new ();
///
- /// Determines rendering when the last column in the table is visible but it's content or
+ /// Determines rendering when the last column in the table is visible, but it's content or
/// is less than the remaining space in the control. True (the default) will expand
/// the column to fill the remaining bounds of the control. False will draw a column ending line and leave a blank
/// column that cannot be selected in the remaining space.
diff --git a/Terminal.Gui/Views/TableView/TableView.cs b/Terminal.Gui/Views/TableView/TableView.cs
index 0c39895e3..099f4d1e2 100644
--- a/Terminal.Gui/Views/TableView/TableView.cs
+++ b/Terminal.Gui/Views/TableView/TableView.cs
@@ -2116,16 +2116,16 @@ public class TableView : View
- (representation.EnumerateRunes ().Sum (c => c.GetColumns ())
+ 1 /*leave 1 space for cell boundary*/);
- switch (colStyle?.GetAlignment (originalCellValue) ?? TextAlignment.Left)
+ switch (colStyle?.GetAlignment (originalCellValue) ?? Alignment.Left)
{
- case TextAlignment.Left:
+ case Alignment.Left:
return representation + new string (' ', toPad);
- case TextAlignment.Right:
+ case Alignment.Right:
return new string (' ', toPad) + representation;
// TODO: With single line cells, centered and justified are the same right?
- case TextAlignment.Centered:
- case TextAlignment.Justified:
+ case Alignment.Centered:
+ case Alignment.Justified:
return
new string (' ', (int)Math.Floor (toPad / 2.0))
+ // round down
diff --git a/Terminal.Gui/Views/TextValidateField.cs b/Terminal.Gui/Views/TextValidateField.cs
index 0f02ff002..feee317c0 100644
--- a/Terminal.Gui/Views/TextValidateField.cs
+++ b/Terminal.Gui/Views/TextValidateField.cs
@@ -539,7 +539,7 @@ namespace Terminal.Gui
{
int c = _provider.Cursor (mouseEvent.Position.X - GetMargins (Viewport.Width).left);
- if (_provider.Fixed == false && TextAlignment == TextAlignment.Right && Text.Length > 0)
+ if (_provider.Fixed == false && TextAlignment == Alignment.Right && Text.Length > 0)
{
c++;
}
@@ -633,7 +633,7 @@ namespace Terminal.Gui
// When it's right-aligned and it's a normal input, the cursor behaves differently.
int curPos;
- if (_provider?.Fixed == false && TextAlignment == TextAlignment.Right)
+ if (_provider?.Fixed == false && TextAlignment == Alignment.Right)
{
curPos = _cursorPosition + left - 1;
}
@@ -650,7 +650,7 @@ namespace Terminal.Gui
///
private bool BackspaceKeyHandler ()
{
- if (_provider.Fixed == false && TextAlignment == TextAlignment.Right && _cursorPosition <= 1)
+ if (_provider.Fixed == false && TextAlignment == Alignment.Right && _cursorPosition <= 1)
{
return false;
}
@@ -688,7 +688,7 @@ namespace Terminal.Gui
///
private bool DeleteKeyHandler ()
{
- if (_provider.Fixed == false && TextAlignment == TextAlignment.Right)
+ if (_provider.Fixed == false && TextAlignment == Alignment.Right)
{
_cursorPosition = _provider.CursorLeft (_cursorPosition);
}
@@ -719,11 +719,11 @@ namespace Terminal.Gui
switch (TextAlignment)
{
- case TextAlignment.Left:
+ case Alignment.Left:
return (0, total);
- case TextAlignment.Centered:
+ case Alignment.Centered:
return (total / 2, total / 2 + total % 2);
- case TextAlignment.Right:
+ case Alignment.Right:
return (total, 0);
default:
return (0, total);
diff --git a/Terminal.Gui/Views/TextView.cs b/Terminal.Gui/Views/TextView.cs
index 153ba7916..dc0cabeea 100644
--- a/Terminal.Gui/Views/TextView.cs
+++ b/Terminal.Gui/Views/TextView.cs
@@ -1776,7 +1776,7 @@ internal class WordWrapManager
TextFormatter.Format (
TextModel.ToString (line),
width,
- TextAlignment.Left,
+ Alignment.Left,
true,
preserveTrailingSpaces,
tabWidth
@@ -4163,7 +4163,10 @@ public class TextView : View
}
else
{
- PositionCursor ();
+ if (IsInitialized)
+ {
+ PositionCursor ();
+ }
}
OnUnwrappedCursorPosition ();
diff --git a/Terminal.Gui/Views/TileView.cs b/Terminal.Gui/Views/TileView.cs
index b0d4aba6b..fb9c9651c 100644
--- a/Terminal.Gui/Views/TileView.cs
+++ b/Terminal.Gui/Views/TileView.cs
@@ -601,10 +601,12 @@ public class TileView : View
TileViewLineView nextSplitter = visibleSplitterLines [i];
Pos nextSplitterPos = Orientation == Orientation.Vertical ? nextSplitter.X : nextSplitter.Y;
+ // BUGBUG: Pos.Anchor is an internal API. TileView should not be using it and should do something different to get the value.
int nextSplitterDistance = nextSplitterPos.Anchor (space);
TileViewLineView lastSplitter = i >= 1 ? visibleSplitterLines [i - 1] : null;
Pos lastSplitterPos = Orientation == Orientation.Vertical ? lastSplitter?.X : lastSplitter?.Y;
+ // BUGBUG: Pos.Anchor is an internal API. TileView should not be using it and should do something different to get the value.
int lastSplitterDistance = lastSplitterPos?.Anchor (space) ?? 0;
int distance = nextSplitterDistance - lastSplitterDistance;
@@ -848,6 +850,7 @@ public class TileView : View
{
Dim spaceDim = Tile.ContentView.Width;
+ // BUGBUG: Dim.Anchor is internal. This should do something else to get the width.
int spaceAbs = spaceDim.Anchor (Parent.Viewport.Width);
var title = $" {Tile.Title} ";
diff --git a/Terminal.Gui/Views/Wizard/Wizard.cs b/Terminal.Gui/Views/Wizard/Wizard.cs
index 205739d44..c6334e434 100644
--- a/Terminal.Gui/Views/Wizard/Wizard.cs
+++ b/Terminal.Gui/Views/Wizard/Wizard.cs
@@ -54,23 +54,6 @@ public class Wizard : Dialog
private readonly LinkedList _steps = new ();
private WizardStep _currentStep;
private bool _finishedPressed;
-
- /////
- ///// The title of the Wizard, shown at the top of the Wizard with " - currentStep.Title" appended.
- /////
- /////
- ///// The Title is only displayed when the is set to false .
- /////
- //public new string Title {
- // get {
- // // The base (Dialog) Title holds the full title ("Wizard Title - Step Title")
- // return base.Title;
- // }
- // set {
- // wizardTitle = value;
- // base.Title = $"{wizardTitle}{(steps.Count > 0 && currentStep is { } ? " - " + currentStep.Title : string.Empty)}";
- // }
- //}
private string _wizardTitle = string.Empty;
///
@@ -83,9 +66,8 @@ public class Wizard : Dialog
///
public Wizard ()
{
- // Using Justify causes the Back and Next buttons to be hard justified against
- // the left and right edge
- ButtonAlignment = ButtonAlignments.Justify;
+ // TODO: LastRightRestLeft will enable a "Quit" button to always appear at the far left
+ ButtonAlignment = Alignment.LastRightRestLeft;
BorderStyle = LineStyle.Double;
//// Add a horiz separator
diff --git a/Terminal.sln.DotSettings b/Terminal.sln.DotSettings
index ca15b5583..2bb065af1 100644
--- a/Terminal.sln.DotSettings
+++ b/Terminal.sln.DotSettings
@@ -439,5 +439,6 @@
Concurrency Issue
(?<=\W|^)(?<TAG>CONCURRENCY:)(\W|$)(.*)
Warning
+ True
True
diff --git a/UICatalog/Scenarios/BasicColors.cs b/UICatalog/Scenarios/BasicColors.cs
index 1780d7cbb..58bbcce88 100644
--- a/UICatalog/Scenarios/BasicColors.cs
+++ b/UICatalog/Scenarios/BasicColors.cs
@@ -32,7 +32,7 @@ public class BasicColors : Scenario
Y = 0,
Width = 1,
Height = 13,
- VerticalTextAlignment = VerticalTextAlignment.Bottom,
+ VerticalTextAlignment = Alignment.Bottom,
ColorScheme = new ColorScheme { Normal = attr },
Text = bg.ToString (),
TextDirection = TextDirection.TopBottom_LeftRight
@@ -45,7 +45,7 @@ public class BasicColors : Scenario
Y = y,
Width = 13,
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
ColorScheme = new ColorScheme { Normal = attr },
Text = bg.ToString ()
};
diff --git a/UICatalog/Scenarios/Buttons.cs b/UICatalog/Scenarios/Buttons.cs
index fb6706366..75f2f1307 100644
--- a/UICatalog/Scenarios/Buttons.cs
+++ b/UICatalog/Scenarios/Buttons.cs
@@ -287,39 +287,39 @@ public class Buttons : Scenario
switch (args.SelectedItem)
{
case 0:
- moveBtn.TextAlignment = TextAlignment.Left;
- sizeBtn.TextAlignment = TextAlignment.Left;
- moveBtnA.TextAlignment = TextAlignment.Left;
- sizeBtnA.TextAlignment = TextAlignment.Left;
- moveHotKeyBtn.TextAlignment = TextAlignment.Left;
- moveUnicodeHotKeyBtn.TextAlignment = TextAlignment.Left;
+ moveBtn.TextAlignment = Alignment.Left;
+ sizeBtn.TextAlignment = Alignment.Left;
+ moveBtnA.TextAlignment = Alignment.Left;
+ sizeBtnA.TextAlignment = Alignment.Left;
+ moveHotKeyBtn.TextAlignment = Alignment.Left;
+ moveUnicodeHotKeyBtn.TextAlignment = Alignment.Left;
break;
case 1:
- moveBtn.TextAlignment = TextAlignment.Right;
- sizeBtn.TextAlignment = TextAlignment.Right;
- moveBtnA.TextAlignment = TextAlignment.Right;
- sizeBtnA.TextAlignment = TextAlignment.Right;
- moveHotKeyBtn.TextAlignment = TextAlignment.Right;
- moveUnicodeHotKeyBtn.TextAlignment = TextAlignment.Right;
+ moveBtn.TextAlignment = Alignment.Right;
+ sizeBtn.TextAlignment = Alignment.Right;
+ moveBtnA.TextAlignment = Alignment.Right;
+ sizeBtnA.TextAlignment = Alignment.Right;
+ moveHotKeyBtn.TextAlignment = Alignment.Right;
+ moveUnicodeHotKeyBtn.TextAlignment = Alignment.Right;
break;
case 2:
- moveBtn.TextAlignment = TextAlignment.Centered;
- sizeBtn.TextAlignment = TextAlignment.Centered;
- moveBtnA.TextAlignment = TextAlignment.Centered;
- sizeBtnA.TextAlignment = TextAlignment.Centered;
- moveHotKeyBtn.TextAlignment = TextAlignment.Centered;
- moveUnicodeHotKeyBtn.TextAlignment = TextAlignment.Centered;
+ moveBtn.TextAlignment = Alignment.Centered;
+ sizeBtn.TextAlignment = Alignment.Centered;
+ moveBtnA.TextAlignment = Alignment.Centered;
+ sizeBtnA.TextAlignment = Alignment.Centered;
+ moveHotKeyBtn.TextAlignment = Alignment.Centered;
+ moveUnicodeHotKeyBtn.TextAlignment = Alignment.Centered;
break;
case 3:
- moveBtn.TextAlignment = TextAlignment.Justified;
- sizeBtn.TextAlignment = TextAlignment.Justified;
- moveBtnA.TextAlignment = TextAlignment.Justified;
- sizeBtnA.TextAlignment = TextAlignment.Justified;
- moveHotKeyBtn.TextAlignment = TextAlignment.Justified;
- moveUnicodeHotKeyBtn.TextAlignment = TextAlignment.Justified;
+ moveBtn.TextAlignment = Alignment.Justified;
+ sizeBtn.TextAlignment = Alignment.Justified;
+ moveBtnA.TextAlignment = Alignment.Justified;
+ sizeBtnA.TextAlignment = Alignment.Justified;
+ moveHotKeyBtn.TextAlignment = Alignment.Justified;
+ moveUnicodeHotKeyBtn.TextAlignment = Alignment.Justified;
break;
}
@@ -418,9 +418,8 @@ public class Buttons : Scenario
throw new InvalidOperationException ("T must be a numeric type that supports addition and subtraction.");
}
- // TODO: Use Dim.Auto for the Width and Height
- Height = 1;
- Width = Dim.Function (() => Digits + 2); // button + 3 for number + button
+ Width = Dim.Auto (DimAutoStyle.Content); //Dim.Function (() => Digits + 2); // button + 3 for number + button
+ Height = Dim.Auto (DimAutoStyle.Content);
_down = new ()
{
@@ -440,7 +439,7 @@ public class Buttons : Scenario
Y = Pos.Top (_down),
Width = Dim.Function (() => Digits),
Height = 1,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
CanFocus = true
};
diff --git a/UICatalog/Scenarios/CharacterMap.cs b/UICatalog/Scenarios/CharacterMap.cs
index 0a32490de..07a99b69d 100644
--- a/UICatalog/Scenarios/CharacterMap.cs
+++ b/UICatalog/Scenarios/CharacterMap.cs
@@ -958,7 +958,7 @@ internal class CharMap : View
Y = 1,
Width = Dim.Fill (),
Height = Dim.Fill (1),
- TextAlignment = TextAlignment.Centered
+ TextAlignment = Alignment.Centered
};
var spinner = new SpinnerView { X = Pos.Center (), Y = Pos.Center (), Style = new Aesthetic () };
spinner.AutoSpin = true;
diff --git a/UICatalog/Scenarios/CollectionNavigatorTester.cs b/UICatalog/Scenarios/CollectionNavigatorTester.cs
index ef31ac6a7..0c9b3ab14 100644
--- a/UICatalog/Scenarios/CollectionNavigatorTester.cs
+++ b/UICatalog/Scenarios/CollectionNavigatorTester.cs
@@ -142,7 +142,7 @@ public class CollectionNavigatorTester : Scenario
var label = new Label
{
Text = "ListView",
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
X = 0,
Y = 1, // for menu
Width = Dim.Percent (50),
@@ -171,7 +171,7 @@ public class CollectionNavigatorTester : Scenario
var label = new Label
{
Text = "TreeView",
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
X = Pos.Right (_listView) + 2,
Y = 1, // for menu
Width = Dim.Percent (50),
diff --git a/UICatalog/Scenarios/ColorPicker.cs b/UICatalog/Scenarios/ColorPicker.cs
index fe2b08fad..6d5f61814 100644
--- a/UICatalog/Scenarios/ColorPicker.cs
+++ b/UICatalog/Scenarios/ColorPicker.cs
@@ -69,8 +69,8 @@ public class ColorPickers : Scenario
{
Title = "Color Sample",
Text = "Lorem Ipsum",
- TextAlignment = TextAlignment.Centered,
- VerticalTextAlignment = VerticalTextAlignment.Middle,
+ TextAlignment = Alignment.Centered,
+ VerticalTextAlignment = Alignment.Centered,
BorderStyle = LineStyle.Heavy,
X = Pos.Center (),
Y = Pos.Center (),
diff --git a/UICatalog/Scenarios/ComputedLayout.cs b/UICatalog/Scenarios/ComputedLayout.cs
index 5e6eb5cd2..9c9901751 100644
--- a/UICatalog/Scenarios/ComputedLayout.cs
+++ b/UICatalog/Scenarios/ComputedLayout.cs
@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using Terminal.Gui;
+using static Terminal.Gui.Dialog;
namespace UICatalog.Scenarios;
@@ -85,12 +86,12 @@ public class ComputedLayout : Scenario
var i = 1;
var txt = "Resize the terminal to see computed layout in action.";
List labelList = new ();
- labelList.Add (new Label { Text = "The lines below show different TextAlignments" });
+ labelList.Add (new Label { Text = "The lines below show different alignment" });
labelList.Add (
new Label
{
- TextAlignment = TextAlignment.Left,
+ TextAlignment = Alignment.Left,
Width = Dim.Fill (),
X = 0,
Y = Pos.Bottom (labelList.LastOrDefault ()),
@@ -102,7 +103,7 @@ public class ComputedLayout : Scenario
labelList.Add (
new Label
{
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Width = Dim.Fill (),
X = 0,
Y = Pos.Bottom (labelList.LastOrDefault ()),
@@ -114,7 +115,7 @@ public class ComputedLayout : Scenario
labelList.Add (
new Label
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = Dim.Fill (),
X = 0,
Y = Pos.Bottom (labelList.LastOrDefault ()),
@@ -126,7 +127,7 @@ public class ComputedLayout : Scenario
labelList.Add (
new Label
{
- TextAlignment = TextAlignment.Justified,
+ TextAlignment = Alignment.Justified,
Width = Dim.Fill (),
X = 0,
Y = Pos.Bottom (labelList.LastOrDefault ()),
@@ -147,12 +148,12 @@ public class ComputedLayout : Scenario
};
i = 1;
labelList = new List ();
- labelList.Add (new Label { Text = "The lines below show different TextAlignments" });
+ labelList.Add (new Label { Text = "The lines below show different alignment" });
labelList.Add (
new Label
{
- TextAlignment = TextAlignment.Left,
+ TextAlignment = Alignment.Left,
Width = Dim.Fill (),
X = 0,
Y = Pos.Bottom (labelList.LastOrDefault ()),
@@ -164,7 +165,7 @@ public class ComputedLayout : Scenario
labelList.Add (
new Label
{
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Width = Dim.Fill (),
X = 0,
Y = Pos.Bottom (labelList.LastOrDefault ()),
@@ -176,7 +177,7 @@ public class ComputedLayout : Scenario
labelList.Add (
new Label
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = Dim.Fill (),
X = 0,
Y = Pos.Bottom (labelList.LastOrDefault ()),
@@ -188,7 +189,7 @@ public class ComputedLayout : Scenario
labelList.Add (
new Label
{
- TextAlignment = TextAlignment.Justified,
+ TextAlignment = Alignment.Justified,
Width = Dim.Fill (),
X = 0,
Y = Pos.Bottom (labelList.LastOrDefault ()),
@@ -322,12 +323,12 @@ public class ComputedLayout : Scenario
// This is intentionally convoluted to illustrate potential bugs.
var anchorEndLabel1 = new Label
{
- Text = "This Label should be the 2nd to last line (AnchorEnd (2)).",
- TextAlignment = TextAlignment.Centered,
+ Text = "This Label should be the 3rd to last line (AnchorEnd (3)).",
+ TextAlignment = Alignment.Centered,
ColorScheme = Colors.ColorSchemes ["Menu"],
Width = Dim.Fill (5),
X = 5,
- Y = Pos.AnchorEnd (2)
+ Y = Pos.AnchorEnd (3)
};
app.Add (anchorEndLabel1);
@@ -336,19 +337,18 @@ public class ComputedLayout : Scenario
var anchorEndLabel2 = new TextField
{
Text =
- "This TextField should be the 3rd to last line (AnchorEnd (2) - 1).",
- TextAlignment = TextAlignment.Left,
+ "This TextField should be the 4th to last line (AnchorEnd (3) - 1).",
+ TextAlignment = Alignment.Left,
ColorScheme = Colors.ColorSchemes ["Menu"],
Width = Dim.Fill (5),
X = 5,
- Y = Pos.AnchorEnd (2) - 1 // Pos.Combine
+ Y = Pos.AnchorEnd (3) - 1 // Pos.Combine
};
app.Add (anchorEndLabel2);
- // Show positioning vertically using Pos.AnchorEnd via Pos.Combine
var leftButton = new Button
{
- Text = "Left", Y = Pos.AnchorEnd (0) - 1 // Pos.Combine
+ Text = "Left", Y = Pos.AnchorEnd () - 1
};
leftButton.Accept += (s, e) =>
@@ -364,7 +364,7 @@ public class ComputedLayout : Scenario
// show positioning vertically using Pos.AnchorEnd
var centerButton = new Button
{
- Text = "Center", X = Pos.Center (), Y = Pos.AnchorEnd (1) // Pos.AnchorEnd(1)
+ Text = "Center", Y = Pos.AnchorEnd (2) // Pos.AnchorEnd(1)
};
centerButton.Accept += (s, e) =>
@@ -390,14 +390,17 @@ public class ComputedLayout : Scenario
app.LayoutSubviews ();
};
- // Center three buttons with 5 spaces between them
- leftButton.X = Pos.Left (centerButton) - (Pos.Right (leftButton) - Pos.Left (leftButton)) - 5;
- rightButton.X = Pos.Right (centerButton) + 5;
-
+ View [] buttons = { leftButton, centerButton, rightButton };
app.Add (leftButton);
app.Add (centerButton);
app.Add (rightButton);
+
+ // Center three buttons with
+ leftButton.X = Pos.Align (Alignment.Centered);
+ centerButton.X = Pos.Align (Alignment.Centered);
+ rightButton.X = Pos.Align (Alignment.Centered);
+
Application.Run (app);
app.Dispose ();
}
diff --git a/UICatalog/Scenarios/CsvEditor.cs b/UICatalog/Scenarios/CsvEditor.cs
index 4279594ab..0139ff90e 100644
--- a/UICatalog/Scenarios/CsvEditor.cs
+++ b/UICatalog/Scenarios/CsvEditor.cs
@@ -78,17 +78,17 @@ public class CsvEditor : Scenario
_miLeft = new MenuItem (
"_Align Left",
"",
- () => Align (TextAlignment.Left)
+ () => Align (Alignment.Left)
),
_miRight = new MenuItem (
"_Align Right",
"",
- () => Align (TextAlignment.Right)
+ () => Align (Alignment.Right)
),
_miCentered = new MenuItem (
"_Align Centered",
"",
- () => Align (TextAlignment.Centered)
+ () => Align (Alignment.Centered)
),
// Format requires hard typed data table, when we read a CSV everything is untyped (string) so this only works for new columns in this demo
@@ -133,7 +133,7 @@ public class CsvEditor : Scenario
Y = Pos.Bottom (_tableView),
Text = "0,0",
Width = Dim.Fill (),
- TextAlignment = TextAlignment.Right
+ TextAlignment = Alignment.Right
};
_selectedCellLabel.TextChanged += SelectedCellLabel_TextChanged;
@@ -218,7 +218,7 @@ public class CsvEditor : Scenario
_tableView.Update ();
}
- private void Align (TextAlignment newAlignment)
+ private void Align (Alignment newAlignment)
{
if (NoTableLoaded ())
{
@@ -228,9 +228,9 @@ public class CsvEditor : Scenario
ColumnStyle style = _tableView.Style.GetOrCreateColumnStyle (_tableView.SelectedColumn);
style.Alignment = newAlignment;
- _miLeft.Checked = style.Alignment == TextAlignment.Left;
- _miRight.Checked = style.Alignment == TextAlignment.Right;
- _miCentered.Checked = style.Alignment == TextAlignment.Centered;
+ _miLeft.Checked = style.Alignment == Alignment.Left;
+ _miRight.Checked = style.Alignment == Alignment.Right;
+ _miCentered.Checked = style.Alignment == Alignment.Centered;
_tableView.Update ();
}
@@ -437,9 +437,9 @@ public class CsvEditor : Scenario
ColumnStyle style = _tableView.Style.GetColumnStyleIfAny (_tableView.SelectedColumn);
- _miLeft.Checked = style?.Alignment == TextAlignment.Left;
- _miRight.Checked = style?.Alignment == TextAlignment.Right;
- _miCentered.Checked = style?.Alignment == TextAlignment.Centered;
+ _miLeft.Checked = style?.Alignment == Alignment.Left;
+ _miRight.Checked = style?.Alignment == Alignment.Right;
+ _miCentered.Checked = style?.Alignment == Alignment.Centered;
}
private void Open ()
diff --git a/UICatalog/Scenarios/Dialogs.cs b/UICatalog/Scenarios/Dialogs.cs
index cdc05fe10..36a0106ec 100644
--- a/UICatalog/Scenarios/Dialogs.cs
+++ b/UICatalog/Scenarios/Dialogs.cs
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
+using System.Linq;
using Terminal.Gui;
namespace UICatalog.Scenarios;
@@ -10,14 +11,30 @@ public class Dialogs : Scenario
{
private static readonly int CODE_POINT = '你'; // We know this is a wide char
- public override void Setup ()
+ public override void Main ()
{
- var frame = new FrameView { X = Pos.Center (), Y = 1, Width = Dim.Percent (75), Title = "Dialog Options" };
+ // Init
+ Application.Init ();
+
+ // Setup - Create a top-level application window and configure it.
+ Window appWindow = new ()
+ {
+ Title = $"{Application.QuitKey} to Quit - Scenario: {GetName ()} - {GetDescription ()}"
+ };
+
+ var frame = new FrameView
+ {
+ X = Pos.Center (),
+ Y = 1,
+ Width = Dim.Percent (75),
+ //Height = Dim.Auto (),
+ Title = "Dialog Options"
+ };
var numButtonsLabel = new Label
{
X = 0,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "_Number of Buttons:"
};
@@ -27,7 +44,7 @@ public class Dialogs : Scenario
Y = 0,
Width = Dim.Width (numButtonsLabel),
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "_Width:"
};
frame.Add (label);
@@ -42,13 +59,13 @@ public class Dialogs : Scenario
};
frame.Add (widthEdit);
- label = new()
+ label = new ()
{
X = 0,
Y = Pos.Bottom (label),
Width = Dim.Width (numButtonsLabel),
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "_Height:"
};
frame.Add (label);
@@ -76,13 +93,13 @@ public class Dialogs : Scenario
}
);
- label = new()
+ label = new ()
{
X = 0,
Y = Pos.Bottom (label),
Width = Dim.Width (numButtonsLabel),
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "_Title:"
};
frame.Add (label);
@@ -114,54 +131,57 @@ public class Dialogs : Scenario
{
X = Pos.Right (numButtonsLabel) + 1,
Y = Pos.Bottom (numButtonsLabel),
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = $"_Add {char.ConvertFromUtf32 (CODE_POINT)} to button text to stress wide char support",
Checked = false
};
frame.Add (glyphsNotWords);
- label = new()
+ label = new ()
{
X = 0,
Y = Pos.Bottom (glyphsNotWords),
Width = Dim.Width (numButtonsLabel),
Height = 1,
- TextAlignment = TextAlignment.Right,
- Text = "Button St_yle:"
+ TextAlignment = Alignment.Right,
+ Text = "Button A_lignment:"
};
frame.Add (label);
- var styleRadioGroup = new RadioGroup
+ var labels = new [] { "Left", "Centered", "Right", "Justified", "FirstLeftRestRight", "LastRightRestLeft" };
+ var alignmentGroup = new RadioGroup
{
X = Pos.Right (label) + 1,
Y = Pos.Top (label),
- RadioLabels = new [] { "_Center", "_Justify", "_Left", "_Right" }
+ RadioLabels = labels.ToArray (),
};
- frame.Add (styleRadioGroup);
+ frame.Add (alignmentGroup);
+ alignmentGroup.SelectedItem = labels.ToList ().IndexOf (Dialog.DefaultButtonAlignment.ToString ());
frame.ValidatePosDim = true;
void Top_LayoutComplete (object sender, EventArgs args)
{
+ // TODO: Replace with Dim.Auto when DimAutoStyle.Content is working
frame.Height =
widthEdit.Frame.Height
+ heightEdit.Frame.Height
+ titleEdit.Frame.Height
+ numButtonsEdit.Frame.Height
+ glyphsNotWords.Frame.Height
- + styleRadioGroup.Frame.Height
+ + alignmentGroup.Frame.Height
+ frame.GetAdornmentsThickness ().Vertical;
}
- Top.LayoutComplete += Top_LayoutComplete;
+ appWindow.LayoutComplete += Top_LayoutComplete;
- Win.Add (frame);
+ appWindow.Add (frame);
- label = new()
+ label = new ()
{
- X = Pos.Center (), Y = Pos.Bottom (frame) + 4, TextAlignment = TextAlignment.Right, Text = "Button Pressed:"
+ X = Pos.Center (), Y = Pos.Bottom (frame) + 4, TextAlignment = Alignment.Right, Text = "Button Pressed:"
};
- Win.Add (label);
+ appWindow.Add (label);
var buttonPressedLabel = new Label
{
@@ -186,16 +206,24 @@ public class Dialogs : Scenario
titleEdit,
numButtonsEdit,
glyphsNotWords,
- styleRadioGroup,
+ alignmentGroup,
buttonPressedLabel
);
Application.Run (dlg);
dlg.Dispose ();
};
- Win.Add (showDialogButton);
+ appWindow.Add (showDialogButton);
+
+ appWindow.Add (buttonPressedLabel);
+
+ // Run - Start the application.
+ Application.Run (appWindow);
+ appWindow.Dispose ();
+
+ // Shutdown - Calling Application.Shutdown is required.
+ Application.Shutdown ();
- Win.Add (buttonPressedLabel);
}
private Dialog CreateDemoDialog (
@@ -204,7 +232,7 @@ public class Dialogs : Scenario
TextField titleEdit,
TextField numButtonsEdit,
CheckBox glyphsNotWords,
- RadioGroup styleRadioGroup,
+ RadioGroup alignmentRadioGroup,
Label buttonPressedLabel
)
{
@@ -231,7 +259,7 @@ public class Dialogs : Scenario
{
buttonId = i;
- button = new()
+ button = new ()
{
Text = NumberToWords.Convert (buttonId) + " " + char.ConvertFromUtf32 (buttonId + CODE_POINT),
IsDefault = buttonId == 0
@@ -239,7 +267,10 @@ public class Dialogs : Scenario
}
else
{
- button = new() { Text = NumberToWords.Convert (buttonId), IsDefault = buttonId == 0 };
+ button = new Button
+ {
+ Text = NumberToWords.Convert (buttonId), IsDefault = buttonId == 0
+ };
}
button.Accept += (s, e) =>
@@ -260,10 +291,11 @@ public class Dialogs : Scenario
// This tests dynamically adding buttons; ensuring the dialog resizes if needed and
// the buttons are laid out correctly
- dialog = new()
+ dialog = new ()
{
Title = titleEdit.Text,
- ButtonAlignment = (Dialog.ButtonAlignments)styleRadioGroup.SelectedItem,
+ ButtonAlignment = (Alignment)Enum.Parse (typeof (Alignment), alignmentRadioGroup.RadioLabels [alignmentRadioGroup.SelectedItem]),
+
Buttons = buttons.ToArray ()
};
@@ -282,7 +314,7 @@ public class Dialogs : Scenario
if (glyphsNotWords.Checked == true)
{
- button = new()
+ button = new ()
{
Text = NumberToWords.Convert (buttonId) + " " + char.ConvertFromUtf32 (buttonId + CODE_POINT),
IsDefault = buttonId == 0
@@ -290,7 +322,7 @@ public class Dialogs : Scenario
}
else
{
- button = new() { Text = NumberToWords.Convert (buttonId), IsDefault = buttonId == 0 };
+ button = new () { Text = NumberToWords.Convert (buttonId), IsDefault = buttonId == 0 };
}
button.Accept += (s, e) =>
diff --git a/UICatalog/Scenarios/DynamicMenuBar.cs b/UICatalog/Scenarios/DynamicMenuBar.cs
index da0768f4f..bae9f6805 100644
--- a/UICatalog/Scenarios/DynamicMenuBar.cs
+++ b/UICatalog/Scenarios/DynamicMenuBar.cs
@@ -623,7 +623,7 @@ public class DynamicMenuBar : Scenario
var _lblMenuBar = new Label
{
ColorScheme = Colors.ColorSchemes ["Dialog"],
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
X = Pos.Right (_btnPrevious) + 1,
Y = Pos.Top (_btnPrevious),
@@ -636,7 +636,7 @@ public class DynamicMenuBar : Scenario
var _lblParent = new Label
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
X = Pos.Right (_btnPrevious) + 1,
Y = Pos.Top (_btnPrevious) + 1,
diff --git a/UICatalog/Scenarios/Editor.cs b/UICatalog/Scenarios/Editor.cs
index 301b1b168..35582ccf7 100644
--- a/UICatalog/Scenarios/Editor.cs
+++ b/UICatalog/Scenarios/Editor.cs
@@ -882,7 +882,7 @@ public class Editor : Scenario
{
Y = 1,
Width = lblWidth,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "Find:"
};
@@ -903,7 +903,7 @@ public class Editor : Scenario
Y = Pos.Top (label),
Width = 20,
Enabled = !string.IsNullOrEmpty (txtToFind.Text),
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
IsDefault = true,
Text = "Find _Next"
@@ -917,7 +917,7 @@ public class Editor : Scenario
Y = Pos.Top (btnFindNext) + 1,
Width = 20,
Enabled = !string.IsNullOrEmpty (txtToFind.Text),
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Text = "Find _Previous"
};
@@ -937,7 +937,7 @@ public class Editor : Scenario
X = Pos.Right (txtToFind) + 1,
Y = Pos.Top (btnFindPrevious) + 2,
Width = 20,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Text = "Cancel"
};
@@ -1134,7 +1134,7 @@ public class Editor : Scenario
{
Y = 1,
Width = lblWidth,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "Find:"
};
@@ -1155,7 +1155,7 @@ public class Editor : Scenario
Y = Pos.Top (label),
Width = 20,
Enabled = !string.IsNullOrEmpty (txtToFind.Text),
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
IsDefault = true,
Text = "Replace _Next"
@@ -1181,7 +1181,7 @@ public class Editor : Scenario
Y = Pos.Top (btnFindNext) + 1,
Width = 20,
Enabled = !string.IsNullOrEmpty (txtToFind.Text),
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Text = "Replace _Previous"
};
@@ -1194,7 +1194,7 @@ public class Editor : Scenario
Y = Pos.Top (btnFindPrevious) + 1,
Width = 20,
Enabled = !string.IsNullOrEmpty (txtToFind.Text),
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Text = "Replace _All"
};
@@ -1215,7 +1215,7 @@ public class Editor : Scenario
X = Pos.Right (txtToFind) + 1,
Y = Pos.Top (btnReplaceAll) + 1,
Width = 20,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Text = "Cancel"
};
diff --git a/UICatalog/Scenarios/ListColumns.cs b/UICatalog/Scenarios/ListColumns.cs
index e4b3b5d19..f9f39d27b 100644
--- a/UICatalog/Scenarios/ListColumns.cs
+++ b/UICatalog/Scenarios/ListColumns.cs
@@ -247,7 +247,7 @@ public class ListColumns : Scenario
Text = "0,0",
Width = Dim.Fill (),
- TextAlignment = TextAlignment.Right
+ TextAlignment = Alignment.Right
};
Win.Add (selectedCellLabel);
diff --git a/UICatalog/Scenarios/MessageBoxes.cs b/UICatalog/Scenarios/MessageBoxes.cs
index df5a54050..97dc70d2a 100644
--- a/UICatalog/Scenarios/MessageBoxes.cs
+++ b/UICatalog/Scenarios/MessageBoxes.cs
@@ -14,7 +14,7 @@ public class MessageBoxes : Scenario
var frame = new FrameView { X = Pos.Center (), Y = 1, Width = Dim.Percent (75), Title = "MessageBox Options" };
Win.Add (frame);
- var label = new Label { X = 0, Y = 0, TextAlignment = TextAlignment.Right, Text = "Width:" };
+ var label = new Label { X = 0, Y = 0, TextAlignment = Alignment.Right, Text = "Width:" };
frame.Add (label);
var widthEdit = new TextField
@@ -34,7 +34,7 @@ public class MessageBoxes : Scenario
Width = Dim.Width (label),
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "Height:"
};
frame.Add (label);
@@ -69,7 +69,7 @@ public class MessageBoxes : Scenario
Width = Dim.Width (label),
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "Title:"
};
frame.Add (label);
@@ -91,7 +91,7 @@ public class MessageBoxes : Scenario
Width = Dim.Width (label),
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "Message:"
};
frame.Add (label);
@@ -113,7 +113,7 @@ public class MessageBoxes : Scenario
Width = Dim.Width (label),
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "Num Buttons:"
};
frame.Add (label);
@@ -135,7 +135,7 @@ public class MessageBoxes : Scenario
Width = Dim.Width (label),
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "Default Button:"
};
frame.Add (label);
@@ -157,7 +157,7 @@ public class MessageBoxes : Scenario
Width = Dim.Width (label),
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "Style:"
};
frame.Add (label);
@@ -195,7 +195,7 @@ public class MessageBoxes : Scenario
label = new()
{
- X = Pos.Center (), Y = Pos.Bottom (frame) + 2, TextAlignment = TextAlignment.Right, Text = "Button Pressed:"
+ X = Pos.Center (), Y = Pos.Bottom (frame) + 2, TextAlignment = Alignment.Right, Text = "Button Pressed:"
};
Win.Add (label);
@@ -204,7 +204,7 @@ public class MessageBoxes : Scenario
X = Pos.Center (),
Y = Pos.Bottom (label) + 1,
ColorScheme = Colors.ColorSchemes ["Error"],
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Text = " "
};
diff --git a/UICatalog/Scenarios/Mouse.cs b/UICatalog/Scenarios/Mouse.cs
index 15b0f6756..59f30b332 100644
--- a/UICatalog/Scenarios/Mouse.cs
+++ b/UICatalog/Scenarios/Mouse.cs
@@ -98,8 +98,8 @@ public class Mouse : Scenario
Width = 20,
Height = 3,
Text = "Enter/Leave Demo",
- TextAlignment = TextAlignment.Centered,
- VerticalTextAlignment = VerticalTextAlignment.Middle,
+ TextAlignment = Alignment.Centered,
+ VerticalTextAlignment = Alignment.Centered,
ColorScheme = Colors.ColorSchemes ["Dialog"]
};
win.Add (demo);
diff --git a/UICatalog/Scenarios/PosAlignDemo.cs b/UICatalog/Scenarios/PosAlignDemo.cs
new file mode 100644
index 000000000..1da0181e4
--- /dev/null
+++ b/UICatalog/Scenarios/PosAlignDemo.cs
@@ -0,0 +1,369 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using Terminal.Gui;
+
+namespace UICatalog.Scenarios;
+
+[ScenarioMetadata ("Pos.Align", "Shows off Pos.Align")]
+[ScenarioCategory ("Layout")]
+public sealed class PosAlignDemo : Scenario
+{
+ private readonly Aligner _horizAligner = new ();
+ private int _leftMargin;
+ private readonly Aligner _vertAligner = new ();
+ private int _topMargin;
+
+ public override void Main ()
+ {
+ // Init
+ Application.Init ();
+
+ // Setup - Create a top-level application window and configure it.
+ Window appWindow = new ()
+ {
+ Title = $"{Application.QuitKey} to Quit - Scenario: {GetName ()} - {GetDescription ()}"
+ };
+
+ SetupHorizontalControls (appWindow);
+
+ SetupVerticalControls (appWindow);
+
+ Setup3by3Grid (appWindow);
+
+ // Run - Start the application.
+ Application.Run (appWindow);
+ appWindow.Dispose ();
+
+ // Shutdown - Calling Application.Shutdown is required.
+ Application.Shutdown ();
+ }
+
+ private void SetupHorizontalControls (Window appWindow)
+ {
+ ColorScheme colorScheme = Colors.ColorSchemes ["Toplevel"];
+
+ RadioGroup alignRadioGroup = new ()
+ {
+ X = Pos.Align (_horizAligner.Alignment),
+ Y = Pos.Center (),
+ RadioLabels = new [] { "Left", "Right", "Centered", "Justified", "FirstLeftRestRight", "LastRightRestLeft" },
+ ColorScheme = colorScheme
+ };
+
+ alignRadioGroup.SelectedItemChanged += (s, e) =>
+ {
+ _horizAligner.Alignment =
+ (Alignment)Enum.Parse (typeof (Alignment), alignRadioGroup.RadioLabels [alignRadioGroup.SelectedItem]);
+
+ foreach (View view in appWindow.Subviews.Where (v => v.X is PosAlign))
+ {
+ if (view.X is PosAlign j)
+ {
+ var newJust = new PosAlign (_horizAligner.Alignment)
+ {
+ Aligner =
+ {
+ SpaceBetweenItems = _horizAligner.SpaceBetweenItems
+ }
+ };
+ view.X = newJust;
+ }
+ }
+ };
+ appWindow.Add (alignRadioGroup);
+
+ CheckBox putSpaces = new ()
+ {
+ X = Pos.Align (_horizAligner.Alignment),
+ Y = Pos.Top (alignRadioGroup),
+ ColorScheme = colorScheme,
+ Text = "Spaces",
+ Checked = true
+ };
+
+ putSpaces.Toggled += (s, e) =>
+ {
+ _horizAligner.SpaceBetweenItems = e.NewValue is { } && e.NewValue.Value;
+
+ foreach (View view in appWindow.Subviews.Where (v => v.X is PosAlign))
+ {
+ if (view.X is PosAlign j)
+ {
+ j.Aligner.SpaceBetweenItems = _horizAligner.SpaceBetweenItems;
+ }
+ }
+ };
+ appWindow.Add (putSpaces);
+
+ CheckBox margin = new ()
+ {
+ X = Pos.Left (putSpaces),
+ Y = Pos.Bottom (putSpaces),
+ ColorScheme = colorScheme,
+ Text = "Margin"
+ };
+
+ margin.Toggled += (s, e) =>
+ {
+ _leftMargin = e.NewValue is { } && e.NewValue.Value ? 1 : 0;
+
+ foreach (View view in appWindow.Subviews.Where (v => v.X is PosAlign))
+ {
+ // Skip the justification radio group
+ if (view != alignRadioGroup)
+ {
+ view.Margin.Thickness = new (_leftMargin, 0, 0, 0);
+ }
+ }
+ };
+ appWindow.Add (margin);
+
+ List addedViews =
+ [
+ new ()
+ {
+ X = Pos.Align (_horizAligner.Alignment),
+ Y = Pos.Center (),
+ Text = NumberToWords.Convert (0)
+ }
+ ];
+
+ Buttons.NumericUpDown addedViewsUpDown = new Buttons.NumericUpDown
+ {
+ X = Pos.Align (_horizAligner.Alignment),
+ Y = Pos.Top (alignRadioGroup),
+ Width = 9,
+ Title = "Added",
+ ColorScheme = colorScheme,
+ BorderStyle = LineStyle.None,
+ Value = addedViews.Count
+ };
+ addedViewsUpDown.Border.Thickness = new (0, 1, 0, 0);
+
+ addedViewsUpDown.ValueChanging += (s, e) =>
+ {
+ if (e.NewValue < 0)
+ {
+ e.Cancel = true;
+
+ return;
+ }
+
+ // Add or remove buttons
+ if (e.NewValue < e.OldValue)
+ {
+ // Remove buttons
+ for (int i = e.OldValue - 1; i >= e.NewValue; i--)
+ {
+ Button button = addedViews [i];
+ appWindow.Remove (button);
+ addedViews.RemoveAt (i);
+ button.Dispose ();
+ }
+ }
+
+ if (e.NewValue > e.OldValue)
+ {
+ // Add buttons
+ for (int i = e.OldValue; i < e.NewValue; i++)
+ {
+ var button = new Button
+ {
+ X = Pos.Align (_horizAligner.Alignment),
+ Y = Pos.Center (),
+ Text = NumberToWords.Convert (i + 1)
+ };
+ appWindow.Add (button);
+ addedViews.Add (button);
+ }
+ }
+ };
+ appWindow.Add (addedViewsUpDown);
+
+ appWindow.Add (addedViews [0]);
+ }
+
+ private void SetupVerticalControls (Window appWindow)
+ {
+ ColorScheme colorScheme = Colors.ColorSchemes ["Error"];
+
+ RadioGroup alignRadioGroup = new ()
+ {
+ X = 0,
+ Y = Pos.Align (_vertAligner.Alignment),
+ RadioLabels = new [] { "Top", "Bottom", "Centered", "Justified", "FirstTopRestBottom", "LastBottomRestTop" },
+ ColorScheme = colorScheme
+ };
+
+ alignRadioGroup.SelectedItemChanged += (s, e) =>
+ {
+ _vertAligner.Alignment =
+ (Alignment)Enum.Parse (typeof (Alignment), alignRadioGroup.RadioLabels [alignRadioGroup.SelectedItem]);
+
+ foreach (View view in appWindow.Subviews.Where (v => v.Y is PosAlign))
+ {
+ if (view.Y is PosAlign j)
+ {
+ var newJust = new PosAlign (_vertAligner.Alignment)
+ {
+ Aligner =
+ {
+ SpaceBetweenItems = _vertAligner.SpaceBetweenItems
+ }
+ };
+ view.Y = newJust;
+ }
+ }
+ };
+ appWindow.Add (alignRadioGroup);
+
+ CheckBox putSpaces = new ()
+ {
+ X = 0,
+ Y = Pos.Align (_vertAligner.Alignment),
+ ColorScheme = colorScheme,
+ Text = "Spaces",
+ Checked = true
+ };
+
+ putSpaces.Toggled += (s, e) =>
+ {
+ _vertAligner.SpaceBetweenItems = e.NewValue is { } && e.NewValue.Value;
+
+ foreach (View view in appWindow.Subviews.Where (v => v.Y is PosAlign))
+ {
+ if (view.Y is PosAlign j)
+ {
+ j.Aligner.SpaceBetweenItems = _vertAligner.SpaceBetweenItems;
+ }
+ }
+ };
+ appWindow.Add (putSpaces);
+
+ CheckBox margin = new ()
+ {
+ X = Pos.Right (putSpaces) + 1,
+ Y = Pos.Top (putSpaces),
+ ColorScheme = colorScheme,
+ Text = "Margin"
+ };
+
+ margin.Toggled += (s, e) =>
+ {
+ _topMargin = e.NewValue is { } && e.NewValue.Value ? 1 : 0;
+
+ foreach (View view in appWindow.Subviews.Where (v => v.Y is PosAlign))
+ {
+ // Skip the justification radio group
+ if (view != alignRadioGroup)
+ {
+ // BUGBUG: This is a hack to work around #3469
+ if (view is CheckBox)
+ {
+ view.Height = 1 + _topMargin;
+ }
+
+ view.Margin.Thickness = new (0, _topMargin, 0, 0);
+ }
+ }
+ };
+ appWindow.Add (margin);
+
+ List addedViews =
+ [
+ new ()
+ {
+ X = 0,
+ Y = Pos.Align (_vertAligner.Alignment),
+ Text = NumberToWords.Convert (0)
+ }
+ ];
+
+ Buttons.NumericUpDown addedViewsUpDown = new Buttons.NumericUpDown
+ {
+ X = 0,
+ Y = Pos.Align (_vertAligner.Alignment),
+ Width = 9,
+ Title = "Added",
+ ColorScheme = colorScheme,
+ BorderStyle = LineStyle.None,
+ Value = addedViews.Count
+ };
+ addedViewsUpDown.Border.Thickness = new (0, 1, 0, 0);
+
+ addedViewsUpDown.ValueChanging += (s, e) =>
+ {
+ if (e.NewValue < 0)
+ {
+ e.Cancel = true;
+
+ return;
+ }
+
+ // Add or remove buttons
+ if (e.NewValue < e.OldValue)
+ {
+ // Remove buttons
+ for (int i = e.OldValue - 1; i >= e.NewValue; i--)
+ {
+ CheckBox button = addedViews [i];
+ appWindow.Remove (button);
+ addedViews.RemoveAt (i);
+ button.Dispose ();
+ }
+ }
+
+ if (e.NewValue > e.OldValue)
+ {
+ // Add buttons
+ for (int i = e.OldValue; i < e.NewValue; i++)
+ {
+ var button = new CheckBox
+ {
+ X = 0,
+ Y = Pos.Align (_vertAligner.Alignment),
+ Text = NumberToWords.Convert (i + 1)
+ };
+ appWindow.Add (button);
+ addedViews.Add (button);
+ }
+ }
+ };
+ appWindow.Add (addedViewsUpDown);
+
+ appWindow.Add (addedViews [0]);
+ }
+
+ private void Setup3by3Grid (Window appWindow)
+ {
+ var container = new View
+ {
+ Title = "3 by 3",
+ BorderStyle = LineStyle.Single,
+ X = Pos.AnchorEnd (),
+ Y = Pos.AnchorEnd (),
+ Width = Dim.Percent (30),
+ Height = Dim.Percent (30)
+ };
+
+ for (var i = 0; i < 9; i++)
+
+ {
+ var v = new View
+ {
+ Title = $"{i}",
+ BorderStyle = LineStyle.Dashed,
+ Height = 3,
+ Width = 5
+ };
+
+ v.X = Pos.Align (Alignment.Right, i / 3);
+ v.Y = Pos.Align (Alignment.Justified, i % 3 + 10);
+
+ container.Add (v);
+ }
+
+ appWindow.Add (container);
+ }
+}
diff --git a/UICatalog/Scenarios/ProgressBarStyles.cs b/UICatalog/Scenarios/ProgressBarStyles.cs
index f450ad73d..9881ca292 100644
--- a/UICatalog/Scenarios/ProgressBarStyles.cs
+++ b/UICatalog/Scenarios/ProgressBarStyles.cs
@@ -50,13 +50,12 @@ public class ProgressBarStyles : Scenario
var pbList = new ListView
{
Title = "Focused ProgressBar",
- Y = 0,
+ Y = Pos.Align (Alignment.Top),
X = Pos.Center (),
Width = Dim.Auto (),
Height = Dim.Auto (),
BorderStyle = LineStyle.Single
};
-
container.Add (pbList);
#region ColorPicker
@@ -97,7 +96,9 @@ public class ProgressBarStyles : Scenario
var fgColorPickerBtn = new Button
{
- Text = "Foreground HotNormal Color", X = Pos.Center (), Y = Pos.Bottom (pbList)
+ Text = "Foreground HotNormal Color",
+ X = Pos.Center (),
+ Y = Pos.Align (Alignment.Top),
};
container.Add (fgColorPickerBtn);
@@ -122,7 +123,9 @@ public class ProgressBarStyles : Scenario
var bgColorPickerBtn = new Button
{
- X = Pos.Center (), Y = Pos.Bottom (fgColorPickerBtn), Text = "Background HotNormal Color"
+ X = Pos.Center (),
+ Y = Pos.Align (Alignment.Top),
+ Text = "Background HotNormal Color"
};
container.Add (bgColorPickerBtn);
@@ -155,19 +158,24 @@ public class ProgressBarStyles : Scenario
BorderStyle = LineStyle.Single,
Title = "ProgressBarFormat",
X = Pos.Left (pbList),
- Y = Pos.Bottom (bgColorPickerBtn) + 1,
+ Y = Pos.Align (Alignment.Top),
RadioLabels = pbFormatEnum.Select (e => e.ToString ()).ToArray ()
};
container.Add (rbPBFormat);
- var button = new Button { X = Pos.Center (), Y = Pos.Bottom (rbPBFormat) + 1, Text = "Start timer" };
+ var button = new Button
+ {
+ X = Pos.Center (),
+ Y = Pos.Align (Alignment.Top),
+ Text = "Start timer"
+ };
container.Add (button);
var blocksPB = new ProgressBar
{
Title = "Blocks",
X = Pos.Center (),
- Y = Pos.Bottom (button) + 1,
+ Y = Pos.Align (Alignment.Top),
Width = Dim.Percent (50),
BorderStyle = LineStyle.Single,
CanFocus = true
@@ -180,7 +188,7 @@ public class ProgressBarStyles : Scenario
{
Title = "Continuous",
X = Pos.Center (),
- Y = Pos.Bottom (blocksPB) + 1,
+ Y = Pos.Align (Alignment.Top),
Width = Dim.Percent (50),
ProgressBarStyle = ProgressBarStyle.Continuous,
BorderStyle = LineStyle.Single,
@@ -230,7 +238,7 @@ public class ProgressBarStyles : Scenario
{
Title = "Marquee Blocks",
X = Pos.Center (),
- Y = Pos.Bottom (ckbBidirectional) + 1,
+ Y = Pos.Align (Alignment.Top),
Width = Dim.Percent (50),
ProgressBarStyle = ProgressBarStyle.MarqueeBlocks,
BorderStyle = LineStyle.Single,
@@ -242,8 +250,8 @@ public class ProgressBarStyles : Scenario
{
Title = "Marquee Continuous",
X = Pos.Center (),
- Y = Pos.Bottom (marqueesBlocksPB) + 1,
- Width = Dim.Percent (50),
+ Y = Pos.Align (Alignment.Top),
+ Width = Dim.Width (pbList),
ProgressBarStyle = ProgressBarStyle.MarqueeContinuous,
BorderStyle = LineStyle.Single,
CanFocus = true
diff --git a/UICatalog/Scenarios/TableEditor.cs b/UICatalog/Scenarios/TableEditor.cs
index 468c66418..a3abcacf1 100644
--- a/UICatalog/Scenarios/TableEditor.cs
+++ b/UICatalog/Scenarios/TableEditor.cs
@@ -707,7 +707,7 @@ public class TableEditor : Scenario
Text = "0,0",
Width = Dim.Fill (),
- TextAlignment = TextAlignment.Right
+ TextAlignment = Alignment.Right
};
Win.Add (selectedCellLabel);
@@ -1107,12 +1107,12 @@ public class TableEditor : Scenario
{
_tableView.Style.ColumnStyles.Clear ();
- var alignMid = new ColumnStyle { Alignment = TextAlignment.Centered };
- var alignRight = new ColumnStyle { Alignment = TextAlignment.Right };
+ var alignMid = new ColumnStyle { Alignment = Alignment.Centered };
+ var alignRight = new ColumnStyle { Alignment = Alignment.Right };
var dateFormatStyle = new ColumnStyle
{
- Alignment = TextAlignment.Right,
+ Alignment = Alignment.Right,
RepresentationGetter = v =>
v is DateTime d ? d.ToString ("yyyy-MM-dd") : v.ToString ()
};
@@ -1126,15 +1126,15 @@ public class TableEditor : Scenario
// align negative values right
d < 0
- ? TextAlignment.Right
+ ? Alignment.Right
:
// align positive values left
- TextAlignment.Left
+ Alignment.Left
:
// not a double
- TextAlignment.Left,
+ Alignment.Left,
ColorGetter = a => a.CellValue is double d
?
diff --git a/UICatalog/Scenarios/Text.cs b/UICatalog/Scenarios/Text.cs
index 19dddd847..6982c122e 100644
--- a/UICatalog/Scenarios/Text.cs
+++ b/UICatalog/Scenarios/Text.cs
@@ -290,7 +290,7 @@ public class Text : Scenario
X = Pos.Right (regexProvider) + 1,
Y = Pos.Y (regexProvider),
Width = 30,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Provider = provider2
};
Win.Add (regexProviderField);
diff --git a/UICatalog/Scenarios/TextAlignmentsAndDirection.cs b/UICatalog/Scenarios/TextAlignmentAndDirection.cs
similarity index 85%
rename from UICatalog/Scenarios/TextAlignmentsAndDirection.cs
rename to UICatalog/Scenarios/TextAlignmentAndDirection.cs
index 1f70f7d7a..ecec308e3 100644
--- a/UICatalog/Scenarios/TextAlignmentsAndDirection.cs
+++ b/UICatalog/Scenarios/TextAlignmentAndDirection.cs
@@ -6,9 +6,9 @@ using Terminal.Gui;
namespace UICatalog.Scenarios;
-[ScenarioMetadata ("Text Alignment and Direction", "Demos horizontal and vertical text alignment and text direction.")]
+[ScenarioMetadata ("Text Alignment and Direction", "Demos horizontal and vertical text alignment and direction.")]
[ScenarioCategory ("Text and Formatting")]
-public class TextAlignmentsAndDirections : Scenario
+public class TextAlignmentAndDirection : Scenario
{
public override void Main ()
{
@@ -35,7 +35,7 @@ public class TextAlignmentsAndDirections : Scenario
Y = 1,
Width = 9,
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
ColorScheme = Colors.ColorSchemes ["Dialog"],
Text = "Left"
};
@@ -46,7 +46,7 @@ public class TextAlignmentsAndDirections : Scenario
Y = 2,
Width = 9,
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
ColorScheme = Colors.ColorSchemes ["Dialog"],
Text = "Centered"
};
@@ -57,7 +57,7 @@ public class TextAlignmentsAndDirections : Scenario
Y = 3,
Width = 9,
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
ColorScheme = Colors.ColorSchemes ["Dialog"],
Text = "Right"
};
@@ -68,7 +68,7 @@ public class TextAlignmentsAndDirections : Scenario
Y = 4,
Width = 9,
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
ColorScheme = Colors.ColorSchemes ["Dialog"],
Text = "Justified"
};
@@ -80,7 +80,7 @@ public class TextAlignmentsAndDirections : Scenario
Width = Dim.Fill (1) - 9,
Height = 1,
ColorScheme = color1,
- TextAlignment = TextAlignment.Left,
+ TextAlignment = Alignment.Left,
Text = txt
};
@@ -91,7 +91,7 @@ public class TextAlignmentsAndDirections : Scenario
Width = Dim.Fill (1) - 9,
Height = 1,
ColorScheme = color2,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Text = txt
};
@@ -102,7 +102,7 @@ public class TextAlignmentsAndDirections : Scenario
Width = Dim.Fill (1) - 9,
Height = 1,
ColorScheme = color1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = txt
};
@@ -113,7 +113,7 @@ public class TextAlignmentsAndDirections : Scenario
Width = Dim.Fill (1) - 9,
Height = 1,
ColorScheme = color2,
- TextAlignment = TextAlignment.Justified,
+ TextAlignment = Alignment.Justified,
Text = txt
};
@@ -141,7 +141,7 @@ public class TextAlignmentsAndDirections : Scenario
Height = 9,
ColorScheme = color1,
TextDirection = TextDirection.TopBottom_LeftRight,
- VerticalTextAlignment = VerticalTextAlignment.Bottom,
+ VerticalTextAlignment = Alignment.Bottom,
Text = "Top"
};
labelVT.TextFormatter.WordWrap = false;
@@ -154,8 +154,8 @@ public class TextAlignmentsAndDirections : Scenario
Height = 9,
ColorScheme = color1,
TextDirection = TextDirection.TopBottom_LeftRight,
- VerticalTextAlignment = VerticalTextAlignment.Bottom,
- Text = "Middle"
+ VerticalTextAlignment = Alignment.Bottom,
+ Text = "Centered"
};
labelVM.TextFormatter.WordWrap = false;
@@ -167,7 +167,7 @@ public class TextAlignmentsAndDirections : Scenario
Height = 9,
ColorScheme = color1,
TextDirection = TextDirection.TopBottom_LeftRight,
- VerticalTextAlignment = VerticalTextAlignment.Bottom,
+ VerticalTextAlignment = Alignment.Bottom,
Text = "Bottom"
};
labelVB.TextFormatter.WordWrap = false;
@@ -180,7 +180,7 @@ public class TextAlignmentsAndDirections : Scenario
Height = 9,
ColorScheme = color1,
TextDirection = TextDirection.TopBottom_LeftRight,
- VerticalTextAlignment = VerticalTextAlignment.Bottom,
+ VerticalTextAlignment = Alignment.Bottom,
Text = "Justified"
};
labelVJ.TextFormatter.WordWrap = false;
@@ -193,7 +193,7 @@ public class TextAlignmentsAndDirections : Scenario
Height = Dim.Fill (1),
ColorScheme = color1,
TextDirection = TextDirection.TopBottom_LeftRight,
- VerticalTextAlignment = VerticalTextAlignment.Top,
+ VerticalTextAlignment = Alignment.Top,
Text = txt
};
txtLabelVT.TextFormatter.WordWrap = false;
@@ -206,7 +206,7 @@ public class TextAlignmentsAndDirections : Scenario
Height = Dim.Fill (1),
ColorScheme = color2,
TextDirection = TextDirection.TopBottom_LeftRight,
- VerticalTextAlignment = VerticalTextAlignment.Middle,
+ VerticalTextAlignment = Alignment.Centered,
Text = txt
};
txtLabelVM.TextFormatter.WordWrap = false;
@@ -219,7 +219,7 @@ public class TextAlignmentsAndDirections : Scenario
Height = Dim.Fill (1),
ColorScheme = color1,
TextDirection = TextDirection.TopBottom_LeftRight,
- VerticalTextAlignment = VerticalTextAlignment.Bottom,
+ VerticalTextAlignment = Alignment.Bottom,
Text = txt
};
txtLabelVB.TextFormatter.WordWrap = false;
@@ -232,7 +232,7 @@ public class TextAlignmentsAndDirections : Scenario
Height = Dim.Fill (1),
ColorScheme = color2,
TextDirection = TextDirection.TopBottom_LeftRight,
- VerticalTextAlignment = VerticalTextAlignment.Justified,
+ VerticalTextAlignment = Alignment.Justified,
Text = txt
};
txtLabelVJ.TextFormatter.WordWrap = false;
@@ -268,8 +268,8 @@ public class TextAlignmentsAndDirections : Scenario
Y = 1,
Width = Dim.Percent (100f / 3f),
Height = Dim.Percent (100f / 3f),
- TextAlignment = TextAlignment.Left,
- VerticalTextAlignment = VerticalTextAlignment.Top,
+ TextAlignment = Alignment.Left,
+ VerticalTextAlignment = Alignment.Top,
ColorScheme = color1,
Text = txt
};
@@ -281,8 +281,8 @@ public class TextAlignmentsAndDirections : Scenario
Y = 1,
Width = Dim.Percent (100f / 3f),
Height = Dim.Percent (100f / 3f),
- TextAlignment = TextAlignment.Centered,
- VerticalTextAlignment = VerticalTextAlignment.Top,
+ TextAlignment = Alignment.Centered,
+ VerticalTextAlignment = Alignment.Top,
ColorScheme = color1,
Text = txt
};
@@ -294,8 +294,8 @@ public class TextAlignmentsAndDirections : Scenario
Y = 1,
Width = Dim.Percent (100f, true),
Height = Dim.Percent (100f / 3f),
- TextAlignment = TextAlignment.Right,
- VerticalTextAlignment = VerticalTextAlignment.Top,
+ TextAlignment = Alignment.Right,
+ VerticalTextAlignment = Alignment.Top,
ColorScheme = color1,
Text = txt
};
@@ -307,8 +307,8 @@ public class TextAlignmentsAndDirections : Scenario
Y = Pos.Bottom (txtLabelTL) + 1,
Width = Dim.Width (txtLabelTL),
Height = Dim.Percent (100f / 3f),
- TextAlignment = TextAlignment.Left,
- VerticalTextAlignment = VerticalTextAlignment.Middle,
+ TextAlignment = Alignment.Left,
+ VerticalTextAlignment = Alignment.Centered,
ColorScheme = color1,
Text = txt
};
@@ -320,8 +320,8 @@ public class TextAlignmentsAndDirections : Scenario
Y = Pos.Bottom (txtLabelTC) + 1,
Width = Dim.Width (txtLabelTC),
Height = Dim.Percent (100f / 3f),
- TextAlignment = TextAlignment.Centered,
- VerticalTextAlignment = VerticalTextAlignment.Middle,
+ TextAlignment = Alignment.Centered,
+ VerticalTextAlignment = Alignment.Centered,
ColorScheme = color1,
Text = txt
};
@@ -333,8 +333,8 @@ public class TextAlignmentsAndDirections : Scenario
Y = Pos.Bottom (txtLabelTR) + 1,
Width = Dim.Percent (100f, true),
Height = Dim.Percent (100f / 3f),
- TextAlignment = TextAlignment.Right,
- VerticalTextAlignment = VerticalTextAlignment.Middle,
+ TextAlignment = Alignment.Right,
+ VerticalTextAlignment = Alignment.Centered,
ColorScheme = color1,
Text = txt
};
@@ -346,8 +346,8 @@ public class TextAlignmentsAndDirections : Scenario
Y = Pos.Bottom (txtLabelML) + 1,
Width = Dim.Width (txtLabelML),
Height = Dim.Percent (100f, true),
- TextAlignment = TextAlignment.Left,
- VerticalTextAlignment = VerticalTextAlignment.Bottom,
+ TextAlignment = Alignment.Left,
+ VerticalTextAlignment = Alignment.Bottom,
ColorScheme = color1,
Text = txt
};
@@ -359,8 +359,8 @@ public class TextAlignmentsAndDirections : Scenario
Y = Pos.Bottom (txtLabelMC) + 1,
Width = Dim.Width (txtLabelMC),
Height = Dim.Percent (100f, true),
- TextAlignment = TextAlignment.Centered,
- VerticalTextAlignment = VerticalTextAlignment.Bottom,
+ TextAlignment = Alignment.Centered,
+ VerticalTextAlignment = Alignment.Bottom,
ColorScheme = color1,
Text = txt
};
@@ -372,8 +372,8 @@ public class TextAlignmentsAndDirections : Scenario
Y = Pos.Bottom (txtLabelMR) + 1,
Width = Dim.Percent (100f, true),
Height = Dim.Percent (100f, true),
- TextAlignment = TextAlignment.Right,
- VerticalTextAlignment = VerticalTextAlignment.Bottom,
+ TextAlignment = Alignment.Right,
+ VerticalTextAlignment = Alignment.Bottom,
ColorScheme = color1,
Text = txt
};
@@ -389,7 +389,7 @@ public class TextAlignmentsAndDirections : Scenario
mtxts.Add (txtLabelBC);
mtxts.Add (txtLabelBR);
- // Save Alignments in Data
+ // Save Alignment in Data
foreach (Label t in mtxts)
{
t.Data = new { h = t.TextAlignment, v = t.VerticalTextAlignment };
@@ -593,8 +593,8 @@ public class TextAlignmentsAndDirections : Scenario
foreach (Label t in mtxts)
{
- t.TextAlignment = (TextAlignment)((dynamic)t.Data).h;
- t.VerticalTextAlignment = (VerticalTextAlignment)((dynamic)t.Data).v;
+ t.TextAlignment = (Alignment)((dynamic)t.Data).h;
+ t.VerticalTextAlignment = (Alignment)((dynamic)t.Data).v;
}
}
else
@@ -611,16 +611,16 @@ public class TextAlignmentsAndDirections : Scenario
switch (justifyOptions.SelectedItem)
{
case 0:
- t.VerticalTextAlignment = VerticalTextAlignment.Justified;
+ t.VerticalTextAlignment = Alignment.Justified;
t.TextAlignment = ((dynamic)t.Data).h;
break;
case 1:
- t.VerticalTextAlignment = (VerticalTextAlignment)((dynamic)t.Data).v;
- t.TextAlignment = TextAlignment.Justified;
+ t.VerticalTextAlignment = (Alignment)((dynamic)t.Data).v;
+ t.TextAlignment = Alignment.Justified;
break;
case 2:
- t.VerticalTextAlignment = VerticalTextAlignment.Justified;
- t.TextAlignment = TextAlignment.Justified;
+ t.VerticalTextAlignment = Alignment.Justified;
+ t.TextAlignment = Alignment.Justified;
break;
}
}
@@ -629,16 +629,16 @@ public class TextAlignmentsAndDirections : Scenario
switch (justifyOptions.SelectedItem)
{
case 0:
- t.TextAlignment = TextAlignment.Justified;
+ t.TextAlignment = Alignment.Justified;
t.VerticalTextAlignment = ((dynamic)t.Data).v;
break;
case 1:
- t.TextAlignment = (TextAlignment)((dynamic)t.Data).h;
- t.VerticalTextAlignment = VerticalTextAlignment.Justified;
+ t.TextAlignment = (Alignment)((dynamic)t.Data).h;
+ t.VerticalTextAlignment = Alignment.Justified;
break;
case 2:
- t.TextAlignment = TextAlignment.Justified;
- t.VerticalTextAlignment = VerticalTextAlignment.Justified;
+ t.TextAlignment = Alignment.Justified;
+ t.VerticalTextAlignment = Alignment.Justified;
break;
}
}
diff --git a/UICatalog/Scenarios/TextAlignments.cs b/UICatalog/Scenarios/TextAlignments.cs
deleted file mode 100644
index 92ee344e1..000000000
--- a/UICatalog/Scenarios/TextAlignments.cs
+++ /dev/null
@@ -1,142 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using Terminal.Gui;
-
-namespace UICatalog.Scenarios;
-
-[ScenarioMetadata ("Simple Text Alignment", "Demonstrates horizontal text alignment")]
-[ScenarioCategory ("Text and Formatting")]
-public class TextAlignments : Scenario
-{
- public override void Setup ()
- {
- Win.X = 10;
- Win.Width = Dim.Fill (10);
-
- var txt = "Hello world, how are you today? Pretty neat!";
- var unicodeSampleText = "A Unicode sentence (пÑРвеÑ) has words.";
-
- List alignments = Enum.GetValues (typeof (TextAlignment)).Cast ().ToList ();
- Label [] singleLines = new Label [alignments.Count];
- Label [] multipleLines = new Label [alignments.Count];
-
- var multiLineHeight = 5;
-
- foreach (TextAlignment alignment in alignments)
- {
- singleLines [(int)alignment] = new()
- {
- TextAlignment = alignment,
- X = 1,
-
- Width = Dim.Fill (1),
- Height = 1,
- ColorScheme = Colors.ColorSchemes ["Dialog"],
- Text = txt
- };
-
- multipleLines [(int)alignment] = new()
- {
- TextAlignment = alignment,
- X = 1,
-
- Width = Dim.Fill (1),
- Height = multiLineHeight,
- ColorScheme = Colors.ColorSchemes ["Dialog"],
- Text = txt
- };
- }
-
- // Add a label & text field so we can demo IsDefault
- var editLabel = new Label { X = 0, Y = 0, Text = "Text:" };
- Win.Add (editLabel);
-
- var edit = new TextView
- {
- X = Pos.Right (editLabel) + 1,
- Y = Pos.Y (editLabel),
- Width = Dim.Fill ("Text:".Length + " Unicode Sample".Length + 2),
- Height = 4,
- ColorScheme = Colors.ColorSchemes ["TopLevel"],
- Text = txt
- };
-
- edit.TextChanged += (s, e) =>
- {
- foreach (TextAlignment alignment in alignments)
- {
- singleLines [(int)alignment].Text = edit.Text;
- multipleLines [(int)alignment].Text = edit.Text;
- }
- };
- Win.Add (edit);
-
- var unicodeSample = new Button { X = Pos.Right (edit) + 1, Y = 0, Text = "Unicode Sample" };
- unicodeSample.Accept += (s, e) => { edit.Text = unicodeSampleText; };
- Win.Add (unicodeSample);
-
- var update = new Button { X = Pos.Right (edit) + 1, Y = Pos.Bottom (edit) - 1, Text = "_Update" };
-
- update.Accept += (s, e) =>
- {
- foreach (TextAlignment alignment in alignments)
- {
- singleLines [(int)alignment].Text = edit.Text;
- multipleLines [(int)alignment].Text = edit.Text;
- }
- };
- Win.Add (update);
-
- var enableHotKeyCheckBox = new CheckBox
- {
- X = 0, Y = Pos.Bottom (edit), Text = "Enable Hotkey (_)", Checked = false
- };
-
- Win.Add (enableHotKeyCheckBox);
-
- var label = new Label
- {
- Y = Pos.Bottom (enableHotKeyCheckBox) + 1, Text = "Demonstrating single-line (should clip):"
- };
- Win.Add (label);
-
- foreach (TextAlignment alignment in alignments)
- {
- label = new() { Y = Pos.Bottom (label), Text = $"{alignment}:" };
- Win.Add (label);
- singleLines [(int)alignment].Y = Pos.Bottom (label);
- Win.Add (singleLines [(int)alignment]);
- label = singleLines [(int)alignment];
- }
-
- txt += "\nSecond line\n\nFourth Line.";
- label = new() { Y = Pos.Bottom (label), Text = "Demonstrating multi-line and word wrap:" };
- Win.Add (label);
-
- foreach (TextAlignment alignment in alignments)
- {
- label = new() { Y = Pos.Bottom (label), Text = $"{alignment}:" };
- Win.Add (label);
- multipleLines [(int)alignment].Y = Pos.Bottom (label);
- Win.Add (multipleLines [(int)alignment]);
- label = multipleLines [(int)alignment];
- }
-
- enableHotKeyCheckBox.Toggled += (s, e) =>
- {
- foreach (TextAlignment alignment in alignments)
- {
- singleLines [(int)alignment].HotKeySpecifier =
- e.OldValue == true ? (Rune)0xffff : (Rune)'_';
-
- multipleLines [(int)alignment].HotKeySpecifier =
- e.OldValue == true ? (Rune)0xffff : (Rune)'_';
- }
-
- Win.SetNeedsDisplay ();
- Win.LayoutSubviews ();
- };
- }
-}
diff --git a/UICatalog/Scenarios/TextFormatterDemo.cs b/UICatalog/Scenarios/TextFormatterDemo.cs
index 00029c033..ac5a8cb33 100644
--- a/UICatalog/Scenarios/TextFormatterDemo.cs
+++ b/UICatalog/Scenarios/TextFormatterDemo.cs
@@ -63,17 +63,29 @@ public class TextFormatterDemo : Scenario
app.Add (unicodeCheckBox);
- List alignments = Enum.GetValues (typeof (TextAlignment)).Cast ().ToList ();
+ static IEnumerable GetUniqueEnumValues () where T : Enum
+ {
+ var values = new HashSet ();
+ foreach (T v in Enum.GetValues (typeof (T)))
+ {
+ if (values.Add (v))
+ {
+ yield return v;
+ }
+ }
+ }
+
+ List alignments = new () { Alignment.Left, Alignment.Right, Alignment.Centered, Alignment.Justified };
Label [] singleLines = new Label [alignments.Count];
Label [] multipleLines = new Label [alignments.Count];
var multiLineHeight = 5;
- foreach (TextAlignment alignment in alignments)
+ for (int i = 0; i < alignments.Count; i++)
{
- singleLines [(int)alignment] = new()
+ singleLines [i] = new ()
{
- TextAlignment = alignment,
+ TextAlignment = alignments [i],
X = 0,
Width = Dim.Fill (),
@@ -82,9 +94,9 @@ public class TextFormatterDemo : Scenario
Text = text
};
- multipleLines [(int)alignment] = new()
+ multipleLines [i] = new ()
{
- TextAlignment = alignment,
+ TextAlignment = alignments [i],
X = 0,
Width = Dim.Fill (),
@@ -100,33 +112,33 @@ public class TextFormatterDemo : Scenario
};
app.Add (label);
- foreach (TextAlignment alignment in alignments)
+ for (int i = 0; i < alignments.Count; i++)
{
- label = new() { Y = Pos.Bottom (label), Text = $"{alignment}:" };
+ label = new () { Y = Pos.Bottom (label), Text = $"{alignments [i]}:" };
app.Add (label);
- singleLines [(int)alignment].Y = Pos.Bottom (label);
- app.Add (singleLines [(int)alignment]);
- label = singleLines [(int)alignment];
+ singleLines [i].Y = Pos.Bottom (label);
+ app.Add (singleLines [i]);
+ label = singleLines [i];
}
- label = new() { Y = Pos.Bottom (label), Text = "Demonstrating multi-line and word wrap:" };
+ label = new () { Y = Pos.Bottom (label), Text = "Demonstrating multi-line and word wrap:" };
app.Add (label);
- foreach (TextAlignment alignment in alignments)
+ for (int i = 0; i < alignments.Count; i++)
{
- label = new() { Y = Pos.Bottom (label), Text = $"{alignment}:" };
+ label = new () { Y = Pos.Bottom (label), Text = $"{alignments [i]}:" };
app.Add (label);
- multipleLines [(int)alignment].Y = Pos.Bottom (label);
- app.Add (multipleLines [(int)alignment]);
- label = multipleLines [(int)alignment];
+ multipleLines [i].Y = Pos.Bottom (label);
+ app.Add (multipleLines [i]);
+ label = multipleLines [i];
}
unicodeCheckBox.Toggled += (s, e) =>
{
- foreach (TextAlignment alignment in alignments)
+ for (int i = 0; i < alignments.Count; i++)
{
- singleLines [(int)alignment].Text = e.OldValue == true ? text : unicode;
- multipleLines [(int)alignment].Text = e.OldValue == true ? text : unicode;
+ singleLines [i].Text = e.OldValue == true ? text : unicode;
+ multipleLines [i].Text = e.OldValue == true ? text : unicode;
}
};
diff --git a/UICatalog/Scenarios/TimeAndDate.cs b/UICatalog/Scenarios/TimeAndDate.cs
index ddfc8fc7d..c5b6117fe 100644
--- a/UICatalog/Scenarios/TimeAndDate.cs
+++ b/UICatalog/Scenarios/TimeAndDate.cs
@@ -57,7 +57,7 @@ public class TimeAndDate : Scenario
{
X = Pos.Center (),
Y = Pos.Bottom (longDate) + 1,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = Dim.Fill (),
Text = "Old Time: "
@@ -68,7 +68,7 @@ public class TimeAndDate : Scenario
{
X = Pos.Center (),
Y = Pos.Bottom (_lblOldTime) + 1,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = Dim.Fill (),
Text = "New Time: "
@@ -79,7 +79,7 @@ public class TimeAndDate : Scenario
{
X = Pos.Center (),
Y = Pos.Bottom (_lblNewTime) + 1,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = Dim.Fill (),
Text = "Time Format: "
@@ -90,7 +90,7 @@ public class TimeAndDate : Scenario
{
X = Pos.Center (),
Y = Pos.Bottom (_lblTimeFmt) + 2,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = Dim.Fill (),
Text = "Old Date: "
@@ -101,7 +101,7 @@ public class TimeAndDate : Scenario
{
X = Pos.Center (),
Y = Pos.Bottom (_lblOldDate) + 1,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = Dim.Fill (),
Text = "New Date: "
@@ -112,7 +112,7 @@ public class TimeAndDate : Scenario
{
X = Pos.Center (),
Y = Pos.Bottom (_lblNewDate) + 1,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = Dim.Fill (),
Text = "Date Format: "
diff --git a/UICatalog/Scenarios/Unicode.cs b/UICatalog/Scenarios/Unicode.cs
index 987c50934..4f866f704 100644
--- a/UICatalog/Scenarios/Unicode.cs
+++ b/UICatalog/Scenarios/Unicode.cs
@@ -132,8 +132,8 @@ public class UnicodeInMenu : Scenario
Width = Dim.Percent (50),
Height = 1,
- TextAlignment = TextAlignment.Right,
- Text = $"Align Right - {gitString}"
+ TextAlignment = Alignment.Right,
+ Text = $"Justify Right - {gitString}"
};
Win.Add (checkBox, checkBoxRight);
diff --git a/UICatalog/Scenarios/ViewExperiments.cs b/UICatalog/Scenarios/ViewExperiments.cs
index be9bbdf5c..170c60861 100644
--- a/UICatalog/Scenarios/ViewExperiments.cs
+++ b/UICatalog/Scenarios/ViewExperiments.cs
@@ -60,7 +60,7 @@ public class ViewExperiments : Scenario
Width = 17,
Title = "Window 1",
Text = "Window #2",
- TextAlignment = TextAlignment.Centered
+ TextAlignment = Alignment.Centered
};
window1.Margin.Thickness = new (0);
@@ -84,7 +84,7 @@ public class ViewExperiments : Scenario
Width = 37,
Title = "Window2",
Text = "Window #2 (Right(window1)+1",
- TextAlignment = TextAlignment.Centered
+ TextAlignment = Alignment.Centered
};
//view3.InitializeFrames ();
@@ -109,7 +109,7 @@ public class ViewExperiments : Scenario
Width = 37,
Title = "View4",
Text = "View #4 (Right(window2)+1",
- TextAlignment = TextAlignment.Centered
+ TextAlignment = Alignment.Centered
};
//view4.InitializeFrames ();
@@ -134,7 +134,7 @@ public class ViewExperiments : Scenario
Width = Dim.Fill (),
Title = "View5",
Text = "View #5 (Right(view4)+1 Fill",
- TextAlignment = TextAlignment.Centered
+ TextAlignment = Alignment.Centered
};
//view5.InitializeFrames ();
@@ -181,7 +181,7 @@ public class ViewExperiments : Scenario
X = Pos.Center (),
Y = Pos.Percent (50),
Width = 30,
- TextAlignment = TextAlignment.Centered
+ TextAlignment = Alignment.Centered
};
label50.Border.Thickness = new (1, 3, 1, 1);
label50.Height = 5;
diff --git a/UICatalog/Scenarios/Wizards.cs b/UICatalog/Scenarios/Wizards.cs
index 22f7e042e..d5c25b322 100644
--- a/UICatalog/Scenarios/Wizards.cs
+++ b/UICatalog/Scenarios/Wizards.cs
@@ -21,7 +21,7 @@ public class Wizards : Scenario
};
Win.Add (frame);
- var label = new Label { X = 0, Y = 0, TextAlignment = TextAlignment.Right, Text = "Width:" };
+ var label = new Label { X = 0, Y = 0, TextAlignment = Alignment.Right, Text = "Width:" };
frame.Add (label);
var widthEdit = new TextField
@@ -41,7 +41,7 @@ public class Wizards : Scenario
Width = Dim.Width (label),
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "Height:"
};
frame.Add (label);
@@ -63,7 +63,7 @@ public class Wizards : Scenario
Width = Dim.Width (label),
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Text = "Title:"
};
frame.Add (label);
@@ -88,7 +88,7 @@ public class Wizards : Scenario
label = new()
{
- X = Pos.Center (), Y = Pos.AnchorEnd (1), TextAlignment = TextAlignment.Right, Text = "Action:"
+ X = Pos.Center (), Y = Pos.AnchorEnd (1), TextAlignment = Alignment.Right, Text = "Action:"
};
Win.Add (label);
diff --git a/UnitTests/Configuration/ConfigurationMangerTests.cs b/UnitTests/Configuration/ConfigurationMangerTests.cs
index 6d3273847..553df407d 100644
--- a/UnitTests/Configuration/ConfigurationMangerTests.cs
+++ b/UnitTests/Configuration/ConfigurationMangerTests.cs
@@ -783,8 +783,7 @@ public class ConfigurationManagerTests
}
}
}
- ],
- ""Dialog.DefaultButtonAlignment"": ""Center""
+ ]
}
}
]
diff --git a/UnitTests/Configuration/ThemeScopeTests.cs b/UnitTests/Configuration/ThemeScopeTests.cs
index 3da7f881a..44bc169a5 100644
--- a/UnitTests/Configuration/ThemeScopeTests.cs
+++ b/UnitTests/Configuration/ThemeScopeTests.cs
@@ -29,12 +29,12 @@ public class ThemeScopeTests
{
Reset ();
Assert.NotEmpty (Themes);
- Assert.Equal (Dialog.ButtonAlignments.Center, Dialog.DefaultButtonAlignment);
+ Assert.Equal (Alignment.Right, Dialog.DefaultButtonAlignment);
- Themes ["Default"] ["Dialog.DefaultButtonAlignment"].PropertyValue = Dialog.ButtonAlignments.Right;
+ Themes ["Default"] ["Dialog.DefaultButtonAlignment"].PropertyValue = Alignment.Centered;
ThemeManager.Themes! [ThemeManager.SelectedTheme]!.Apply ();
- Assert.Equal (Dialog.ButtonAlignments.Right, Dialog.DefaultButtonAlignment);
+ Assert.Equal (Alignment.Centered, Dialog.DefaultButtonAlignment);
Reset ();
}
diff --git a/UnitTests/Configuration/ThemeTests.cs b/UnitTests/Configuration/ThemeTests.cs
index f7d8c732f..a285f5acc 100644
--- a/UnitTests/Configuration/ThemeTests.cs
+++ b/UnitTests/Configuration/ThemeTests.cs
@@ -77,15 +77,15 @@ public class ThemeTests
public void TestSerialize_RoundTrip ()
{
var theme = new ThemeScope ();
- theme ["Dialog.DefaultButtonAlignment"].PropertyValue = Dialog.ButtonAlignments.Right;
+ theme ["Dialog.DefaultButtonAlignment"].PropertyValue = Alignment.Right;
string json = JsonSerializer.Serialize (theme, _jsonOptions);
var deserialized = JsonSerializer.Deserialize (json, _jsonOptions);
Assert.Equal (
- Dialog.ButtonAlignments.Right,
- (Dialog.ButtonAlignments)deserialized ["Dialog.DefaultButtonAlignment"].PropertyValue
+ Alignment.Right,
+ (Alignment)deserialized ["Dialog.DefaultButtonAlignment"].PropertyValue
);
Reset ();
}
diff --git a/UnitTests/Dialogs/DialogTests.cs b/UnitTests/Dialogs/DialogTests.cs
index dc4793c86..b18817205 100644
--- a/UnitTests/Dialogs/DialogTests.cs
+++ b/UnitTests/Dialogs/DialogTests.cs
@@ -32,14 +32,14 @@ public class DialogTests
Title = title,
Width = width,
Height = 1,
- ButtonAlignment = Dialog.ButtonAlignments.Center,
- Buttons = [new () { Text = btn1Text }]
+ ButtonAlignment = Alignment.Centered,
+ Buttons = [new Button { Text = btn1Text }]
};
// Create with no top or bottom border to simplify testing button layout (no need to account for title etc..)
dlg.Border.Thickness = new (1, 0, 1, 0);
runstate = Begin (dlg);
- var buttonRow = $"{CM.Glyphs.VLine} {btn1} {CM.Glyphs.VLine}";
+ var buttonRow = $"{CM.Glyphs.VLine} {btn1} {CM.Glyphs.VLine}";
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
// Now add a second button
@@ -57,14 +57,14 @@ public class DialogTests
Title = title,
Width = width,
Height = 1,
- ButtonAlignment = Dialog.ButtonAlignments.Justify,
- Buttons = [new () { Text = btn1Text }]
+ ButtonAlignment = Alignment.Justified,
+ Buttons = [new Button { Text = btn1Text }]
};
// Create with no top or bottom border to simplify testing button layout (no need to account for title etc..)
dlg.Border.Thickness = new (1, 0, 1, 0);
runstate = Begin (dlg);
- buttonRow = $"{CM.Glyphs.VLine} {btn1}{CM.Glyphs.VLine}";
+ buttonRow = $"{CM.Glyphs.VLine}{btn1} {CM.Glyphs.VLine}";
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
// Now add a second button
@@ -82,8 +82,8 @@ public class DialogTests
Title = title,
Width = width,
Height = 1,
- ButtonAlignment = Dialog.ButtonAlignments.Right,
- Buttons = [new () { Text = btn1Text }]
+ ButtonAlignment = Alignment.Right,
+ Buttons = [new Button { Text = btn1Text }]
};
// Create with no top or bottom border to simplify testing button layout (no need to account for title etc..)
@@ -107,8 +107,8 @@ public class DialogTests
Title = title,
Width = width,
Height = 1,
- ButtonAlignment = Dialog.ButtonAlignments.Left,
- Buttons = [new () { Text = btn1Text }]
+ ButtonAlignment = Alignment.Left,
+ Buttons = [new Button { Text = btn1Text }]
};
// Create with no top or bottom border to simplify testing button layout (no need to account for title etc..)
@@ -153,9 +153,26 @@ public class DialogTests
// Default - Center
(runstate, Dialog dlg) = RunButtonTestDialog (
+ title,
+ width,
+ Alignment.Centered,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
+ TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
+ End (runstate);
+ dlg.Dispose ();
+
+ // Justify
+ buttonRow = $"{CM.Glyphs.VLine}{btn1} {btn2} {btn3} {btn4}{CM.Glyphs.VLine}";
+ Assert.Equal (width, buttonRow.Length);
+
+ (runstate, dlg) = RunButtonTestDialog (
title,
width,
- Dialog.ButtonAlignments.Center,
+ Alignment.Justified,
new Button { Text = btn1Text },
new Button { Text = btn2Text },
new Button { Text = btn3Text },
@@ -165,36 +182,19 @@ public class DialogTests
End (runstate);
dlg.Dispose ();
- // Justify
- buttonRow = $"{CM.Glyphs.VLine}{btn1} {btn2} {btn3} {btn4}{CM.Glyphs.VLine}";
- Assert.Equal (width, buttonRow.Length);
-
- (runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Justify,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
- TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
- End (runstate);
- dlg.Dispose ();
-
// Right
buttonRow = $"{CM.Glyphs.VLine} {btn1} {btn2} {btn3} {btn4}{CM.Glyphs.VLine}";
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Right,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Right,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -204,14 +204,14 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Left,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Left,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -243,12 +243,12 @@ public class DialogTests
// Default - Center
buttonRow =
- $"{CM.Glyphs.VLine}es {CM.Glyphs.RightBracket} {btn2} {btn3} {CM.Glyphs.LeftBracket} neve{CM.Glyphs.VLine}";
+ $"{CM.Glyphs.VLine}{CM.Glyphs.LeftBracket} yes {CM.Glyphs.RightBracket}{btn2}{btn3}{CM.Glyphs.LeftBracket} neve{CM.Glyphs.VLine}";
(runstate, Dialog dlg) = RunButtonTestDialog (
title,
width,
- Dialog.ButtonAlignments.Center,
+ Alignment.Centered,
new Button { Text = btn1Text },
new Button { Text = btn2Text },
new Button { Text = btn3Text },
@@ -264,46 +264,47 @@ public class DialogTests
$"{CM.Glyphs.VLine}{CM.Glyphs.LeftBracket} yes {CM.Glyphs.LeftBracket} no {CM.Glyphs.LeftBracket} maybe {CM.Glyphs.LeftBracket} never {CM.Glyphs.RightBracket}{CM.Glyphs.VLine}";
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Justify,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Justified,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
// Right
- buttonRow = $"{CM.Glyphs.VLine}{CM.Glyphs.RightBracket} {btn2} {btn3} {btn4}{CM.Glyphs.VLine}";
+ buttonRow = $"{CM.Glyphs.VLine}es {CM.Glyphs.RightBracket}{btn2}{btn3}{btn4}{CM.Glyphs.VLine}";
+ Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Right,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Right,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
// Left
- buttonRow = $"{CM.Glyphs.VLine}{btn1} {btn2} {btn3} {CM.Glyphs.LeftBracket} n{CM.Glyphs.VLine}";
+ buttonRow = $"{CM.Glyphs.VLine}{btn1}{btn2}{btn3}{CM.Glyphs.LeftBracket} neve{CM.Glyphs.VLine}";
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Left,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Left,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -337,14 +338,14 @@ public class DialogTests
// Default - Center
(runstate, Dialog dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Center,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Centered,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -354,14 +355,14 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Justify,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Justified,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -371,14 +372,14 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Right,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Right,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -388,14 +389,14 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Left,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Left,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -431,14 +432,14 @@ public class DialogTests
// Default - Center
(runstate, Dialog dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Center,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Centered,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -448,14 +449,14 @@ public class DialogTests
Assert.Equal (width, buttonRow.GetColumns ());
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Justify,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Justified,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -465,14 +466,14 @@ public class DialogTests
Assert.Equal (width, buttonRow.GetColumns ());
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Right,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Right,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -482,14 +483,14 @@ public class DialogTests
Assert.Equal (width, buttonRow.GetColumns ());
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Left,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text },
- new Button { Text = btn4Text }
- );
+ title,
+ width,
+ Alignment.Left,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text },
+ new Button { Text = btn4Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -514,11 +515,11 @@ public class DialogTests
d.SetBufferSize (width, 1);
(runstate, Dialog dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Center,
- new Button { Text = btnText }
- );
+ title,
+ width,
+ Alignment.Centered,
+ new Button { Text = btnText }
+ );
// Center
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
@@ -527,15 +528,15 @@ public class DialogTests
// Justify
buttonRow =
- $"{CM.Glyphs.VLine} {CM.Glyphs.LeftBracket} {btnText} {CM.Glyphs.RightBracket}{CM.Glyphs.VLine}";
+ $"{CM.Glyphs.VLine}{CM.Glyphs.LeftBracket} {btnText} {CM.Glyphs.RightBracket} {CM.Glyphs.VLine}";
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Justify,
- new Button { Text = btnText }
- );
+ title,
+ width,
+ Alignment.Justified,
+ new Button { Text = btnText }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -546,11 +547,11 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Right,
- new Button { Text = btnText }
- );
+ title,
+ width,
+ Alignment.Right,
+ new Button { Text = btnText }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -561,11 +562,11 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Left,
- new Button { Text = btnText }
- );
+ title,
+ width,
+ Alignment.Left,
+ new Button { Text = btnText }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -578,26 +579,26 @@ public class DialogTests
d.SetBufferSize (width, 1);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Center,
- new Button { Text = btnText }
- );
+ title,
+ width,
+ Alignment.Centered,
+ new Button { Text = btnText }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
// Justify
buttonRow =
- $"{CM.Glyphs.VLine} {CM.Glyphs.LeftBracket} {btnText} {CM.Glyphs.RightBracket}{CM.Glyphs.VLine}";
+ $"{CM.Glyphs.VLine}{CM.Glyphs.LeftBracket} {btnText} {CM.Glyphs.RightBracket} {CM.Glyphs.VLine}";
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Justify,
- new Button { Text = btnText }
- );
+ title,
+ width,
+ Alignment.Justified,
+ new Button { Text = btnText }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -608,11 +609,11 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Right,
- new Button { Text = btnText }
- );
+ title,
+ width,
+ Alignment.Right,
+ new Button { Text = btnText }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -623,11 +624,11 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Left,
- new Button { Text = btnText }
- );
+ title,
+ width,
+ Alignment.Left,
+ new Button { Text = btnText }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -657,13 +658,13 @@ public class DialogTests
d.SetBufferSize (buttonRow.Length, 3);
(runstate, Dialog dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Center,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text }
- );
+ title,
+ width,
+ Alignment.Centered,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -673,13 +674,13 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Justify,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text }
- );
+ title,
+ width,
+ Alignment.Justified,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -689,13 +690,13 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Right,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text }
- );
+ title,
+ width,
+ Alignment.Right,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -705,13 +706,13 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Left,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text },
- new Button { Text = btn3Text }
- );
+ title,
+ width,
+ Alignment.Left,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text },
+ new Button { Text = btn3Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -739,12 +740,12 @@ public class DialogTests
d.SetBufferSize (buttonRow.Length, 3);
(runstate, Dialog dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Center,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text }
- );
+ title,
+ width,
+ Alignment.Centered,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -754,12 +755,12 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Justify,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text }
- );
+ title,
+ width,
+ Alignment.Justified,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -769,12 +770,12 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Right,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text }
- );
+ title,
+ width,
+ Alignment.Right,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -784,12 +785,12 @@ public class DialogTests
Assert.Equal (width, buttonRow.Length);
(runstate, dlg) = RunButtonTestDialog (
- title,
- width,
- Dialog.ButtonAlignments.Left,
- new Button { Text = btn1Text },
- new Button { Text = btn2Text }
- );
+ title,
+ width,
+ Alignment.Left,
+ new Button { Text = btn1Text },
+ new Button { Text = btn2Text }
+ );
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
dlg.Dispose ();
@@ -821,9 +822,9 @@ public class DialogTests
Button button1, button2;
// Default (Center)
- button1 = new () { Text = btn1Text };
- button2 = new () { Text = btn2Text };
- (runstate, dlg) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Center, button1, button2);
+ button1 = new Button { Text = btn1Text };
+ button2 = new Button { Text = btn2Text };
+ (runstate, dlg) = RunButtonTestDialog (title, width, Alignment.Centered, button1, button2);
button1.Visible = false;
RunIteration (ref runstate, ref firstIteration);
buttonRow = $@"{CM.Glyphs.VLine} {btn2} {CM.Glyphs.VLine}";
@@ -833,9 +834,9 @@ public class DialogTests
// Justify
Assert.Equal (width, buttonRow.Length);
- button1 = new () { Text = btn1Text };
- button2 = new () { Text = btn2Text };
- (runstate, dlg) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Justify, button1, button2);
+ button1 = new Button { Text = btn1Text };
+ button2 = new Button { Text = btn2Text };
+ (runstate, dlg) = RunButtonTestDialog (title, width, Alignment.Justified, button1, button2);
button1.Visible = false;
RunIteration (ref runstate, ref firstIteration);
buttonRow = $@"{CM.Glyphs.VLine} {btn2}{CM.Glyphs.VLine}";
@@ -845,9 +846,9 @@ public class DialogTests
// Right
Assert.Equal (width, buttonRow.Length);
- button1 = new () { Text = btn1Text };
- button2 = new () { Text = btn2Text };
- (runstate, dlg) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Right, button1, button2);
+ button1 = new Button { Text = btn1Text };
+ button2 = new Button { Text = btn2Text };
+ (runstate, dlg) = RunButtonTestDialog (title, width, Alignment.Right, button1, button2);
button1.Visible = false;
RunIteration (ref runstate, ref firstIteration);
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
@@ -856,9 +857,9 @@ public class DialogTests
// Left
Assert.Equal (width, buttonRow.Length);
- button1 = new () { Text = btn1Text };
- button2 = new () { Text = btn2Text };
- (runstate, dlg) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Left, button1, button2);
+ button1 = new Button { Text = btn1Text };
+ button2 = new Button { Text = btn2Text };
+ (runstate, dlg) = RunButtonTestDialog (title, width, Alignment.Left, button1, button2);
button1.Visible = false;
RunIteration (ref runstate, ref firstIteration);
buttonRow = $@"{CM.Glyphs.VLine} {btn2} {CM.Glyphs.VLine}";
@@ -888,6 +889,7 @@ public class DialogTests
win.Loaded += (s, a) =>
{
+ Dialog.DefaultButtonAlignment = Alignment.Centered;
var dlg = new Dialog { Width = 18, Height = 3, Buttons = [new () { Text = "Ok" }] };
dlg.Loaded += (s, a) =>
@@ -915,7 +917,7 @@ public class DialogTests
@"
┌┌───────────────┐─┐
││ │ │
-││ ⟦ Ok ⟧ │ │
+││ ⟦ Ok ⟧ │ │
│└───────────────┘ │
└──────────────────┘"
)]
@@ -925,7 +927,7 @@ public class DialogTests
┌┌───────────────┐─┐
││ │ │
││ │ │
-││ ⟦ Ok ⟧ │ │
+││ ⟦ Ok ⟧ │ │
│└───────────────┘ │
└──────────────────┘"
)]
@@ -936,7 +938,7 @@ public class DialogTests
│┌───────────────┐ │
││ │ │
││ │ │
-││ ⟦ Ok ⟧ │ │
+││ ⟦ Ok ⟧ │ │
│└───────────────┘ │
└──────────────────┘"
)]
@@ -948,7 +950,7 @@ public class DialogTests
││ │ │
││ │ │
││ │ │
-││ ⟦ Ok ⟧ │ │
+││ ⟦ Ok ⟧ │ │
│└───────────────┘ │
└──────────────────┘"
)]
@@ -961,7 +963,7 @@ public class DialogTests
││ │ │
││ │ │
││ │ │
-││ ⟦ Ok ⟧ │ │
+││ ⟦ Ok ⟧ │ │
│└───────────────┘ │
└──────────────────┘"
)]
@@ -971,6 +973,7 @@ public class DialogTests
var win = new Window ();
int iterations = -1;
+ Dialog.DefaultButtonAlignment = Alignment.Centered;
Iteration += (s, a) =>
{
@@ -1005,6 +1008,7 @@ public class DialogTests
public void Dialog_Opened_From_Another_Dialog ()
{
((FakeDriver)Driver).SetBufferSize (30, 10);
+ Dialog.DefaultButtonAlignment = Alignment.Centered;
var btn1 = new Button { Text = "press me 1" };
Button btn2 = null;
@@ -1281,7 +1285,7 @@ public class DialogTests
(runstate, Dialog _) = RunButtonTestDialog (
title,
width,
- Dialog.ButtonAlignments.Center,
+ Alignment.Centered,
new Button { Text = btnText }
);
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
@@ -1334,7 +1338,7 @@ public class DialogTests
int width = buttonRow.Length;
d.SetBufferSize (buttonRow.Length, 3);
- (runstate, Dialog dlg) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Center, null);
+ (runstate, Dialog dlg) = RunButtonTestDialog (title, width, Alignment.Centered, null);
TestHelpers.AssertDriverContentsWithFrameAre ($"{buttonRow}", _output);
End (runstate);
@@ -1344,7 +1348,7 @@ public class DialogTests
private (RunState, Dialog) RunButtonTestDialog (
string title,
int width,
- Dialog.ButtonAlignments align,
+ Alignment align,
params Button [] btns
)
{
diff --git a/UnitTests/Dialogs/MessageBoxTests.cs b/UnitTests/Dialogs/MessageBoxTests.cs
index e513a90fb..2afdfb36a 100644
--- a/UnitTests/Dialogs/MessageBoxTests.cs
+++ b/UnitTests/Dialogs/MessageBoxTests.cs
@@ -278,7 +278,7 @@ public class MessageBoxTests
│ffffffffffffffffff│
│ ffffffffffffff │
│ │
-│ {btn} │
+│ {btn} │
└──────────────────┘",
_output
);
@@ -302,7 +302,7 @@ public class MessageBoxTests
│ffffffffffffffffff│
│ffffffffffffffffff│
│ffffffffffffffffff│
-│ {btn} │",
+│ {btn} │",
_output
);
Application.RequestStop ();
@@ -377,7 +377,7 @@ ff ff ff ff ff ff ff
────────────────────
ffffffffffffffffffff
- ⟦► btn ◄⟧
+ ⟦► btn ◄⟧
────────────────────
",
_output
@@ -459,7 +459,7 @@ ffffffffffffffffffff
│ffffffffffffffffff│
│ffffffffffffffffff│
│ffffffffffffffffff│
-│ {btn} │",
+│ {btn} │",
_output
);
Application.RequestStop ();
@@ -509,7 +509,7 @@ ffffffffffffffffffff
────────────────────
ffffffffffffffffffff
- ⟦► btn ◄⟧
+ ⟦► btn ◄⟧
────────────────────
",
_output
@@ -529,7 +529,7 @@ ffffffffffffffffffff
────────────────────
ffffffffffffffffffff
- ⟦► btn ◄⟧
+ ⟦► btn ◄⟧
────────────────────
",
_output
diff --git a/UnitTests/Drawing/AlignerTests.cs b/UnitTests/Drawing/AlignerTests.cs
new file mode 100644
index 000000000..fd8b0b381
--- /dev/null
+++ b/UnitTests/Drawing/AlignerTests.cs
@@ -0,0 +1,462 @@
+using System.Text;
+using System.Text.Json;
+using Xunit.Abstractions;
+
+namespace Terminal.Gui.DrawingTests;
+
+public class AlignerTests (ITestOutputHelper output)
+{
+ private readonly ITestOutputHelper _output = output;
+
+ public static IEnumerable AlignmentEnumValues ()
+ {
+ foreach (object number in Enum.GetValues (typeof (Alignment)))
+ {
+ yield return new [] { number };
+ }
+ }
+
+ [Theory]
+ [MemberData (nameof (AlignmentEnumValues))]
+ public void Alignment_Round_Trips (Alignment alignment)
+ {
+ string serialized = JsonSerializer.Serialize (alignment);
+ var deserialized = JsonSerializer.Deserialize (serialized);
+
+ Assert.Equal (alignment, deserialized);
+ }
+
+ [Theory]
+ [MemberData (nameof (AlignmentEnumValues))]
+ public void NoItems_Works (Alignment alignment)
+ {
+ int [] sizes = [];
+ int [] positions = Aligner.Align (alignment, false, 100, sizes);
+ Assert.Equal (new int [] { }, positions);
+ }
+
+ [Theory]
+ [MemberData (nameof (AlignmentEnumValues))]
+ public void Negative_Widths_Not_Allowed (Alignment alignment)
+ {
+ Assert.Throws (
+ () => new Aligner
+ {
+ Alignment = alignment,
+ ContainerSize = 100
+ }.Align (new [] { -10, 20, 30 }));
+
+ Assert.Throws (
+ () => new Aligner
+ {
+ Alignment = alignment,
+ ContainerSize = 100
+ }.Align (new [] { 10, -20, 30 }));
+
+ Assert.Throws (
+ () => new Aligner
+ {
+ Alignment = alignment,
+ ContainerSize = 100
+ }.Align (new [] { 10, 20, -30 }));
+ }
+
+ [Theory]
+ [InlineData (Alignment.Left, new [] { 0 }, 1, new [] { 0 })]
+ [InlineData (Alignment.Left, new [] { 0, 0 }, 1, new [] { 0, 1 })]
+ [InlineData (Alignment.Left, new [] { 0, 0, 0 }, 1, new [] { 0, 1, 1 })]
+ [InlineData (Alignment.Left, new [] { 1 }, 1, new [] { 0 })]
+ [InlineData (Alignment.Left, new [] { 1 }, 2, new [] { 0 })]
+ [InlineData (Alignment.Left, new [] { 1 }, 3, new [] { 0 })]
+ [InlineData (Alignment.Left, new [] { 1, 1 }, 2, new [] { 0, 1 })]
+ [InlineData (Alignment.Left, new [] { 1, 1 }, 3, new [] { 0, 2 })]
+ [InlineData (Alignment.Left, new [] { 1, 1 }, 4, new [] { 0, 2 })]
+ [InlineData (Alignment.Left, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 7, new [] { 0, 2, 4 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 10, new [] { 0, 2, 5 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 11, new [] { 0, 2, 5 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 12, new [] { 0, 2, 5 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 13, new [] { 0, 2, 5 })]
+ [InlineData (
+ Alignment.Left,
+ new [] { 1, 2, 3 },
+ 5,
+ new [] { 0, 1, 3 })] // 5 is too small to fit the items. The first item is at 0, the items to the right are clipped.
+ [InlineData (Alignment.Left, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 2, 4, 7 })]
+ [InlineData (Alignment.Left, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
+ [InlineData (Alignment.Left, new [] { 10 }, 101, new [] { 0 })]
+ [InlineData (Alignment.Left, new [] { 10, 20 }, 101, new [] { 0, 11 })]
+ [InlineData (Alignment.Left, new [] { 10, 20, 30 }, 100, new [] { 0, 11, 32 })]
+ [InlineData (Alignment.Left, new [] { 10, 20, 30 }, 101, new [] { 0, 11, 32 })]
+ [InlineData (Alignment.Left, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
+ [InlineData (Alignment.Left, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
+ [InlineData (Alignment.Right, new [] { 0 }, 1, new [] { 1 })]
+ [InlineData (Alignment.Right, new [] { 0, 0 }, 1, new [] { 0, 1 })]
+ [InlineData (Alignment.Right, new [] { 0, 0, 0 }, 1, new [] { 0, 1, 1 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 7, new [] { 0, 2, 4 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 10, new [] { 2, 4, 7 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 11, new [] { 3, 5, 8 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 12, new [] { 4, 6, 9 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 13, new [] { 5, 7, 10 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 5, new [] { -1, 0, 2 })] // 5 is too small to fit the items. The first item is at -1.
+ [InlineData (Alignment.Right, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 2, 4, 7 })]
+ [InlineData (Alignment.Right, new [] { 10, 20, 30 }, 100, new [] { 38, 49, 70 })]
+ [InlineData (Alignment.Right, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
+ [InlineData (Alignment.Right, new [] { 10 }, 101, new [] { 91 })]
+ [InlineData (Alignment.Right, new [] { 10, 20 }, 101, new [] { 70, 81 })]
+ [InlineData (Alignment.Right, new [] { 10, 20, 30 }, 101, new [] { 39, 50, 71 })]
+ [InlineData (Alignment.Right, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
+ [InlineData (Alignment.Right, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
+ [InlineData (Alignment.Centered, new [] { 0 }, 1, new [] { 0 })]
+ [InlineData (Alignment.Centered, new [] { 0, 0 }, 1, new [] { 0, 1 })]
+ [InlineData (Alignment.Centered, new [] { 0, 0, 0 }, 1, new [] { 0, 1, 1 })]
+ [InlineData (Alignment.Centered, new [] { 1 }, 1, new [] { 0 })]
+ [InlineData (Alignment.Centered, new [] { 1 }, 2, new [] { 0 })]
+ [InlineData (Alignment.Centered, new [] { 1 }, 3, new [] { 1 })]
+ [InlineData (Alignment.Centered, new [] { 1, 1 }, 2, new [] { 0, 1 })]
+ [InlineData (Alignment.Centered, new [] { 1, 1 }, 3, new [] { 0, 2 })]
+ [InlineData (Alignment.Centered, new [] { 1, 1 }, 4, new [] { 0, 2 })]
+ [InlineData (Alignment.Centered, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3 }, 7, new [] { 0, 2, 4 })]
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3 }, 10, new [] { 1, 3, 6 })]
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3 }, 11, new [] { 1, 3, 6 })]
+ [InlineData (
+ Alignment.Centered,
+ new [] { 1, 2, 3 },
+ 5,
+ new [] { 0, 1, 3 })] // 5 is too small to fit the items. The first item is at 0, the items to the right are clipped.
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 2, 4, 7 })]
+ [InlineData (Alignment.Centered, new [] { 3, 3, 3 }, 9, new [] { 0, 3, 6 })]
+ [InlineData (Alignment.Centered, new [] { 3, 3, 3 }, 10, new [] { 0, 4, 7 })]
+ [InlineData (Alignment.Centered, new [] { 3, 3, 3 }, 11, new [] { 0, 4, 8 })]
+ [InlineData (Alignment.Centered, new [] { 3, 3, 3 }, 12, new [] { 0, 4, 8 })]
+ [InlineData (Alignment.Centered, new [] { 3, 3, 3 }, 13, new [] { 1, 5, 9 })]
+ [InlineData (Alignment.Centered, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
+ [InlineData (Alignment.Centered, new [] { 33, 33, 33 }, 101, new [] { 0, 34, 68 })]
+ [InlineData (Alignment.Centered, new [] { 33, 33, 33 }, 102, new [] { 0, 34, 68 })]
+ [InlineData (Alignment.Centered, new [] { 33, 33, 33 }, 103, new [] { 1, 35, 69 })]
+ [InlineData (Alignment.Centered, new [] { 33, 33, 33 }, 104, new [] { 1, 35, 69 })]
+ [InlineData (Alignment.Centered, new [] { 10 }, 101, new [] { 45 })]
+ [InlineData (Alignment.Centered, new [] { 10, 20 }, 101, new [] { 35, 46 })]
+ [InlineData (Alignment.Centered, new [] { 10, 20, 30 }, 100, new [] { 19, 30, 51 })]
+ [InlineData (Alignment.Centered, new [] { 10, 20, 30 }, 101, new [] { 19, 30, 51 })]
+ [InlineData (Alignment.Centered, new [] { 10, 20, 30, 40 }, 100, new [] { 0, 10, 30, 60 })]
+ [InlineData (Alignment.Centered, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
+ [InlineData (Alignment.Centered, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
+ [InlineData (Alignment.Centered, new [] { 3, 4, 5, 6 }, 25, new [] { 2, 6, 11, 17 })]
+ [InlineData (Alignment.Justified, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
+ [InlineData (Alignment.Justified, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
+ [InlineData (Alignment.Justified, new [] { 10, 20, 30 }, 100, new [] { 0, 30, 70 })]
+ [InlineData (Alignment.Justified, new [] { 10, 20, 30 }, 101, new [] { 0, 31, 71 })]
+ [InlineData (Alignment.Justified, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
+ [InlineData (Alignment.Justified, new [] { 11, 17, 23 }, 100, new [] { 0, 36, 77 })]
+ [InlineData (Alignment.Justified, new [] { 1, 2, 3 }, 11, new [] { 0, 4, 8 })]
+ [InlineData (Alignment.Justified, new [] { 10, 20 }, 101, new [] { 0, 81 })]
+ [InlineData (Alignment.Justified, new [] { 10 }, 101, new [] { 0 })]
+ [InlineData (Alignment.Justified, new [] { 3, 3, 3 }, 21, new [] { 0, 9, 18 })]
+ [InlineData (Alignment.Justified, new [] { 3, 4, 5 }, 21, new [] { 0, 8, 16 })]
+ [InlineData (Alignment.Justified, new [] { 3, 4, 5, 6 }, 18, new [] { 0, 3, 7, 12 })]
+ [InlineData (Alignment.Justified, new [] { 3, 4, 5, 6 }, 19, new [] { 0, 4, 8, 13 })]
+ [InlineData (Alignment.Justified, new [] { 3, 4, 5, 6 }, 20, new [] { 0, 4, 9, 14 })]
+ [InlineData (Alignment.Justified, new [] { 3, 4, 5, 6 }, 21, new [] { 0, 4, 9, 15 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 22, new [] { 0, 8, 14, 19 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 23, new [] { 0, 8, 15, 20 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 24, new [] { 0, 8, 15, 21 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 25, new [] { 0, 9, 16, 22 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 26, new [] { 0, 9, 17, 23 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 31, new [] { 0, 11, 20, 28 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 0 }, 1, new [] { 1 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 0, 0 }, 1, new [] { 0, 1 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 0, 0, 0 }, 1, new [] { 0, 1, 1 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1 }, 1, new [] { 0 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1 }, 2, new [] { 1 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1 }, 3, new [] { 2 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 1 }, 2, new [] { 0, 1 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 1 }, 3, new [] { 0, 2 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 1 }, 4, new [] { 0, 3 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 7, new [] { 0, 2, 4 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 8, new [] { 0, 2, 5 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 9, new [] { 0, 2, 6 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 10, new [] { 0, 2, 7 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 11, new [] { 0, 2, 8 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 5, new [] { -1, 0, 2 })] // 5 is too small to fit the items. The first item is at -1.})]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 2, 4, 7 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 3, 3, 3 }, 21, new [] { 0, 4, 18 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 3, 4, 5 }, 21, new [] { 0, 4, 16 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10 }, 101, new [] { 91 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10, 20 }, 101, new [] { 0, 81 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10, 20, 30 }, 100, new [] { 0, 11, 70 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10, 20, 30 }, 101, new [] { 0, 11, 71 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 0 }, 1, new [] { 0 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 0, 0 }, 1, new [] { 0, 1 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 0, 0, 0 }, 1, new [] { 0, 0, 1 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1 }, 1, new [] { 0 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1 }, 2, new [] { 0 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1 }, 3, new [] { 0 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 1 }, 2, new [] { 0, 1 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 1 }, 3, new [] { 0, 2 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 1 }, 4, new [] { 0, 3 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 7, new [] { 0, 1, 4 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 8, new [] { 0, 2, 5 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 9, new [] { 0, 3, 6 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 10, new [] { 0, 4, 7 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 11, new [] { 0, 5, 8 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 5, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 1, 3, 7 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 12, new [] { 0, 1, 4, 8 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 3, 3, 3 }, 21, new [] { 0, 14, 18 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 3, 4, 5 }, 21, new [] { 0, 11, 16 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 33, 33, 33 }, 100, new [] { 0, 33, 67 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10 }, 101, new [] { 0 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10, 20 }, 101, new [] { 0, 81 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10, 20, 30 }, 100, new [] { 0, 49, 70 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10, 20, 30 }, 101, new [] { 0, 50, 71 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 10, 30, 61 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 10, 30, 60, 101 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 3, 4, 5 }, 21, new [] { 0, 11, 16 })]
+ public void Alignment_SpaceBetweenItems (Alignment alignment, int [] sizes, int containerSize, int [] expected)
+ {
+ int [] positions = new Aligner
+ {
+ SpaceBetweenItems = true,
+ Alignment = alignment,
+ ContainerSize = containerSize
+ }.Align (sizes);
+ AssertAlignment (alignment, sizes, containerSize, positions, expected);
+ }
+
+ [Theory]
+ [InlineData (Alignment.Left, new [] { 0 }, 1, new [] { 0 })]
+ [InlineData (Alignment.Left, new [] { 0, 0 }, 1, new [] { 0, 0 })]
+ [InlineData (Alignment.Left, new [] { 0, 0, 0 }, 1, new [] { 0, 0, 0 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 7, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 10, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 11, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 12, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3 }, 13, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
+ [InlineData (Alignment.Left, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 1, 3, 6 })]
+ [InlineData (
+ Alignment.Left,
+ new [] { 1, 2, 3 },
+ 5,
+ new [] { 0, 1, 3 })] // 5 is too small to fit the items. The first item is at 0, the items to the right are clipped.
+ [InlineData (Alignment.Left, new [] { 10, 20, 30 }, 100, new [] { 0, 10, 30 })]
+ [InlineData (Alignment.Left, new [] { 33, 33, 33 }, 100, new [] { 0, 33, 66 })]
+ [InlineData (Alignment.Left, new [] { 10 }, 101, new [] { 0 })]
+ [InlineData (Alignment.Left, new [] { 10, 20 }, 101, new [] { 0, 10 })]
+ [InlineData (Alignment.Left, new [] { 10, 20, 30 }, 101, new [] { 0, 10, 30 })]
+ [InlineData (Alignment.Left, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 10, 30, 60 })]
+ [InlineData (Alignment.Left, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 10, 30, 60, 100 })]
+ [InlineData (Alignment.Right, new [] { 0 }, 1, new [] { 1 })]
+ [InlineData (Alignment.Right, new [] { 0, 0 }, 1, new [] { 1, 1 })]
+ [InlineData (Alignment.Right, new [] { 0, 0, 0 }, 1, new [] { 1, 1, 1 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 7, new [] { 1, 2, 4 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 10, new [] { 4, 5, 7 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 11, new [] { 5, 6, 8 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 12, new [] { 6, 7, 9 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 13, new [] { 7, 8, 10 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3 }, 5, new [] { -1, 0, 2 })] // 5 is too small to fit the items. The first item is at -1.
+ [InlineData (Alignment.Right, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
+ [InlineData (Alignment.Right, new [] { 1, 2, 3, 4 }, 11, new [] { 1, 2, 4, 7 })]
+ [InlineData (Alignment.Right, new [] { 10, 20, 30 }, 100, new [] { 40, 50, 70 })]
+ [InlineData (Alignment.Right, new [] { 33, 33, 33 }, 100, new [] { 1, 34, 67 })]
+ [InlineData (Alignment.Right, new [] { 10 }, 101, new [] { 91 })]
+ [InlineData (Alignment.Right, new [] { 10, 20 }, 101, new [] { 71, 81 })]
+ [InlineData (Alignment.Right, new [] { 10, 20, 30 }, 101, new [] { 41, 51, 71 })]
+ [InlineData (Alignment.Right, new [] { 10, 20, 30, 40 }, 101, new [] { 1, 11, 31, 61 })]
+ [InlineData (Alignment.Right, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 1, 11, 31, 61, 101 })]
+ [InlineData (Alignment.Centered, new [] { 1 }, 1, new [] { 0 })]
+ [InlineData (Alignment.Centered, new [] { 1 }, 2, new [] { 0 })]
+ [InlineData (Alignment.Centered, new [] { 1 }, 3, new [] { 1 })]
+ [InlineData (Alignment.Centered, new [] { 1, 1 }, 2, new [] { 0, 1 })]
+ [InlineData (Alignment.Centered, new [] { 1, 1 }, 3, new [] { 0, 1 })]
+ [InlineData (Alignment.Centered, new [] { 1, 1 }, 4, new [] { 1, 2 })]
+ [InlineData (Alignment.Centered, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3 }, 7, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3 }, 10, new [] { 2, 3, 5 })]
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3 }, 11, new [] { 2, 3, 5 })]
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
+ [InlineData (Alignment.Centered, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 1, 3, 6 })]
+ [InlineData (Alignment.Centered, new [] { 3, 3, 3 }, 9, new [] { 0, 3, 6 })]
+ [InlineData (Alignment.Centered, new [] { 3, 3, 3 }, 10, new [] { 0, 3, 6 })]
+ [InlineData (Alignment.Centered, new [] { 3, 3, 3 }, 11, new [] { 1, 4, 7 })]
+ [InlineData (Alignment.Centered, new [] { 3, 3, 3 }, 12, new [] { 1, 4, 7 })]
+ [InlineData (Alignment.Centered, new [] { 3, 3, 3 }, 13, new [] { 2, 5, 8 })]
+ [InlineData (
+ Alignment.Centered,
+ new [] { 1, 2, 3 },
+ 5,
+ new [] { 0, 1, 3 })] // 5 is too small to fit the items. The first item is at 0, the items to the right are clipped.
+ [InlineData (Alignment.Centered, new [] { 33, 33, 33 }, 100, new [] { 0, 33, 66 })]
+ [InlineData (Alignment.Centered, new [] { 33, 33, 33 }, 101, new [] { 1, 34, 67 })]
+ [InlineData (Alignment.Centered, new [] { 33, 33, 33 }, 102, new [] { 1, 34, 67 })]
+ [InlineData (Alignment.Centered, new [] { 33, 33, 33 }, 103, new [] { 2, 35, 68 })]
+ [InlineData (Alignment.Centered, new [] { 33, 33, 33 }, 104, new [] { 2, 35, 68 })]
+ [InlineData (Alignment.Centered, new [] { 3, 4, 5, 6 }, 25, new [] { 3, 6, 10, 15 })]
+ [InlineData (Alignment.Justified, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
+ [InlineData (Alignment.Justified, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
+ [InlineData (Alignment.Justified, new [] { 10, 20, 30 }, 100, new [] { 0, 30, 70 })]
+ [InlineData (Alignment.Justified, new [] { 10, 20, 30 }, 101, new [] { 0, 31, 71 })]
+ [InlineData (Alignment.Justified, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
+ [InlineData (Alignment.Justified, new [] { 11, 17, 23 }, 100, new [] { 0, 36, 77 })]
+ [InlineData (Alignment.Justified, new [] { 1, 2, 3 }, 11, new [] { 0, 4, 8 })]
+ [InlineData (Alignment.Justified, new [] { 10, 20 }, 101, new [] { 0, 81 })]
+ [InlineData (Alignment.Justified, new [] { 10 }, 101, new [] { 0 })]
+ [InlineData (Alignment.Justified, new [] { 3, 3, 3 }, 21, new [] { 0, 9, 18 })]
+ [InlineData (Alignment.Justified, new [] { 3, 4, 5 }, 21, new [] { 0, 8, 16 })]
+ [InlineData (Alignment.Justified, new [] { 3, 4, 5, 6 }, 18, new [] { 0, 3, 7, 12 })]
+ [InlineData (Alignment.Justified, new [] { 3, 4, 5, 6 }, 19, new [] { 0, 4, 8, 13 })]
+ [InlineData (Alignment.Justified, new [] { 3, 4, 5, 6 }, 20, new [] { 0, 4, 9, 14 })]
+ [InlineData (Alignment.Justified, new [] { 3, 4, 5, 6 }, 21, new [] { 0, 4, 9, 15 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 22, new [] { 0, 8, 14, 19 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 23, new [] { 0, 8, 15, 20 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 24, new [] { 0, 8, 15, 21 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 25, new [] { 0, 9, 16, 22 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 26, new [] { 0, 9, 17, 23 })]
+ [InlineData (Alignment.Justified, new [] { 6, 5, 4, 3 }, 31, new [] { 0, 11, 20, 28 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 0 }, 1, new [] { 1 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 0, 0 }, 1, new [] { 0, 1 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 0, 0, 0 }, 1, new [] { 0, 0, 1 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1 }, 1, new [] { 0 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1 }, 2, new [] { 1 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1 }, 3, new [] { 2 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 1 }, 2, new [] { 0, 1 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 1 }, 3, new [] { 0, 2 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 1 }, 4, new [] { 0, 3 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 7, new [] { 0, 1, 4 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 8, new [] { 0, 1, 5 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 9, new [] { 0, 1, 6 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 10, new [] { 0, 1, 7 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3 }, 11, new [] { 0, 1, 8 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 1, 3, 7 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 1, 2, 3, 4 }, 12, new [] { 0, 1, 3, 8 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 3, 3, 3 }, 21, new [] { 0, 3, 18 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 3, 4, 5 }, 21, new [] { 0, 3, 16 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 33, 33, 33 }, 100, new [] { 0, 33, 67 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10 }, 101, new [] { 91 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10, 20 }, 101, new [] { 0, 81 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10, 20, 30 }, 100, new [] { 0, 10, 70 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10, 20, 30 }, 101, new [] { 0, 10, 71 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 10, 30, 61 })]
+ [InlineData (Alignment.LastRightRestLeft, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 10, 30, 60, 101 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 0 }, 1, new [] { 0 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 0, 0 }, 1, new [] { 0, 1 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 0, 0, 0 }, 1, new [] { 0, 1, 1 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1 }, 1, new [] { 0 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1 }, 2, new [] { 0 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1 }, 3, new [] { 0 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 1 }, 2, new [] { 0, 1 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 1 }, 3, new [] { 0, 2 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 1 }, 4, new [] { 0, 3 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 7, new [] { 0, 2, 4 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 8, new [] { 0, 3, 5 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 9, new [] { 0, 4, 6 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 10, new [] { 0, 5, 7 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3 }, 11, new [] { 0, 6, 8 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 2, 4, 7 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 12, new [] { 0, 3, 5, 8 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 3, 3, 3 }, 21, new [] { 0, 15, 18 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 3, 4, 5 }, 21, new [] { 0, 12, 16 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10 }, 101, new [] { 0 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10, 20 }, 101, new [] { 0, 81 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10, 20, 30 }, 100, new [] { 0, 50, 70 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10, 20, 30 }, 101, new [] { 0, 51, 71 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
+ [InlineData (Alignment.FirstLeftRestRight, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
+ public void Alignment_NoSpaceBetweenItems (Alignment alignment, int [] sizes, int containerSize, int [] expected)
+ {
+ int [] positions = new Aligner
+ {
+ SpaceBetweenItems = false,
+ Alignment = alignment,
+ ContainerSize = containerSize
+ }.Align (sizes);
+ AssertAlignment (alignment, sizes, containerSize, positions, expected);
+ }
+
+ private void AssertAlignment (Alignment alignment, int [] sizes, int totalSize, int [] positions, int [] expected)
+ {
+ try
+ {
+ _output.WriteLine ($"Testing: {RenderAlignment (alignment, sizes, totalSize, expected)}");
+ }
+ catch (Exception e)
+ {
+ _output.WriteLine ($"Exception rendering expected: {e.Message}");
+ _output.WriteLine ($"Actual: {RenderAlignment (alignment, sizes, totalSize, positions)}");
+ }
+
+ if (!expected.SequenceEqual (positions))
+ {
+ _output.WriteLine ($"Expected: {RenderAlignment (alignment, sizes, totalSize, expected)}");
+ _output.WriteLine ($"Actual: {RenderAlignment (alignment, sizes, totalSize, positions)}");
+ Assert.Fail (" Expected and actual do not match");
+ }
+ }
+
+ private string RenderAlignment (Alignment alignment, int [] sizes, int totalSize, int [] positions)
+ {
+ var output = new StringBuilder ();
+ output.AppendLine ($"Alignment: {alignment}, Positions: {string.Join (", ", positions)}, TotalSize: {totalSize}");
+
+ for (var i = 0; i <= totalSize / 10; i++)
+ {
+ output.Append (i.ToString ().PadRight (9) + " ");
+ }
+
+ output.AppendLine ();
+
+ for (var i = 0; i < totalSize; i++)
+ {
+ output.Append (i % 10);
+ }
+
+ output.AppendLine ();
+
+ var items = new char [totalSize];
+
+ for (var position = 0; position < positions.Length; position++)
+ {
+ // try
+ {
+ for (var j = 0; j < sizes [position] && positions [position] + j < totalSize; j++)
+ {
+ if (positions [position] + j >= 0)
+ {
+ items [positions [position] + j] = (position + 1).ToString () [0];
+ }
+ }
+ }
+ }
+
+ output.Append (new string (items).Replace ('\0', ' '));
+
+ return output.ToString ();
+ }
+}
diff --git a/UnitTests/Drawing/JustifierTests.cs b/UnitTests/Drawing/JustifierTests.cs
deleted file mode 100644
index 481848640..000000000
--- a/UnitTests/Drawing/JustifierTests.cs
+++ /dev/null
@@ -1,426 +0,0 @@
-using System.Text;
-using Xunit.Abstractions;
-
-namespace Terminal.Gui.DrawingTests;
-
-public class JustifierTests (ITestOutputHelper output)
-{
- private readonly ITestOutputHelper _output = output;
-
- public static IEnumerable JustificationEnumValues ()
- {
- foreach (object number in Enum.GetValues (typeof (Justification)))
- {
- yield return new [] { number };
- }
- }
-
- [Theory]
- [MemberData (nameof (JustificationEnumValues))]
- public void NoItems_Works (Justification justification)
- {
- int [] sizes = [];
- int [] positions = Justifier.Justify (justification, false, 100, sizes);
- Assert.Equal (new int [] { }, positions);
- }
-
- [Theory]
- [MemberData (nameof (JustificationEnumValues))]
- public void Negative_Widths_Not_Allowed (Justification justification)
- {
- Assert.Throws (() => new Justifier ()
- {
- Justification = justification,
- ContainerSize = 100
- }.Justify (new [] { -10, 20, 30 }));
- Assert.Throws (() => new Justifier ()
- {
- Justification = justification,
- ContainerSize = 100
- }.Justify (new [] { 10, -20, 30 }));
- Assert.Throws (() => new Justifier ()
- {
- Justification = justification,
- ContainerSize = 100
- }.Justify (new [] { 10, 20, -30 }));
- }
-
- [Theory]
- [InlineData (Justification.Left, new [] { 0 }, 1, new [] { 0 })]
- [InlineData (Justification.Left, new [] { 0, 0 }, 1, new [] { 0, 1 })]
- [InlineData (Justification.Left, new [] { 0, 0, 0 }, 1, new [] { 0, 1, 1 })]
- [InlineData (Justification.Left, new [] { 1 }, 1, new [] { 0 })]
- [InlineData (Justification.Left, new [] { 1 }, 2, new [] { 0 })]
- [InlineData (Justification.Left, new [] { 1 }, 3, new [] { 0 })]
- [InlineData (Justification.Left, new [] { 1, 1 }, 2, new [] { 0, 1 })]
- [InlineData (Justification.Left, new [] { 1, 1 }, 3, new [] { 0, 2 })]
- [InlineData (Justification.Left, new [] { 1, 1 }, 4, new [] { 0, 2 })]
- [InlineData (Justification.Left, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 7, new [] { 0, 2, 4 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 10, new [] { 0, 2, 5 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 11, new [] { 0, 2, 5 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 12, new [] { 0, 2, 5 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 13, new [] { 0, 2, 5 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 2, 4, 7 })]
- [InlineData (Justification.Left, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
- [InlineData (Justification.Left, new [] { 10 }, 101, new [] { 0 })]
- [InlineData (Justification.Left, new [] { 10, 20 }, 101, new [] { 0, 11 })]
- [InlineData (Justification.Left, new [] { 10, 20, 30 }, 100, new [] { 0, 11, 32 })]
- [InlineData (Justification.Left, new [] { 10, 20, 30 }, 101, new [] { 0, 11, 32 })]
- [InlineData (Justification.Left, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
- [InlineData (Justification.Left, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
- [InlineData (Justification.Right, new [] { 0 }, 1, new [] { 1 })]
- [InlineData (Justification.Right, new [] { 0, 0 }, 1, new [] { 0, 1 })]
- [InlineData (Justification.Right, new [] { 0, 0, 0 }, 1, new [] { 0, 1, 1 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 7, new [] { 0, 2, 4 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 10, new [] { 2, 4, 7 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 11, new [] { 3, 5, 8 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 12, new [] { 4, 6, 9 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 13, new [] { 5, 7, 10 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 2, 4, 7 })]
- [InlineData (Justification.Right, new [] { 10, 20, 30 }, 100, new [] { 38, 49, 70 })]
- [InlineData (Justification.Right, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
- [InlineData (Justification.Right, new [] { 10 }, 101, new [] { 91 })]
- [InlineData (Justification.Right, new [] { 10, 20 }, 101, new [] { 70, 81 })]
- [InlineData (Justification.Right, new [] { 10, 20, 30 }, 101, new [] { 39, 50, 71 })]
- [InlineData (Justification.Right, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
- [InlineData (Justification.Right, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
- [InlineData (Justification.Centered, new [] { 0 }, 1, new [] { 0 })]
- [InlineData (Justification.Centered, new [] { 0, 0 }, 1, new [] { 0, 1 })]
- [InlineData (Justification.Centered, new [] { 0, 0, 0 }, 1, new [] { 0, 1, 1 })]
- [InlineData (Justification.Centered, new [] { 1 }, 1, new [] { 0 })]
- [InlineData (Justification.Centered, new [] { 1 }, 2, new [] { 0 })]
- [InlineData (Justification.Centered, new [] { 1 }, 3, new [] { 1 })]
- [InlineData (Justification.Centered, new [] { 1, 1 }, 2, new [] { 0, 1 })]
- [InlineData (Justification.Centered, new [] { 1, 1 }, 3, new [] { 0, 2 })]
- [InlineData (Justification.Centered, new [] { 1, 1 }, 4, new [] { 0, 2 })]
- [InlineData (Justification.Centered, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3 }, 7, new [] { 0, 2, 4 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3 }, 10, new [] { 1, 3, 6 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3 }, 11, new [] { 1, 3, 6 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 2, 4, 7 })]
- [InlineData (Justification.Centered, new [] { 3, 3, 3 }, 9, new [] { 0, 3, 6 })]
- [InlineData (Justification.Centered, new [] { 3, 3, 3 }, 10, new [] { 0, 4, 7 })]
- [InlineData (Justification.Centered, new [] { 3, 3, 3 }, 11, new [] { 0, 4, 8 })]
- [InlineData (Justification.Centered, new [] { 3, 3, 3 }, 12, new [] { 0, 4, 8 })]
- [InlineData (Justification.Centered, new [] { 3, 3, 3 }, 13, new [] { 1, 5, 9 })]
- [InlineData (Justification.Centered, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
- [InlineData (Justification.Centered, new [] { 33, 33, 33 }, 101, new [] { 0, 34, 68 })]
- [InlineData (Justification.Centered, new [] { 33, 33, 33 }, 102, new [] { 0, 34, 68 })]
- [InlineData (Justification.Centered, new [] { 33, 33, 33 }, 103, new [] { 1, 35, 69 })]
- [InlineData (Justification.Centered, new [] { 33, 33, 33 }, 104, new [] { 1, 35, 69 })]
- [InlineData (Justification.Centered, new [] { 10 }, 101, new [] { 45 })]
- [InlineData (Justification.Centered, new [] { 10, 20 }, 101, new [] { 35, 46 })]
- [InlineData (Justification.Centered, new [] { 10, 20, 30 }, 100, new [] { 19, 30, 51 })]
- [InlineData (Justification.Centered, new [] { 10, 20, 30 }, 101, new [] { 19, 30, 51 })]
- [InlineData (Justification.Centered, new [] { 10, 20, 30, 40 }, 100, new [] { 0, 10, 30, 60 })]
- [InlineData (Justification.Centered, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
- [InlineData (Justification.Centered, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
- [InlineData (Justification.Centered, new [] { 3, 4, 5, 6 }, 25, new [] { 2, 6, 11, 17 })]
- [InlineData (Justification.Justified, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
- [InlineData (Justification.Justified, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
- [InlineData (Justification.Justified, new [] { 10, 20, 30 }, 100, new [] { 0, 30, 70 })]
- [InlineData (Justification.Justified, new [] { 10, 20, 30 }, 101, new [] { 0, 31, 71 })]
- [InlineData (Justification.Justified, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
- [InlineData (Justification.Justified, new [] { 11, 17, 23 }, 100, new [] { 0, 36, 77 })]
- [InlineData (Justification.Justified, new [] { 1, 2, 3 }, 11, new [] { 0, 4, 8 })]
- [InlineData (Justification.Justified, new [] { 10, 20 }, 101, new [] { 0, 81 })]
- [InlineData (Justification.Justified, new [] { 10 }, 101, new [] { 0 })]
- [InlineData (Justification.Justified, new [] { 3, 3, 3 }, 21, new [] { 0, 9, 18 })]
- [InlineData (Justification.Justified, new [] { 3, 4, 5 }, 21, new [] { 0, 8, 16 })]
- [InlineData (Justification.Justified, new [] { 3, 4, 5, 6 }, 18, new [] { 0, 3, 7, 12 })]
- [InlineData (Justification.Justified, new [] { 3, 4, 5, 6 }, 19, new [] { 0, 4, 8, 13 })]
- [InlineData (Justification.Justified, new [] { 3, 4, 5, 6 }, 20, new [] { 0, 4, 9, 14 })]
- [InlineData (Justification.Justified, new [] { 3, 4, 5, 6 }, 21, new [] { 0, 4, 9, 15 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 22, new [] { 0, 8, 14, 19 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 23, new [] { 0, 8, 15, 20 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 24, new [] { 0, 8, 15, 21 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 25, new [] { 0, 9, 16, 22 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 26, new [] { 0, 9, 17, 23 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 31, new [] { 0, 11, 20, 28 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 0 }, 1, new [] { 1 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 0, 0 }, 1, new [] { 0, 1 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 0, 0, 0 }, 1, new [] { 0, 1, 1 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1 }, 1, new [] { 0 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1 }, 2, new [] { 1 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1 }, 3, new [] { 2 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 1 }, 2, new [] { 0, 1 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 1 }, 3, new [] { 0, 2 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 1 }, 4, new [] { 0, 3 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 7, new [] { 0, 2, 4 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 8, new [] { 0, 2, 5 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 9, new [] { 0, 2, 6 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 10, new [] { 0, 2, 7 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 11, new [] { 0, 2, 8 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 2, 4, 7 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 3, 3, 3 }, 21, new [] { 0, 4, 18 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 3, 4, 5 }, 21, new [] { 0, 4, 16 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10 }, 101, new [] { 91 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10, 20 }, 101, new [] { 0, 81 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10, 20, 30 }, 100, new [] { 0, 11, 70 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10, 20, 30 }, 101, new [] { 0, 11, 71 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 0 }, 1, new [] { 0 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 0, 0 }, 1, new [] { 0, 1 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 0, 0, 0 }, 1, new [] { 0, 0, 1 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1 }, 1, new [] { 0 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1 }, 2, new [] { 0 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1 }, 3, new [] { 0 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 1 }, 2, new [] { 0, 1 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 1 }, 3, new [] { 0, 2 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 1 }, 4, new [] { 0, 3 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 7, new [] { 0, 1, 4 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 8, new [] { 0, 2, 5 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 9, new [] { 0, 3, 6 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 10, new [] { 0, 4, 7 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 11, new [] { 0, 5, 8 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 1, 3, 7 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 12, new [] { 0, 1, 4, 8 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 3, 3, 3 }, 21, new [] { 0, 14, 18 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 3, 4, 5 }, 21, new [] { 0, 11, 16 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 33, 33, 33 }, 100, new [] { 0, 33, 67 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10 }, 101, new [] { 0 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10, 20 }, 101, new [] { 0, 81 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10, 20, 30 }, 100, new [] { 0, 49, 70 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10, 20, 30 }, 101, new [] { 0, 50, 71 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 10, 30, 61 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 10, 30, 60, 101 })]
- public void TestJustifications_PutSpaceBetweenItems (Justification justification, int [] sizes, int containerSize, int [] expected)
- {
- int [] positions = new Justifier
- {
- PutSpaceBetweenItems = true,
- Justification = justification,
- ContainerSize = containerSize
- }.Justify (sizes);
- AssertJustification (justification, sizes, containerSize, positions, expected);
- }
-
- [Theory]
- [InlineData (Justification.Left, new [] { 0 }, 1, new [] { 0 })]
- [InlineData (Justification.Left, new [] { 0, 0 }, 1, new [] { 0, 0 })]
- [InlineData (Justification.Left, new [] { 0, 0, 0 }, 1, new [] { 0, 0, 0 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 7, new [] { 0, 1, 3 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 10, new [] { 0, 1, 3 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 11, new [] { 0, 1, 3 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 12, new [] { 0, 1, 3 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3 }, 13, new [] { 0, 1, 3 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.Left, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.Left, new [] { 10, 20, 30 }, 100, new [] { 0, 10, 30 })]
- [InlineData (Justification.Left, new [] { 33, 33, 33 }, 100, new [] { 0, 33, 66 })]
- [InlineData (Justification.Left, new [] { 10 }, 101, new [] { 0 })]
- [InlineData (Justification.Left, new [] { 10, 20 }, 101, new [] { 0, 10 })]
- [InlineData (Justification.Left, new [] { 10, 20, 30 }, 101, new [] { 0, 10, 30 })]
- [InlineData (Justification.Left, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 10, 30, 60 })]
- [InlineData (Justification.Left, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 10, 30, 60, 100 })]
- [InlineData (Justification.Right, new [] { 0 }, 1, new [] { 1 })]
- [InlineData (Justification.Right, new [] { 0, 0 }, 1, new [] { 1, 1 })]
- [InlineData (Justification.Right, new [] { 0, 0, 0 }, 1, new [] { 1, 1, 1 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 7, new [] { 1, 2, 4 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 10, new [] { 4, 5, 7 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 11, new [] { 5, 6, 8 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 12, new [] { 6, 7, 9 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3 }, 13, new [] { 7, 8, 10 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.Right, new [] { 1, 2, 3, 4 }, 11, new [] { 1, 2, 4, 7 })]
- [InlineData (Justification.Right, new [] { 10, 20, 30 }, 100, new [] { 40, 50, 70 })]
- [InlineData (Justification.Right, new [] { 33, 33, 33 }, 100, new [] { 1, 34, 67 })]
- [InlineData (Justification.Right, new [] { 10 }, 101, new [] { 91 })]
- [InlineData (Justification.Right, new [] { 10, 20 }, 101, new [] { 71, 81 })]
- [InlineData (Justification.Right, new [] { 10, 20, 30 }, 101, new [] { 41, 51, 71 })]
- [InlineData (Justification.Right, new [] { 10, 20, 30, 40 }, 101, new [] { 1, 11, 31, 61 })]
- [InlineData (Justification.Right, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 1, 11, 31, 61, 101 })]
- [InlineData (Justification.Centered, new [] { 1 }, 1, new [] { 0 })]
- [InlineData (Justification.Centered, new [] { 1 }, 2, new [] { 0 })]
- [InlineData (Justification.Centered, new [] { 1 }, 3, new [] { 1 })]
- [InlineData (Justification.Centered, new [] { 1, 1 }, 2, new [] { 0, 1 })]
- [InlineData (Justification.Centered, new [] { 1, 1 }, 3, new [] { 0, 1 })]
- [InlineData (Justification.Centered, new [] { 1, 1 }, 4, new [] { 1, 2 })]
- [InlineData (Justification.Centered, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3 }, 7, new [] { 0, 1, 3 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3 }, 10, new [] { 2, 3, 5 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3 }, 11, new [] { 2, 3, 5 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.Centered, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.Centered, new [] { 3, 3, 3 }, 9, new [] { 0, 3, 6 })]
- [InlineData (Justification.Centered, new [] { 3, 3, 3 }, 10, new [] { 0, 3, 6 })]
- [InlineData (Justification.Centered, new [] { 3, 3, 3 }, 11, new [] { 1, 4, 7 })]
- [InlineData (Justification.Centered, new [] { 3, 3, 3 }, 12, new [] { 1, 4, 7 })]
- [InlineData (Justification.Centered, new [] { 3, 3, 3 }, 13, new [] { 2, 5, 8 })]
- [InlineData (Justification.Centered, new [] { 33, 33, 33 }, 100, new [] { 0, 33, 66 })]
- [InlineData (Justification.Centered, new [] { 33, 33, 33 }, 101, new [] { 1, 34, 67 })]
- [InlineData (Justification.Centered, new [] { 33, 33, 33 }, 102, new [] { 1, 34, 67 })]
- [InlineData (Justification.Centered, new [] { 33, 33, 33 }, 103, new [] { 2, 35, 68 })]
- [InlineData (Justification.Centered, new [] { 33, 33, 33 }, 104, new [] { 2, 35, 68 })]
- [InlineData (Justification.Centered, new [] { 3, 4, 5, 6 }, 25, new [] { 3, 6, 10, 15 })]
- [InlineData (Justification.Justified, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
- [InlineData (Justification.Justified, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
- [InlineData (Justification.Justified, new [] { 10, 20, 30 }, 100, new [] { 0, 30, 70 })]
- [InlineData (Justification.Justified, new [] { 10, 20, 30 }, 101, new [] { 0, 31, 71 })]
- [InlineData (Justification.Justified, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
- [InlineData (Justification.Justified, new [] { 11, 17, 23 }, 100, new [] { 0, 36, 77 })]
- [InlineData (Justification.Justified, new [] { 1, 2, 3 }, 11, new [] { 0, 4, 8 })]
- [InlineData (Justification.Justified, new [] { 10, 20 }, 101, new [] { 0, 81 })]
- [InlineData (Justification.Justified, new [] { 10 }, 101, new [] { 0 })]
- [InlineData (Justification.Justified, new [] { 3, 3, 3 }, 21, new [] { 0, 9, 18 })]
- [InlineData (Justification.Justified, new [] { 3, 4, 5 }, 21, new [] { 0, 8, 16 })]
- [InlineData (Justification.Justified, new [] { 3, 4, 5, 6 }, 18, new [] { 0, 3, 7, 12 })]
- [InlineData (Justification.Justified, new [] { 3, 4, 5, 6 }, 19, new [] { 0, 4, 8, 13 })]
- [InlineData (Justification.Justified, new [] { 3, 4, 5, 6 }, 20, new [] { 0, 4, 9, 14 })]
- [InlineData (Justification.Justified, new [] { 3, 4, 5, 6 }, 21, new [] { 0, 4, 9, 15 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 22, new [] { 0, 8, 14, 19 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 23, new [] { 0, 8, 15, 20 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 24, new [] { 0, 8, 15, 21 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 25, new [] { 0, 9, 16, 22 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 26, new [] { 0, 9, 17, 23 })]
- [InlineData (Justification.Justified, new [] { 6, 5, 4, 3 }, 31, new [] { 0, 11, 20, 28 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 0 }, 1, new [] { 1 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 0, 0 }, 1, new [] { 0, 1 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 0, 0, 0 }, 1, new [] { 0, 0, 1 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1 }, 1, new [] { 0 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1 }, 2, new [] { 1 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1 }, 3, new [] { 2 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 1 }, 2, new [] { 0, 1 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 1 }, 3, new [] { 0, 2 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 1 }, 4, new [] { 0, 3 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 7, new [] { 0, 1, 4 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 8, new [] { 0, 1, 5 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 9, new [] { 0, 1, 6 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 10, new [] { 0, 1, 7 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3 }, 11, new [] { 0, 1, 8 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 1, 3, 7 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 1, 2, 3, 4 }, 12, new [] { 0, 1, 3, 8 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 3, 3, 3 }, 21, new [] { 0, 3, 18 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 3, 4, 5 }, 21, new [] { 0, 3, 16 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 33, 33, 33 }, 100, new [] { 0, 33, 67 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10 }, 101, new [] { 91 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10, 20 }, 101, new [] { 0, 81 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10, 20, 30 }, 100, new [] { 0, 10, 70 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10, 20, 30 }, 101, new [] { 0, 10, 71 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 10, 30, 61 })]
- [InlineData (Justification.LastRightRestLeft, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 10, 30, 60, 101 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 0 }, 1, new [] { 0 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 0, 0 }, 1, new [] { 0, 1 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 0, 0, 0 }, 1, new [] { 0, 1, 1 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1 }, 1, new [] { 0 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1 }, 2, new [] { 0 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1 }, 3, new [] { 0 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 1 }, 2, new [] { 0, 1 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 1 }, 3, new [] { 0, 2 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 1 }, 4, new [] { 0, 3 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 1, 1 }, 3, new [] { 0, 1, 2 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 6, new [] { 0, 1, 3 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 7, new [] { 0, 2, 4 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 8, new [] { 0, 3, 5 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 9, new [] { 0, 4, 6 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 10, new [] { 0, 5, 7 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3 }, 11, new [] { 0, 6, 8 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 10, new [] { 0, 1, 3, 6 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 11, new [] { 0, 2, 4, 7 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 1, 2, 3, 4 }, 12, new [] { 0, 3, 5, 8 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 3, 3, 3 }, 21, new [] { 0, 15, 18 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 3, 4, 5 }, 21, new [] { 0, 12, 16 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 33, 33, 33 }, 100, new [] { 0, 34, 67 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10 }, 101, new [] { 0 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10, 20 }, 101, new [] { 0, 81 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10, 20, 30 }, 100, new [] { 0, 50, 70 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10, 20, 30 }, 101, new [] { 0, 51, 71 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10, 20, 30, 40 }, 101, new [] { 0, 11, 31, 61 })]
- [InlineData (Justification.FirstLeftRestRight, new [] { 10, 20, 30, 40, 50 }, 151, new [] { 0, 11, 31, 61, 101 })]
- public void TestJustifications_NoSpaceBetweenItems (Justification justification, int [] sizes, int containerSize, int [] expected)
- {
- int [] positions = new Justifier
- {
- PutSpaceBetweenItems = false,
- Justification = justification,
- ContainerSize = containerSize
- }.Justify (sizes);
- AssertJustification (justification, sizes, containerSize, positions, expected);
- }
-
- public void AssertJustification (Justification justification, int [] sizes, int totalSize, int [] positions, int [] expected)
- {
- try
- {
- _output.WriteLine ($"Testing: {RenderJustification (justification, sizes, totalSize, expected)}");
- }
- catch (Exception e)
- {
- _output.WriteLine ($"Exception rendering expected: {e.Message}");
- _output.WriteLine ($"Actual: {RenderJustification (justification, sizes, totalSize, positions)}");
- }
-
- if (!expected.SequenceEqual (positions))
- {
- _output.WriteLine ($"Expected: {RenderJustification (justification, sizes, totalSize, expected)}");
- _output.WriteLine ($"Actual: {RenderJustification (justification, sizes, totalSize, positions)}");
- Assert.Fail (" Expected and actual do not match");
- }
- }
-
- public string RenderJustification (Justification justification, int [] sizes, int totalSize, int [] positions)
- {
- var output = new StringBuilder ();
- output.AppendLine ($"Justification: {justification}, Positions: {string.Join (", ", positions)}, TotalSize: {totalSize}");
-
- for (var i = 0; i <= totalSize / 10; i++)
- {
- output.Append (i.ToString ().PadRight (9) + " ");
- }
-
- output.AppendLine ();
-
- for (var i = 0; i < totalSize; i++)
- {
- output.Append (i % 10);
- }
-
- output.AppendLine ();
-
- var items = new char [totalSize];
-
- for (var position = 0; position < positions.Length; position++)
- {
- // try
- {
- for (var j = 0; j < sizes [position] && positions [position] + j < totalSize; j++)
- {
- items [positions [position] + j] = (position + 1).ToString () [0];
- }
- }
-
- //catch (Exception e)
- //{
- // output.AppendLine ($"{e.Message} - position = {position}, positions[{position}]: {positions [position]}, sizes[{position}]: {sizes [position]}, totalSize: {totalSize}");
- // output.Append (new string (items).Replace ('\0', ' '));
-
- // Assert.Fail (e.Message + output.ToString ());
- //}
- }
-
- output.Append (new string (items).Replace ('\0', ' '));
-
- return output.ToString ();
- }
-}
diff --git a/UnitTests/Text/TextFormatterTests.cs b/UnitTests/Text/TextFormatterTests.cs
index fda92ad8e..cdbd44244 100644
--- a/UnitTests/Text/TextFormatterTests.cs
+++ b/UnitTests/Text/TextFormatterTests.cs
@@ -53,36 +53,36 @@ public class TextFormatterTests
tf.Text = testText;
Size expectedSize = new (testText.Length, 1);
Assert.Equal (testText, tf.Text);
- Assert.Equal (TextAlignment.Left, tf.Alignment);
+ Assert.Equal (Alignment.Left, tf.Alignment);
Assert.Equal (expectedSize, tf.Size);
tf.Draw (testBounds, new Attribute (), new Attribute ());
Assert.Equal (expectedSize, tf.Size);
Assert.NotEmpty (tf.GetLines ());
- tf.Alignment = TextAlignment.Right;
+ tf.Alignment = Alignment.Right;
expectedSize = new (testText.Length, 1);
Assert.Equal (testText, tf.Text);
- Assert.Equal (TextAlignment.Right, tf.Alignment);
+ Assert.Equal (Alignment.Right, tf.Alignment);
Assert.Equal (expectedSize, tf.Size);
tf.Draw (testBounds, new Attribute (), new Attribute ());
Assert.Equal (expectedSize, tf.Size);
Assert.NotEmpty (tf.GetLines ());
- tf.Alignment = TextAlignment.Right;
+ tf.Alignment = Alignment.Right;
expectedSize = new (testText.Length, 1);
tf.Size = expectedSize;
Assert.Equal (testText, tf.Text);
- Assert.Equal (TextAlignment.Right, tf.Alignment);
+ Assert.Equal (Alignment.Right, tf.Alignment);
Assert.Equal (expectedSize, tf.Size);
tf.Draw (testBounds, new Attribute (), new Attribute ());
Assert.Equal (expectedSize, tf.Size);
Assert.NotEmpty (tf.GetLines ());
- tf.Alignment = TextAlignment.Centered;
+ tf.Alignment = Alignment.Centered;
expectedSize = new (testText.Length, 1);
tf.Size = expectedSize;
Assert.Equal (testText, tf.Text);
- Assert.Equal (TextAlignment.Centered, tf.Alignment);
+ Assert.Equal (Alignment.Centered, tf.Alignment);
Assert.Equal (expectedSize, tf.Size);
tf.Draw (testBounds, new Attribute (), new Attribute ());
Assert.Equal (expectedSize, tf.Size);
@@ -191,12 +191,12 @@ public class TextFormatterTests
public void ClipAndJustify_Invalid_Returns_Original (string text)
{
string expected = string.IsNullOrEmpty (text) ? text : "";
- Assert.Equal (expected, TextFormatter.ClipAndJustify (text, 0, TextAlignment.Left));
- Assert.Equal (expected, TextFormatter.ClipAndJustify (text, 0, TextAlignment.Left));
+ Assert.Equal (expected, TextFormatter.ClipAndJustify (text, 0, Alignment.Left));
+ Assert.Equal (expected, TextFormatter.ClipAndJustify (text, 0, Alignment.Left));
Assert.Throws (
() =>
- TextFormatter.ClipAndJustify (text, -1, TextAlignment.Left)
+ TextFormatter.ClipAndJustify (text, -1, Alignment.Left)
);
}
@@ -219,19 +219,19 @@ public class TextFormatterTests
[InlineData ("Ð ÑÐ", "Ð Ñ", 3)] // Should not fit
public void ClipAndJustify_Valid_Centered (string text, string justifiedText, int maxWidth)
{
- var align = TextAlignment.Centered;
+ var alignment = Alignment.Centered;
var textDirection = TextDirection.LeftRight_TopBottom;
var tabWidth = 1;
Assert.Equal (
justifiedText,
- TextFormatter.ClipAndJustify (text, maxWidth, align, textDirection, tabWidth)
+ TextFormatter.ClipAndJustify (text, maxWidth, alignment, textDirection, tabWidth)
);
int expectedClippedWidth = Math.Min (justifiedText.GetRuneCount (), maxWidth);
Assert.Equal (
justifiedText,
- TextFormatter.ClipAndJustify (text, maxWidth, align, textDirection, tabWidth)
+ TextFormatter.ClipAndJustify (text, maxWidth, alignment, textDirection, tabWidth)
);
Assert.True (justifiedText.GetRuneCount () <= maxWidth);
Assert.True (justifiedText.GetColumns () <= maxWidth);
@@ -277,19 +277,19 @@ public class TextFormatterTests
[InlineData ("Ð ÑÐ", "Ð Ñ", 3)] // Should not fit
public void ClipAndJustify_Valid_Justified (string text, string justifiedText, int maxWidth)
{
- var align = TextAlignment.Justified;
+ var alignment = Alignment.Justified;
var textDirection = TextDirection.LeftRight_TopBottom;
var tabWidth = 1;
Assert.Equal (
justifiedText,
- TextFormatter.ClipAndJustify (text, maxWidth, align, textDirection, tabWidth)
+ TextFormatter.ClipAndJustify (text, maxWidth, alignment, textDirection, tabWidth)
);
int expectedClippedWidth = Math.Min (justifiedText.GetRuneCount (), maxWidth);
Assert.Equal (
justifiedText,
- TextFormatter.ClipAndJustify (text, maxWidth, align, textDirection, tabWidth)
+ TextFormatter.ClipAndJustify (text, maxWidth, alignment, textDirection, tabWidth)
);
Assert.True (justifiedText.GetRuneCount () <= maxWidth);
Assert.True (justifiedText.GetColumns () <= maxWidth);
@@ -328,19 +328,19 @@ public class TextFormatterTests
[InlineData ("Ð ÑÐ", "Ð Ñ", 3)] // Should not fit
public void ClipAndJustify_Valid_Left (string text, string justifiedText, int maxWidth)
{
- var align = TextAlignment.Left;
+ var alignment = Alignment.Left;
var textDirection = TextDirection.LeftRight_BottomTop;
var tabWidth = 1;
Assert.Equal (
justifiedText,
- TextFormatter.ClipAndJustify (text, maxWidth, align, textDirection, tabWidth)
+ TextFormatter.ClipAndJustify (text, maxWidth, alignment, textDirection, tabWidth)
);
int expectedClippedWidth = Math.Min (justifiedText.GetRuneCount (), maxWidth);
Assert.Equal (
justifiedText,
- TextFormatter.ClipAndJustify (text, maxWidth, align, textDirection, tabWidth)
+ TextFormatter.ClipAndJustify (text, maxWidth, alignment, textDirection, tabWidth)
);
Assert.True (justifiedText.GetRuneCount () <= maxWidth);
Assert.True (justifiedText.GetColumns () <= maxWidth);
@@ -377,19 +377,19 @@ public class TextFormatterTests
[InlineData ("Ð ÑÐ", "Ð Ñ", 3)] // Should not fit
public void ClipAndJustify_Valid_Right (string text, string justifiedText, int maxWidth)
{
- var align = TextAlignment.Right;
+ var alignment = Alignment.Right;
var textDirection = TextDirection.LeftRight_BottomTop;
var tabWidth = 1;
Assert.Equal (
justifiedText,
- TextFormatter.ClipAndJustify (text, maxWidth, align, textDirection, tabWidth)
+ TextFormatter.ClipAndJustify (text, maxWidth, alignment, textDirection, tabWidth)
);
int expectedClippedWidth = Math.Min (justifiedText.GetRuneCount (), maxWidth);
Assert.Equal (
justifiedText,
- TextFormatter.ClipAndJustify (text, maxWidth, align, textDirection, tabWidth)
+ TextFormatter.ClipAndJustify (text, maxWidth, alignment, textDirection, tabWidth)
);
Assert.True (justifiedText.GetRuneCount () <= maxWidth);
Assert.True (justifiedText.GetColumns () <= maxWidth);
@@ -757,7 +757,7 @@ ssb
TextFormatter.Format (
"Some text",
4,
- TextAlignment.Left,
+ Alignment.Left,
false,
true
)
@@ -785,7 +785,7 @@ ssb
for (int i = text.GetRuneCount (); i < maxWidth; i++)
{
- fmtText = TextFormatter.Format (text, i, TextAlignment.Justified, false, true) [0];
+ fmtText = TextFormatter.Format (text, i, Alignment.Justified, false, true) [0];
Assert.Equal (i, fmtText.GetRuneCount ());
char c = fmtText [^1];
Assert.True (text.EndsWith (c));
@@ -817,7 +817,7 @@ ssb
fmtText = TextFormatter.Format (
text,
i,
- TextAlignment.Justified,
+ Alignment.Justified,
false,
true,
0,
@@ -862,7 +862,7 @@ ssb
" A sentence has words. \n This is the second Line - 2. ",
4,
-50,
- TextAlignment.Left,
+ Alignment.Left,
true,
false,
new [] { " A", "sent", "ence", "has", "word", "s. ", " Thi", "s is", "the", "seco", "nd", "Line", "- 2." },
@@ -872,7 +872,7 @@ ssb
" A sentence has words. \n This is the second Line - 2. ",
4,
-50,
- TextAlignment.Left,
+ Alignment.Left,
true,
true,
new []
@@ -900,7 +900,7 @@ ssb
string text,
int maxWidth,
int widthOffset,
- TextAlignment textAlignment,
+ Alignment alignment,
bool wrap,
bool preserveTrailingSpaces,
IEnumerable resultLines,
@@ -908,7 +908,7 @@ ssb
)
{
Assert.Equal (maxWidth, text.GetRuneCount () + widthOffset);
- List list = TextFormatter.Format (text, maxWidth, textAlignment, wrap, preserveTrailingSpaces);
+ List list = TextFormatter.Format (text, maxWidth, alignment, wrap, preserveTrailingSpaces);
Assert.Equal (list.Count, resultLines.Count ());
Assert.Equal (resultLines, list);
var wrappedText = string.Empty;
@@ -1336,30 +1336,30 @@ ssb
Assert.NotEmpty (tf.GetLines ());
Assert.False (tf.NeedsFormat); // get_Lines causes a Format
- tf.Alignment = TextAlignment.Centered;
+ tf.Alignment = Alignment.Centered;
Assert.True (tf.NeedsFormat);
Assert.NotEmpty (tf.GetLines ());
Assert.False (tf.NeedsFormat); // get_Lines causes a Format
}
[Theory]
- [InlineData ("", -1, TextAlignment.Left, false, 0)]
- [InlineData (null, 0, TextAlignment.Left, false, 1)]
- [InlineData (null, 0, TextAlignment.Left, true, 1)]
- [InlineData ("", 0, TextAlignment.Left, false, 1)]
- [InlineData ("", 0, TextAlignment.Left, true, 1)]
- public void Reformat_Invalid (string text, int maxWidth, TextAlignment textAlignment, bool wrap, int linesCount)
+ [InlineData ("", -1, Alignment.Left, false, 0)]
+ [InlineData (null, 0, Alignment.Left, false, 1)]
+ [InlineData (null, 0, Alignment.Left, true, 1)]
+ [InlineData ("", 0, Alignment.Left, false, 1)]
+ [InlineData ("", 0, Alignment.Left, true, 1)]
+ public void Reformat_Invalid (string text, int maxWidth, Alignment alignment, bool wrap, int linesCount)
{
if (maxWidth < 0)
{
Assert.Throws (
() =>
- TextFormatter.Format (text, maxWidth, textAlignment, wrap)
+ TextFormatter.Format (text, maxWidth, alignment, wrap)
);
}
else
{
- List list = TextFormatter.Format (text, maxWidth, textAlignment, wrap);
+ List list = TextFormatter.Format (text, maxWidth, alignment, wrap);
Assert.NotEmpty (list);
Assert.True (list.Count == linesCount);
Assert.Equal (string.Empty, list [0]);
@@ -1367,25 +1367,25 @@ ssb
}
[Theory]
- [InlineData ("A sentence has words.\nLine 2.", 0, -29, TextAlignment.Left, false, 1, true)]
- [InlineData ("A sentence has words.\nLine 2.", 1, -28, TextAlignment.Left, false, 1, false)]
- [InlineData ("A sentence has words.\nLine 2.", 5, -24, TextAlignment.Left, false, 1, false)]
- [InlineData ("A sentence has words.\nLine 2.", 28, -1, TextAlignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.\nLine 2.", 0, -29, Alignment.Left, false, 1, true)]
+ [InlineData ("A sentence has words.\nLine 2.", 1, -28, Alignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.\nLine 2.", 5, -24, Alignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.\nLine 2.", 28, -1, Alignment.Left, false, 1, false)]
// no clip
- [InlineData ("A sentence has words.\nLine 2.", 29, 0, TextAlignment.Left, false, 1, false)]
- [InlineData ("A sentence has words.\nLine 2.", 30, 1, TextAlignment.Left, false, 1, false)]
- [InlineData ("A sentence has words.\r\nLine 2.", 0, -30, TextAlignment.Left, false, 1, true)]
- [InlineData ("A sentence has words.\r\nLine 2.", 1, -29, TextAlignment.Left, false, 1, false)]
- [InlineData ("A sentence has words.\r\nLine 2.", 5, -25, TextAlignment.Left, false, 1, false)]
- [InlineData ("A sentence has words.\r\nLine 2.", 29, -1, TextAlignment.Left, false, 1, false, 1)]
- [InlineData ("A sentence has words.\r\nLine 2.", 30, 0, TextAlignment.Left, false, 1, false)]
- [InlineData ("A sentence has words.\r\nLine 2.", 31, 1, TextAlignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.\nLine 2.", 29, 0, Alignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.\nLine 2.", 30, 1, Alignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.\r\nLine 2.", 0, -30, Alignment.Left, false, 1, true)]
+ [InlineData ("A sentence has words.\r\nLine 2.", 1, -29, Alignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.\r\nLine 2.", 5, -25, Alignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.\r\nLine 2.", 29, -1, Alignment.Left, false, 1, false, 1)]
+ [InlineData ("A sentence has words.\r\nLine 2.", 30, 0, Alignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.\r\nLine 2.", 31, 1, Alignment.Left, false, 1, false)]
public void Reformat_NoWordrap_NewLines_MultiLine_False (
string text,
int maxWidth,
int widthOffset,
- TextAlignment textAlignment,
+ Alignment alignment,
bool wrap,
int linesCount,
bool stringEmpty,
@@ -1394,7 +1394,7 @@ ssb
{
Assert.Equal (maxWidth, text.GetRuneCount () + widthOffset);
int expectedClippedWidth = Math.Min (text.GetRuneCount (), maxWidth) + clipWidthOffset;
- List list = TextFormatter.Format (text, maxWidth, textAlignment, wrap);
+ List list = TextFormatter.Format (text, maxWidth, alignment, wrap);
Assert.NotEmpty (list);
Assert.True (list.Count == linesCount);
@@ -1430,12 +1430,12 @@ ssb
}
[Theory]
- [InlineData ("A sentence has words.\nLine 2.", 0, -29, TextAlignment.Left, false, 1, true, new [] { "" })]
+ [InlineData ("A sentence has words.\nLine 2.", 0, -29, Alignment.Left, false, 1, true, new [] { "" })]
[InlineData (
"A sentence has words.\nLine 2.",
1,
-28,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1445,7 +1445,7 @@ ssb
"A sentence has words.\nLine 2.",
5,
-24,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1455,7 +1455,7 @@ ssb
"A sentence has words.\nLine 2.",
28,
-1,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1466,7 +1466,7 @@ ssb
"A sentence has words.\nLine 2.",
29,
0,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1476,18 +1476,18 @@ ssb
"A sentence has words.\nLine 2.",
30,
1,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
new [] { "A sentence has words.", "Line 2." }
)]
- [InlineData ("A sentence has words.\r\nLine 2.", 0, -30, TextAlignment.Left, false, 1, true, new [] { "" })]
+ [InlineData ("A sentence has words.\r\nLine 2.", 0, -30, Alignment.Left, false, 1, true, new [] { "" })]
[InlineData (
"A sentence has words.\r\nLine 2.",
1,
-29,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1497,7 +1497,7 @@ ssb
"A sentence has words.\r\nLine 2.",
5,
-25,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1507,7 +1507,7 @@ ssb
"A sentence has words.\r\nLine 2.",
29,
-1,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1517,7 +1517,7 @@ ssb
"A sentence has words.\r\nLine 2.",
30,
0,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1527,7 +1527,7 @@ ssb
"A sentence has words.\r\nLine 2.",
31,
1,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1537,7 +1537,7 @@ ssb
string text,
int maxWidth,
int widthOffset,
- TextAlignment textAlignment,
+ Alignment alignment,
bool wrap,
int linesCount,
bool stringEmpty,
@@ -1549,7 +1549,7 @@ ssb
List list = TextFormatter.Format (
text,
maxWidth,
- textAlignment,
+ alignment,
wrap,
false,
0,
@@ -1572,12 +1572,12 @@ ssb
}
[Theory]
- [InlineData ("A sentence has words.\nLine 2.", 0, -29, TextAlignment.Left, false, 1, true, new [] { "" })]
+ [InlineData ("A sentence has words.\nLine 2.", 0, -29, Alignment.Left, false, 1, true, new [] { "" })]
[InlineData (
"A sentence has words.\nLine 2.",
1,
-28,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1587,7 +1587,7 @@ ssb
"A sentence has words.\nLine 2.",
5,
-24,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1597,7 +1597,7 @@ ssb
"A sentence has words.\nLine 2.",
28,
-1,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1608,7 +1608,7 @@ ssb
"A sentence has words.\nLine 2.",
29,
0,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1618,18 +1618,18 @@ ssb
"A sentence has words.\nLine 2.",
30,
1,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
new [] { "A sentence has words.", "Line 2." }
)]
- [InlineData ("A sentence has words.\r\nLine 2.", 0, -30, TextAlignment.Left, false, 1, true, new [] { "" })]
+ [InlineData ("A sentence has words.\r\nLine 2.", 0, -30, Alignment.Left, false, 1, true, new [] { "" })]
[InlineData (
"A sentence has words.\r\nLine 2.",
1,
-29,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1639,7 +1639,7 @@ ssb
"A sentence has words.\r\nLine 2.",
5,
-25,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1649,7 +1649,7 @@ ssb
"A sentence has words.\r\nLine 2.",
29,
-1,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1659,7 +1659,7 @@ ssb
"A sentence has words.\r\nLine 2.",
30,
0,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1669,7 +1669,7 @@ ssb
"A sentence has words.\r\nLine 2.",
31,
1,
- TextAlignment.Left,
+ Alignment.Left,
false,
2,
false,
@@ -1679,7 +1679,7 @@ ssb
string text,
int maxWidth,
int widthOffset,
- TextAlignment textAlignment,
+ Alignment alignment,
bool wrap,
int linesCount,
bool stringEmpty,
@@ -1691,7 +1691,7 @@ ssb
List list = TextFormatter.Format (
text,
maxWidth,
- textAlignment,
+ alignment,
wrap,
false,
0,
@@ -1714,21 +1714,21 @@ ssb
}
[Theory]
- [InlineData ("", 0, 0, TextAlignment.Left, false, 1, true)]
- [InlineData ("", 1, 1, TextAlignment.Left, false, 1, true)]
- [InlineData ("A sentence has words.", 0, -21, TextAlignment.Left, false, 1, true)]
- [InlineData ("A sentence has words.", 1, -20, TextAlignment.Left, false, 1, false)]
- [InlineData ("A sentence has words.", 5, -16, TextAlignment.Left, false, 1, false)]
- [InlineData ("A sentence has words.", 20, -1, TextAlignment.Left, false, 1, false)]
+ [InlineData ("", 0, 0, Alignment.Left, false, 1, true)]
+ [InlineData ("", 1, 1, Alignment.Left, false, 1, true)]
+ [InlineData ("A sentence has words.", 0, -21, Alignment.Left, false, 1, true)]
+ [InlineData ("A sentence has words.", 1, -20, Alignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.", 5, -16, Alignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.", 20, -1, Alignment.Left, false, 1, false)]
// no clip
- [InlineData ("A sentence has words.", 21, 0, TextAlignment.Left, false, 1, false)]
- [InlineData ("A sentence has words.", 22, 1, TextAlignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.", 21, 0, Alignment.Left, false, 1, false)]
+ [InlineData ("A sentence has words.", 22, 1, Alignment.Left, false, 1, false)]
public void Reformat_NoWordrap_SingleLine (
string text,
int maxWidth,
int widthOffset,
- TextAlignment textAlignment,
+ Alignment alignment,
bool wrap,
int linesCount,
bool stringEmpty
@@ -1736,7 +1736,7 @@ ssb
{
Assert.Equal (maxWidth, text.GetRuneCount () + widthOffset);
int expectedClippedWidth = Math.Min (text.GetRuneCount (), maxWidth);
- List list = TextFormatter.Format (text, maxWidth, textAlignment, wrap);
+ List list = TextFormatter.Format (text, maxWidth, alignment, wrap);
Assert.NotEmpty (list);
Assert.True (list.Count == linesCount);
@@ -1759,7 +1759,7 @@ ssb
"\u2460\u2461\u2462\n\u2460\u2461\u2462\u2463\u2464",
8,
-1,
- TextAlignment.Left,
+ Alignment.Left,
true,
false,
new [] { "\u2460\u2461\u2462", "\u2460\u2461\u2462\u2463\u2464" }
@@ -1770,7 +1770,7 @@ ssb
"\u2460\u2461\u2462\n\u2460\u2461\u2462\u2463\u2464",
9,
0,
- TextAlignment.Left,
+ Alignment.Left,
true,
false,
new [] { "\u2460\u2461\u2462", "\u2460\u2461\u2462\u2463\u2464" }
@@ -1779,7 +1779,7 @@ ssb
"\u2460\u2461\u2462\n\u2460\u2461\u2462\u2463\u2464",
10,
1,
- TextAlignment.Left,
+ Alignment.Left,
true,
false,
new [] { "\u2460\u2461\u2462", "\u2460\u2461\u2462\u2463\u2464" }
@@ -1788,14 +1788,14 @@ ssb
string text,
int maxWidth,
int widthOffset,
- TextAlignment textAlignment,
+ Alignment alignment,
bool wrap,
bool preserveTrailingSpaces,
IEnumerable resultLines
)
{
Assert.Equal (maxWidth, text.GetRuneCount () + widthOffset);
- List list = TextFormatter.Format (text, maxWidth, textAlignment, wrap, preserveTrailingSpaces);
+ List list = TextFormatter.Format (text, maxWidth, alignment, wrap, preserveTrailingSpaces);
Assert.Equal (list.Count, resultLines.Count ());
Assert.Equal (resultLines, list);
}
@@ -1805,32 +1805,32 @@ ssb
// Unicode
// Even # of chars
// 0123456789
- [InlineData ("\u2660пÑРвРÑ", 10, -1, TextAlignment.Left, true, false, new [] { "\u2660пÑРвÐ", "Ñ" })]
+ [InlineData ("\u2660пÑРвРÑ", 10, -1, Alignment.Left, true, false, new [] { "\u2660пÑРвÐ", "Ñ" })]
// no clip
- [InlineData ("\u2660пÑРвРÑ", 11, 0, TextAlignment.Left, true, false, new [] { "\u2660пÑРвРÑ" })]
- [InlineData ("\u2660пÑРвРÑ", 12, 1, TextAlignment.Left, true, false, new [] { "\u2660пÑРвРÑ" })]
+ [InlineData ("\u2660пÑРвРÑ", 11, 0, Alignment.Left, true, false, new [] { "\u2660пÑРвРÑ" })]
+ [InlineData ("\u2660пÑРвРÑ", 12, 1, Alignment.Left, true, false, new [] { "\u2660пÑРвРÑ" })]
// Unicode
// Odd # of chars
// 0123456789
- [InlineData ("\u2660 ÑРвРÑ", 9, -1, TextAlignment.Left, true, false, new [] { "\u2660 ÑРвÐ", "Ñ" })]
+ [InlineData ("\u2660 ÑРвРÑ", 9, -1, Alignment.Left, true, false, new [] { "\u2660 ÑРвÐ", "Ñ" })]
// no clip
- [InlineData ("\u2660 ÑРвРÑ", 10, 0, TextAlignment.Left, true, false, new [] { "\u2660 ÑРвРÑ" })]
- [InlineData ("\u2660 ÑРвРÑ", 11, 1, TextAlignment.Left, true, false, new [] { "\u2660 ÑРвРÑ" })]
+ [InlineData ("\u2660 ÑРвРÑ", 10, 0, Alignment.Left, true, false, new [] { "\u2660 ÑРвРÑ" })]
+ [InlineData ("\u2660 ÑРвРÑ", 11, 1, Alignment.Left, true, false, new [] { "\u2660 ÑРвРÑ" })]
public void Reformat_Unicode_Wrap_Spaces_No_NewLines (
string text,
int maxWidth,
int widthOffset,
- TextAlignment textAlignment,
+ Alignment alignment,
bool wrap,
bool preserveTrailingSpaces,
IEnumerable resultLines
)
{
Assert.Equal (maxWidth, text.GetRuneCount () + widthOffset);
- List list = TextFormatter.Format (text, maxWidth, textAlignment, wrap, preserveTrailingSpaces);
+ List list = TextFormatter.Format (text, maxWidth, alignment, wrap, preserveTrailingSpaces);
Assert.Equal (list.Count, resultLines.Count ());
Assert.Equal (resultLines, list);
}
@@ -1839,37 +1839,37 @@ ssb
// Even # of spaces
// 0123456789
- [InlineData ("012 456 89", 0, -10, TextAlignment.Left, true, true, true, new [] { "" })]
+ [InlineData ("012 456 89", 0, -10, Alignment.Left, true, true, true, new [] { "" })]
[InlineData (
"012 456 89",
1,
-9,
- TextAlignment.Left,
+ Alignment.Left,
true,
true,
false,
new [] { "0", "1", "2", " ", "4", "5", "6", " ", "8", "9" },
"01245689"
)]
- [InlineData ("012 456 89", 5, -5, TextAlignment.Left, true, true, false, new [] { "012 ", "456 ", "89" })]
- [InlineData ("012 456 89", 9, -1, TextAlignment.Left, true, true, false, new [] { "012 456 ", "89" })]
+ [InlineData ("012 456 89", 5, -5, Alignment.Left, true, true, false, new [] { "012 ", "456 ", "89" })]
+ [InlineData ("012 456 89", 9, -1, Alignment.Left, true, true, false, new [] { "012 456 ", "89" })]
// no clip
- [InlineData ("012 456 89", 10, 0, TextAlignment.Left, true, true, false, new [] { "012 456 89" })]
- [InlineData ("012 456 89", 11, 1, TextAlignment.Left, true, true, false, new [] { "012 456 89" })]
+ [InlineData ("012 456 89", 10, 0, Alignment.Left, true, true, false, new [] { "012 456 89" })]
+ [InlineData ("012 456 89", 11, 1, Alignment.Left, true, true, false, new [] { "012 456 89" })]
// Odd # of spaces
// 01234567890123
- [InlineData ("012 456 89 end", 13, -1, TextAlignment.Left, true, true, false, new [] { "012 456 89 ", "end" })]
+ [InlineData ("012 456 89 end", 13, -1, Alignment.Left, true, true, false, new [] { "012 456 89 ", "end" })]
// no clip
- [InlineData ("012 456 89 end", 14, 0, TextAlignment.Left, true, true, false, new [] { "012 456 89 end" })]
- [InlineData ("012 456 89 end", 15, 1, TextAlignment.Left, true, true, false, new [] { "012 456 89 end" })]
+ [InlineData ("012 456 89 end", 14, 0, Alignment.Left, true, true, false, new [] { "012 456 89 end" })]
+ [InlineData ("012 456 89 end", 15, 1, Alignment.Left, true, true, false, new [] { "012 456 89 end" })]
public void Reformat_Wrap_Spaces_No_NewLines (
string text,
int maxWidth,
int widthOffset,
- TextAlignment textAlignment,
+ Alignment alignment,
bool wrap,
bool preserveTrailingSpaces,
bool stringEmpty,
@@ -1879,7 +1879,7 @@ ssb
{
Assert.Equal (maxWidth, text.GetRuneCount () + widthOffset);
int expectedClippedWidth = Math.Min (text.GetRuneCount (), maxWidth);
- List list = TextFormatter.Format (text, maxWidth, textAlignment, wrap, preserveTrailingSpaces);
+ List list = TextFormatter.Format (text, maxWidth, alignment, wrap, preserveTrailingSpaces);
Assert.NotEmpty (list);
Assert.True (list.Count == resultLines.Count ());
@@ -1909,7 +1909,7 @@ ssb
);
}
- list = TextFormatter.Format (text, maxWidth, TextAlignment.Left, wrap);
+ list = TextFormatter.Format (text, maxWidth, Alignment.Left, wrap);
if (maxWidth == 1)
{
@@ -2222,176 +2222,6 @@ ssb
Assert.Equal (new Size (expectedWidth, expectedHeight), tf.Size);
}
-
- //[Theory]
- //[InlineData (TextAlignment.Left, false)]
- //[InlineData (TextAlignment.Centered, true)]
- //[InlineData (TextAlignment.Right, false)]
- //[InlineData (TextAlignment.Justified, true)]
- //public void TestSize_DirectionChange_AutoSize_True_Or_False_Horizontal (
- // TextAlignment textAlignment,
- // bool autoSize
- //)
- //{
- // var tf = new TextFormatter
- // {
- // Direction = TextDirection.LeftRight_TopBottom, Text = "你你", Alignment = textAlignment, AutoSize = autoSize
- // };
- // Assert.Equal (4, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
-
- // tf.Direction = TextDirection.TopBottom_LeftRight;
-
- // if (autoSize/* && textAlignment != TextAlignment.Justified*/)
- // {
- // Assert.Equal (2, tf.Size.Width);
- // Assert.Equal (2, tf.Size.Height);
- // }
- // else
- // {
- // Assert.Equal (4, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
- // }
- //}
-
- //[Theory]
- //[InlineData (VerticalTextAlignment.Top, false)]
- //[InlineData (VerticalTextAlignment.Middle, true)]
- //[InlineData (VerticalTextAlignment.Bottom, false)]
- //[InlineData (VerticalTextAlignment.Justified, true)]
- //public void TestSize_DirectionChange_AutoSize_True_Or_False_Vertical (
- // VerticalTextAlignment textAlignment,
- // bool autoSize
- //)
- //{
- // var tf = new TextFormatter
- // {
- // Direction = TextDirection.TopBottom_LeftRight,
- // Text = "你你",
- // VerticalAlignment = textAlignment,
- // AutoSize = autoSize
- // };
- // Assert.Equal (2, tf.Size.Width);
- // Assert.Equal (2, tf.Size.Height);
-
- // tf.Direction = TextDirection.LeftRight_TopBottom;
-
- // if (autoSize/* && textAlignment != VerticalTextAlignment.Justified*/)
- // {
- // Assert.Equal (4, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
- // }
- // else
- // {
- // Assert.Equal (2, tf.Size.Width);
- // Assert.Equal (2, tf.Size.Height);
- // }
- //}
-
- //[Theory]
- //[InlineData (TextDirection.LeftRight_TopBottom, false)]
- //[InlineData (TextDirection.LeftRight_TopBottom, true)]
- //[InlineData (TextDirection.TopBottom_LeftRight, false)]
- //[InlineData (TextDirection.TopBottom_LeftRight, true)]
- //public void TestSize_SizeChange_AutoSize_True_Or_False (TextDirection textDirection, bool autoSize)
- //{
- // var tf = new TextFormatter { Direction = textDirection, Text = "你你", AutoSize = autoSize };
-
- // if (textDirection == TextDirection.LeftRight_TopBottom)
- // {
- // Assert.Equal (4, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
- // }
- // else
- // {
- // Assert.Equal (2, tf.Size.Width);
- // Assert.Equal (2, tf.Size.Height);
- // }
-
- // tf.Size = new (1, 1);
-
- // if (autoSize)
- // {
- // if (textDirection == TextDirection.LeftRight_TopBottom)
- // {
- // Assert.Equal (4, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
- // }
- // else
- // {
- // Assert.Equal (2, tf.Size.Width);
- // Assert.Equal (2, tf.Size.Height);
- // }
- // }
- // else
- // {
- // Assert.Equal (1, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
- // }
- //}
-
- //[Theory]
- //[InlineData (TextAlignment.Left, false)]
- //[InlineData (TextAlignment.Centered, true)]
- //[InlineData (TextAlignment.Right, false)]
- //[InlineData (TextAlignment.Justified, true)]
- //public void TestSize_SizeChange_AutoSize_True_Or_False_Horizontal (TextAlignment textAlignment, bool autoSize)
- //{
- // var tf = new TextFormatter
- // {
- // Direction = TextDirection.LeftRight_TopBottom, Text = "你你", Alignment = textAlignment, AutoSize = autoSize
- // };
- // Assert.Equal (4, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
-
- // tf.Size = new (1, 1);
-
- // if (autoSize)
- // {
- // Assert.Equal (4, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
- // }
- // else
- // {
- // Assert.Equal (1, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
- // }
- //}
-
- //[Theory]
- //[InlineData (VerticalTextAlignment.Top, false)]
- //[InlineData (VerticalTextAlignment.Middle, true)]
- //[InlineData (VerticalTextAlignment.Bottom, false)]
- //[InlineData (VerticalTextAlignment.Justified, true)]
- //public void TestSize_SizeChange_AutoSize_True_Or_False_Vertical (
- // VerticalTextAlignment textAlignment,
- // bool autoSize
- //)
- //{
- // var tf = new TextFormatter
- // {
- // Direction = TextDirection.TopBottom_LeftRight,
- // Text = "你你",
- // VerticalAlignment = textAlignment,
- // AutoSize = autoSize
- // };
- // Assert.Equal (2, tf.Size.Width);
- // Assert.Equal (2, tf.Size.Height);
-
- // tf.Size = new (1, 1);
-
- // if (autoSize)
- // {
- // Assert.Equal (2, tf.Size.Width);
- // Assert.Equal (2, tf.Size.Height);
- // }
- // else
- // {
- // Assert.Equal (1, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
- // }
- //}
-
[Theory]
[InlineData ("你", TextDirection.LeftRight_TopBottom, false, 0, 0)]
[InlineData ("你", TextDirection.LeftRight_TopBottom, true, 2, 1)]
@@ -2408,39 +2238,6 @@ ssb
Assert.Equal (new Size (expectedWidth, expectedHeight), tf.Size);
}
- //[Theory]
- //[InlineData (TextDirection.LeftRight_TopBottom, false)]
- //[InlineData (TextDirection.LeftRight_TopBottom, true)]
- //[InlineData (TextDirection.TopBottom_LeftRight, false)]
- //[InlineData (TextDirection.TopBottom_LeftRight, true)]
- //public void TestSize_TextChange (TextDirection textDirection, bool autoSize)
- //{
- // var tf = new TextFormatter { Direction = textDirection, Text = "你", AutoSize = autoSize };
- // Assert.Equal (new Size (2, 1), tf.Size);
- // tf.Text = "你你";
-
- // Assert.Equal (autoSize, tf.AutoSize);
-
- // if (autoSize)
- // {
- // if (textDirection == TextDirection.LeftRight_TopBottom)
- // {
- // Assert.Equal (4, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
- // }
- // else
- // {
- // Assert.Equal (2, tf.Size.Width);
- // Assert.Equal (2, tf.Size.Height);
- // }
- // }
- // else
- // {
- // Assert.Equal (2, tf.Size.Width);
- // Assert.Equal (1, tf.Size.Height);
- // }
- //}
-
[Fact]
public void WordWrap_BigWidth ()
{
@@ -3362,7 +3159,7 @@ ssb
TextFormatter tf = new ()
{
Text = text,
- Alignment = TextAlignment.Left,
+ Alignment = Alignment.Left,
AutoSize = autoSize,
};
@@ -3399,7 +3196,7 @@ ssb
TextFormatter tf = new ()
{
Text = text,
- Alignment = TextAlignment.Right,
+ Alignment = Alignment.Right,
AutoSize = autoSize,
};
@@ -3442,7 +3239,7 @@ ssb
TextFormatter tf = new ()
{
Text = text,
- Alignment = TextAlignment.Centered,
+ Alignment = Alignment.Centered,
AutoSize = autoSize,
};
@@ -3463,7 +3260,6 @@ ssb
[InlineData ("A B", 3, false, "A B")]
[InlineData ("A B", 1, false, "A")]
[InlineData ("A B", 2, false, "A")]
- [InlineData ("A B", 3, false, "A B")]
[InlineData ("A B", 4, false, "A B")]
[InlineData ("A B", 5, false, "A B")]
[InlineData ("A B", 6, false, "A B")]
@@ -3473,7 +3269,6 @@ ssb
[InlineData ("A", 0, true, "")]
[InlineData ("A", 1, true, "A")]
[InlineData ("A", 2, true, "A")]
- [InlineData ("A B", 3, true, "A B")]
[InlineData ("A B", 1, true, "A")]
[InlineData ("A B", 2, true, "A")]
[InlineData ("A B", 3, true, "A B")]
@@ -3487,7 +3282,7 @@ ssb
TextFormatter tf = new ()
{
Text = text,
- Alignment = TextAlignment.Justified,
+ Alignment = Alignment.Justified,
AutoSize = autoSize,
};
@@ -3577,7 +3372,7 @@ Nice Work")]
TextFormatter tf = new ()
{
Text = text,
- Alignment = TextAlignment.Justified,
+ Alignment = Alignment.Justified,
Size = new Size (width, height),
MultiLine = true
};
@@ -3629,7 +3424,7 @@ ek")]
{
Text = text,
Direction = TextDirection.TopBottom_LeftRight,
- VerticalAlignment = VerticalTextAlignment.Justified,
+ VerticalAlignment = Alignment.Justified,
Size = new Size (width, height),
MultiLine = true
};
@@ -3685,9 +3480,9 @@ ek")]
TextFormatter tf = new ()
{
Text = text,
- Alignment = TextAlignment.Right,
+ Alignment = Alignment.Right,
Direction = TextDirection.TopBottom_LeftRight,
- VerticalAlignment = VerticalTextAlignment.Bottom,
+ VerticalAlignment = Alignment.Bottom,
AutoSize = autoSize,
};
@@ -3827,7 +3622,7 @@ B")]
{
Text = text,
Direction = TextDirection.TopBottom_LeftRight,
- VerticalAlignment = VerticalTextAlignment.Middle,
+ VerticalAlignment = Alignment.Centered,
AutoSize = autoSize,
};
@@ -4083,9 +3878,9 @@ B")]
[SetupFakeDriver]
[Theory]
- // Horizontal with VerticalTextAlignment.Top
+ // Horizontal with alignment.Top
// LeftRight_TopBottom
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Top, TextDirection.LeftRight_TopBottom, @"
0 2 4**
*******
*******
@@ -4093,7 +3888,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Top, TextDirection.LeftRight_TopBottom, @"
**0 2 4
*******
*******
@@ -4101,7 +3896,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Top, TextDirection.LeftRight_TopBottom, @"
*0 2 4*
*******
*******
@@ -4109,7 +3904,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Top, TextDirection.LeftRight_TopBottom, @"
0 2 4
*******
*******
@@ -4118,7 +3913,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Top, TextDirection.LeftRight_TopBottom, @"
0 你 4*
*******
*******
@@ -4126,7 +3921,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Top, TextDirection.LeftRight_TopBottom, @"
*0 你 4
*******
*******
@@ -4134,7 +3929,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Top, TextDirection.LeftRight_TopBottom, @"
0 你 4*
*******
*******
@@ -4142,7 +3937,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Top, TextDirection.LeftRight_TopBottom, @"
0 你 4
*******
*******
@@ -4152,7 +3947,7 @@ B")]
*******")]
// LeftRight_BottomTop
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Top, TextDirection.LeftRight_BottomTop, @"
0 2 4**
*******
*******
@@ -4160,7 +3955,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Top, TextDirection.LeftRight_BottomTop, @"
**0 2 4
*******
*******
@@ -4168,7 +3963,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Top, TextDirection.LeftRight_BottomTop, @"
*0 2 4*
*******
*******
@@ -4176,7 +3971,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Top, TextDirection.LeftRight_BottomTop, @"
0 2 4
*******
*******
@@ -4185,7 +3980,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Top, TextDirection.LeftRight_BottomTop, @"
0 你 4*
*******
*******
@@ -4193,7 +3988,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Top, TextDirection.LeftRight_BottomTop, @"
*0 你 4
*******
*******
@@ -4201,7 +3996,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Top, TextDirection.LeftRight_BottomTop, @"
0 你 4*
*******
*******
@@ -4209,7 +4004,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Top, TextDirection.LeftRight_BottomTop, @"
0 你 4
*******
*******
@@ -4219,7 +4014,7 @@ B")]
*******")]
// RightLeft_TopBottom
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Top, TextDirection.RightLeft_TopBottom, @"
4 2 0**
*******
*******
@@ -4227,7 +4022,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Top, TextDirection.RightLeft_TopBottom, @"
**4 2 0
*******
*******
@@ -4235,7 +4030,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Top, TextDirection.RightLeft_TopBottom, @"
*4 2 0*
*******
*******
@@ -4243,7 +4038,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Top, TextDirection.RightLeft_TopBottom, @"
4 2 0
*******
*******
@@ -4252,7 +4047,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Top, TextDirection.RightLeft_TopBottom, @"
4 你 0*
*******
*******
@@ -4260,7 +4055,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Top, TextDirection.RightLeft_TopBottom, @"
*4 你 0
*******
*******
@@ -4268,7 +4063,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Top, TextDirection.RightLeft_TopBottom, @"
4 你 0*
*******
*******
@@ -4276,7 +4071,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Top, TextDirection.RightLeft_TopBottom, @"
4 你 0
*******
*******
@@ -4286,7 +4081,7 @@ B")]
*******")]
// RightLeft_BottomTop
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Top, TextDirection.RightLeft_BottomTop, @"
4 2 0**
*******
*******
@@ -4294,7 +4089,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Top, TextDirection.RightLeft_BottomTop, @"
**4 2 0
*******
*******
@@ -4302,7 +4097,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Top, TextDirection.RightLeft_BottomTop, @"
*4 2 0*
*******
*******
@@ -4310,7 +4105,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Top, TextDirection.RightLeft_BottomTop, @"
4 2 0
*******
*******
@@ -4319,7 +4114,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Top, TextDirection.RightLeft_BottomTop, @"
4 你 0*
*******
*******
@@ -4327,7 +4122,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Top, TextDirection.RightLeft_BottomTop, @"
*4 你 0
*******
*******
@@ -4335,7 +4130,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Top, TextDirection.RightLeft_BottomTop, @"
4 你 0*
*******
*******
@@ -4343,7 +4138,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Top, TextDirection.RightLeft_BottomTop, @"
4 你 0
*******
*******
@@ -4352,9 +4147,9 @@ B")]
*******
*******")]
- // Horizontal with VerticalTextAlignment.Bottom
+ // Horizontal with alignment.Bottom
// LeftRight_TopBottom
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Bottom, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4362,7 +4157,7 @@ B")]
*******
*******
0 2 4**")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Bottom, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4370,7 +4165,7 @@ B")]
*******
*******
**0 2 4")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Bottom, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4378,7 +4173,7 @@ B")]
*******
*******
*0 2 4*")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Bottom, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4387,7 +4182,7 @@ B")]
*******
0 2 4")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Bottom, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4395,7 +4190,7 @@ B")]
*******
*******
0 你 4*")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Bottom, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4403,7 +4198,7 @@ B")]
*******
*******
*0 你 4")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Bottom, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4411,7 +4206,7 @@ B")]
*******
*******
0 你 4*")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Bottom, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4421,7 +4216,7 @@ B")]
0 你 4")]
// LeftRight_BottomTop
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Bottom, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4429,7 +4224,7 @@ B")]
*******
*******
0 2 4**")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Bottom, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4437,7 +4232,7 @@ B")]
*******
*******
**0 2 4")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Bottom, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4445,7 +4240,7 @@ B")]
*******
*******
*0 2 4*")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Bottom, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4454,7 +4249,7 @@ B")]
*******
0 2 4")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Bottom, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4462,7 +4257,7 @@ B")]
*******
*******
0 你 4*")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Bottom, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4470,7 +4265,7 @@ B")]
*******
*******
*0 你 4")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Bottom, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4478,7 +4273,7 @@ B")]
*******
*******
0 你 4*")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Bottom, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4488,7 +4283,7 @@ B")]
0 你 4")]
// RightLeft_TopBottom
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Bottom, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4496,7 +4291,7 @@ B")]
*******
*******
4 2 0**")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Bottom, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4504,7 +4299,7 @@ B")]
*******
*******
**4 2 0")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Bottom, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4512,7 +4307,7 @@ B")]
*******
*******
*4 2 0*")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Bottom, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4521,7 +4316,7 @@ B")]
*******
4 2 0")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Bottom, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4529,7 +4324,7 @@ B")]
*******
*******
4 你 0*")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Bottom, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4537,7 +4332,7 @@ B")]
*******
*******
*4 你 0")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Bottom, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4545,7 +4340,7 @@ B")]
*******
*******
4 你 0*")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Bottom, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4555,7 +4350,7 @@ B")]
4 你 0")]
// RightLeft_BottomTop
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Bottom, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4563,7 +4358,7 @@ B")]
*******
*******
4 2 0**")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Bottom, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4571,7 +4366,7 @@ B")]
*******
*******
**4 2 0")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Bottom, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4579,7 +4374,7 @@ B")]
*******
*******
*4 2 0*")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Bottom, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4588,7 +4383,7 @@ B")]
*******
4 2 0")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Bottom, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4596,7 +4391,7 @@ B")]
*******
*******
4 你 0*")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Bottom, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4604,7 +4399,7 @@ B")]
*******
*******
*4 你 0")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Bottom, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4612,7 +4407,7 @@ B")]
*******
*******
4 你 0*")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Bottom, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4621,9 +4416,9 @@ B")]
*******
4 你 0")]
- // Horizontal with VerticalTextAlignment.Middle
+ // Horizontal with alignment.Centered
// LeftRight_TopBottom
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Centered, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4631,7 +4426,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Centered, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4639,7 +4434,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Centered, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4647,7 +4442,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Centered, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4656,7 +4451,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Centered, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4664,7 +4459,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Centered, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4672,7 +4467,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Centered, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4680,7 +4475,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Centered, TextDirection.LeftRight_TopBottom, @"
*******
*******
*******
@@ -4690,7 +4485,7 @@ B")]
*******")]
// LeftRight_BottomTop
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Centered, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4698,7 +4493,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Centered, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4706,7 +4501,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Centered, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4714,7 +4509,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Centered, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4723,7 +4518,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Centered, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4731,7 +4526,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Centered, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4739,7 +4534,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Centered, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4747,7 +4542,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Centered, TextDirection.LeftRight_BottomTop, @"
*******
*******
*******
@@ -4757,7 +4552,7 @@ B")]
*******")]
// RightLeft_TopBottom
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Centered, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4765,7 +4560,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Centered, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4773,7 +4568,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Centered, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4781,7 +4576,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Centered, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4790,7 +4585,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Centered, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4798,7 +4593,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Centered, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4806,7 +4601,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Centered, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4814,7 +4609,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Centered, TextDirection.RightLeft_TopBottom, @"
*******
*******
*******
@@ -4824,7 +4619,7 @@ B")]
*******")]
// RightLeft_BottomTop
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Centered, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4832,7 +4627,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Centered, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4840,7 +4635,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Centered, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4848,7 +4643,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Centered, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4857,7 +4652,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Centered, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4865,7 +4660,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Centered, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4873,7 +4668,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Centered, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4881,7 +4676,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Centered, TextDirection.RightLeft_BottomTop, @"
*******
*******
*******
@@ -4890,9 +4685,9 @@ B")]
*******
*******")]
- // Horizontal with VerticalTextAlignment.Justified
+ // Horizontal with alignment.Justified
// LeftRight_TopBottom
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Justified, TextDirection.LeftRight_TopBottom, @"
0 2 4**
*******
*******
@@ -4900,7 +4695,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Justified, TextDirection.LeftRight_TopBottom, @"
**0 2 4
*******
*******
@@ -4908,7 +4703,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Justified, TextDirection.LeftRight_TopBottom, @"
*0 2 4*
*******
*******
@@ -4916,7 +4711,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Justified, TextDirection.LeftRight_TopBottom, @"
0 2 4
*******
*******
@@ -4925,7 +4720,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Justified, TextDirection.LeftRight_TopBottom, @"
0 你 4*
*******
*******
@@ -4933,7 +4728,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Justified, TextDirection.LeftRight_TopBottom, @"
*0 你 4
*******
*******
@@ -4941,7 +4736,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Justified, TextDirection.LeftRight_TopBottom, @"
0 你 4*
*******
*******
@@ -4949,7 +4744,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.LeftRight_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Justified, TextDirection.LeftRight_TopBottom, @"
0 你 4
*******
*******
@@ -4959,7 +4754,7 @@ B")]
*******")]
// LeftRight_BottomTop
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Justified, TextDirection.LeftRight_BottomTop, @"
0 2 4**
*******
*******
@@ -4967,7 +4762,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Justified, TextDirection.LeftRight_BottomTop, @"
**0 2 4
*******
*******
@@ -4975,7 +4770,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Justified, TextDirection.LeftRight_BottomTop, @"
*0 2 4*
*******
*******
@@ -4983,7 +4778,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Justified, TextDirection.LeftRight_BottomTop, @"
0 2 4
*******
*******
@@ -4992,7 +4787,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Justified, TextDirection.LeftRight_BottomTop, @"
0 你 4*
*******
*******
@@ -5000,7 +4795,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Justified, TextDirection.LeftRight_BottomTop, @"
*0 你 4
*******
*******
@@ -5008,7 +4803,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Justified, TextDirection.LeftRight_BottomTop, @"
0 你 4*
*******
*******
@@ -5016,7 +4811,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.LeftRight_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Justified, TextDirection.LeftRight_BottomTop, @"
0 你 4
*******
*******
@@ -5026,7 +4821,7 @@ B")]
*******")]
// RightLeft_TopBottom
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Justified, TextDirection.RightLeft_TopBottom, @"
4 2 0**
*******
*******
@@ -5034,7 +4829,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Justified, TextDirection.RightLeft_TopBottom, @"
**4 2 0
*******
*******
@@ -5042,7 +4837,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Justified, TextDirection.RightLeft_TopBottom, @"
*4 2 0*
*******
*******
@@ -5050,7 +4845,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Justified, TextDirection.RightLeft_TopBottom, @"
4 2 0
*******
*******
@@ -5059,7 +4854,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Justified, TextDirection.RightLeft_TopBottom, @"
4 你 0*
*******
*******
@@ -5067,7 +4862,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Justified, TextDirection.RightLeft_TopBottom, @"
*4 你 0
*******
*******
@@ -5075,7 +4870,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Justified, TextDirection.RightLeft_TopBottom, @"
4 你 0*
*******
*******
@@ -5083,7 +4878,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.RightLeft_TopBottom, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Justified, TextDirection.RightLeft_TopBottom, @"
4 你 0
*******
*******
@@ -5093,7 +4888,7 @@ B")]
*******")]
// RightLeft_BottomTop
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Justified, TextDirection.RightLeft_BottomTop, @"
4 2 0**
*******
*******
@@ -5101,7 +4896,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Justified, TextDirection.RightLeft_BottomTop, @"
**4 2 0
*******
*******
@@ -5109,7 +4904,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Justified, TextDirection.RightLeft_BottomTop, @"
*4 2 0*
*******
*******
@@ -5117,7 +4912,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Justified, TextDirection.RightLeft_BottomTop, @"
4 2 0
*******
*******
@@ -5126,7 +4921,7 @@ B")]
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Justified, TextDirection.RightLeft_BottomTop, @"
4 你 0*
*******
*******
@@ -5134,7 +4929,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Justified, TextDirection.RightLeft_BottomTop, @"
*4 你 0
*******
*******
@@ -5142,7 +4937,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Justified, TextDirection.RightLeft_BottomTop, @"
4 你 0*
*******
*******
@@ -5150,7 +4945,7 @@ B")]
*******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.RightLeft_BottomTop, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Justified, TextDirection.RightLeft_BottomTop, @"
4 你 0
*******
*******
@@ -5159,9 +4954,9 @@ B")]
*******
*******")]
- // Vertical with TextAlignment.Left
+ // Vertical with alignment.Left
// TopBottom_LeftRight
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Top, TextDirection.TopBottom_LeftRight, @"
0******
******
2******
@@ -5169,7 +4964,7 @@ B")]
4******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Bottom, TextDirection.TopBottom_LeftRight, @"
*******
*******
0******
@@ -5177,7 +4972,7 @@ B")]
2******
******
4******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Centered, TextDirection.TopBottom_LeftRight, @"
*******
0******
******
@@ -5185,7 +4980,7 @@ B")]
******
4******
*******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Justified, TextDirection.TopBottom_LeftRight, @"
0******
******
******
@@ -5194,7 +4989,7 @@ B")]
******
4******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Top, TextDirection.TopBottom_LeftRight, @"
0******
******
你*****
@@ -5202,7 +4997,7 @@ B")]
4******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Bottom, TextDirection.TopBottom_LeftRight, @"
*******
*******
0******
@@ -5210,7 +5005,7 @@ B")]
你*****
******
4******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Centered, TextDirection.TopBottom_LeftRight, @"
*******
0******
******
@@ -5218,7 +5013,7 @@ B")]
******
4******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Justified, TextDirection.TopBottom_LeftRight, @"
0******
******
******
@@ -5228,7 +5023,7 @@ B")]
4******")]
// TopBottom_RightLeft
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Top, TextDirection.TopBottom_RightLeft, @"
0******
******
2******
@@ -5236,7 +5031,7 @@ B")]
4******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Bottom, TextDirection.TopBottom_RightLeft, @"
*******
*******
0******
@@ -5244,7 +5039,7 @@ B")]
2******
******
4******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Centered, TextDirection.TopBottom_RightLeft, @"
*******
0******
******
@@ -5252,7 +5047,7 @@ B")]
******
4******
*******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Justified, TextDirection.TopBottom_RightLeft, @"
0******
******
******
@@ -5261,7 +5056,7 @@ B")]
******
4******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Top, TextDirection.TopBottom_RightLeft, @"
0******
******
你*****
@@ -5269,7 +5064,7 @@ B")]
4******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Bottom, TextDirection.TopBottom_RightLeft, @"
*******
*******
0******
@@ -5277,7 +5072,7 @@ B")]
你*****
******
4******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Centered, TextDirection.TopBottom_RightLeft, @"
*******
0******
******
@@ -5285,7 +5080,7 @@ B")]
******
4******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Justified, TextDirection.TopBottom_RightLeft, @"
0******
******
******
@@ -5295,7 +5090,7 @@ B")]
4******")]
// BottomTop_LeftRight
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Top, TextDirection.BottomTop_LeftRight, @"
4******
******
2******
@@ -5303,7 +5098,7 @@ B")]
0******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Bottom, TextDirection.BottomTop_LeftRight, @"
*******
*******
4******
@@ -5311,7 +5106,7 @@ B")]
2******
******
0******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Centered, TextDirection.BottomTop_LeftRight, @"
*******
4******
******
@@ -5319,7 +5114,7 @@ B")]
******
0******
*******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Justified, TextDirection.BottomTop_LeftRight, @"
4******
******
******
@@ -5328,7 +5123,7 @@ B")]
******
0******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Top, TextDirection.BottomTop_LeftRight, @"
4******
******
你*****
@@ -5336,7 +5131,7 @@ B")]
0******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Bottom, TextDirection.BottomTop_LeftRight, @"
*******
*******
4******
@@ -5344,7 +5139,7 @@ B")]
你*****
******
0******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Centered, TextDirection.BottomTop_LeftRight, @"
*******
4******
******
@@ -5352,7 +5147,7 @@ B")]
******
0******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Justified, TextDirection.BottomTop_LeftRight, @"
4******
******
******
@@ -5362,7 +5157,7 @@ B")]
0******")]
// BottomTop_RightLeft
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Top, TextDirection.BottomTop_RightLeft, @"
4******
******
2******
@@ -5370,7 +5165,7 @@ B")]
0******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Bottom, TextDirection.BottomTop_RightLeft, @"
*******
*******
4******
@@ -5378,7 +5173,7 @@ B")]
2******
******
0******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Centered, TextDirection.BottomTop_RightLeft, @"
*******
4******
******
@@ -5386,7 +5181,7 @@ B")]
******
0******
*******")]
- [InlineData ("0 2 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Left, Alignment.Justified, TextDirection.BottomTop_RightLeft, @"
4******
******
******
@@ -5395,7 +5190,7 @@ B")]
******
0******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Top, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Top, TextDirection.BottomTop_RightLeft, @"
4******
******
你*****
@@ -5403,7 +5198,7 @@ B")]
0******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Bottom, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Bottom, TextDirection.BottomTop_RightLeft, @"
*******
*******
4******
@@ -5411,7 +5206,7 @@ B")]
你*****
******
0******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Middle, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Centered, TextDirection.BottomTop_RightLeft, @"
*******
4******
******
@@ -5419,7 +5214,7 @@ B")]
******
0******
*******")]
- [InlineData ("0 你 4", TextAlignment.Left, VerticalTextAlignment.Justified, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Left, Alignment.Justified, TextDirection.BottomTop_RightLeft, @"
4******
******
******
@@ -5428,9 +5223,9 @@ B")]
******
0******")]
- // Vertical with TextAlignment.Right
+ // Vertical with alignment.Right
// TopBottom_LeftRight
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Top, TextDirection.TopBottom_LeftRight, @"
******0
******
******2
@@ -5438,7 +5233,7 @@ B")]
******4
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Bottom, TextDirection.TopBottom_LeftRight, @"
*******
*******
******0
@@ -5446,7 +5241,7 @@ B")]
******2
******
******4")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Centered, TextDirection.TopBottom_LeftRight, @"
*******
******0
******
@@ -5454,7 +5249,7 @@ B")]
******
******4
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Justified, TextDirection.TopBottom_LeftRight, @"
******0
******
******
@@ -5463,7 +5258,7 @@ B")]
******
******4")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Top, TextDirection.TopBottom_LeftRight, @"
*****0*
***** *
*****你
@@ -5471,7 +5266,7 @@ B")]
*****4*
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Bottom, TextDirection.TopBottom_LeftRight, @"
*******
*******
*****0*
@@ -5479,7 +5274,7 @@ B")]
*****你
***** *
*****4*")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Centered, TextDirection.TopBottom_LeftRight, @"
*******
*****0*
***** *
@@ -5487,7 +5282,7 @@ B")]
***** *
*****4*
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Justified, TextDirection.TopBottom_LeftRight, @"
*****0*
***** *
***** *
@@ -5497,7 +5292,7 @@ B")]
*****4*")]
// TopBottom_RightLeft
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Top, TextDirection.TopBottom_RightLeft, @"
******0
******
******2
@@ -5505,7 +5300,7 @@ B")]
******4
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Bottom, TextDirection.TopBottom_RightLeft, @"
*******
*******
******0
@@ -5513,7 +5308,7 @@ B")]
******2
******
******4")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Centered, TextDirection.TopBottom_RightLeft, @"
*******
******0
******
@@ -5521,7 +5316,7 @@ B")]
******
******4
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Justified, TextDirection.TopBottom_RightLeft, @"
******0
******
******
@@ -5530,7 +5325,7 @@ B")]
******
******4")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Top, TextDirection.TopBottom_RightLeft, @"
*****0*
***** *
*****你
@@ -5538,7 +5333,7 @@ B")]
*****4*
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Bottom, TextDirection.TopBottom_RightLeft, @"
*******
*******
*****0*
@@ -5546,7 +5341,7 @@ B")]
*****你
***** *
*****4*")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Centered, TextDirection.TopBottom_RightLeft, @"
*******
*****0*
***** *
@@ -5554,7 +5349,7 @@ B")]
***** *
*****4*
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Justified, TextDirection.TopBottom_RightLeft, @"
*****0*
***** *
***** *
@@ -5564,7 +5359,7 @@ B")]
*****4*")]
// BottomTop_LeftRight
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Top, TextDirection.BottomTop_LeftRight, @"
******4
******
******2
@@ -5572,7 +5367,7 @@ B")]
******0
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Bottom, TextDirection.BottomTop_LeftRight, @"
*******
*******
******4
@@ -5580,7 +5375,7 @@ B")]
******2
******
******0")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Centered, TextDirection.BottomTop_LeftRight, @"
*******
******4
******
@@ -5588,7 +5383,7 @@ B")]
******
******0
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Justified, TextDirection.BottomTop_LeftRight, @"
******4
******
******
@@ -5597,7 +5392,7 @@ B")]
******
******0")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Top, TextDirection.BottomTop_LeftRight, @"
*****4*
***** *
*****你
@@ -5605,7 +5400,7 @@ B")]
*****0*
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Bottom, TextDirection.BottomTop_LeftRight, @"
*******
*******
*****4*
@@ -5613,7 +5408,7 @@ B")]
*****你
***** *
*****0*")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Centered, TextDirection.BottomTop_LeftRight, @"
*******
*****4*
***** *
@@ -5621,7 +5416,7 @@ B")]
***** *
*****0*
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Justified, TextDirection.BottomTop_LeftRight, @"
*****4*
***** *
***** *
@@ -5631,7 +5426,7 @@ B")]
*****0*")]
// BottomTop_RightLeft
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Top, TextDirection.BottomTop_RightLeft, @"
******4
******
******2
@@ -5639,7 +5434,7 @@ B")]
******0
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Bottom, TextDirection.BottomTop_RightLeft, @"
*******
*******
******4
@@ -5647,7 +5442,7 @@ B")]
******2
******
******0")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Centered, TextDirection.BottomTop_RightLeft, @"
*******
******4
******
@@ -5655,7 +5450,7 @@ B")]
******
******0
*******")]
- [InlineData ("0 2 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Right, Alignment.Justified, TextDirection.BottomTop_RightLeft, @"
******4
******
******
@@ -5664,7 +5459,7 @@ B")]
******
******0")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Top, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Top, TextDirection.BottomTop_RightLeft, @"
*****4*
***** *
*****你
@@ -5672,7 +5467,7 @@ B")]
*****0*
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Bottom, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Bottom, TextDirection.BottomTop_RightLeft, @"
*******
*******
*****4*
@@ -5680,7 +5475,7 @@ B")]
*****你
***** *
*****0*")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Middle, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Centered, TextDirection.BottomTop_RightLeft, @"
*******
*****4*
***** *
@@ -5688,7 +5483,7 @@ B")]
***** *
*****0*
*******")]
- [InlineData ("0 你 4", TextAlignment.Right, VerticalTextAlignment.Justified, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Right, Alignment.Justified, TextDirection.BottomTop_RightLeft, @"
*****4*
***** *
***** *
@@ -5697,9 +5492,9 @@ B")]
***** *
*****0*")]
- // Vertical with TextAlignment.Centered
+ // Vertical with alignment.Centered
// TopBottom_LeftRight
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Top, TextDirection.TopBottom_LeftRight, @"
***0***
*** ***
***2***
@@ -5707,7 +5502,7 @@ B")]
***4***
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Bottom, TextDirection.TopBottom_LeftRight, @"
*******
*******
***0***
@@ -5715,7 +5510,7 @@ B")]
***2***
*** ***
***4***")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Centered, TextDirection.TopBottom_LeftRight, @"
*******
***0***
*** ***
@@ -5723,7 +5518,7 @@ B")]
*** ***
***4***
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Justified, TextDirection.TopBottom_LeftRight, @"
***0***
*** ***
*** ***
@@ -5732,7 +5527,7 @@ B")]
*** ***
***4***")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Top, TextDirection.TopBottom_LeftRight, @"
**0****
** ****
**你***
@@ -5740,7 +5535,7 @@ B")]
**4****
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Bottom, TextDirection.TopBottom_LeftRight, @"
*******
*******
**0****
@@ -5748,7 +5543,7 @@ B")]
**你***
** ****
**4****")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Centered, TextDirection.TopBottom_LeftRight, @"
*******
**0****
** ****
@@ -5756,7 +5551,7 @@ B")]
** ****
**4****
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Justified, TextDirection.TopBottom_LeftRight, @"
**0****
** ****
** ****
@@ -5766,7 +5561,7 @@ B")]
**4****")]
// TopBottom_RightLeft
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Top, TextDirection.TopBottom_RightLeft, @"
***0***
*** ***
***2***
@@ -5774,7 +5569,7 @@ B")]
***4***
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Bottom, TextDirection.TopBottom_RightLeft, @"
*******
*******
***0***
@@ -5782,7 +5577,7 @@ B")]
***2***
*** ***
***4***")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Centered, TextDirection.TopBottom_RightLeft, @"
*******
***0***
*** ***
@@ -5790,7 +5585,7 @@ B")]
*** ***
***4***
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Justified, TextDirection.TopBottom_RightLeft, @"
***0***
*** ***
*** ***
@@ -5799,7 +5594,7 @@ B")]
*** ***
***4***")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Top, TextDirection.TopBottom_RightLeft, @"
**0****
** ****
**你***
@@ -5807,7 +5602,7 @@ B")]
**4****
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Bottom, TextDirection.TopBottom_RightLeft, @"
*******
*******
**0****
@@ -5815,7 +5610,7 @@ B")]
**你***
** ****
**4****")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Centered, TextDirection.TopBottom_RightLeft, @"
*******
**0****
** ****
@@ -5823,7 +5618,7 @@ B")]
** ****
**4****
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Justified, TextDirection.TopBottom_RightLeft, @"
**0****
** ****
** ****
@@ -5833,7 +5628,7 @@ B")]
**4****")]
// BottomTop_LeftRight
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Top, TextDirection.BottomTop_LeftRight, @"
***4***
*** ***
***2***
@@ -5841,7 +5636,7 @@ B")]
***0***
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Bottom, TextDirection.BottomTop_LeftRight, @"
*******
*******
***4***
@@ -5849,7 +5644,7 @@ B")]
***2***
*** ***
***0***")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Centered, TextDirection.BottomTop_LeftRight, @"
*******
***4***
*** ***
@@ -5857,7 +5652,7 @@ B")]
*** ***
***0***
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Justified, TextDirection.BottomTop_LeftRight, @"
***4***
*** ***
*** ***
@@ -5866,7 +5661,7 @@ B")]
*** ***
***0***")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Top, TextDirection.BottomTop_LeftRight, @"
**4****
** ****
**你***
@@ -5874,7 +5669,7 @@ B")]
**0****
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Bottom, TextDirection.BottomTop_LeftRight, @"
*******
*******
**4****
@@ -5882,7 +5677,7 @@ B")]
**你***
** ****
**0****")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Centered, TextDirection.BottomTop_LeftRight, @"
*******
**4****
** ****
@@ -5890,7 +5685,7 @@ B")]
** ****
**0****
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Justified, TextDirection.BottomTop_LeftRight, @"
**4****
** ****
** ****
@@ -5900,7 +5695,7 @@ B")]
**0****")]
// BottomTop_RightLeft
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Top, TextDirection.BottomTop_RightLeft, @"
***4***
*** ***
***2***
@@ -5908,7 +5703,7 @@ B")]
***0***
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Bottom, TextDirection.BottomTop_RightLeft, @"
*******
*******
***4***
@@ -5916,7 +5711,7 @@ B")]
***2***
*** ***
***0***")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Centered, TextDirection.BottomTop_RightLeft, @"
*******
***4***
*** ***
@@ -5924,7 +5719,7 @@ B")]
*** ***
***0***
*******")]
- [InlineData ("0 2 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Centered, Alignment.Justified, TextDirection.BottomTop_RightLeft, @"
***4***
*** ***
*** ***
@@ -5933,7 +5728,7 @@ B")]
*** ***
***0***")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Top, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Top, TextDirection.BottomTop_RightLeft, @"
**4****
** ****
**你***
@@ -5941,7 +5736,7 @@ B")]
**0****
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Bottom, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Bottom, TextDirection.BottomTop_RightLeft, @"
*******
*******
**4****
@@ -5949,7 +5744,7 @@ B")]
**你***
** ****
**0****")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Middle, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Centered, TextDirection.BottomTop_RightLeft, @"
*******
**4****
** ****
@@ -5957,7 +5752,7 @@ B")]
** ****
**0****
*******")]
- [InlineData ("0 你 4", TextAlignment.Centered, VerticalTextAlignment.Justified, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Centered, Alignment.Justified, TextDirection.BottomTop_RightLeft, @"
**4****
** ****
** ****
@@ -5966,9 +5761,9 @@ B")]
** ****
**0****")]
- // Vertical with TextAlignment.Justified
+ // Vertical with alignment.Justified
// TopBottom_LeftRight
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Top, TextDirection.TopBottom_LeftRight, @"
0******
******
2******
@@ -5976,7 +5771,7 @@ B")]
4******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Bottom, TextDirection.TopBottom_LeftRight, @"
*******
*******
0******
@@ -5984,7 +5779,7 @@ B")]
2******
******
4******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Centered, TextDirection.TopBottom_LeftRight, @"
*******
0******
******
@@ -5992,7 +5787,7 @@ B")]
******
4******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Justified, TextDirection.TopBottom_LeftRight, @"
0******
******
******
@@ -6001,7 +5796,7 @@ B")]
******
4******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Top, TextDirection.TopBottom_LeftRight, @"
0******
******
你*****
@@ -6009,7 +5804,7 @@ B")]
4******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Bottom, TextDirection.TopBottom_LeftRight, @"
*******
*******
0******
@@ -6017,7 +5812,7 @@ B")]
你*****
******
4******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Centered, TextDirection.TopBottom_LeftRight, @"
*******
0******
******
@@ -6025,7 +5820,7 @@ B")]
******
4******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.TopBottom_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Justified, TextDirection.TopBottom_LeftRight, @"
0******
******
******
@@ -6035,7 +5830,7 @@ B")]
4******")]
// TopBottom_RightLeft
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Top, TextDirection.TopBottom_RightLeft, @"
0******
******
2******
@@ -6043,7 +5838,7 @@ B")]
4******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Bottom, TextDirection.TopBottom_RightLeft, @"
*******
*******
0******
@@ -6051,7 +5846,7 @@ B")]
2******
******
4******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Centered, TextDirection.TopBottom_RightLeft, @"
*******
0******
******
@@ -6059,7 +5854,7 @@ B")]
******
4******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Justified, TextDirection.TopBottom_RightLeft, @"
0******
******
******
@@ -6068,7 +5863,7 @@ B")]
******
4******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Top, TextDirection.TopBottom_RightLeft, @"
0******
******
你*****
@@ -6076,7 +5871,7 @@ B")]
4******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Bottom, TextDirection.TopBottom_RightLeft, @"
*******
*******
0******
@@ -6084,7 +5879,7 @@ B")]
你*****
******
4******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Centered, TextDirection.TopBottom_RightLeft, @"
*******
0******
******
@@ -6092,7 +5887,7 @@ B")]
******
4******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.TopBottom_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Justified, TextDirection.TopBottom_RightLeft, @"
0******
******
******
@@ -6102,7 +5897,7 @@ B")]
4******")]
// BottomTop_LeftRight
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Top, TextDirection.BottomTop_LeftRight, @"
4******
******
2******
@@ -6110,7 +5905,7 @@ B")]
0******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Bottom, TextDirection.BottomTop_LeftRight, @"
*******
*******
4******
@@ -6118,7 +5913,7 @@ B")]
2******
******
0******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Centered, TextDirection.BottomTop_LeftRight, @"
*******
4******
******
@@ -6126,7 +5921,7 @@ B")]
******
0******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Justified, TextDirection.BottomTop_LeftRight, @"
4******
******
******
@@ -6135,7 +5930,7 @@ B")]
******
0******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Top, TextDirection.BottomTop_LeftRight, @"
4******
******
你*****
@@ -6143,7 +5938,7 @@ B")]
0******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Bottom, TextDirection.BottomTop_LeftRight, @"
*******
*******
4******
@@ -6151,7 +5946,7 @@ B")]
你*****
******
0******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Centered, TextDirection.BottomTop_LeftRight, @"
*******
4******
******
@@ -6159,7 +5954,7 @@ B")]
******
0******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.BottomTop_LeftRight, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Justified, TextDirection.BottomTop_LeftRight, @"
4******
******
******
@@ -6169,7 +5964,7 @@ B")]
0******")]
// BottomTop_RightLeft
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Top, TextDirection.BottomTop_RightLeft, @"
4******
******
2******
@@ -6177,7 +5972,7 @@ B")]
0******
*******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Bottom, TextDirection.BottomTop_RightLeft, @"
*******
*******
4******
@@ -6185,7 +5980,7 @@ B")]
2******
******
0******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Centered, TextDirection.BottomTop_RightLeft, @"
*******
4******
******
@@ -6193,7 +5988,7 @@ B")]
******
0******
*******")]
- [InlineData ("0 2 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 2 4", Alignment.Justified, Alignment.Justified, TextDirection.BottomTop_RightLeft, @"
4******
******
******
@@ -6202,7 +5997,7 @@ B")]
******
0******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Top, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Top, TextDirection.BottomTop_RightLeft, @"
4******
******
你*****
@@ -6210,7 +6005,7 @@ B")]
0******
*******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Bottom, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Bottom, TextDirection.BottomTop_RightLeft, @"
*******
*******
4******
@@ -6218,7 +6013,7 @@ B")]
你*****
******
0******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Middle, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Centered, TextDirection.BottomTop_RightLeft, @"
*******
4******
******
@@ -6226,7 +6021,7 @@ B")]
******
0******
*******")]
- [InlineData ("0 你 4", TextAlignment.Justified, VerticalTextAlignment.Justified, TextDirection.BottomTop_RightLeft, @"
+ [InlineData ("0 你 4", Alignment.Justified, Alignment.Justified, TextDirection.BottomTop_RightLeft, @"
4******
******
******
@@ -6235,12 +6030,12 @@ B")]
******
0******")]
- public void Draw_Text_Alignment (string text, TextAlignment horizontalTextAlignment, VerticalTextAlignment verticalTextAlignment, TextDirection textDirection, string expectedText)
+ public void Draw_Text_Justification (string text, Alignment horizontalTextAlignment, Alignment alignment, TextDirection textDirection, string expectedText)
{
TextFormatter tf = new ()
{
Alignment = horizontalTextAlignment,
- VerticalAlignment = verticalTextAlignment,
+ VerticalAlignment = alignment,
Direction = textDirection,
Size = new (7, 7),
Text = text
diff --git a/UnitTests/View/DrawTests.cs b/UnitTests/View/DrawTests.cs
index 48208bb8e..f884a37f6 100644
--- a/UnitTests/View/DrawTests.cs
+++ b/UnitTests/View/DrawTests.cs
@@ -339,7 +339,7 @@ public class DrawTests (ITestOutputHelper _output)
Text = "Test",
Width = 6,
Height = 1,
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
ColorScheme = Colors.ColorSchemes ["Base"]
};
@@ -350,7 +350,7 @@ public class DrawTests (ITestOutputHelper _output)
Y = 1,
Width = 1,
Height = 6,
- VerticalTextAlignment = VerticalTextAlignment.Bottom,
+ VerticalTextAlignment = Alignment.Bottom,
ColorScheme = Colors.ColorSchemes ["Base"]
};
Toplevel top = new ();
diff --git a/UnitTests/View/Layout/Dim.AutoTests.cs b/UnitTests/View/Layout/Dim.AutoTests.cs
index 7af0a921c..fa63a67e9 100644
--- a/UnitTests/View/Layout/Dim.AutoTests.cs
+++ b/UnitTests/View/Layout/Dim.AutoTests.cs
@@ -787,11 +787,11 @@ public class DimAutoTests (ITestOutputHelper output)
Assert.False (view.TextFormatter.AutoSize);
Assert.Equal (Size.Empty, view.Frame.Size);
- view.TextFormatter.Alignment = TextAlignment.Justified;
+ view.TextFormatter.Alignment = Alignment.Justified;
Assert.False (view.TextFormatter.AutoSize);
Assert.Equal (Size.Empty, view.Frame.Size);
- view.TextFormatter.VerticalAlignment = VerticalTextAlignment.Middle;
+ view.TextFormatter.VerticalAlignment = Alignment.Centered;
Assert.False (view.TextFormatter.AutoSize);
Assert.Equal (Size.Empty, view.Frame.Size);
@@ -815,11 +815,11 @@ public class DimAutoTests (ITestOutputHelper output)
Assert.False (view.TextFormatter.AutoSize);
Assert.Equal (Size.Empty, view.Frame.Size);
- view.TextAlignment = TextAlignment.Justified;
+ view.TextAlignment = Alignment.Justified;
Assert.False (view.TextFormatter.AutoSize);
Assert.Equal (Size.Empty, view.Frame.Size);
- view.VerticalTextAlignment = VerticalTextAlignment.Middle;
+ view.VerticalTextAlignment = Alignment.Centered;
Assert.False (view.TextFormatter.AutoSize);
Assert.Equal (Size.Empty, view.Frame.Size);
@@ -844,7 +844,7 @@ public class DimAutoTests (ITestOutputHelper output)
Assert.False (view.TextFormatter.AutoSize);
Assert.NotEqual (Size.Empty, view.Frame.Size);
- view.TextAlignment = TextAlignment.Justified;
+ view.TextAlignment = Alignment.Justified;
Assert.False (view.TextFormatter.AutoSize);
Assert.NotEqual (Size.Empty, view.Frame.Size);
@@ -853,7 +853,7 @@ public class DimAutoTests (ITestOutputHelper output)
Text = "_1234",
Width = Dim.Auto ()
};
- view.VerticalTextAlignment = VerticalTextAlignment.Middle;
+ view.VerticalTextAlignment = Alignment.Centered;
Assert.False (view.TextFormatter.AutoSize);
Assert.NotEqual (Size.Empty, view.Frame.Size);
@@ -1002,7 +1002,6 @@ public class DimAutoTests (ITestOutputHelper output)
[Theory]
[InlineData (0, 15, 15)]
[InlineData (1, 15, 16)]
- [InlineData (0, 15, 15)]
[InlineData (-1, 15, 14)]
public void With_Subview_Using_DimAbsolute (int subViewOffset, int dimAbsoluteSize, int expectedSize)
{
diff --git a/UnitTests/View/Layout/Dim.PercentTests.cs b/UnitTests/View/Layout/Dim.PercentTests.cs
index fc44313a1..99efe8b84 100644
--- a/UnitTests/View/Layout/Dim.PercentTests.cs
+++ b/UnitTests/View/Layout/Dim.PercentTests.cs
@@ -7,8 +7,6 @@ namespace Terminal.Gui.PosDimTests;
public class DimPercentTests
{
- private readonly ITestOutputHelper _output;
-
[Fact]
public void DimFactor_Calculate_ReturnsCorrectValue ()
{
diff --git a/UnitTests/View/Layout/Pos.AlignTests.cs b/UnitTests/View/Layout/Pos.AlignTests.cs
new file mode 100644
index 000000000..32cdec9cd
--- /dev/null
+++ b/UnitTests/View/Layout/Pos.AlignTests.cs
@@ -0,0 +1,59 @@
+using Xunit.Abstractions;
+using static Terminal.Gui.Dim;
+using static Terminal.Gui.Pos;
+
+namespace Terminal.Gui.PosDimTests;
+
+public class PosAlignTests ()
+{
+ [Fact]
+ public void PosAlign_Constructor ()
+ {
+ var posAlign = new PosAlign (Alignment.Justified);
+ Assert.NotNull (posAlign);
+ }
+
+ [Theory]
+ [InlineData (Alignment.Left, Alignment.Left, true)]
+ [InlineData (Alignment.Centered, Alignment.Centered, true)]
+ [InlineData (Alignment.Left, Alignment.Centered, false)]
+ [InlineData (Alignment.Centered, Alignment.Left, false)]
+ public void PosAlign_Equals (Alignment align1, Alignment align2, bool expectedEquals)
+ {
+ var posAlign1 = new PosAlign (align1);
+ var posAlign2 = new PosAlign (align2);
+
+ Assert.Equal (expectedEquals, posAlign1.Equals (posAlign2));
+ Assert.Equal (expectedEquals, posAlign2.Equals (posAlign1));
+ }
+
+ [Fact]
+ public void PosAlign_ToString ()
+ {
+ var posAlign = new PosAlign (Alignment.Justified);
+ var expectedString = "Align(groupId=0, alignment=Justified)";
+
+ Assert.Equal (expectedString, posAlign.ToString ());
+ }
+
+ [Fact]
+ public void PosAlign_Anchor ()
+ {
+ var posAlign = new PosAlign (Alignment.Left);
+ var width = 50;
+ var expectedAnchor = -width;
+
+ Assert.Equal (expectedAnchor, posAlign.Anchor (width));
+ }
+
+ [Fact]
+ public void PosAlign_CreatesCorrectInstance ()
+ {
+ var pos = Pos.Align (Alignment.Left);
+ Assert.IsType (pos);
+ }
+
+ // Tests that test Left alignment
+
+ //
+}
diff --git a/UnitTests/View/Layout/Pos.Tests.cs b/UnitTests/View/Layout/Pos.Tests.cs
index 8e8079cbd..485fea771 100644
--- a/UnitTests/View/Layout/Pos.Tests.cs
+++ b/UnitTests/View/Layout/Pos.Tests.cs
@@ -4,7 +4,7 @@ using static Terminal.Gui.Pos;
namespace Terminal.Gui.PosDimTests;
-public class PosTests (ITestOutputHelper output)
+public class PosTests ()
{
// Was named AutoSize_Pos_Validation_Do_Not_Throws_If_NewValue_Is_PosAbsolute_And_OldValue_Is_Another_Type_After_Sets_To_LayoutStyle_Absolute ()
// but doesn't actually have anything to do with AutoSize.
@@ -110,7 +110,7 @@ public class PosTests (ITestOutputHelper output)
{
Application.Init (new FakeDriver ());
- Toplevel t = new Toplevel();
+ Toplevel t = new Toplevel ();
var w = new Window { X = Pos.Left (t) + 2, Y = Pos.Top (t) + 2 };
var f = new FrameView ();
@@ -254,6 +254,32 @@ public class PosTests (ITestOutputHelper output)
[TestRespondersDisposed]
public void LeftTopBottomRight_Win_ShouldNotThrow ()
{
+ // Setup Fake driver
+ (Toplevel top, Window win, Button button) Setup ()
+ {
+ Application.Init (new FakeDriver ());
+ Application.Iteration += (s, a) => { Application.RequestStop (); };
+ var win = new Window { X = 0, Y = 0, Width = Dim.Fill (), Height = Dim.Fill () };
+ var top = new Toplevel ();
+ top.Add (win);
+
+ var button = new Button { X = Pos.Center (), Text = "button" };
+ win.Add (button);
+
+ return (top, win, button);
+ }
+
+ void Cleanup (RunState rs)
+ {
+ // Cleanup
+ Application.End (rs);
+
+ Application.Top.Dispose ();
+
+ // Shutdown must be called to safely clean up Application if Init has been called
+ Application.Shutdown ();
+ }
+
// Test cases:
(Toplevel top, Window win, Button button) app = Setup ();
app.button.Y = Pos.Left (app.win);
@@ -302,34 +328,6 @@ public class PosTests (ITestOutputHelper output)
// If Application.RunState is used then we must use Application.RunLoop with the rs parameter
Application.RunLoop (rs);
Cleanup (rs);
-
- return;
-
- void Cleanup (RunState rs)
- {
- // Cleanup
- Application.End (rs);
-
- Application.Top.Dispose ();
-
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
-
- // Setup Fake driver
- (Toplevel top, Window win, Button button) Setup ()
- {
- Application.Init (new FakeDriver ());
- Application.Iteration += (s, a) => { Application.RequestStop (); };
- var win = new Window { X = 0, Y = 0, Width = Dim.Fill (), Height = Dim.Fill () };
- var top = new Toplevel ();
- top.Add (win);
-
- var button = new Button { X = Pos.Center (), Text = "button" };
- win.Add (button);
-
- return (top, win, button);
- }
}
[Fact]
@@ -548,15 +546,15 @@ public class PosTests (ITestOutputHelper output)
pos = Pos.Left (new ());
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
- pos = Pos.Left (new() { Frame = testRect });
+ pos = Pos.Left (new () { Frame = testRect });
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
testRect = new (1, 2, 3, 4);
- pos = Pos.Left (new() { Frame = testRect });
+ pos = Pos.Left (new () { Frame = testRect });
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
// Pos.Left(win) + 0
- pos = Pos.Left (new() { Frame = testRect }) + testInt;
+ pos = Pos.Left (new () { Frame = testRect }) + testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -566,7 +564,7 @@ public class PosTests (ITestOutputHelper output)
testInt = 1;
// Pos.Left(win) +1
- pos = Pos.Left (new() { Frame = testRect }) + testInt;
+ pos = Pos.Left (new () { Frame = testRect }) + testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -576,7 +574,7 @@ public class PosTests (ITestOutputHelper output)
testInt = -1;
// Pos.Left(win) -1
- pos = Pos.Left (new() { Frame = testRect }) - testInt;
+ pos = Pos.Left (new () { Frame = testRect }) - testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -590,15 +588,15 @@ public class PosTests (ITestOutputHelper output)
pos = Pos.X (new ());
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
- pos = Pos.X (new() { Frame = testRect });
+ pos = Pos.X (new () { Frame = testRect });
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
testRect = new (1, 2, 3, 4);
- pos = Pos.X (new() { Frame = testRect });
+ pos = Pos.X (new () { Frame = testRect });
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
// Pos.X(win) + 0
- pos = Pos.X (new() { Frame = testRect }) + testInt;
+ pos = Pos.X (new () { Frame = testRect }) + testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -608,7 +606,7 @@ public class PosTests (ITestOutputHelper output)
testInt = 1;
// Pos.X(win) +1
- pos = Pos.X (new() { Frame = testRect }) + testInt;
+ pos = Pos.X (new () { Frame = testRect }) + testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -618,7 +616,7 @@ public class PosTests (ITestOutputHelper output)
testInt = -1;
// Pos.X(win) -1
- pos = Pos.X (new() { Frame = testRect }) - testInt;
+ pos = Pos.X (new () { Frame = testRect }) - testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -632,15 +630,15 @@ public class PosTests (ITestOutputHelper output)
pos = Pos.Top (new ());
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
- pos = Pos.Top (new() { Frame = testRect });
+ pos = Pos.Top (new () { Frame = testRect });
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
testRect = new (1, 2, 3, 4);
- pos = Pos.Top (new() { Frame = testRect });
+ pos = Pos.Top (new () { Frame = testRect });
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
// Pos.Top(win) + 0
- pos = Pos.Top (new() { Frame = testRect }) + testInt;
+ pos = Pos.Top (new () { Frame = testRect }) + testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -650,7 +648,7 @@ public class PosTests (ITestOutputHelper output)
testInt = 1;
// Pos.Top(win) +1
- pos = Pos.Top (new() { Frame = testRect }) + testInt;
+ pos = Pos.Top (new () { Frame = testRect }) + testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -660,7 +658,7 @@ public class PosTests (ITestOutputHelper output)
testInt = -1;
// Pos.Top(win) -1
- pos = Pos.Top (new() { Frame = testRect }) - testInt;
+ pos = Pos.Top (new () { Frame = testRect }) - testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -674,15 +672,15 @@ public class PosTests (ITestOutputHelper output)
pos = Pos.Y (new ());
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
- pos = Pos.Y (new() { Frame = testRect });
+ pos = Pos.Y (new () { Frame = testRect });
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
testRect = new (1, 2, 3, 4);
- pos = Pos.Y (new() { Frame = testRect });
+ pos = Pos.Y (new () { Frame = testRect });
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
// Pos.Y(win) + 0
- pos = Pos.Y (new() { Frame = testRect }) + testInt;
+ pos = Pos.Y (new () { Frame = testRect }) + testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -692,7 +690,7 @@ public class PosTests (ITestOutputHelper output)
testInt = 1;
// Pos.Y(win) +1
- pos = Pos.Y (new() { Frame = testRect }) + testInt;
+ pos = Pos.Y (new () { Frame = testRect }) + testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -702,7 +700,7 @@ public class PosTests (ITestOutputHelper output)
testInt = -1;
// Pos.Y(win) -1
- pos = Pos.Y (new() { Frame = testRect }) - testInt;
+ pos = Pos.Y (new () { Frame = testRect }) - testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -716,15 +714,15 @@ public class PosTests (ITestOutputHelper output)
pos = Pos.Bottom (new ());
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
- pos = Pos.Bottom (new() { Frame = testRect });
+ pos = Pos.Bottom (new () { Frame = testRect });
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
testRect = new (1, 2, 3, 4);
- pos = Pos.Bottom (new() { Frame = testRect });
+ pos = Pos.Bottom (new () { Frame = testRect });
Assert.Equal ($"View(side={side},target=View(){testRect})", pos.ToString ());
// Pos.Bottom(win) + 0
- pos = Pos.Bottom (new() { Frame = testRect }) + testInt;
+ pos = Pos.Bottom (new () { Frame = testRect }) + testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -734,7 +732,7 @@ public class PosTests (ITestOutputHelper output)
testInt = 1;
// Pos.Bottom(win) +1
- pos = Pos.Bottom (new() { Frame = testRect }) + testInt;
+ pos = Pos.Bottom (new () { Frame = testRect }) + testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -744,7 +742,7 @@ public class PosTests (ITestOutputHelper output)
testInt = -1;
// Pos.Bottom(win) -1
- pos = Pos.Bottom (new() { Frame = testRect }) - testInt;
+ pos = Pos.Bottom (new () { Frame = testRect }) - testInt;
Assert.Equal (
$"Combine(View(side={side},target=View(){testRect}){(testInt < 0 ? '-' : '+')}Absolute({testInt}))",
@@ -878,7 +876,6 @@ public class PosTests (ITestOutputHelper output)
[SetupFakeDriver]
public void PosCombine_DimCombine_View_With_SubViews ()
{
- var clicked = false;
Toplevel top = new Toplevel () { Width = 80, Height = 25 };
var win1 = new Window { Id = "win1", Width = 20, Height = 10 };
var view1 = new View
@@ -887,10 +884,9 @@ public class PosTests (ITestOutputHelper output)
Width = Auto (DimAutoStyle.Text),
Height = Auto (DimAutoStyle.Text)
- };
+ };
var win2 = new Window { Id = "win2", Y = Pos.Bottom (view1) + 1, Width = 10, Height = 3 };
var view2 = new View { Id = "view2", Width = Dim.Fill (), Height = 1, CanFocus = true };
- view2.MouseClick += (sender, e) => clicked = true;
var view3 = new View { Id = "view3", Width = Dim.Fill (1), Height = 1, CanFocus = true };
view2.Add (view3);
diff --git a/UnitTests/View/NeedsDisplayTests.cs b/UnitTests/View/NeedsDisplayTests.cs
index f5bba1b2b..c3f971250 100644
--- a/UnitTests/View/NeedsDisplayTests.cs
+++ b/UnitTests/View/NeedsDisplayTests.cs
@@ -5,7 +5,7 @@ using Xunit.Abstractions;
namespace Terminal.Gui.ViewTests;
[Trait("Category","Output")]
-public class NeedsDisplayTests (ITestOutputHelper output)
+public class NeedsDisplayTests ()
{
[Fact]
public void NeedsDisplay_False_If_Width_Height_Zero ()
diff --git a/UnitTests/View/TextTests.cs b/UnitTests/View/TextTests.cs
index 09f151e6e..799668f10 100644
--- a/UnitTests/View/TextTests.cs
+++ b/UnitTests/View/TextTests.cs
@@ -850,7 +850,7 @@ Y
Y = 1,
Width = width,
Height = 1,
- TextAlignment = TextAlignment.Centered
+ TextAlignment = Alignment.Centered
};
if (autoSize)
@@ -865,7 +865,7 @@ Y
Y = 2,
Width = width,
Height = 1,
- TextAlignment = TextAlignment.Right
+ TextAlignment = Alignment.Right
};
if (autoSize)
@@ -880,7 +880,7 @@ Y
Y = 3,
Width = width,
Height = 1,
- TextAlignment = TextAlignment.Justified
+ TextAlignment = Alignment.Justified
};
if (autoSize)
@@ -974,7 +974,7 @@ Y
Width = 1,
Height = height,
TextDirection = TextDirection.TopBottom_LeftRight,
- VerticalTextAlignment = VerticalTextAlignment.Middle
+ VerticalTextAlignment = Alignment.Centered
};
if (autoSize)
@@ -990,7 +990,7 @@ Y
Width = 1,
Height = height,
TextDirection = TextDirection.TopBottom_LeftRight,
- VerticalTextAlignment = VerticalTextAlignment.Bottom
+ VerticalTextAlignment = Alignment.Bottom
};
if (autoSize)
@@ -1006,7 +1006,7 @@ Y
Width = 1,
Height = height,
TextDirection = TextDirection.TopBottom_LeftRight,
- VerticalTextAlignment = VerticalTextAlignment.Justified
+ VerticalTextAlignment = Alignment.Justified
};
if (autoSize)
@@ -1227,7 +1227,7 @@ Y
{
Text = "01234",
TextDirection = TextDirection.LeftRight_TopBottom,
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 10,
Height = Dim.Auto (DimAutoStyle.Text)
};
diff --git a/UnitTests/Views/ButtonTests.cs b/UnitTests/Views/ButtonTests.cs
index 0d91bc151..05e382bee 100644
--- a/UnitTests/Views/ButtonTests.cs
+++ b/UnitTests/Views/ButtonTests.cs
@@ -155,14 +155,14 @@ public class ButtonTests (ITestOutputHelper output)
Assert.Equal ($"{CM.Glyphs.LeftBracket} {CM.Glyphs.RightBracket}", btn.TextFormatter.Text);
Assert.False (btn.IsDefault);
- Assert.Equal (TextAlignment.Centered, btn.TextAlignment);
+ Assert.Equal (Alignment.Centered, btn.TextAlignment);
Assert.Equal ('_', btn.HotKeySpecifier.Value);
Assert.True (btn.CanFocus);
Assert.Equal (new (0, 0, 4, 1), btn.Viewport);
Assert.Equal (new (0, 0, 4, 1), btn.Frame);
Assert.Equal ($"{CM.Glyphs.LeftBracket} {CM.Glyphs.RightBracket}", btn.TextFormatter.Text);
Assert.False (btn.IsDefault);
- Assert.Equal (TextAlignment.Centered, btn.TextAlignment);
+ Assert.Equal (Alignment.Centered, btn.TextAlignment);
Assert.Equal ('_', btn.HotKeySpecifier.Value);
Assert.True (btn.CanFocus);
Assert.Equal (new (0, 0, 4, 1), btn.Viewport);
@@ -195,7 +195,7 @@ public class ButtonTests (ITestOutputHelper output)
btn.TextFormatter.Format ()
);
Assert.True (btn.IsDefault);
- Assert.Equal (TextAlignment.Centered, btn.TextAlignment);
+ Assert.Equal (Alignment.Centered, btn.TextAlignment);
Assert.True (btn.CanFocus);
btn.SetRelativeLayout (new (100, 100));
@@ -222,7 +222,7 @@ public class ButtonTests (ITestOutputHelper output)
btn.TextFormatter.Format ()
);
Assert.True (btn.IsDefault);
- Assert.Equal (TextAlignment.Centered, btn.TextAlignment);
+ Assert.Equal (Alignment.Centered, btn.TextAlignment);
Assert.Equal ('_', btn.HotKeySpecifier.Value);
Assert.True (btn.CanFocus);
diff --git a/UnitTests/Views/CheckBoxTests.cs b/UnitTests/Views/CheckBoxTests.cs
index c7b5e73a5..5c40d9908 100644
--- a/UnitTests/Views/CheckBoxTests.cs
+++ b/UnitTests/Views/CheckBoxTests.cs
@@ -251,7 +251,7 @@ public class CheckBoxTests
X = 1,
Y = Pos.Center (),
Text = "Check this out 你",
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 25
};
var win = new Window { Width = Dim.Fill (), Height = Dim.Fill (), Title = "Test Demo 你" };
@@ -262,7 +262,7 @@ public class CheckBoxTests
Application.Begin (top);
((FakeDriver)Application.Driver).SetBufferSize (30, 5);
- Assert.Equal (TextAlignment.Centered, checkBox.TextAlignment);
+ Assert.Equal (Alignment.Centered, checkBox.TextAlignment);
Assert.Equal (new (1, 1, 25, 1), checkBox.Frame);
Assert.Equal (_size25x1, checkBox.TextFormatter.Size);
@@ -301,7 +301,7 @@ public class CheckBoxTests
X = 1,
Y = Pos.Center (),
Text = "Check first out 你",
- TextAlignment = TextAlignment.Justified,
+ TextAlignment = Alignment.Justified,
Width = 25
};
@@ -310,7 +310,7 @@ public class CheckBoxTests
X = 1,
Y = Pos.Bottom (checkBox1),
Text = "Check second out 你",
- TextAlignment = TextAlignment.Justified,
+ TextAlignment = Alignment.Justified,
Width = 25
};
var win = new Window { Width = Dim.Fill (), Height = Dim.Fill (), Title = "Test Demo 你" };
@@ -321,9 +321,9 @@ public class CheckBoxTests
Application.Begin (top);
((FakeDriver)Application.Driver).SetBufferSize (30, 6);
- Assert.Equal (TextAlignment.Justified, checkBox1.TextAlignment);
+ Assert.Equal (Alignment.Justified, checkBox1.TextAlignment);
Assert.Equal (new (1, 1, 25, 1), checkBox1.Frame);
- Assert.Equal (TextAlignment.Justified, checkBox2.TextAlignment);
+ Assert.Equal (Alignment.Justified, checkBox2.TextAlignment);
Assert.Equal (new (1, 2, 25, 1), checkBox2.Frame);
var expected = @$"
@@ -378,7 +378,7 @@ public class CheckBoxTests
Application.Begin (top);
((FakeDriver)Application.Driver).SetBufferSize (30, 5);
- Assert.Equal (TextAlignment.Left, checkBox.TextAlignment);
+ Assert.Equal (Alignment.Left, checkBox.TextAlignment);
Assert.Equal (new (1, 1, 25, 1), checkBox.Frame);
Assert.Equal (_size25x1, checkBox.TextFormatter.Size);
@@ -417,7 +417,7 @@ public class CheckBoxTests
X = 1,
Y = Pos.Center (),
Text = "Check this out 你",
- TextAlignment = TextAlignment.Right,
+ TextAlignment = Alignment.Right,
Width = 25
};
var win = new Window { Width = Dim.Fill (), Height = Dim.Fill (), Title = "Test Demo 你" };
@@ -428,7 +428,7 @@ public class CheckBoxTests
Application.Begin (top);
((FakeDriver)Application.Driver).SetBufferSize (30, 5);
- Assert.Equal (TextAlignment.Right, checkBox.TextAlignment);
+ Assert.Equal (Alignment.Right, checkBox.TextAlignment);
Assert.Equal (new (1, 1, 25, 1), checkBox.Frame);
Assert.Equal (_size25x1, checkBox.TextFormatter.Size);
diff --git a/UnitTests/Views/LabelTests.cs b/UnitTests/Views/LabelTests.cs
index 21caa06af..597b960b5 100644
--- a/UnitTests/Views/LabelTests.cs
+++ b/UnitTests/Views/LabelTests.cs
@@ -207,7 +207,7 @@ public class LabelTests
{
var label = new Label ();
Assert.Equal (string.Empty, label.Text);
- Assert.Equal (TextAlignment.Left, label.TextAlignment);
+ Assert.Equal (Alignment.Left, label.TextAlignment);
Assert.False (label.CanFocus);
Assert.Equal (new Rectangle (0, 0, 0, 0), label.Frame);
Assert.Equal (KeyCode.Null, label.HotKey);
diff --git a/UnitTests/Views/TextValidateFieldTests.cs b/UnitTests/Views/TextValidateFieldTests.cs
index ad149a705..e42fd4221 100644
--- a/UnitTests/Views/TextValidateFieldTests.cs
+++ b/UnitTests/Views/TextValidateFieldTests.cs
@@ -10,7 +10,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// ****
@@ -44,7 +44,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Left,
+ TextAlignment = Alignment.Left,
Width = 30,
// ****
@@ -81,7 +81,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// ****
@@ -115,7 +115,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// *
@@ -137,7 +137,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// *
@@ -161,7 +161,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// ****
@@ -179,7 +179,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// ****
@@ -196,7 +196,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// ****
@@ -214,7 +214,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// *
@@ -233,7 +233,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// *
@@ -253,7 +253,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// ** **
@@ -283,7 +283,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// *
@@ -308,7 +308,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Left,
+ TextAlignment = Alignment.Left,
Width = 30,
// ****
@@ -338,7 +338,7 @@ public class TextValidateField_NET_Provider_Tests
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Left, Width = 30, Provider = new NetMaskedTextProvider ("--(0000)--")
+ TextAlignment = Alignment.Left, Width = 30, Provider = new NetMaskedTextProvider ("--(0000)--")
};
field.Provider.TextChanged += (sender, e) => wasTextChanged = true;
@@ -356,7 +356,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// *
@@ -381,7 +381,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Left,
+ TextAlignment = Alignment.Left,
Width = 30,
// ****
@@ -400,7 +400,7 @@ public class TextValidateField_NET_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
// ****
@@ -540,7 +540,7 @@ public class TextValidateField_Regex_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
Provider = new TextRegexProvider ("^[0-9][0-9][0-9]$") { ValidateOnInput = false }
};
@@ -596,7 +596,7 @@ public class TextValidateField_Regex_Provider_Tests
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
Provider = new TextRegexProvider ("^[0-9][0-9][0-9]$") { ValidateOnInput = false }
};
@@ -616,7 +616,7 @@ public class TextValidateField_Regex_Provider_Tests
{
var field = new TextValidateField
{
- TextAlignment = TextAlignment.Centered,
+ TextAlignment = Alignment.Centered,
Width = 20,
Provider = new TextRegexProvider ("^[0-9][0-9][0-9]$") { ValidateOnInput = false }
};
diff --git a/UnitTests/Views/ToplevelTests.cs b/UnitTests/Views/ToplevelTests.cs
index e6e66586a..2db15d437 100644
--- a/UnitTests/Views/ToplevelTests.cs
+++ b/UnitTests/Views/ToplevelTests.cs
@@ -1453,8 +1453,8 @@ public class ToplevelTests
Y = Pos.Center (),
Width = Dim.Fill (),
Height = Dim.Fill (),
- TextAlignment = TextAlignment.Centered,
- VerticalTextAlignment = VerticalTextAlignment.Middle,
+ TextAlignment = Alignment.Centered,
+ VerticalTextAlignment = Alignment.Centered,
Text = "Test"
}
);
diff --git a/docfx/docs/layout.md b/docfx/docs/layout.md
index 8966b83fa..e703a97e3 100644
--- a/docfx/docs/layout.md
+++ b/docfx/docs/layout.md
@@ -66,6 +66,7 @@ The [Pos](~/api/Terminal.Gui.Pos.yml) is the type of `View.X` and `View.Y` and s
* Anchored from the end of the dimension - `Pos.AnchorEnd()`.
* Centered, using `Pos.Center()`.
* The `Pos.Left(otherView)`, `Pos.Top(otherView)`, `Pos.Bottom(otherView)`, `Pos.Right(otherView)` positions of another view.
+* Aligned (left, right, center, etc...) with other views - `Pos.Justify(Justification)`.
All `Pos` coordinates are relative to the Superview's content area.
diff --git a/docfx/docs/migratingfromv1.md b/docfx/docs/migratingfromv1.md
index 4af36a24d..d16a4748e 100644
--- a/docfx/docs/migratingfromv1.md
+++ b/docfx/docs/migratingfromv1.md
@@ -243,4 +243,14 @@ Replace references to to nested types with the new standalone version
```diff
- var myTab = new TabView.Tab();
+ var myTab = new Tab();
-```
\ No newline at end of file
+```
+
+## View and Text Alignment is now Justification
+
+In v1, both `TextAlignment` and `VerticalTextAlignment` enums were used to align text in views. In v2, these enums have been replaced with the `Alignment` enum. The `View.TextAlignment` property controls horizontal text alignment, and the `View.VerticalTextAlignment` property controls vertical text alignment.
+
+v2 now supports `Pos.Align` which enables views to be justified within their superview.
+
+### How to Fix
+
+* Replace `VerticalAlignment.Middle` is now `Alignment.Center`.
diff --git a/docfx/docs/newinv2.md b/docfx/docs/newinv2.md
index 90f27a8e0..66fbfcd37 100644
--- a/docfx/docs/newinv2.md
+++ b/docfx/docs/newinv2.md
@@ -11,23 +11,23 @@ Apps built with Terminal.Gui now feel modern thanks to these improvements:
* *TrueColor support* - 24-bit color support for Windows, Mac, and Linux. Legacy 16-color systems are still supported, automatically. See [TrueColor](https://gui-cs.github.io/Terminal.GuiV2Docs/docs/overview.html#truecolor) for details.
* *Enhanced Borders and Padding* - Terminal.Gui now supports a `Border`, `Margin`, and `Padding` property on all views. This simplifies View development and enables a sophisticated look and feel. See [Adornments](https://gui-cs.github.io/Terminal.GuiV2Docs/docs/overview.html#adornments) for details.
* *User Configurable Color Themes* - See [Color Themes](https://gui-cs.github.io/Terminal.GuiV2Docs/docs/overview.html#color-themes) for details.
-* *Enhanced Unicode/Wide Character support *- Terminal.Gui now supports the full range of Unicode/wide characters. See [Unicode](https://gui-cs.github.io/Terminal.GuiV2Docs/docs/overview.html#unicode) for details.
+* *Enhanced Unicode/Wide Character support* - Terminal.Gui now supports the full range of Unicode/wide characters. See [Unicode](https://gui-cs.github.io/Terminal.GuiV2Docs/docs/overview.html#unicode) for details.
* *Line Canvas* - Terminal.Gui now supports a line canvas enabling high-performance drawing of lines and shapes using box-drawing glyphs. `LineCanvas` provides *auto join*, a smart TUI drawing system that automatically selects the correct line/box drawing glyphs for intersections making drawing complex shapes easy. See [Line Canvas](https://gui-cs.github.io/Terminal.GuiV2Docs/docs/overview.html#line-canvas) for details.
## Simplified API
The entire library has been reviewed and simplified. As a result, the API is more consistent and uses modern .NET API standards (e.g. for events). This refactoring resulted in the removal of thousands of lines of code, better unit tests, and higher performance than v1. See [Simplified API](overview.md#simplified-api) for details.
-## View Improvements
+## `View` Improvements
* *Life Cycle Management* -
-* In v1, `View` was derived from `Responder` which supported `IDisposable`. In v2, `Responder` has been removed and `View` is the base-class supporting `IDisposable`.
-* `Application.Init` no longer automatically creates a toplevel or sets `Applicaton.Top`; app developers must explicitly create the toplevel view and pass it to `Appliation.Run` (or use `Application.Run`). Developers are responsible for calling `Dispose` on any toplevel they create before exiting.
-* *Adornments* -
-* *Built-in Scrolling/Virtual Content Area* - In v1, to have a view a user could scroll required either a bespoke scrolling implementation, inheriting from `ScrollView`, or managing the complexity of `ScrollBarView` directly. In v2, the base-View class supports scrolling inherently. The area of a view visible to the user at a given moment was previously a rectangle called `Bounds`. `Bounds.Location` was always `Point.Empty`. In v2 the visible area is a rectangle called `Viewport` which is a protal into the Views content, which can be bigger (or smaller) than the area visible to the user. Causing a view to scroll is as simple as changing `View.Viewport.Location`. The View's content described by `View.ContentSize`. See [Layout](layout.md) for details.
-* *Computed Layout Improvements* -
-* *`Pos.AnchorEnd ()`* - New to v2 is `Pos.AnchorEnd ()` (with no parameters) which allows a view to be anchored to the right or bottom of the Superview.
-* *`Dim.Auto`* -
+ * In v1, `View` was derived from `Responder` which supported `IDisposable`. In v2, `Responder` has been removed and `View` is the base-class supporting `IDisposable`.
+ * `Application.Init` no longer automatically creates a toplevel or sets `Applicaton.Top`; app developers must explicitly create the toplevel view and pass it to `Appliation.Run` (or use `Application.Run`). Developers are responsible for calling `Dispose` on any toplevel they create before exiting.
+* New! *Adornments* - Adornments are a special form of View that appear outside the `Viewport`: `Margin`, `Border`, and `Padding`.
+* New! *Built-in Scrolling/Virtual Content Area* - In v1, to have a view a user could scroll required either a bespoke scrolling implementation, inheriting from `ScrollView`, or managing the complexity of `ScrollBarView` directly. In v2, the base-View class supports scrolling inherently. The area of a view visible to the user at a given moment was previously a rectangle called `Bounds`. `Bounds.Location` was always `Point.Empty`. In v2 the visible area is a rectangle called `Viewport` which is a protal into the Views content, which can be bigger (or smaller) than the area visible to the user. Causing a view to scroll is as simple as changing `View.Viewport.Location`. The View's content described by `View.ContentSize`. See [Layout](layout.md) for details.
+* New! *`Dim.Auto`* - Automatically sizes the view to fitthe view's Text, SubViews, or ContentArea.
+* Improved! *`Pos.AnchorEnd ()`* - New to v2 is `Pos.AnchorEnd ()` (with no parameters) which allows a view to be anchored to the right or bottom of the Superview.
+* New! *`Pos.Align ()`* - Aligns a set of views horizontally or vertically (left, rigth, center, etc...).
* ...
## New and Improved Built-in Views