1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
use view::{View, ViewWrapper};
use direction::Orientation;
use vec::Vec2;

/// Simple wrapper view that asks for all the space it can get.
///
/// # Examples
///
/// ```
/// # use cursive::prelude::*;
/// let view = FullView::new(TextView::new("Big box for little text!"));
/// ```
pub struct FullView<T: View> {
    view: T,
    orientation: Option<Orientation>,
}

impl<T: View> FullView<T> {
    /// Wraps the given view into a new FullView.
    ///
    /// It will always take the entire space available.
    pub fn new(view: T) -> Self {
        FullView {
            view: view,
            orientation: None,
        }
    }

    /// Creates a new wrapper around `view` with full width.
    ///
    /// It will always take the maximum width available.
    pub fn full_width(view: T) -> Self {
        FullView {
            view: view,
            orientation: Some(Orientation::Horizontal),
        }
    }

    /// Creates a new wrapper around `view` with full height.
    ///
    /// It will always take the maximum height available.
    pub fn full_height(view: T) -> Self {
        FullView {
            view: view,
            orientation: Some(Orientation::Vertical),
        }
    }
}

impl<T: View> ViewWrapper for FullView<T> {
    wrap_impl!(&self.view);

    fn wrap_get_min_size(&mut self, mut req: Vec2) -> Vec2 {
        if let Some(orientation) = self.orientation {
            let child_size = self.view.get_min_size(req);
            let orientation = orientation.swap();
            *orientation.get_ref(&mut req) = orientation.get(&child_size);
        }

        req
    }
}