minicrossterm/src/style/styles/objectstyle.rs

73 lines
1.8 KiB
Rust
Raw Normal View History

//! This module contains the `object style` that can be applied to an `styled object`.
2018-01-04 00:43:54 +11:00
use std::fmt::Display;
use style::{Color, StyledObject};
use { Terminal, ScreenManager };
use std::sync::Mutex;
use std::rc::Rc;
2018-03-04 01:40:51 +11:00
#[cfg(unix)]
use super::super::Attribute;
2018-01-28 04:48:49 +11:00
/// Struct that contains the style properties that can be applied to an displayable object.
2018-01-04 00:43:54 +11:00
#[derive(Clone)]
pub struct ObjectStyle {
2018-01-04 00:43:54 +11:00
pub fg_color: Option<Color>,
pub bg_color: Option<Color>,
2018-01-28 04:48:49 +11:00
#[cfg(unix)]
pub attrs: Vec<Attribute>
2018-01-04 00:43:54 +11:00
}
impl Default for ObjectStyle {
fn default() -> ObjectStyle {
ObjectStyle {
fg_color: Some(Color::White),
bg_color: Some(Color::Black),
#[cfg(unix)]
attrs: Vec::new()
}
2018-01-04 00:43:54 +11:00
}
}
impl ObjectStyle {
/// Apply an `StyledObject` to the passed displayable object.
pub fn apply_to<D>(&self, val: D, screen: Rc<Mutex<ScreenManager>>) -> StyledObject<D>
where
D: Display,
{
2018-01-04 00:43:54 +11:00
StyledObject {
object_style: self.clone(),
screen_manager: screen,
content: val,
2018-01-04 00:43:54 +11:00
}
}
/// Get an new instance of `ObjectStyle`
pub fn new() -> ObjectStyle {
return ObjectStyle {
fg_color: None,
bg_color: None,
#[cfg(unix)]
attrs: Vec::new()
};
2018-01-04 00:43:54 +11:00
}
/// Set the background color of `ObjectStyle` to the passed color.
pub fn bg(mut self, color: Color) -> ObjectStyle {
2018-01-04 00:43:54 +11:00
self.bg_color = Some(color);
self
}
/// Set the foreground color of `ObjectStyle` to the passed color.
pub fn fg(mut self, color: Color) -> ObjectStyle {
2018-01-04 00:43:54 +11:00
self.fg_color = Some(color);
self
}
2018-01-28 04:48:49 +11:00
#[cfg(unix)]
pub fn add_attr(&mut self, attr: Attribute)
{
self.attrs.push(attr);
}
2018-01-04 00:43:54 +11:00
}