cursive_core 0.4.6

Core components for the Cursive TUI
Documentation
use crate::view::{View, ViewWrapper};

/// Applies a theme to the wrapped view.
pub struct ThemedView<T> {
    theme: crate::theme::Theme,
    view: T,
}

impl<T> ThemedView<T> {
    /// Wrap the given view with a theme.
    pub fn new(theme: crate::theme::Theme, view: T) -> Self {
        ThemedView { theme, view }
    }

    /// Retrieve the wrapped theme.
    pub fn get_theme(&self) -> &crate::theme::Theme {
        &self.theme
    }

    /// Sets a new theme for the wrapped view.
    pub fn set_theme(&mut self, theme: crate::theme::Theme) {
        self.theme = theme;
    }

    inner_getters!(self.view: T);
}

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

    fn wrap_draw(&self, printer: &crate::Printer) {
        // Hack: We need to re-apply the View (+Primary) style.
        //
        // InheritParent would not be enough because it re-uses the previous _concrete color_
        // (after the theme is applied), so it would not pick up the theme new colors.
        // Ideally we would need to know the previous _StyleType_ (before the theme is applied),
        // but that's not easy for now.
        printer
            .theme(&self.theme)
            .with_style(crate::style::PaletteStyle::View, |printer| {
                self.view.draw(printer);
            });
    }
}

#[crate::blueprint(ThemedView::new(theme, view))]
struct Blueprint {
    view: crate::views::BoxedView,
    theme: crate::theme::Theme,
}

crate::manual_blueprint!(with theme, |config, context| {
    let theme = context.resolve(config)?;
    Ok(move |view| ThemedView::new(theme, view))
});