| 188 | } |
| 189 | |
| 190 | bool Widget::sendEvent(InputEvent const& event) { |
| 191 | if (!m_visible) |
| 192 | return false; |
| 193 | |
| 194 | for (auto child : reverseIterate(m_members)) { |
| 195 | if (child->sendEvent(event)) |
| 196 | return true; |
| 197 | } |
| 198 | |
| 199 | return false; |
| 200 | } |
| 201 | |
| 202 | void Widget::mouseOver() {} |
| 203 |
nothing calls this directly
no test coverage detected