Lines Matching refs:aTextFillColor
5060 Color aTextFillColor( aFont.GetFillColor() ); in SetFont() local
5063 aTextFillColor = Color( COL_BLACK ); in SetFont()
5065 aTextFillColor = Color( COL_WHITE ); in SetFont()
5068 const sal_uInt8 cLum = aTextFillColor.GetLuminance(); in SetFont()
5069 aTextFillColor = Color( cLum, cLum, cLum ); in SetFont()
5072 aTextFillColor = GetSettings().GetStyleSettings().GetWindowColor(); in SetFont()
5075 aTextFillColor = Color( COL_TRANSPARENT ); in SetFont()
5081 aTextFillColor = Color( (aTextFillColor.GetRed() >> 1) | 0x80, in SetFont()
5082 (aTextFillColor.GetGreen() >> 1) | 0x80, in SetFont()
5083 (aTextFillColor.GetBlue() >> 1) | 0x80 ); in SetFont()
5086 aFont.SetFillColor( aTextFillColor ); in SetFont()