Searched refs:color (Results 101 - 125 of 410) sorted by path

1234567891011>>

/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DColorValueView.cpp126 rgb_color color = p->Value(); local
127 if (ownColor != color) {
128 fSwatchView->SetColor(color);
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
H A DSwatchValueView.h19 rgb_color color,
/haiku/src/apps/icon-o-matic/generic/support/
H A Dsupport_ui.cpp45 store_color_in_message(BMessage* message, rgb_color color) argument
50 (void*)&color, sizeof(rgb_color));
57 restore_color_from_message(const BMessage* message, rgb_color& color, int32 index) argument
66 color = *(const rgb_color*)colorPointer;
73 make_color_drop_message(rgb_color color, BBitmap* bitmap) argument
79 color.red, color.green, color.blue);
81 message.AddData("RGBColor", B_RGB_COLOR_TYPE, &color, sizeof(color));
[all...]
H A Dsupport_ui.h30 status_t store_color_in_message(BMessage* message, rgb_color color);
32 status_t restore_color_from_message(const BMessage* message, rgb_color& color, int32 index = 0);
34 BMessage make_color_drop_message(rgb_color color, BBitmap* bitmap);
/haiku/src/apps/icon-o-matic/gui/
H A DIconView.h40 void SetIconBGColor(const rgb_color& color);
H A DSwatchGroup.cpp56 rgb_color color; local
57 color.alpha = 255;
70 color.red = (uint8)(255.0 * r);
71 color.green = (uint8)(255.0 * g);
72 color.blue = (uint8)(255.0 * b);
74 this, color, SWATCH_VIEW_WIDTH, SWATCH_VIEW_HEIGHT);
84 // create current color swatch view
86 new BMessage(MSG_COLOR_PICKER), this, color, 28.0, 28.0);
88 // When the color of this swatch changes via drag&drop, we want to
89 // adopt it as current color
188 rgb_color color; local
249 rgb_color color; local
279 SetCurrentColor(CurrentColor* color) argument
301 _SetColor(rgb_color color) argument
315 rgb_color color; local
[all...]
H A DSwatchGroup.h40 void SetCurrentColor(CurrentColor* color);
43 void _SetColor(rgb_color color);
/haiku/src/apps/icon-o-matic/style/
H A DCurrentColor.cpp29 CurrentColor::SetColor(rgb_color color) argument
31 if ((uint32&)fColor == (uint32&)color)
34 fColor = color;
H A DCurrentColor.h19 void SetColor(rgb_color color);
H A DSetColorCommand.h28 const rgb_color& color);
/haiku/src/apps/launchbox/
H A DLaunchButton.cpp77 rgb_color color = fRef ? ui_color(B_KEYBOARD_NAVIGATION_COLOR) local
79 SetHighColor(color);
/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/apps/mediaplayer/playlist/
H A DListViews.cpp91 // figure out bg-color
92 rgb_color color = ui_color(B_LIST_BACKGROUND_COLOR); local
95 color = ui_color(B_LIST_SELECTED_BACKGROUND_COLOR);
98 color = tint_color(color, 1.06);
100 owner->SetLowColor(color);
/haiku/src/apps/midiplayer/
H A DMidiPlayerWindow.cpp246 rgb_color color = (rgb_color){ 152, 152, 255 }; local
247 fVolumeSlider->UseFillColor(true, &color);
/haiku/src/apps/patchbay/
H A DMidiEventMeter.cpp114 rgb_color color; local
116 color = tint_color(METER_GREEN, kTintArray[i]);
118 color = METER_GREY;
120 view->SetHighColor(color);
/haiku/src/apps/pulse/
H A DCPUButton.h36 void UpdateColors(int32 color);
H A DConfigView.h27 void SetValue(int32 color);
H A DProgressBar.h17 rgb_color color; member in struct:__anon1
29 void UpdateColors(int32 color, bool fade);
/haiku/src/apps/serialconnect/libvterm/include/
H A Dvterm.h63 VTermColor color; member in union:__anon5
75 VTERM_ATTR_FOREGROUND, // color: 30-39 90-97
76 VTERM_ATTR_BACKGROUND, // color: 40-49 100-107
/haiku/src/apps/serialconnect/libvterm/src/
H A Dpen.c121 static void setpenattr_col(VTermState *state, VTermAttr attr, VTermColor color) argument
123 VTermValue val = { .color = color };
456 val->color = state->pen.fg;
460 val->color = state->pen.bg;
H A Dscreen.c422 screen->pen.fg = val->color;
425 screen->pen.bg = val->color;
/haiku/src/apps/showimage/
H A DFilter.cpp826 rgb_color color, actualColor; local
829 color.red = Limit(srcData[2] + error[0] / 16);
830 color.green = Limit(srcData[1] + error[1] / 16);
831 color.blue = Limit(srcData[0] + error[2] / 16);
832 color.alpha = UINT8_MAX;
834 index = screen.IndexForColor(color);
839 err[0] = color.red - actualColor.red;
840 err[1] = color.green - actualColor.green;
841 err[2] = color.blue - actualColor.blue;
877 rgb_color color, actualColo 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/stylededit/
H A DColorMenuItem.cpp16 ColorMenuItem::ColorMenuItem(const char* label, rgb_color color, argument
20 fItemColor(color)
22 message->AddData("color", B_RGB_COLOR_TYPE, &color, sizeof(rgb_color));

Completed in 150 milliseconds

1234567891011>>