| 291 | } |
| 292 | |
| 293 | QGraphicsEffect *os::shadow(const QColor &color, int blurRadius, int offset) |
| 294 | { |
| 295 | QGraphicsDropShadowEffect *shadowEffect = new QGraphicsDropShadowEffect; |
| 296 | shadowEffect->setBlurRadius(blurRadius); |
| 297 | shadowEffect->setOffset(offset); |
| 298 | shadowEffect->setColor(color); |
| 299 | |
| 300 | return shadowEffect; |
| 301 | } |
| 302 | |
| 303 | QIcon os::icon(const QString &name, QColor backgroundColor) |
| 304 | { |
nothing calls this directly
no outgoing calls
no test coverage detected