| 467 | } |
| 468 | |
| 469 | void EffectsHandler::startMouseInterception(Effect *effect, Qt::CursorShape shape) |
| 470 | { |
| 471 | if (m_grabbedMouseEffects.contains(effect)) { |
| 472 | return; |
| 473 | } |
| 474 | m_grabbedMouseEffects.append(effect); |
| 475 | if (m_grabbedMouseEffects.size() != 1) { |
| 476 | return; |
| 477 | } |
| 478 | doStartMouseInterception(shape); |
| 479 | } |
| 480 | |
| 481 | void EffectsHandler::doStartMouseInterception(Qt::CursorShape shape) |
| 482 | { |
no test coverage detected