1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
//! Text alignment utilities for terminal user interfaces.
//!
//! This module provides high-level text alignment functions that build on top of the
//! lower-level positioning primitives. It offers a simple, intuitive API for aligning
//! text within specified dimensions, similar to the Go lipgloss library.
//!
//! # Examples
//!
//! ```
//! use lipgloss::align::{align, HorizontalAlignment, VerticalAlignment};
//! use lipgloss::whitespace::WhitespaceOption;
//!
//! // Center text both horizontally and vertically
//! let centered = align(
//! 20, // width
//! 5, // height
//! HorizontalAlignment::Center,
//! VerticalAlignment::Center,
//! "Hello",
//! &[],
//! );
//!
//! // Right-align text horizontally
//! let right_aligned = lipgloss::align::align_horizontal(
//! 30,
//! HorizontalAlignment::Right,
//! "Right aligned text",
//! &[],
//! );
//! ```
use crate;
use crateWhitespaceOption;
/// Specifies horizontal alignment options for text positioning.
///
/// This enum provides a high-level interface for horizontal text alignment,
/// mapping to the underlying position system used internally.
///
/// # Examples
///
/// ```
/// use lipgloss::align::{align_horizontal, HorizontalAlignment};
///
/// // Left align (default behavior)
/// let left = align_horizontal(20, HorizontalAlignment::Left, "Text", &[]);
///
/// // Center align
/// let center = align_horizontal(20, HorizontalAlignment::Center, "Text", &[]);
///
/// // Right align
/// let right = align_horizontal(20, HorizontalAlignment::Right, "Text", &[]);
/// ```
/// Specifies vertical alignment options for text positioning.
///
/// This enum provides a high-level interface for vertical text alignment,
/// mapping to the underlying position system used internally.
///
/// # Examples
///
/// ```
/// use lipgloss::align::{align_vertical, VerticalAlignment};
///
/// // Top align (default behavior)
/// let top = align_vertical(10, VerticalAlignment::Top, "Text", &[]);
///
/// // Center align
/// let center = align_vertical(10, VerticalAlignment::Center, "Text", &[]);
///
/// // Bottom align
/// let bottom = align_vertical(10, VerticalAlignment::Bottom, "Text", &[]);
/// ```
/// Converts a high-level horizontal alignment to the internal position representation.
///
/// This function maps the user-friendly `HorizontalAlignment` enum to the
/// lower-level `Position` type used by the positioning system.
///
/// # Arguments
///
/// * `h` - The horizontal alignment to convert
///
/// # Returns
///
/// The corresponding `Position` value for horizontal placement
/// Converts a high-level vertical alignment to the internal position representation.
///
/// This function maps the user-friendly `VerticalAlignment` enum to the
/// lower-level `Position` type used by the positioning system.
///
/// # Arguments
///
/// * `v` - The vertical alignment to convert
///
/// # Returns
///
/// The corresponding `Position` value for vertical placement
/// Aligns text both horizontally and vertically within a specified area.
///
/// This function positions text within a rectangular area defined by width and height,
/// using the specified horizontal and vertical alignments. The text is padded with
/// whitespace as needed to achieve the desired alignment.
///
/// # Arguments
///
/// * `width` - The width of the area in terminal columns
/// * `height` - The height of the area in terminal lines
/// * `h` - The horizontal alignment (Left, Center, or Right)
/// * `v` - The vertical alignment (Top, Center, or Bottom)
/// * `s` - The text to align
/// * `opts` - Whitespace rendering options (e.g., custom characters or styles)
///
/// # Returns
///
/// A string containing the aligned text with appropriate padding
///
/// # Examples
///
/// ```
/// use lipgloss::align::{align, HorizontalAlignment, VerticalAlignment};
///
/// // Center a greeting in a 20x5 box
/// let centered = align(
/// 20,
/// 5,
/// HorizontalAlignment::Center,
/// VerticalAlignment::Center,
/// "Hello",
/// &[],
/// );
/// // The result will have the appropriate vertical padding
///
/// // Bottom-right align text
/// let bottom_right = align(
/// 30,
/// 10,
/// HorizontalAlignment::Right,
/// VerticalAlignment::Bottom,
/// "Status: OK",
/// &[],
/// );
/// ```
/// Aligns text horizontally within a specified width.
///
/// This function positions text horizontally within the given width, adding
/// padding spaces as needed. The text's original line structure is preserved.
///
/// # Arguments
///
/// * `width` - The total width in terminal columns
/// * `h` - The horizontal alignment (Left, Center, or Right)
/// * `s` - The text to align
/// * `opts` - Whitespace rendering options (e.g., custom characters or styles)
///
/// # Returns
///
/// A string with each line aligned according to the specified alignment
///
/// # Examples
///
/// ```
/// use lipgloss::align::{align_horizontal, HorizontalAlignment};
///
/// // Right-align text in 30 columns
/// let right = align_horizontal(
/// 30,
/// HorizontalAlignment::Right,
/// "Right aligned",
/// &[],
/// );
/// assert!(right.starts_with(" ")); // padded on left
///
/// // Center multi-line text
/// let centered = align_horizontal(
/// 20,
/// HorizontalAlignment::Center,
/// "Line 1\nLine 2",
/// &[],
/// );
/// // Each line will be centered within 20 columns
/// ```
/// Aligns text vertically within a specified height.
///
/// This function positions text vertically within the given height by adding
/// empty lines above and/or below the content as needed.
///
/// # Arguments
///
/// * `height` - The total height in terminal lines
/// * `v` - The vertical alignment (Top, Center, or Bottom)
/// * `s` - The text to align
/// * `opts` - Whitespace rendering options (e.g., custom characters or styles)
///
/// # Returns
///
/// A string with the appropriate number of lines to achieve the alignment
///
/// # Examples
///
/// ```
/// use lipgloss::align::{align_vertical, VerticalAlignment};
///
/// // Bottom-align text in 10 lines
/// let bottom = align_vertical(
/// 10,
/// VerticalAlignment::Bottom,
/// "Status line",
/// &[],
/// );
/// assert_eq!(bottom.lines().count(), 10);
///
/// // Center multi-line text vertically
/// let centered = align_vertical(
/// 8,
/// VerticalAlignment::Center,
/// "Line 1\nLine 2\nLine 3",
/// &[],
/// );
/// // The 3 lines will be centered within 8 total lines
/// ```