Home
last modified time | relevance | path

Searched refs:label_font (Results 1 – 25 of 244) sorted by relevance

12345678910

/dports/devel/py-spyder/spyder-3.2.7/spyder/widgets/
H A Dstatus.py35 self.label_font = get_font(option='rich_font')
36 self.label_font.setPointSize(self.font().pointSize())
37 self.label_font.setBold(True)
68 self.value.setFont(self.label_font)
167 self.readwrite.setFont(self.label_font)
194 self.eol.setFont(self.label_font)
221 self.encoding.setFont(self.label_font)
248 self.line.setFont(self.label_font)
249 self.column.setFont(self.label_font)
/dports/games/corsix-th/CorsixTH-0.65.1/CorsixTH/Lua/dialogs/resizables/menu_list_dialogs/
H A Dcustom_campaign.lua67 self.label_font = TheApp.gfx:loadFont("QData", "Font01V")
100 local _, _, rows = self.label_font:sizeOf(item.description, details_width)
119 self.label_font:drawWrapped(canvas, self.chosen_item.name,
121 self.label_font:drawWrapped(canvas, "(levels: " ..
125 self.label_font:drawWrapped(canvas, self.chosen_item.description,
H A Dcustom_game.lua57 self.label_font = TheApp.gfx:loadFont("QData", "Font01V")
112 local _, y, rows = self.label_font:sizeOf(self.chosen_level_description, details_width)
149 self.label_font:drawWrapped(canvas, self.chosen_level_name,
153 self.label_font:drawWrapped(canvas, self.chosen_level_description,
/dports/x11/xpra/xpra-4.3/xpra/gtk_common/
H A Dgui.py107 label_font = Pango.FontDescription("sans 16")
112 icon_size=48, label_font=label_font)
117 icon_size=48, label_font=label_font)
123 icon_size=48, label_font=label_font)
132 icon_size=48, label_font=label_font)
/dports/devel/godot2-tools/godot-2.1.6-stable/editor/
H A Deditor_path.cpp39 Ref<Font> label_font = get_font("font", "Label"); in _notification() local
91label_font->draw(ci, Point2i(ofs, (size.height - label_font->get_height()) / 2 + label_font->get_a… in _notification()
/dports/devel/godot2/godot-2.1.6-stable/editor/
H A Deditor_path.cpp39 Ref<Font> label_font = get_font("font", "Label"); in _notification() local
91label_font->draw(ci, Point2i(ofs, (size.height - label_font->get_height()) / 2 + label_font->get_a… in _notification()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/page/
H A Ddrag_image.cc142 const Font label_font = DeriveDragLabelFont(kDragLinkLabelFontSize, in Create() local
144 const SimpleFontData* label_font_data = label_font.PrimaryFont(); in Create()
172 IntSize label_size(label_font.Width(label_run), in Create()
242 label, image_size.Width() - (kDragLabelBorderX * 2.0f), label_font); in Create()
249 kDragLabelBorderY + label_font.GetFontDescription().ComputedPixelSize()); in Create()
252 float text_width = label_font.Width(text_run); in Create()
256 label_font.DrawBidiText(resource_provider->Canvas(), in Create()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/page/
H A Ddrag_image.cc142 const Font label_font = DeriveDragLabelFont(kDragLinkLabelFontSize, in Create() local
144 const SimpleFontData* label_font_data = label_font.PrimaryFont(); in Create()
172 IntSize label_size(label_font.Width(label_run), in Create()
243 label, image_size.Width() - (kDragLabelBorderX * 2.0f), label_font); in Create()
250 kDragLabelBorderY + label_font.GetFontDescription().ComputedPixelSize()); in Create()
253 float text_width = label_font.Width(text_run); in Create()
257 label_font.DrawBidiText(resource_provider->Canvas(), in Create()
/dports/net/mpich2/mpich2-1.5/src/mpe2/src/slog2sdk/src/viewer/zoomable/
H A DScaledSlider.java44 private Font label_font; field in ScaledSlider
60 label_font = FONT; in ScaledSlider()
144 label_font = font; in setLabelFont()
154 label.setFont( label_font ); in setLabelFont()
177 tick_mark.setFont( label_font ); in setDefaultLabelTable()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/views/
H A Dlayout_provider_unittest.cc124 gfx::FontList label_font = rb.GetFontListWithDelta(ui::kLabelFontSizeDelta); in TEST_F() local
127 EXPECT_EQ(16, label_font.GetHeight()); in TEST_F()
128 EXPECT_EQ(13, label_font.GetBaseline()); in TEST_F()
130 EXPECT_EQ(15, label_font.GetHeight()); in TEST_F()
131 EXPECT_EQ(12, label_font.GetBaseline()); in TEST_F()
133 EXPECT_EQ(12, label_font.GetFontSize()); in TEST_F()
134 EXPECT_EQ(9, label_font.GetCapHeight()); in TEST_F()
137 EXPECT_EQ(7, label_font.GetExpectedTextWidth(1)); in TEST_F()
139 EXPECT_EQ(6, label_font.GetExpectedTextWidth(1)); in TEST_F()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/plotters-0.2.12/src/chart/
H A Dseries.rs54 label_font: Option<TextStyle<'b>>, field
66 label_font: None, in new()
114 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
115 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
130 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/plotters-0.3.1/src/chart/
H A Dseries.rs103 label_font: Option<TextStyle<'b>>, field
115 label_font: None, in new()
163 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
164 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
179 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/multimedia/librav1e/rav1e-0.5.1/cargo-crates/plotters-0.3.1/src/chart/
H A Dseries.rs103 label_font: Option<TextStyle<'b>>, field
115 label_font: None, in new()
163 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
164 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
179 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/multimedia/rav1e/rav1e-0.5.1/cargo-crates/plotters-0.3.1/src/chart/
H A Dseries.rs103 label_font: Option<TextStyle<'b>>, field
115 label_font: None, in new()
163 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
164 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
179 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/net-im/libsignal-client/libsignal-client-0.9.6/cargo-crates/plotters-0.3.0/src/chart/
H A Dseries.rs103 label_font: Option<TextStyle<'b>>, field
115 label_font: None, in new()
163 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
164 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
179 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/net-im/zkgroup/zkgroup-0.7.4/cargo-crates/plotters-0.3.1/src/chart/
H A Dseries.rs103 label_font: Option<TextStyle<'b>>, field
115 label_font: None, in new()
163 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
164 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
179 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/misc/xplr/xplr-0.17.0/cargo-crates/plotters-0.3.1/src/chart/
H A Dseries.rs103 label_font: Option<TextStyle<'b>>, field
115 label_font: None, in new()
163 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
164 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
179 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/graphics/pastel/pastel-0.8.1/cargo-crates/plotters-0.3.1/src/chart/
H A Dseries.rs103 label_font: Option<TextStyle<'b>>, field
115 label_font: None, in new()
163 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
164 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
179 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/textproc/jql/jql-3.0.6/cargo-crates/plotters-0.3.1/src/chart/
H A Dseries.rs103 label_font: Option<TextStyle<'b>>, field
115 label_font: None, in new()
163 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
164 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
179 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/benchmarks/inferno/inferno-0.10.9/cargo-crates/plotters-0.3.1/src/chart/
H A Dseries.rs103 label_font: Option<TextStyle<'b>>, field
115 label_font: None, in new()
163 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
164 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
179 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/textproc/angle-grinder/angle-grinder-0.18.0/cargo-crates/plotters-0.3.0/src/chart/
H A Dseries.rs103 label_font: Option<TextStyle<'b>>, field
115 label_font: None, in new()
163 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
164 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
179 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/graphics/librsvg2-rust/librsvg-2.52.8/vendor/plotters/src/chart/
H A Dseries.rs103 label_font: Option<TextStyle<'b>>, field
115 label_font: None, in new()
163 pub fn label_font<F: IntoTextStyle<'b>>(&mut self, font: F) -> &mut Self { in label_font() method
164 self.label_font = Some(font.into_text_style(&self.target.plotting_area().dim_in_pixel())); in label_font()
179 std::mem::swap(&mut self.label_font, &mut temp); in draw()
/dports/games/tuxracer/tuxracer-0.61/src/
H A Drace_select.c453 font_t *label_font; in draw_status_msg() local
529 !get_font_binding( "race_requirements_label", &label_font ) ) in draw_status_msg()
540 bind_font_texture( label_font ); in draw_status_msg()
541 draw_string( label_font, msg ); in draw_status_msg()
559 bind_font_texture( label_font ); in draw_status_msg()
560 draw_string( label_font, "Time: " ); in draw_status_msg()
567 bind_font_texture( label_font ); in draw_status_msg()
568 draw_string( label_font, " Herring: " ); in draw_status_msg()
574 bind_font_texture( label_font ); in draw_status_msg()
575 draw_string( label_font, " Score: " ); in draw_status_msg()
/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/src/men/
H A Dlabelbox.c71 { if ( instanceOfObject(lb->label_font, ClassFont) ) in compute_label()
72 *w += valInt(getExFont(lb->label_font)); in compute_label()
91 int af = valInt(getAscentFont(lb->label_font)); in compute_label()
252 if ( instanceOfObject(lb->label_font, ClassFont) ) in RedrawAreaLabelBox()
253 sx = valInt(getExFont(lb->label_font)); in RedrawAreaLabelBox()
283 answer(answerObject(ClassPoint, ZERO, getAscentFont(lb->label_font), EAV)); in getReferenceLabelBox()
/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/src/
H A DPce.in21 Pce.*.label_font: @helvetica_bold_12
26 Pce.DiaProtoButton.label_font: @helvetica_roman_12
38 Pce.MenuBar.label_font: @helvetica_roman_12
44 Pce.Button.label_font: @helvetica_roman_12

12345678910