| 159 | } |
| 160 | |
| 161 | UITextView* UITextView::setOutlineColor( const Color& outlineColor ) { |
| 162 | if ( mFontStyleConfig.OutlineColor != outlineColor ) { |
| 163 | mFontStyleConfig.OutlineColor = outlineColor; |
| 164 | Color newColor( outlineColor.r, outlineColor.g, outlineColor.b, |
| 165 | outlineColor.a * mAlpha / 255.f ); |
| 166 | mTextCache.setOutlineColor( newColor ); |
| 167 | onFontStyleChanged(); |
| 168 | invalidateDraw(); |
| 169 | } |
| 170 | |
| 171 | return this; |
| 172 | } |
| 173 | |
| 174 | UITextView* UITextView::setFontStyle( const Uint32& fontStyle ) { |
| 175 | if ( mFontStyleConfig.Style != fontStyle ) { |