2018-03-11 03:33:06 +11:00
|
|
|
//! This module contains the `object style` that can be applied to an `styled object`.
|
|
|
|
|
2018-08-20 07:42:48 +10:00
|
|
|
use super::{Color, StyledObject};
|
2018-06-23 05:04:30 +10:00
|
|
|
|
|
|
|
use std::fmt::Display;
|
2018-06-17 04:10:51 +10:00
|
|
|
|
2018-03-04 01:40:51 +11:00
|
|
|
#[cfg(unix)]
|
2018-07-29 03:46:05 +10:00
|
|
|
use super::Attribute;
|
2018-01-28 04:48:49 +11:00
|
|
|
|
2018-01-18 09:06:45 +11:00
|
|
|
/// Struct that contains the style properties that can be applied to an displayable object.
|
2018-07-10 03:37:07 +10:00
|
|
|
#[derive(Clone)]
|
2018-01-07 07:31:14 +11:00
|
|
|
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
|
|
|
|
2018-01-26 04:26:08 +11:00
|
|
|
#[cfg(unix)]
|
2018-07-02 06:43:43 +10:00
|
|
|
pub attrs: Vec<Attribute>,
|
2018-01-04 00:43:54 +11:00
|
|
|
}
|
|
|
|
|
2018-01-07 07:31:14 +11:00
|
|
|
impl Default for ObjectStyle {
|
|
|
|
fn default() -> ObjectStyle {
|
|
|
|
ObjectStyle {
|
|
|
|
fg_color: Some(Color::White),
|
|
|
|
bg_color: Some(Color::Black),
|
2018-01-26 04:26:08 +11:00
|
|
|
#[cfg(unix)]
|
2018-07-02 06:43:43 +10:00
|
|
|
attrs: Vec::new(),
|
2018-01-07 07:31:14 +11:00
|
|
|
}
|
2018-01-04 00:43:54 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-07 07:31:14 +11:00
|
|
|
impl ObjectStyle {
|
2018-01-10 06:36:48 +11:00
|
|
|
/// Apply an `StyledObject` to the passed displayable object.
|
2018-08-12 01:58:15 +10:00
|
|
|
pub fn apply_to<D: Display>(
|
2018-07-31 05:35:35 +10:00
|
|
|
&self,
|
|
|
|
val: D,
|
2018-08-12 01:58:15 +10:00
|
|
|
) -> StyledObject<D> {
|
2018-01-04 00:43:54 +11:00
|
|
|
StyledObject {
|
|
|
|
object_style: self.clone(),
|
2018-01-07 07:31:14 +11:00
|
|
|
content: val,
|
2018-01-04 00:43:54 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-10 06:36:48 +11:00
|
|
|
/// Get an new instance of `ObjectStyle`
|
2018-01-07 07:31:14 +11:00
|
|
|
pub fn new() -> ObjectStyle {
|
|
|
|
return ObjectStyle {
|
|
|
|
fg_color: None,
|
|
|
|
bg_color: None,
|
2018-01-26 04:26:08 +11:00
|
|
|
#[cfg(unix)]
|
2018-07-02 06:43:43 +10:00
|
|
|
attrs: Vec::new(),
|
2018-01-07 07:31:14 +11:00
|
|
|
};
|
2018-01-04 00:43:54 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the background color of `ObjectStyle` to the passed color.
|
2018-01-07 07:31:14 +11:00
|
|
|
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.
|
2018-01-07 07:31:14 +11:00
|
|
|
pub fn fg(mut self, color: Color) -> ObjectStyle {
|
2018-01-04 00:43:54 +11:00
|
|
|
self.fg_color = Some(color);
|
|
|
|
self
|
|
|
|
}
|
2018-01-26 04:26:08 +11:00
|
|
|
|
2018-01-28 04:48:49 +11:00
|
|
|
#[cfg(unix)]
|
2018-07-30 05:30:09 +10:00
|
|
|
/// Add an attribute to the current text. Like italic or bold.
|
2018-07-02 06:43:43 +10:00
|
|
|
pub fn add_attr(&mut self, attr: Attribute) {
|
2018-01-26 04:26:08 +11:00
|
|
|
self.attrs.push(attr);
|
|
|
|
}
|
2018-01-04 00:43:54 +11:00
|
|
|
}
|