minicrossterm/src/terminal_style/styles/objectstyle.rs

52 lines
1.3 KiB
Rust
Raw Normal View History

use terminal_style::{Color, StyledObject};
2018-01-04 00:43:54 +11:00
use std::fmt::Display;
/// This struct contains the style properties that can be applied to an displayable object.
#[derive(Clone)]
pub struct ObjectStyle {
2018-01-04 00:43:54 +11:00
pub fg_color: Option<Color>,
pub bg_color: Option<Color>,
}
impl Default for ObjectStyle {
fn default() -> ObjectStyle {
ObjectStyle {
fg_color: Some(Color::White),
bg_color: Some(Color::Black),
}
2018-01-04 00:43:54 +11:00
}
}
impl ObjectStyle {
2018-01-04 00:43:54 +11:00
/// Get an `StyledObject` from the passed displayable object.
pub fn apply_to<D>(&self, val: D) -> StyledObject<D>
where
D: Display,
{
2018-01-04 00:43:54 +11:00
StyledObject {
object_style: self.clone(),
content: val,
2018-01-04 00:43:54 +11:00
}
}
/// Get an instance of `ObjectStyle`
pub fn new() -> ObjectStyle {
return ObjectStyle {
fg_color: None,
bg_color: None,
};
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
}
}