Home
last modified time | relevance | path

Searched refs:font_style (Results 1 – 25 of 1232) sorted by relevance

12345678910>>...50

/dports/sysutils/lsd/lsd-0.20.1/cargo-crates/lscolors-0.7.1/src/
H A Dstyle.rs129 pub font_style: FontStyle, field
161 font_style.bold = false; in from_ansi_sequence()
162 font_style.dimmed = false; in from_ansi_sequence()
165 font_style.italic = false; in from_ansi_sequence()
168 font_style.underline = false; in from_ansi_sequence()
175 font_style.reverse = false; in from_ansi_sequence()
178 font_style.hidden = false; in from_ansi_sequence()
241 font_style, in from_ansi_sequence()
257 ansi_style.is_blink = self.font_style.rapid_blink || self.font_style.slow_blink; in to_ansi_term_style()
274 font_style: FontStyle, in assert_style()
[all …]
/dports/sysutils/fd/fd-8.3.0/cargo-crates/lscolors-0.8.1/src/
H A Dstyle.rs187 pub font_style: FontStyle,
219 font_style.bold = false;
220 font_style.dimmed = false;
223 font_style.italic = false;
226 font_style.underline = false;
233 font_style.reverse = false;
236 font_style.hidden = false;
299 font_style,
315 ansi_style.is_blink = self.font_style.rapid_blink || self.font_style.slow_blink;
342 font_style: FontStyle,
[all …]
/dports/sysutils/fselect/fselect-0.7.7/cargo-crates/lscolors-0.8.0/src/
H A Dstyle.rs187 pub font_style: FontStyle, field
219 font_style.bold = false; in from_ansi_sequence()
220 font_style.dimmed = false; in from_ansi_sequence()
223 font_style.italic = false; in from_ansi_sequence()
226 font_style.underline = false; in from_ansi_sequence()
233 font_style.reverse = false; in from_ansi_sequence()
236 font_style.hidden = false; in from_ansi_sequence()
299 font_style, in from_ansi_sequence()
315 ansi_style.is_blink = self.font_style.rapid_blink || self.font_style.slow_blink; in to_ansi_term_style()
342 font_style: FontStyle, in assert_style()
[all …]
/dports/games/widelands/widelands-build21/src/editor/tools/
H A Dinfo_tool.cc53 font_style); in handle_click_impl()
100 font_style); in handle_click_impl()
106 font_style); in handle_click_impl()
132 font_style); in handle_click_impl()
135 font_style); in handle_click_impl()
178 font_style); in handle_click_impl()
203 font_style); in handle_click_impl()
210 font_style); in handle_click_impl()
213 font_style); in handle_click_impl()
218 font_style); in handle_click_impl()
[all …]
/dports/devel/tabulate/tabulate-1.4/samples/
H A Dmario.cpp35 mario[2][i].format().color(Color::green).font_style({FontStyle::dark}); in main()
41 mario[2][i].format().color(Color::green).font_style({FontStyle::dark}); in main()
48 mario[3][i].format().color(Color::green).font_style({FontStyle::dark}); in main()
54 mario[3][i].format().color(Color::green).font_style({FontStyle::dark}); in main()
60 mario[3][i].format().color(Color::green).font_style({FontStyle::dark}); in main()
67 mario[4][i].format().color(Color::green).font_style({FontStyle::dark}); in main()
73 mario[4][i].format().color(Color::green).font_style({FontStyle::dark}); in main()
79 mario[4][i].format().color(Color::green).font_style({FontStyle::dark}); in main()
86 mario[5][i].format().color(Color::green).font_style({FontStyle::dark}); in main()
92 mario[5][i].format().color(Color::green).font_style({FontStyle::dark}); in main()
[all …]
H A Dfont_styles.cpp18 styled_table[0][0].format().font_style({FontStyle::bold}); in main()
20 styled_table[0][1].format().font_style({FontStyle::italic}); in main()
22 styled_table[0][2].format().font_style({FontStyle::bold, FontStyle::italic}); in main()
24 styled_table[0][3].format().font_style({FontStyle::blink}); in main()
26 styled_table[1][0].format().font_style({FontStyle::underline}); in main()
28 styled_table[1][1].format().font_style({FontStyle::crossed}); in main()
30 styled_table[1][2].format().font_style({FontStyle::dark}); in main()
32 styled_table[1][3].format().font_style( in main()
/dports/games/widelands/widelands-build21/src/graphic/
H A Dtext_layout.cc77 return text_height(g_gr->styles().font_style(style), scale); in text_height()
94 const UI::FontStyleInfo& font_style = g_gr->styles().font_style(style); in as_listitem() local
95 f % font_style.size() % font_style.color().hex_value() % font_style.size() % in as_listitem()
96 font_style.color().hex_value() % txt; in as_listitem()
193 .font_style(UI::FontStyle::kFsMenuInfoPanelHeading) in as_heading_with_content()
196 .font_style(UI::FontStyle::kFsMenuInfoPanelParagraph) in as_heading_with_content()
202 .font_style(UI::FontStyle::kWuiInfoPanelHeading) in as_heading_with_content()
205 .font_style(UI::FontStyle::kWuiInfoPanelParagraph) in as_heading_with_content()
217 .font_style(UI::FontStyle::kFsMenuInfoPanelHeading) in as_heading()
223 .font_style(UI::FontStyle::kWuiInfoPanelHeading) in as_heading()
[all …]
/dports/games/openttd/openttd-12.1/src/os/unix/
H A Dfont_unix.cpp39 char *font_style; in GetFontByFaceName() local
44 font_style = strchr(font_family, ','); in GetFontByFaceName()
45 if (font_style != nullptr) { in GetFontByFaceName()
46 font_style[0] = '\0'; in GetFontByFaceName()
47 font_style++; in GetFontByFaceName()
48 while (*font_style == ' ' || *font_style == '\t') font_style++; in GetFontByFaceName()
53 if (font_style != nullptr) FcPatternAddString(pat, FC_STYLE, (FcChar8 *)font_style); in GetFontByFaceName()
73 if (font_style != nullptr && strcasecmp(font_style, (char *)style) != 0) continue; in GetFontByFaceName()
/dports/misc/broot/broot-1.7.0/cargo-crates/syntect-4.6.0/src/highlighting/
H A Dstyle.rs13 pub font_style: FontStyle, field
28 pub font_style: Option<FontStyle>, field
87 font_style: modifier.font_style.unwrap_or(self.font_style), in apply()
97 font_style: FontStyle::empty(), in default()
110 font_style: other.font_style.or(self.font_style), in apply()
/dports/devel/git-delta/delta-0.9.2/cargo-crates/syntect-4.6.0/src/highlighting/
H A Dstyle.rs13 pub font_style: FontStyle, field
28 pub font_style: Option<FontStyle>, field
87 font_style: modifier.font_style.unwrap_or(self.font_style), in apply()
97 font_style: FontStyle::empty(), in default()
110 font_style: other.font_style.or(self.font_style), in apply()
/dports/editors/xi-term/xi-term-d264767/cargo-crates/syntect-3.2.0/src/highlighting/
H A Dstyle.rs12 pub font_style: FontStyle, field
23 pub font_style: Option<FontStyle>, field
80 font_style: modifier.font_style.unwrap_or(self.font_style), in apply()
90 font_style: FontStyle::empty(), in default()
102 font_style: other.font_style.or(self.font_style), in apply()
H A Dhighlighter.rs163 pub font_style: (MatchPower, FontStyle), field
180 update_scored(&mut self.font_style, &other.font_style, score); in apply()
187 font_style: self.font_style.1, in to_style()
195 font_style: (MatchPower(-1.0), style.font_style), in from_style()
229 font_style: FontStyle::empty(), in get_default()
296 font_style: None, in style_mod_for_stack()
342 font_style: FontStyle::empty(), in can_parse()
366 font_style: None, in tricky_cases()
374 font_style: Some(FontStyle::ITALIC), in tricky_cases()
382 font_style: None, in tricky_cases()
[all …]
/dports/editors/xi-core/xi-editor-0.3.0/rust/cargo-crates/syntect-3.2.0/src/highlighting/
H A Dstyle.rs12 pub font_style: FontStyle, field
23 pub font_style: Option<FontStyle>, field
80 font_style: modifier.font_style.unwrap_or(self.font_style), in apply()
90 font_style: FontStyle::empty(), in default()
102 font_style: other.font_style.or(self.font_style), in apply()
H A Dhighlighter.rs163 pub font_style: (MatchPower, FontStyle), field
180 update_scored(&mut self.font_style, &other.font_style, score); in apply()
187 font_style: self.font_style.1, in to_style()
195 font_style: (MatchPower(-1.0), style.font_style), in from_style()
229 font_style: FontStyle::empty(), in get_default()
296 font_style: None, in style_mod_for_stack()
342 font_style: FontStyle::empty(), in can_parse()
366 font_style: None, in tricky_cases()
374 font_style: Some(FontStyle::ITALIC), in tricky_cases()
382 font_style: None, in tricky_cases()
[all …]
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/syntect-4.6.0/src/highlighting/
H A Dstyle.rs13 pub font_style: FontStyle, field
28 pub font_style: Option<FontStyle>, field
87 font_style: modifier.font_style.unwrap_or(self.font_style), in apply()
97 font_style: FontStyle::empty(), in default()
110 font_style: other.font_style.or(self.font_style), in apply()
/dports/www/zola/zola-0.15.2/cargo-crates/syntect-4.6.0/src/highlighting/
H A Dstyle.rs13 pub font_style: FontStyle, field
28 pub font_style: Option<FontStyle>, field
87 font_style: modifier.font_style.unwrap_or(self.font_style), in apply()
97 font_style: FontStyle::empty(), in default()
110 font_style: other.font_style.or(self.font_style), in apply()
/dports/www/xh/xh-0.14.1/cargo-crates/syntect-4.6.0/src/highlighting/
H A Dstyle.rs13 pub font_style: FontStyle, field
28 pub font_style: Option<FontStyle>, field
87 font_style: modifier.font_style.unwrap_or(self.font_style), in apply()
97 font_style: FontStyle::empty(), in default()
110 font_style: other.font_style.or(self.font_style), in apply()
/dports/textproc/bat/bat-0.18.3/cargo-crates/syntect-4.5.0/src/highlighting/
H A Dstyle.rs13 pub font_style: FontStyle, field
28 pub font_style: Option<FontStyle>, field
87 font_style: modifier.font_style.unwrap_or(self.font_style), in apply()
97 font_style: FontStyle::empty(), in default()
110 font_style: other.font_style.or(self.font_style), in apply()
/dports/textproc/xmlroff/xmlroff-0.6.3/xmlroff/libfo/property/
H A Dfo-property-font-style.c115 _init (FoPropertyFontStyle *font_style) in _init() argument
117 FO_PROPERTY (font_style)->value = in _init()
168 FoProperty* font_style; in fo_property_font_style_new() local
170 font_style = in fo_property_font_style_new()
174 return font_style; in fo_property_font_style_new()
333 static FoProperty *font_style = NULL; in fo_property_font_style_get_initial() local
335 if (font_style == NULL) in fo_property_font_style_get_initial()
337 font_style = in fo_property_font_style_get_initial()
341 return font_style; in fo_property_font_style_get_initial()
356 FoEnumEnum font_style; in fo_property_font_style_to_pango_style() local
[all …]
/dports/textproc/libfo/xmlroff-0.6.3/xmlroff/libfo/property/
H A Dfo-property-font-style.c115 _init (FoPropertyFontStyle *font_style) in _init() argument
117 FO_PROPERTY (font_style)->value = in _init()
168 FoProperty* font_style; in fo_property_font_style_new() local
170 font_style = in fo_property_font_style_new()
174 return font_style; in fo_property_font_style_new()
333 static FoProperty *font_style = NULL; in fo_property_font_style_get_initial() local
335 if (font_style == NULL) in fo_property_font_style_get_initial()
337 font_style = in fo_property_font_style_get_initial()
341 return font_style; in fo_property_font_style_get_initial()
356 FoEnumEnum font_style; in fo_property_font_style_to_pango_style() local
[all …]
/dports/math/pspp/pspp-1.4.1/src/output/
H A Dtext-item.c127 struct font_style *font_style = &style->font_style; in text_item_to_table_item() local
129 font_style->typeface = pool_strdup (tab->container, text_item->typeface); in text_item_to_table_item()
130 font_style->size = text_item->size; in text_item_to_table_item()
131 font_style->bold = text_item->bold; in text_item_to_table_item()
132 font_style->italic = text_item->italic; in text_item_to_table_item()
133 font_style->underline = text_item->underline; in text_item_to_table_item()
134 font_style->markup = text_item->markup; in text_item_to_table_item()
/dports/devel/texlab/citeproc-rs-5252fbd8d2046a5a7d5cdcee6c6cb39bd0f1a7f3/crates/io/src/output/markup/
H A Dflip_flop.rs15 font_style: FontStyle, field
27 font_style: f.font_style.unwrap_or_default(), in from_formatting()
86 if let Some(fs) = f.font_style { in flip_flop()
87 if fs == state.font_style { in flip_flop()
88 new_f.font_style = None; in flip_flop()
90 flop.font_style = fs; in flip_flop()
182 let outer = state.font_style; in flip_flop_node()
184 let inner = flop.font_style; in flip_flop_node()
186 flop.font_style = FontStyle::Normal; in flip_flop_node()
245 flop.font_style = FontStyle::Normal; in flip_flop_node()
[all …]
/dports/www/netsurf/netsurf-3.10/frontends/riscos/
H A Dfont.c225 rufl_style font_style; in ro_font_width() local
234 code = rufl_width(font_family, font_style, font_size, in ro_font_width()
273 rufl_style font_style; in ro_font_position() local
335 rufl_style font_style; in ro_font_split() local
345 code = rufl_split(font_family, font_style, font_size, in ro_font_split()
382 code = rufl_width(font_family, font_style, font_size, in ro_font_split()
421 rufl_style font_style; in nsfont_paint() local
431 code = rufl_paint(font_family, font_style, font_size, in nsfont_paint()
458 rufl_style *font_style) in nsfont_read_style() argument
498 *font_style = rufl_SLANTED; in nsfont_read_style()
[all …]
/dports/games/widelands/widelands-build21/src/wui/
H A Dchat_msg_layout.cc35 g_gr->styles().font_style(UI::FontStyle::kChatServer).color(); in as_playercolor()
37 .font_style(UI::FontStyle::kChatPlayername) in as_playercolor()
64 g_gr->styles().font_style(UI::FontStyle::kChatWhisper).as_font_tag(sanitized); in format_as_richtext()
70 g_gr->styles().font_style(UI::FontStyle::kChatWhisper).as_font_tag(sanitized.substr(3)); in format_as_richtext()
78 g_gr->styles().font_style(UI::FontStyle::kChatMessage).as_font_tag(sanitized.substr(3)); in format_as_richtext()
83 g_gr->styles().font_style(UI::FontStyle::kChatMessage).as_font_tag(sanitized)) in format_as_richtext()
87 g_gr->styles().font_style(UI::FontStyle::kChatServer).as_font_tag("*** " + sanitized); in format_as_richtext()
95 g_gr->styles().font_style(UI::FontStyle::kChatTimestamp).as_font_tag(ts) % message) in format_as_richtext()
/dports/www/netsurf/netsurf-3.10/frontends/framebuffer/fbtk/
H A Dtext.c58 plot_font_style_t *font_style) in fb_text_font_style() argument
75 font_style->weight = 400; in fb_text_font_style()
76 font_style->flags = FONTF_NONE; in fb_text_font_style()
77 font_style->background = widget->bg; in fb_text_font_style()
95 plot_font_style_t font_style; in fb_redraw_text() local
151 &font_style, in fb_redraw_text()
216 plot_font_style_t font_style; in fb_redraw_text_button() local
273 &font_style, in fb_redraw_text_button()
307 plot_font_style_t font_style; in text_input() local
491 plot_font_style_t font_style; in text_input_click() local
[all …]

12345678910>>...50