cursive/src/views/shadow_view.rs

94 lines
2.5 KiB
Rust
Raw Normal View History

2016-07-14 06:25:54 +00:00
use Printer;
use theme::ColorStyle;
2016-10-02 22:22:29 +00:00
use vec::Vec2;
use view::{View, ViewWrapper};
2015-05-26 23:48:27 +00:00
/// Wrapper view that adds a shadow.
///
/// It reserves a 1 pixel border on each side.
pub struct ShadowView<T: View> {
2015-05-26 23:48:27 +00:00
view: T,
top_padding: bool,
left_padding: bool,
}
2016-06-25 23:36:22 +00:00
impl<T: View> ShadowView<T> {
2015-05-26 23:48:27 +00:00
/// Wraps the given view.
pub fn new(view: T) -> Self {
ShadowView {
view: view,
top_padding: true,
left_padding: true,
}
}
2016-07-17 05:05:28 +00:00
fn padding(&self) -> Vec2 {
Vec2::new(1 + self.left_padding as usize,
1 + self.top_padding as usize)
}
/// If set, adds an empty column to the left of the view.
///
/// Default to true.
pub fn left_padding(mut self, value: bool) -> Self {
self.left_padding = value;
self
}
/// If set, adds an empty row at the top of the view.
///
/// Default to true.
pub fn top_padding(mut self, value: bool) -> Self {
self.top_padding = value;
self
}
}
2016-06-25 23:36:22 +00:00
impl<T: View> ViewWrapper for ShadowView<T> {
wrap_impl!(self.view: T);
fn wrap_required_size(&mut self, req: Vec2) -> Vec2 {
2016-07-17 05:05:28 +00:00
// Make sure req >= offset
2017-08-14 23:32:01 +00:00
let offset = self.padding();
self.view.required_size(req.saturating_sub(offset)) + offset
}
fn wrap_layout(&mut self, size: Vec2) {
2017-08-14 23:32:01 +00:00
let offset = self.padding();
self.view.layout(size.saturating_sub(offset));
}
fn wrap_draw(&self, printer: &Printer) {
if printer.size.y <= self.top_padding as usize ||
printer.size.x <= self.left_padding as usize {
2016-07-17 05:05:28 +00:00
// Nothing to do if there's no place to draw.
return;
}
// Skip the first row/column
let offset = Vec2::new(self.left_padding as usize,
self.top_padding as usize);
let printer = &printer.offset(offset, true);
if printer.theme.shadow {
let h = printer.size.y;
let w = printer.size.x;
2017-08-14 23:32:01 +00:00
if h == 0 || w == 0 {
return;
}
printer.with_color(ColorStyle::Shadow, |printer| {
printer.print_hline((1, h - 1), w - 1, " ");
printer.print_vline((w - 1, 1), h - 1, " ");
});
}
// Draw the view background
2017-08-14 23:32:01 +00:00
let printer = printer.sub_printer(Vec2::zero(),
printer.size.saturating_sub((1, 1)),
true);
self.view.draw(&printer);
}
}