cursive/src/align.rs

81 lines
2.0 KiB
Rust
Raw Normal View History

//! Tools to control view alignment
2015-06-03 22:36:51 +00:00
/// Specifies the alignment along both horizontal and vertical directions.
pub struct Align {
pub h: HAlign,
pub v: VAlign,
}
impl Align {
2015-06-03 22:36:51 +00:00
/// Creates a new Align object from the given horizontal and vertical alignments.
pub fn new(h: HAlign, v: VAlign) -> Self {
Align {
h: h,
v: v,
}
}
2015-06-03 22:36:51 +00:00
/// Creates a top-left alignment.
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)
}
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)
}
2015-06-03 22:36:51 +00:00
/// Creates an alignment centered both horizontally and vertically.
pub fn center() -> Self {
Align::new(HAlign::Center, VAlign::Center)
}
}
2015-06-03 22:36:51 +00:00
/// Horizontal alignment
pub enum HAlign {
Left,
Center,
Right,
}
2015-06-03 22:36:51 +00:00
/// Vertical alignment
pub enum VAlign {
Top,
Center,
Bottom,
}
impl HAlign {
2015-06-03 22:36:51 +00:00
/// To draw a view with size `content` in a printer with size `container`, this returns the
/// offset to start printing the view at.
pub fn get_offset(&self, content: usize, container: usize) -> usize {
match *self {
HAlign::Left => 0,
HAlign::Center => (container - content)/2,
HAlign::Right => (container - content),
}
}
}
impl VAlign {
2015-06-03 22:36:51 +00:00
/// To draw a view with size `content` in a printer with size `container`, this returns the
/// offset to start printing the view at.
pub fn get_offset(&self, content: usize, container: usize) -> usize {
match *self {
VAlign::Top => 0,
VAlign::Center => (container - content)/2,
VAlign::Bottom => (container - content),
}
}
}