Searched refs:idle_color (Results 1 – 5 of 5) sorted by relevance
/haiku/src/apps/pulse/ |
H A D | MiniPulseView.cpp | 39 idle_color.red = (prefs->mini_idle_color & 0xff000000) >> 24; in MiniPulseView() 40 idle_color.green = (prefs->mini_idle_color & 0x00ff0000) >> 16; in MiniPulseView() 41 idle_color.blue = (prefs->mini_idle_color & 0x0000ff00) >> 8; in MiniPulseView() 85 fraction_color.red = (uint8)(idle_color.red + rem in Draw() 86 * (active_color.red - idle_color.red)); in Draw() 87 fraction_color.green = (uint8)(idle_color.green + rem in Draw() 88 * (active_color.green - idle_color.green)); in Draw() 89 fraction_color.blue = (uint8)(idle_color.blue + rem in Draw() 90 * (active_color.blue - idle_color.blue)); in Draw() 97 SetHighColor(idle_color); in Draw() [all …]
|
H A D | DeskbarPulseView.cpp | 58 idle_color.red = (prefs->deskbar_idle_color & 0xff000000) >> 24; in DeskbarPulseView() 59 idle_color.green = (prefs->deskbar_idle_color & 0x00ff0000) >> 16; in DeskbarPulseView() 60 idle_color.blue = (prefs->deskbar_idle_color & 0x0000ff00) >> 8; in DeskbarPulseView() 65 SetViewColor(idle_color); in DeskbarPulseView()
|
H A D | MiniPulseView.h | 31 rgb_color frame_color, active_color, idle_color; variable
|
/haiku/src/apps/processcontroller/ |
H A D | ProcessController.cpp | 526 idle_color = active_color; in DefaultColors() 527 idle_color.green /= 3; in DefaultColors() 528 idle_color.red /= 3; in DefaultColors() 529 idle_color.blue /= 3; in DefaultColors() 658 SetHighColor(idle_color); in DoDraw() 663 mix_colors(fraction_color, idle_color, active_color, rem); in DoDraw() 696 SetHighColor (idle_color); in DoDraw() 701 mix_colors(fraction_color, idle_color, used_memory_color, rem); in DoDraw()
|
H A D | ProcessController.h | 58 rgb_color frame_color, active_color, idle_color, memory_color, swap_color; variable
|