2016-10-15 01:18:19 +00:00
|
|
|
//! Tools to control view alignment.
|
2015-06-02 00:48:29 +00:00
|
|
|
|
2015-06-03 22:36:51 +00:00
|
|
|
/// Specifies the alignment along both horizontal and vertical directions.
|
2017-12-12 01:31:55 +00:00
|
|
|
#[derive(Debug)]
|
2015-06-02 00:48:29 +00:00
|
|
|
pub struct Align {
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Horizontal alignment policy
|
2015-06-02 00:48:29 +00:00
|
|
|
pub h: HAlign,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Vertical alignment policy
|
2015-06-02 00:48:29 +00:00
|
|
|
pub v: VAlign,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Align {
|
2016-07-11 02:11:21 +00:00
|
|
|
/// Creates a new Align object from the given alignments.
|
2015-06-02 00:48:29 +00:00
|
|
|
pub fn new(h: HAlign, v: VAlign) -> Self {
|
2018-05-18 00:35:57 +00:00
|
|
|
Align { h, v }
|
2015-06-02 00:48:29 +00:00
|
|
|
}
|
|
|
|
|
2015-06-03 22:36:51 +00:00
|
|
|
/// Creates a top-left alignment.
|
2015-06-02 00:48:29 +00:00
|
|
|
pub fn top_left() -> Self {
|
|
|
|
Align::new(HAlign::Left, VAlign::Top)
|
|
|
|
}
|
|
|
|
|
2015-06-03 22:36:51 +00:00
|
|
|
/// Creates a top-right alignment.
|
2015-06-03 02:36:22 +00:00
|
|
|
pub fn top_right() -> Self {
|
|
|
|
Align::new(HAlign::Right, VAlign::Top)
|
|
|
|
}
|
|
|
|
|
2019-10-04 20:12:00 +00:00
|
|
|
/// Creates a top-center alignment.
|
|
|
|
pub fn top_center() -> Self {
|
|
|
|
Align::new(HAlign::Center, VAlign::Top)
|
|
|
|
}
|
|
|
|
|
2015-06-03 22:36:51 +00:00
|
|
|
/// Creates a bottom-left alignment.
|
2015-06-03 02:36:22 +00:00
|
|
|
pub fn bot_left() -> Self {
|
|
|
|
Align::new(HAlign::Left, VAlign::Bottom)
|
|
|
|
}
|
|
|
|
|
2015-06-03 22:36:51 +00:00
|
|
|
/// Creates a bottom-right alignment.
|
2015-06-03 02:36:22 +00:00
|
|
|
pub fn bot_right() -> Self {
|
|
|
|
Align::new(HAlign::Right, VAlign::Top)
|
|
|
|
}
|
|
|
|
|
2019-10-04 20:12:00 +00:00
|
|
|
/// Creates a bottom-center alignment.
|
|
|
|
pub fn bot_center() -> Self {
|
|
|
|
Align::new(HAlign::Center, VAlign::Bottom)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a center-right alignment.
|
|
|
|
pub fn center_left() -> Self {
|
|
|
|
Align::new(HAlign::Left, VAlign::Center)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a center-right alignment.
|
|
|
|
pub fn center_right() -> Self {
|
|
|
|
Align::new(HAlign::Right, VAlign::Center)
|
|
|
|
}
|
|
|
|
|
2015-06-03 22:36:51 +00:00
|
|
|
/// Creates an alignment centered both horizontally and vertically.
|
2015-06-02 00:48:29 +00:00
|
|
|
pub fn center() -> Self {
|
|
|
|
Align::new(HAlign::Center, VAlign::Center)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-03 22:36:51 +00:00
|
|
|
/// Horizontal alignment
|
2017-12-12 01:31:55 +00:00
|
|
|
#[derive(Debug)]
|
2015-06-02 00:48:29 +00:00
|
|
|
pub enum HAlign {
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Place the element to the left of available space
|
2015-06-02 00:48:29 +00:00
|
|
|
Left,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Place the element horizontally in the center of available space
|
2015-06-02 00:48:29 +00:00
|
|
|
Center,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Place the element to the right of available space
|
2015-06-02 00:48:29 +00:00
|
|
|
Right,
|
|
|
|
}
|
|
|
|
|
2015-06-03 22:36:51 +00:00
|
|
|
/// Vertical alignment
|
2017-12-12 01:31:55 +00:00
|
|
|
#[derive(Debug)]
|
2015-06-02 00:48:29 +00:00
|
|
|
pub enum VAlign {
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Place the element at the top of available space
|
2015-06-02 00:48:29 +00:00
|
|
|
Top,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Place the element vertically in the center of available space
|
2015-06-02 00:48:29 +00:00
|
|
|
Center,
|
2016-07-12 03:26:33 +00:00
|
|
|
/// Place the element at the bottom of available space
|
2015-06-02 00:48:29 +00:00
|
|
|
Bottom,
|
|
|
|
}
|
2015-06-02 21:23:51 +00:00
|
|
|
|
|
|
|
impl HAlign {
|
2016-07-11 02:11:21 +00:00
|
|
|
/// Returns the offset required to position a view.
|
|
|
|
///
|
|
|
|
/// When drawing a view with size `content` when the available size is
|
|
|
|
/// `container`, printing at the resulting offset will align the view as
|
|
|
|
/// desired.
|
2015-06-02 21:23:51 +00:00
|
|
|
pub fn get_offset(&self, content: usize, container: usize) -> usize {
|
2016-07-17 05:05:28 +00:00
|
|
|
if container < content {
|
|
|
|
0
|
|
|
|
} else {
|
|
|
|
match *self {
|
|
|
|
HAlign::Left => 0,
|
|
|
|
HAlign::Center => (container - content) / 2,
|
|
|
|
HAlign::Right => (container - content),
|
|
|
|
}
|
2015-06-02 21:23:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl VAlign {
|
2016-07-11 02:11:21 +00:00
|
|
|
/// Returns the offset required to position a view.
|
|
|
|
///
|
|
|
|
/// When drawing a view with size `content` when the available size is
|
|
|
|
/// `container`, printing at the resulting offset will align the view as
|
|
|
|
/// desired.
|
2015-06-02 21:23:51 +00:00
|
|
|
pub fn get_offset(&self, content: usize, container: usize) -> usize {
|
2016-07-17 05:05:28 +00:00
|
|
|
if container < content {
|
|
|
|
0
|
|
|
|
} else {
|
|
|
|
match *self {
|
|
|
|
VAlign::Top => 0,
|
|
|
|
VAlign::Center => (container - content) / 2,
|
|
|
|
VAlign::Bottom => (container - content),
|
|
|
|
}
|
2015-06-02 21:23:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|