Searched refs:color (Results 76 - 100 of 410) sorted by relevance

1234567891011>>

/haiku/src/apps/mediaplayer/interface/
H A DSubtitleBitmap.cpp170 ParseState(rgb_color color) argument
172 color(color),
183 color(previous->color),
192 rgb_color color; member in struct:ParseState
209 "<font color=\"#", "</font>"
242 } else if (tag == "<font color=\"#") {
249 state->color.red = (colorInt & 0xff0000) >> 16;
250 state->color
293 parse_text(const BString& string, BTextView* textView, const BFont& font, const rgb_color& color, bool changeColor) argument
341 rgb_color color; local
[all...]
/haiku/src/tests/servers/app/painter/
H A DPainter.h38 void SetHighColor(const rgb_color& color);
40 inline void SetHighColor(const RGBColor& color) argument
41 { SetHighColor(color.GetColor32()); }
42 void SetLowColor(const rgb_color& color);
44 inline void SetLowColor(const RGBColor& color) argument
45 { SetLowColor(color.GetColor32()); }
75 // draws a solid one pixel wide line of color c, no blending
128 // fills a solid rect with color c, no blending
276 void _SetRendererColor(const rgb_color& color) const;
323 rgb_color color; local
335 rgb_color color; local
[all...]
/haiku/src/tests/kits/game/ParticlesII/
H A DparticlesII.cpp17 #define set_pixel(x,y,color) (frame_buffer[x + (line_length*y)] = color)
57 void draw_line(int x1, int y1, int x2, int y2, int color);
58 void draw_rect(int x, int y, int w, int h, int color);
59 void fill_rect(int x, int y, int w, int h, int color);
60 void draw_ellipse(int cx, int cy, int wide, int deep, int color);
61 void fill_ellipse(int x, int y, int xradius, int yradius, int color);
62 void ellipse_points(int x, int y, int x_offset, int y_offset, int color);
63 void ellipse_fill_points(int x, int y, int x_offset, int y_offset, int color);
194 // set our color lis
433 draw_line(int x1, int y1, int x2, int y2, int color) argument
482 draw_rect(int x, int y, int w, int h, int color) argument
492 fill_rect(int x, int y, int w, int h, int color) argument
503 draw_ellipse(int cx, int cy, int wide, int deep, int color) argument
556 fill_ellipse(int cx, int cy, int wide, int deep, int color) argument
609 ellipse_points(int x, int y, int x_offset, int y_offset, int color) argument
637 ellipse_fill_points(int x, int y, int x_offset, int y_offset, int color) argument
[all...]
/haiku/src/kits/tracker/
H A DTrackerSettings.cpp105 rgb_color color; local
106 color.alpha = static_cast<uchar>((value >> 24L) & 0xff);
107 color.red = static_cast<uchar>((value >> 16L) & 0xff);
108 color.green = static_cast<uchar>((value >> 8L) & 0xff);
109 color.blue = static_cast<uchar>(value & 0xff);
111 return color;
115 int32 ColorToValue(rgb_color color) argument
117 return color.alpha << 24L | color.red << 16L | color
374 SetUsedSpaceColor(rgb_color color) argument
388 SetFreeSpaceColor(rgb_color color) argument
402 SetWarningSpaceColor(rgb_color color) argument
[all...]
H A DTrackerSettings.h83 void SetUsedSpaceColor(rgb_color color);
85 void SetFreeSpaceColor(rgb_color color);
87 void SetWarningSpaceColor(rgb_color color);
/haiku/src/preferences/appearance/
H A DColorPreview.cpp56 rgb_color color; local
58 color = fColor;
60 color = fDisabledColor;
95 SetHighColor(color);
98 SetHighColor(color);
106 SetHighColor(color);
118 // If we received a dropped message, see if it contains color data
120 rgb_color* color; local
123 (const void**)&color, &size) == B_OK) {
125 setColorMessage.AddData(kRGBColor, B_RGB_COLOR_TYPE, color,
194 SetColor(rgb_color color) argument
[all...]
/haiku/src/apps/terminal/
H A DColorPreview.cpp56 rgb_color color; local
58 color = fColor;
60 color = fDisabledColor;
95 SetHighColor(color);
98 SetHighColor(color);
106 SetHighColor(color);
118 // If we received a dropped message, see if it contains color data
120 rgb_color* color; local
123 (const void**)&color, &size) == B_OK) {
125 setColorMessage.AddData(kRGBColor, B_RGB_COLOR_TYPE, color,
194 SetColor(rgb_color color) argument
[all...]
/haiku/src/tests/kits/interface/picture/
H A DSVGViewView.cpp252 return colors[0].color;
266 rgb_color color;
268 color.red = red;
269 color.green = green;
270 color.blue = blue;
271 color.alpha = alpha;
273 return color;
277 rgb_color color;
279 color.red = red;
280 color
1102 rgb_color color = GetColorAttribute(attributes, "stop-color", 255); local
[all...]
/haiku/src/apps/debuganalyzer/gui/
H A DColorCheckBox.cpp11 ColorCheckBox::ColorCheckBox(const char* label, const rgb_color& color, argument
15 fColor(color)
H A DColorCheckBox.h20 const rgb_color& color,
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DColorProperty.h20 rgb_color color);
43 bool SetValue(rgb_color color);
/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DSwatchValueView.cpp17 rgb_color color,
20 : SwatchView(name, message, target, color, width, height)
14 SwatchValueView(const char* name, BMessage* message, BHandler* target, rgb_color color, float width, float height) argument
/haiku/docs/interface_guidelines/docbook-css/
H A Dmozilla.css25 color: red;
/haiku/src/apps/icon-o-matic/gui/
H A DSwatchGroup.h40 void SetCurrentColor(CurrentColor* color);
43 void _SetColor(rgb_color color);
/haiku/src/apps/icon-o-matic/
H A DUtil.cpp23 new_style(rgb_color color, Container<Style>* container, argument
26 *style = new (nothrow) Style(color);
/haiku/src/libs/icon/flat_icon/
H A DFlatIconImporter.cpp178 rgb_color color; local
181 if (!buffer.Read(color.red)
182 || !buffer.Read(color.alpha))
184 color.green = color.blue = color.red;
186 if (!buffer.Read((uint32&)color))
190 color.alpha = 255;
192 if (!buffer.Read(color.red))
194 color
240 rgb_color color; local
[all...]
/haiku/src/apps/soundrecorder/
H A DDrawingTidbits.cpp16 ShiftColor(rgb_color color, float percent) argument
19 ShiftComponent(color.red, percent),
20 ShiftComponent(color.green, percent),
21 ShiftComponent(color.blue, percent),
53 // other color spaces not implemented yet
70 // other color spaces not implemented yet
/haiku/src/apps/haikudepot/textview/
H A DCharacterStyleData.h72 CharacterStyleDataRef SetForegroundColor(rgb_color color);
79 CharacterStyleDataRef SetBackgroundColor(rgb_color color);
86 CharacterStyleDataRef SetStrikeOutColor(rgb_color color);
93 CharacterStyleDataRef SetUnderlineColor(rgb_color color);
H A DCharacterStyleData.cpp213 CharacterStyleData::SetForegroundColor(rgb_color color) argument
215 if (fFgColor == color)
222 ret->fFgColor = color;
244 CharacterStyleData::SetBackgroundColor(rgb_color color) argument
246 if (fBgColor == color)
253 ret->fBgColor = color;
275 CharacterStyleData::SetStrikeOutColor(rgb_color color) argument
277 if (fStrikeOutColor == color)
284 ret->fStrikeOutColor = color;
306 CharacterStyleData::SetUnderlineColor(rgb_color color) argument
[all...]
H A DCharacterStyle.cpp248 CharacterStyle::SetForegroundColor(rgb_color color) argument
250 CharacterStyleDataRef data = fStyleData->SetForegroundColor(color);
252 return data->ForegroundColor() == color;
293 CharacterStyle::SetBackgroundColor(rgb_color color) argument
295 CharacterStyleDataRef data = fStyleData->SetBackgroundColor(color);
297 return data->BackgroundColor() == color;
331 CharacterStyle::SetStrikeOutColor(rgb_color color) argument
333 CharacterStyleDataRef data = fStyleData->SetStrikeOutColor(color);
335 return data->StrikeOutColor() == color;
369 CharacterStyle::SetUnderlineColor(rgb_color color) argument
[all...]
/haiku/src/tests/kits/interface/
H A DPulseTest.cpp9 ChangeColor(rgb_color &color) argument
11 color.red = rand() % 255;
12 color.green = rand() % 255;
H A DListViewTest.cpp19 ColorfulItem(const char* label, rgb_color color);
28 ColorfulItem::ColorfulItem(const char* label, rgb_color color) argument
31 fColor(color)
/haiku/src/tests/servers/app/playground/
H A DStates.h25 void Init(rgb_color color, drawing_mode mode,
34 void SetColor(rgb_color color);
49 rgb_color color, drawing_mode mode,
/haiku/src/apps/haikudepot/util/
H A DRatingUtils.cpp69 rgb_color color = target->LowColor(); local
70 color.alpha = 190;
71 target->SetHighColor(color);
/haiku/3rdparty/pulkomandy/
H A Dpkggraph.py76 color = "red" variable
79 color = "blue" variable
80 print('"%s" -> "%s" [color=%s]' % (k.decode('utf-8'), dep.decode('utf-8'), color))

Completed in 129 milliseconds

1234567891011>>