Home
last modified time | relevance | path

Searched refs:SetForegroundColor (Results 1 – 5 of 5) sorted by relevance

/haiku/src/apps/haikudepot/textview/
H A DCharacterStyle.h44 bool SetForegroundColor(
47 bool SetForegroundColor(color_which which);
48 bool SetForegroundColor(rgb_color color);
H A DCharacterStyle.cpp229 CharacterStyle::SetForegroundColor(uint8 r, uint8 g, uint8 b, uint8 a) in SetForegroundColor() function in CharacterStyle
231 return SetForegroundColor((rgb_color){ r, g, b, a }); in SetForegroundColor()
236 CharacterStyle::SetForegroundColor(color_which which) in SetForegroundColor() function in CharacterStyle
238 CharacterStyleDataRef data = fStyleData->SetForegroundColor(which); in SetForegroundColor()
248 CharacterStyle::SetForegroundColor(rgb_color color) in SetForegroundColor() function in CharacterStyle
250 CharacterStyleDataRef data = fStyleData->SetForegroundColor(color); in SetForegroundColor()
H A DCharacterStyleData.h71 CharacterStyleDataRef SetForegroundColor(color_which which);
72 CharacterStyleDataRef SetForegroundColor(rgb_color color);
H A DCharacterStyleData.cpp198 CharacterStyleData::SetForegroundColor(color_which which) in SetForegroundColor() function in CharacterStyleData
213 CharacterStyleData::SetForegroundColor(rgb_color color) in SetForegroundColor() function in CharacterStyleData
/haiku/src/apps/haikudepot/ui_generic/
H A DMarkupTextView.cpp63 disabledStyle.SetForegroundColor(kLightBlack); in SetDisabledText()