| 77 | } |
| 78 | |
| 79 | void TouchInputRedirection::focusUpdate(Window *focusOld, Window *focusNow) |
| 80 | { |
| 81 | // TODO: handle pointer grab aka popups |
| 82 | |
| 83 | if (focusOld && focusOld->isClient()) { |
| 84 | focusOld->pointerLeaveEvent(); |
| 85 | } |
| 86 | if (focusNow && focusNow->isClient()) { |
| 87 | focusNow->pointerEnterEvent(m_lastPosition); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | void TouchInputRedirection::cleanupDecoration(Decoration::DecoratedWindowImpl *old, Decoration::DecoratedWindowImpl *now) |
| 92 | { |
nothing calls this directly
no test coverage detected