| 1000 | } |
| 1001 | |
| 1002 | void TextWidget::handleLinearGradientVertical(YAGfx& gfx, const String& keyword) |
| 1003 | { |
| 1004 | if (true == handleLinearGradient(gfx, keyword)) |
| 1005 | { |
| 1006 | m_linearGradientBrush.setDirection(true); |
| 1007 | m_gfxText.setBrush(m_linearGradientBrush); |
| 1008 | } |
| 1009 | } |
| 1010 | |
| 1011 | void TextWidget::handleLinearGradientHorizontal(YAGfx& gfx, const String& keyword) |
| 1012 | { |
nothing calls this directly
no test coverage detected