Home
last modified time | relevance | path

Searched refs:CompoundStyle (Results 1 – 25 of 27) sorted by relevance

12

/dports/misc/broot/broot-1.7.0/cargo-crates/termimad-0.10.3/src/
H A Dcompound_style.rs22 pub struct CompoundStyle { struct
26 impl From<ContentStyle> for CompoundStyle { implementation
28 CompoundStyle { object_style } in from()
32 impl CompoundStyle { impl
46 ) -> CompoundStyle { in new() argument
47 CompoundStyle { in new()
58 CompoundStyle { in with_fgbg()
64 pub fn with_fg(fg: Color) -> CompoundStyle { in with_fg() argument
65 CompoundStyle { in with_fg()
72 CompoundStyle { in with_bg()
[all …]
H A Dskin.rs7 compound_style::CompoundStyle,
41 pub bold: CompoundStyle,
42 pub italic: CompoundStyle,
43 pub strikeout: CompoundStyle,
44 pub inline_code: CompoundStyle,
52 pub ellipsis: CompoundStyle,
87 ellipsis: CompoundStyle::default(), in default()
115 bold: CompoundStyle::default(), in no_style()
116 italic: CompoundStyle::default(), in no_style()
117 strikeout: CompoundStyle::default(), in no_style()
[all …]
H A Dstyled_char.rs3 compound_style::CompoundStyle,
17 compound_style: CompoundStyle,
23 pub fn new(compound_style: CompoundStyle, nude_char: char) -> StyledChar { in new() argument
31 Self::new(CompoundStyle::default(), nude_char) in nude()
34 Self::new(CompoundStyle::with_fg(fg), nude_char) in from_fg_char()
61 pub fn set_compound_style(&mut self, compound_style: CompoundStyle) { in set_compound_style() argument
H A Dspacing.rs1 use crate::{compound_style::CompoundStyle, errors::Result};
54 style: &CompoundStyle, in write_counted_str() argument
79 pub fn write_str<W>(&self, w: &mut W, s: &str, style: &CompoundStyle) -> Result<()> in write_str()
H A Dline_style.rs5 use crate::compound_style::CompoundStyle;
14 pub compound_style: CompoundStyle,
/dports/misc/broot/broot-1.7.0/cargo-crates/termimad-0.17.0/src/
H A Dcompound_style.rs22 pub struct CompoundStyle { struct
26 impl From<ContentStyle> for CompoundStyle { argument
28 CompoundStyle { object_style } in from()
32 impl CompoundStyle { implementation
46 ) -> CompoundStyle { in new() argument
47 CompoundStyle { in new()
58 CompoundStyle { in with_fgbg()
68 pub fn with_fg(fg: Color) -> CompoundStyle { in with_fg() argument
69 CompoundStyle { in with_fg()
80 CompoundStyle { in with_bg()
[all …]
H A Dstyled_char.rs3 compound_style::CompoundStyle,
20 compound_style: CompoundStyle,
26 pub fn new(compound_style: CompoundStyle, nude_char: char) -> StyledChar { in new() argument
34 Self::new(CompoundStyle::default(), nude_char) in nude()
37 Self::new(CompoundStyle::with_fg(fg), nude_char) in from_fg_char()
64 pub fn set_compound_style(&mut self, compound_style: CompoundStyle) { in set_compound_style() argument
H A Dskin.rs6 compound_style::CompoundStyle,
46 pub bold: CompoundStyle,
47 pub italic: CompoundStyle,
48 pub strikeout: CompoundStyle,
49 pub inline_code: CompoundStyle,
57 pub ellipsis: CompoundStyle,
97 ellipsis: CompoundStyle::default(), in default()
122 bold: CompoundStyle::default(), in no_style()
123 italic: CompoundStyle::default(), in no_style()
124 strikeout: CompoundStyle::default(), in no_style()
[all …]
H A Dspacing.rs1 use crate::{compound_style::CompoundStyle, errors::Result};
54 style: &CompoundStyle, in write_counted_str() argument
79 pub fn write_str<W>(&self, w: &mut W, s: &str, style: &CompoundStyle) -> Result<()> in write_str()
H A Dline_style.rs2 crate::compound_style::CompoundStyle,
15 pub compound_style: CompoundStyle,
/dports/misc/broot/broot-1.7.0/src/skin/
H A Dskin_entry.rs14 termimad::CompoundStyle,
20 focused: CompoundStyle,
21 unfocused: Option<CompoundStyle>,
25 pub fn new(focused: CompoundStyle, unfocused: Option<CompoundStyle>) -> Self { in new() argument
28 pub fn get_focused(&self) -> &CompoundStyle { in get_focused() argument
31 pub fn get_unfocused(&self) -> &CompoundStyle { in get_unfocused() argument
88 fn parse_compound_style(s: &str) -> Result<CompoundStyle, InvalidSkinError> { in parse_compound_style() argument
106 Ok(CompoundStyle::new( in parse_compound_style()
H A Dstyle_map.rs25 termimad::CompoundStyle,
43 $(pub $name: CompoundStyle,)*
57 $($name: CompoundStyle::default(),)*
78 CompoundStyle::new(
89 $($name: CompoundStyle::default(),)*
92 unfocused.$name = CompoundStyle::new(
98 unfocused.$name = CompoundStyle::new(
/dports/misc/broot/broot-1.7.0/cargo-crates/termimad-0.17.0/src/fit/
H A Dcrop_writer.rs51 pub fn queue_str(&mut self, cs: &CompoundStyle, s: &str) -> Result<(), Error> { in queue_str() argument
59 pub fn queue_char(&mut self, cs: &CompoundStyle, c: char) -> Result<(), Error> { in queue_char() argument
100 pub fn queue_g_string(&mut self, cs: &CompoundStyle, mut s: String) -> Result<(), Error> { in queue_g_string() argument
116 pub fn queue_fg(&mut self, cs: &CompoundStyle) -> Result<(), Error> { in queue_fg()
119 pub fn queue_bg(&mut self, cs: &CompoundStyle) -> Result<(), Error> { in queue_bg()
122 pub fn fill(&mut self, cs: &CompoundStyle, filling: &'static Filling) -> Result<(), Error> { in fill() argument
128 pub fn fill_with_space(&mut self, cs: &CompoundStyle) -> Result<(), Error> { in fill_with_space()
133 cs: &CompoundStyle, in repeat() argument
H A Dfilling.rs46 cs: &CompoundStyle, in queue_styled() argument
/dports/misc/broot/broot-1.7.0/src/display/
H A Dmatched_string.rs6 CompoundStyle, StrFit,
13 pub base_style: &'a CompoundStyle,
14 pub match_style: &'a CompoundStyle,
24 base_style: &'a CompoundStyle, in new() argument
25 match_style: &'a CompoundStyle, in new() argument
H A Ddisplayable_tree.rs28 termimad::{CompoundStyle, ProgressBar},
75 ) -> CompoundStyle { in label_style() argument
136 style: &CompoundStyle, in write_line_selection_mark() argument
151 style: &CompoundStyle, in write_line_size() argument
171 label_style: &CompoundStyle, in write_line_size_with_bar() argument
280 style: &CompoundStyle, in write_line_stage_mark() argument
296 style: &CompoundStyle, in write_line_label() argument
/dports/misc/broot/broot-1.7.0/cargo-crates/termimad-0.10.3/src/views/
H A Dinput_field.rs4 CompoundStyle,
34 normal_style: CompoundStyle,
35 cursor_style: CompoundStyle,
42 let normal_style = CompoundStyle::default(); in new()
60 pub fn set_normal_style(&mut self, style: CompoundStyle) { in set_normal_style() argument
H A Dlist_view.rs14 compute_scrollbar, errors::Result, gray, Alignment, Area, CompoundStyle, MadSkin, Spacing,
19 style: &'t CompoundStyle,
63 pub fn new(con: String, style: &'t CompoundStyle) -> Self { in new()
/dports/misc/broot/broot-1.7.0/cargo-crates/termimad-0.17.0/src/views/
H A Dinput_field.rs37 focused_style: CompoundStyle,
38 unfocused_style: CompoundStyle,
39 cursor_style: CompoundStyle,
79 let focused_style = CompoundStyle::default(); in new()
80 let unfocused_style = CompoundStyle::default(); in new()
154 pub fn set_normal_style(&mut self, style: CompoundStyle) { in set_normal_style() argument
159 pub fn set_unfocused_style(&mut self, style: CompoundStyle) { in set_unfocused_style() argument
H A Dlist_view.rs14 compute_scrollbar, errors::Result, gray, Alignment, Area, CompoundStyle, MadSkin, Spacing,
19 style: &'t CompoundStyle,
63 pub fn new(con: String, style: &'t CompoundStyle) -> Self { in new()
/dports/misc/broot/broot-1.7.0/src/hex/
H A Dbyte.rs5 termimad::CompoundStyle,
40 pub fn style(self, styles: &StyleMap) -> &CompoundStyle { in style() argument
/dports/misc/broot/broot-1.7.0/cargo-crates/termimad-0.17.0/examples/inputs/
H A Dview.rs80 view.login_input.set_normal_style(CompoundStyle::with_fgbg(gray(22), gray(2))); in default()
81 view.password_input.set_normal_style(CompoundStyle::with_fgbg(gray(22), gray(2))); in default()
82 view.comments_input.set_normal_style(CompoundStyle::with_fgbg(gray(22), gray(2))); in default()
/dports/misc/broot/broot-1.7.0/cargo-crates/termimad-0.17.0/examples/simple/
H A Dmain.rs21 skin.italic = CompoundStyle::with_bg(DarkBlue); in main()
/dports/misc/broot/broot-1.7.0/src/filesystems/
H A Dmount_view.rs31 ansi, Alignment, Area, CompoundStyle, ListView, ListViewCell, ListViewColumn, MadSkin,
/dports/misc/broot/broot-1.7.0/cargo-crates/termimad-0.10.3/examples/simple/
H A Dmain.rs21 skin.italic = CompoundStyle::with_bg(DarkBlue); in main()

12