cursive/src/view/box_view.rs

52 lines
1.2 KiB
Rust
Raw Normal View History

2016-03-15 22:37:57 +00:00
use vec::{Vec2, ToVec2};
use super::{View, ViewWrapper, SizeRequest, DimensionRequest};
/// BoxView is a wrapper around an other view, with a given minimum size.
pub struct BoxView<T: View> {
size: Vec2,
view: T,
}
impl <T: View> BoxView<T> {
/// Creates a new BoxView with the given minimum size and content
///
/// # Example
///
/// ```
2015-06-04 18:40:35 +00:00
/// # use cursive::view::{BoxView,TextView};
/// // Creates a 20x4 BoxView with a TextView content.
2015-06-04 18:40:35 +00:00
/// let view = BoxView::new((20,4), TextView::new("Hello!"));
/// ```
pub fn new<S: ToVec2>(size: S, view: T) -> Self {
BoxView {
size: size.to_vec2(),
view: view,
}
}
}
impl <T: View> ViewWrapper for BoxView<T> {
wrap_impl!(&self.view);
fn wrap_get_min_size(&self, mut req: SizeRequest) -> Vec2 {
2016-03-15 22:37:57 +00:00
if self.size.x > 0 {
req.w = DimensionRequest::AtMost(self.size.x);
}
if self.size.y > 0 {
req.h = DimensionRequest::AtMost(self.size.y);
}
let mut size = self.view.get_min_size(req);
2016-03-15 22:37:57 +00:00
if self.size.x > 0 {
size.x = self.size.x;
}
if self.size.y > 0 {
size.y = self.size.y;
}
size
}
}