Home
last modified time | relevance | path

Searched refs:BackgroundColor (Results 1 – 25 of 2644) sorted by relevance

12345678910>>...106

/dports/math/scilab/scilab-6.1.1/scilab/modules/scicos_blocks/macros/PDE/
H A DIHM_EDP.sci92 "BackgroundColor",[1 1 1]);
96 "BackgroundColor",[1 1 1]);
244 "BackgroundColor",[1 1 1]);
270 "BackgroundColor",[1 1 1]);
275 "BackgroundColor",[1 1 1]);
277 "BackgroundColor",[1 1 1]);
279 "BackgroundColor",[1 1 1]);
284 "BackgroundColor",[1 1 1]);
290 "BackgroundColor",[1 1 1]);
327 "BackgroundColor",[1 1 1]);
[all …]
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKv3/GEDKeeper3/GKUI/Components/
H A DACOptionsControl.cs77 fOptions.BrushColor[ 0] = UIHelper.ConvertColor(acb0.BackgroundColor); in AcceptChanges()
78 fOptions.BrushColor[ 1] = UIHelper.ConvertColor(acb1.BackgroundColor); in AcceptChanges()
79 fOptions.BrushColor[ 2] = UIHelper.ConvertColor(acb2.BackgroundColor); in AcceptChanges()
80 fOptions.BrushColor[ 3] = UIHelper.ConvertColor(acb3.BackgroundColor); in AcceptChanges()
81 fOptions.BrushColor[ 4] = UIHelper.ConvertColor(acb4.BackgroundColor); in AcceptChanges()
99 acb0.BackgroundColor = UIHelper.ConvertColor(fOptions.BrushColor[0]); in UpdateControls()
100 acb1.BackgroundColor = UIHelper.ConvertColor(fOptions.BrushColor[1]); in UpdateControls()
101 acb2.BackgroundColor = UIHelper.ConvertColor(fOptions.BrushColor[2]); in UpdateControls()
102 acb3.BackgroundColor = UIHelper.ConvertColor(fOptions.BrushColor[3]); in UpdateControls()
103 acb4.BackgroundColor = UIHelper.ConvertColor(fOptions.BrushColor[4]); in UpdateControls()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Console/tests/Performance/
H A DPerf.Console.cs110 public void BackgroundColor() in BackgroundColor() method in System.ConsoleTests.Perf_Console
119 … Console.BackgroundColor = ConsoleColor.Black; Console.BackgroundColor = ConsoleColor.Blue; in BackgroundColor()
120 … Console.BackgroundColor = ConsoleColor.Cyan; Console.BackgroundColor = ConsoleColor.DarkBlue; in BackgroundColor()
121 … Console.BackgroundColor = ConsoleColor.DarkGray; Console.BackgroundColor = ConsoleColor.Red; in BackgroundColor()
122 … Console.BackgroundColor = ConsoleColor.DarkGreen; Console.BackgroundColor = ConsoleColor.White; in BackgroundColor()
139 … Console.ForegroundColor = ConsoleColor.DarkRed; Console.BackgroundColor = ConsoleColor.Cyan; in ResetColor()
141 … Console.ForegroundColor = ConsoleColor.DarkRed; Console.BackgroundColor = ConsoleColor.Cyan; in ResetColor()
143 … Console.ForegroundColor = ConsoleColor.DarkRed; Console.BackgroundColor = ConsoleColor.Cyan; in ResetColor()
145 … Console.ForegroundColor = ConsoleColor.DarkRed; Console.BackgroundColor = ConsoleColor.Cyan; in ResetColor()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/samples/floatcanvas/
H A DTextBox.py46 BackgroundColor = None,
68 BackgroundColor = "Yellow",
78 BackgroundColor = "Yellow",
97 BackgroundColor = 'Red',
115 BackgroundColor = 'Red',
136 BackgroundColor = 'Red',
154 BackgroundColor = 'Red',
174 BackgroundColor = 'White',
184 BackgroundColor = 'White',
195 BackgroundColor = 'White',
[all …]
H A DOverlayDemo.py41 BackgroundColor = None, argument
52 BackgroundColor = BackgroundColor,
66 if self.BackgroundColor:
68 dc.SetTextBackground(self.BackgroundColor)
95 BackgroundColor = "DARK SLATE BLUE",
110 BackgroundColor = 'Pink',
/dports/misc/xplr/xplr-0.17.0/cargo-crates/ansi-to-tui-0.4.1/src/
H A Dcode.rs65 BackgroundColor(Color), // 41..47 enumerator
108 40 => AnsiCode::BackgroundColor(Color::Black), in from()
109 41 => AnsiCode::BackgroundColor(Color::Red), in from()
110 42 => AnsiCode::BackgroundColor(Color::Green), in from()
111 43 => AnsiCode::BackgroundColor(Color::Yellow), in from()
112 44 => AnsiCode::BackgroundColor(Color::Blue), in from()
113 45 => AnsiCode::BackgroundColor(Color::Magenta), in from()
114 46 => AnsiCode::BackgroundColor(Color::Cyan), in from()
115 47 => AnsiCode::BackgroundColor(Color::Gray), in from()
/dports/devel/gitui/gitui-0.10.1/cargo-crates/inferno-0.10.0/src/flamegraph/color/
H A Dmod.rs46 pub enum BackgroundColor { enum
61 impl Default for BackgroundColor { implementation
63 BackgroundColor::Yellow in default()
131 impl FromStr for BackgroundColor { implementation
137 "blue" => Ok(BackgroundColor::Blue), in from_str()
139 "grey" => Ok(BackgroundColor::Grey), in from_str()
141 .map(BackgroundColor::Flat) in from_str()
375 BackgroundColor::Blue in default_bg_color_for()
384 _ => BackgroundColor::Yellow, in default_bg_color_for()
395 bgcolor: Option<BackgroundColor>, in bgcolor_for() argument
[all …]
/dports/games/openclonk/openclonk-release-8.1-src/planet/Tutorials.ocf/Sandbox.ocs/System.ocg/
H A DClonk_SandboxUI.c123 BackgroundColor = RGBa(96,96,96,96), in ShowSandboxUI()
310 BackgroundColor = RGBa(32,32,32,224), in ShowObjectSpawnUI()
347 BackgroundColor = RGBa(64,64,64,224), in ShowObjectSpawnUI()
492 BackgroundColor = RGBa(64,64,64,224), in ObjectSpawnSelectCat()
844 BackgroundColor = bgBrush, in ShowMaterialBrushUI()
869 BackgroundColor = bgQuad, in ShowMaterialBrushUI()
894 BackgroundColor = bgErase, in ShowMaterialBrushUI()
1186 BackgroundColor = bgBrush in SelectBrushMode()
1191 BackgroundColor = bgQuad in SelectBrushMode()
1196 BackgroundColor = bgErase in SelectBrushMode()
[all …]
/dports/benchmarks/inferno/inferno-0.10.9/src/flamegraph/color/
H A Dmod.rs46 pub enum BackgroundColor { enum
61 impl Default for BackgroundColor { implementation
63 BackgroundColor::Yellow in default()
133 impl FromStr for BackgroundColor { implementation
139 "blue" => Ok(BackgroundColor::Blue), in from_str()
141 "grey" => Ok(BackgroundColor::Grey), in from_str()
143 .map(BackgroundColor::Flat) in from_str()
401 BackgroundColor::Blue in default_bg_color_for()
410 _ => BackgroundColor::Yellow, in default_bg_color_for()
421 bgcolor: Option<BackgroundColor>, in bgcolor_for() argument
[all …]
/dports/x11/eaglemode/eaglemode-0.95.0/doc/examples/CppApiExamples/
H A DTreeExpansionExample.cpp14 emColor BackgroundColor; member in MyPanel
21 BackgroundColor=bgcolor; in MyPanel()
26 return BackgroundColor.IsOpaque(); in IsOpaque()
31 painter.Clear(BackgroundColor,canvasColor); in Paint()
40 BackgroundColor.Get()^0xFFFFFF00 in AutoExpand()
54 BackgroundColor in LayoutChildren()
/dports/devel/fpc-fcl-report/fpc-3.2.2/packages/fcl-report/demos/
H A Drptnestedgroups.pp288 Shape.Frame.BackgroundColor := clWhite;
336 Shape.Frame.BackgroundColor := clWhite;
401 Shape.Frame.BackgroundColor := clWhite;
419 Shape.Frame.BackgroundColor := clWhite;
499 Shape.Frame.BackgroundColor := clWhite;
517 Shape.Frame.BackgroundColor := clWhite;
599 Shape.Frame.BackgroundColor := clWhite;
617 Shape.Frame.BackgroundColor := clWhite;
635 Shape.Frame.BackgroundColor := clWhite;
796 Shape.Frame.BackgroundColor := clWhite;
[all …]
/dports/lang/fpc-source/fpc-3.2.2/packages/fcl-report/demos/
H A Drptnestedgroups.pp288 Shape.Frame.BackgroundColor := clWhite;
336 Shape.Frame.BackgroundColor := clWhite;
401 Shape.Frame.BackgroundColor := clWhite;
419 Shape.Frame.BackgroundColor := clWhite;
499 Shape.Frame.BackgroundColor := clWhite;
517 Shape.Frame.BackgroundColor := clWhite;
599 Shape.Frame.BackgroundColor := clWhite;
617 Shape.Frame.BackgroundColor := clWhite;
635 Shape.Frame.BackgroundColor := clWhite;
796 Shape.Frame.BackgroundColor := clWhite;
[all …]
/dports/math/vtk8/VTK-8.2.0/Interaction/Widgets/
H A DvtkProgressBarRepresentation.cxx42 this->BackgroundColor[0] = 1; in vtkProgressBarRepresentation()
43 this->BackgroundColor[1] = 1; in vtkProgressBarRepresentation()
44 this->BackgroundColor[2] = 1; in vtkProgressBarRepresentation()
153 double backgroundColor[3] = { this->BackgroundColor[0] * 255, in BuildRepresentation()
154 this->BackgroundColor[1] * 255, this->BackgroundColor[2] * 255}; in BuildRepresentation()
263 os << indent << "BackgroundColor: " << this->BackgroundColor[0] << " " in PrintSelf()
264 << this->BackgroundColor[1] << " " <<this->BackgroundColor[2] << "\n"; in PrintSelf()
/dports/math/vtk6/VTK-6.2.0/Rendering/Core/
H A DvtkTextProperty.cxx29 this->BackgroundColor[0] = 0.0; in vtkTextProperty()
30 this->BackgroundColor[1] = 0.0; in vtkTextProperty()
31 this->BackgroundColor[2] = 0.0; in vtkTextProperty()
120 << this->BackgroundColor[0] << ", " in PrintSelf()
121 << this->BackgroundColor[1] << ", " in PrintSelf()
122 << this->BackgroundColor[2] << ")\n"; in PrintSelf()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Console/tests/
H A DColor.cs17 …AssertExtensions.Throws<ArgumentException>(null, () => Console.BackgroundColor = (ConsoleColor)42); in InvalidColors()
24 Console.BackgroundColor = Console.BackgroundColor; in RoundtrippingColor()
43 Console.BackgroundColor = ConsoleColor.Red; in RedirectedOutputDoesNotUseAnsiSequences()
63 Console.BackgroundColor = ConsoleColor.Red; in NonRedirectedOutputDoesUseAnsiSequences()
/dports/math/vtk9/VTK-9.1.0/Imaging/Stencil/
H A DvtkImageStencil.cxx35 this->BackgroundColor[0] = 1; in vtkImageStencil()
36 this->BackgroundColor[1] = 1; in vtkImageStencil()
37 this->BackgroundColor[2] = 1; in vtkImageStencil()
38 this->BackgroundColor[3] = 1; in vtkImageStencil()
342 os << indent << "BackgroundValue: " << this->BackgroundColor[0] << "\n"; in PrintSelf()
344 os << indent << "BackgroundColor: (" << this->BackgroundColor[0] << ", " in PrintSelf()
345 << this->BackgroundColor[1] << ", " << this->BackgroundColor[2] << ", " in PrintSelf()
346 << this->BackgroundColor[3] << ")\n"; in PrintSelf()
/dports/math/vtk8/VTK-8.2.0/Imaging/Stencil/
H A DvtkImageStencil.cxx35 this->BackgroundColor[0] = 1; in vtkImageStencil()
36 this->BackgroundColor[1] = 1; in vtkImageStencil()
37 this->BackgroundColor[2] = 1; in vtkImageStencil()
38 this->BackgroundColor[3] = 1; in vtkImageStencil()
367 os << indent << "BackgroundValue: " << this->BackgroundColor[0] << "\n"; in PrintSelf()
369 os << indent << "BackgroundColor: (" << this->BackgroundColor[0] << ", " in PrintSelf()
370 << this->BackgroundColor[1] << ", " in PrintSelf()
371 << this->BackgroundColor[2] << ", " in PrintSelf()
372 << this->BackgroundColor[3] << ")\n"; in PrintSelf()
/dports/math/vtk6/VTK-6.2.0/Imaging/Stencil/
H A DvtkImageStencil.cxx35 this->BackgroundColor[0] = 1; in vtkImageStencil()
36 this->BackgroundColor[1] = 1; in vtkImageStencil()
37 this->BackgroundColor[2] = 1; in vtkImageStencil()
38 this->BackgroundColor[3] = 1; in vtkImageStencil()
369 os << indent << "BackgroundValue: " << this->BackgroundColor[0] << "\n"; in PrintSelf()
371 os << indent << "BackgroundColor: (" << this->BackgroundColor[0] << ", " in PrintSelf()
372 << this->BackgroundColor[1] << ", " in PrintSelf()
373 << this->BackgroundColor[2] << ", " in PrintSelf()
374 << this->BackgroundColor[3] << ")\n"; in PrintSelf()
/dports/math/vtk8/VTK-8.2.0/Rendering/Core/
H A DvtkTextProperty.cxx29 this->BackgroundColor[0] = 0.0; in vtkTextProperty()
30 this->BackgroundColor[1] = 0.0; in vtkTextProperty()
31 this->BackgroundColor[2] = 0.0; in vtkTextProperty()
133 << this->BackgroundColor[0] << ", " in PrintSelf()
134 << this->BackgroundColor[1] << ", " in PrintSelf()
135 << this->BackgroundColor[2] << ")\n"; in PrintSelf()
/dports/math/vtk9/VTK-9.1.0/Interaction/Widgets/
H A DvtkProgressBarRepresentation.cxx39 this->BackgroundColor[0] = 1; in vtkProgressBarRepresentation()
40 this->BackgroundColor[1] = 1; in vtkProgressBarRepresentation()
41 this->BackgroundColor[2] = 1; in vtkProgressBarRepresentation()
167 double backgroundColor[3] = { this->BackgroundColor[0] * 255, this->BackgroundColor[1] * 255, in BuildRepresentation()
168 this->BackgroundColor[2] * 255 }; in BuildRepresentation()
295 os << indent << "BackgroundColor: " << this->BackgroundColor[0] << " " << this->BackgroundColor[1] in PrintSelf()
296 << " " << this->BackgroundColor[2] << "\n"; in PrintSelf()
/dports/misc/broot/broot-1.7.0/cargo-crates/crossterm-0.21.0/src/style/types/
H A Dcolored.rs18 BackgroundColor(Color), enumerator
42 use Colored::{BackgroundColor, ForegroundColor}; in parse_ansi()
48 48 => return Color::parse_ansi_iter(values).map(BackgroundColor), in parse_ansi()
51 49 => BackgroundColor(Color::Reset), in parse_ansi()
77 Colored::BackgroundColor(new_color) => { in fmt()
123 let colored = Colored::BackgroundColor(Color::Red); in test_format_bg_color()
135 let colored = Colored::BackgroundColor(Color::Reset); in test_format_reset_bg_color()
141 let colored = Colored::BackgroundColor(Color::Rgb { r: 1, g: 2, b: 3 }); in test_format_fg_rgb_color()
/dports/editors/helix/helix-0.5.0/cargo-crates/crossterm-0.22.1/src/style/types/
H A Dcolored.rs18 BackgroundColor(Color), enumerator
42 use Colored::{BackgroundColor, ForegroundColor}; in parse_ansi()
48 48 => return Color::parse_ansi_iter(values).map(BackgroundColor), in parse_ansi()
51 49 => BackgroundColor(Color::Reset), in parse_ansi()
77 Colored::BackgroundColor(new_color) => { in fmt()
123 let colored = Colored::BackgroundColor(Color::Red); in test_format_bg_color()
135 let colored = Colored::BackgroundColor(Color::Reset); in test_format_reset_bg_color()
141 let colored = Colored::BackgroundColor(Color::Rgb { r: 1, g: 2, b: 3 }); in test_format_fg_rgb_color()
/dports/security/gpg-tui/gpg-tui-0.8.2/cargo-crates/crossterm-0.20.0/src/style/types/
H A Dcolored.rs18 BackgroundColor(Color), enumerator
42 use Colored::{BackgroundColor, ForegroundColor}; in parse_ansi()
48 48 => return Color::parse_ansi_iter(values).map(BackgroundColor), in parse_ansi()
51 49 => BackgroundColor(Color::Reset), in parse_ansi()
77 Colored::BackgroundColor(new_color) => { in fmt()
123 let colored = Colored::BackgroundColor(Color::Red); in test_format_bg_color()
135 let colored = Colored::BackgroundColor(Color::Reset); in test_format_reset_bg_color()
141 let colored = Colored::BackgroundColor(Color::Rgb { r: 1, g: 2, b: 3 }); in test_format_fg_rgb_color()
/dports/security/gpg-tui/gpg-tui-0.8.2/cargo-crates/crossterm-0.21.0/src/style/types/
H A Dcolored.rs18 BackgroundColor(Color), enumerator
42 use Colored::{BackgroundColor, ForegroundColor}; in parse_ansi()
48 48 => return Color::parse_ansi_iter(values).map(BackgroundColor), in parse_ansi()
51 49 => BackgroundColor(Color::Reset), in parse_ansi()
77 Colored::BackgroundColor(new_color) => { in fmt()
123 let colored = Colored::BackgroundColor(Color::Red); in test_format_bg_color()
135 let colored = Colored::BackgroundColor(Color::Reset); in test_format_reset_bg_color()
141 let colored = Colored::BackgroundColor(Color::Rgb { r: 1, g: 2, b: 3 }); in test_format_fg_rgb_color()
/dports/misc/xplr/xplr-0.17.0/cargo-crates/crossterm-0.22.1/src/style/types/
H A Dcolored.rs18 BackgroundColor(Color), enumerator
42 use Colored::{BackgroundColor, ForegroundColor}; in parse_ansi()
48 48 => return Color::parse_ansi_iter(values).map(BackgroundColor), in parse_ansi()
51 49 => BackgroundColor(Color::Reset), in parse_ansi()
77 Colored::BackgroundColor(new_color) => { in fmt()
123 let colored = Colored::BackgroundColor(Color::Red); in test_format_bg_color()
135 let colored = Colored::BackgroundColor(Color::Reset); in test_format_reset_bg_color()
141 let colored = Colored::BackgroundColor(Color::Rgb { r: 1, g: 2, b: 3 }); in test_format_fg_rgb_color()

12345678910>>...106