cursive/src/orientation.rs

52 lines
1.7 KiB
Rust
Raw Normal View History

2015-06-08 22:38:10 +00:00
//! Define an Orientation and associated methods.
use vec::Vec2;
2015-06-08 22:38:10 +00:00
/// Describes a vertical or horizontal orientation for a view.
#[derive(Clone,Copy,Debug,PartialEq)]
pub enum Orientation {
2015-06-08 22:38:10 +00:00
/// Horizontal orientation
Horizontal,
2015-06-08 22:38:10 +00:00
/// Vertical orientation
Vertical,
}
impl Orientation {
2015-06-08 22:38:10 +00:00
/// Returns the component of the given vector corresponding to this orientation.
/// (Horizontal will return the x value, and Vertical will return the y value.)
pub fn get(&self, v: &Vec2) -> usize {
match *self {
Orientation::Horizontal => v.x,
Orientation::Vertical => v.y,
}
}
2015-06-08 22:38:10 +00:00
/// Returns the other orientation.
pub fn swap(&self) -> Self {
match *self {
Orientation::Horizontal => Orientation::Vertical,
Orientation::Vertical => Orientation::Horizontal,
}
}
2015-06-08 22:38:10 +00:00
/// Returns a mutable reference to the component of the given vector
/// corresponding to this orientation.
2016-03-15 22:37:57 +00:00
pub fn get_ref<'a, 'b>(&'a self, v: &'b mut Vec2) -> &'b mut usize {
match *self {
Orientation::Horizontal => &mut v.x,
Orientation::Vertical => &mut v.y,
}
}
2015-06-08 22:38:10 +00:00
/// Takes an iterator on sizes, and stack them in the current orientation,
/// returning the size of the required bounding box.
///
/// For an horizontal view, returns (Sum(x), Max(y)).
/// For a vertical view, returns (Max(x),Sum(y)).
2016-03-15 22:37:57 +00:00
pub fn stack<'a, T: Iterator<Item = &'a Vec2>>(&self, iter: T) -> Vec2 {
match *self {
Orientation::Horizontal => iter.fold(Vec2::zero(), |a, b| a.stack_horizontal(b)),
Orientation::Vertical => iter.fold(Vec2::zero(), |a, b| a.stack_vertical(b)),
}
}
}