mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-09 10:50:40 +00:00
parent
56008db796
commit
afe3123dac
@ -1,7 +1,7 @@
|
|||||||
//! Tools to control view alignment.
|
//! Tools to control view alignment.
|
||||||
|
|
||||||
/// Specifies the alignment along both horizontal and vertical directions.
|
/// Specifies the alignment along both horizontal and vertical directions.
|
||||||
#[derive(Debug)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
pub struct Align {
|
pub struct Align {
|
||||||
/// Horizontal alignment policy
|
/// Horizontal alignment policy
|
||||||
pub h: HAlign,
|
pub h: HAlign,
|
||||||
@ -62,7 +62,7 @@ impl Align {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Horizontal alignment
|
/// Horizontal alignment
|
||||||
#[derive(Debug)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
pub enum HAlign {
|
pub enum HAlign {
|
||||||
/// Place the element to the left of available space
|
/// Place the element to the left of available space
|
||||||
Left,
|
Left,
|
||||||
@ -73,7 +73,7 @@ pub enum HAlign {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Vertical alignment
|
/// Vertical alignment
|
||||||
#[derive(Debug)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
pub enum VAlign {
|
pub enum VAlign {
|
||||||
/// Place the element at the top of available space
|
/// Place the element at the top of available space
|
||||||
Top,
|
Top,
|
||||||
|
Loading…
Reference in New Issue
Block a user