| 133 | } |
| 134 | |
| 135 | void Canvas::OnEventMouseLeft(const Nz::EventHandler* /*eventHandler*/) |
| 136 | { |
| 137 | if (m_hoveredWidget != InvalidCanvasIndex) |
| 138 | { |
| 139 | m_widgetBoxes[m_hoveredWidget].widget->OnMouseExit(); |
| 140 | m_hoveredWidget = InvalidCanvasIndex; |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | void Canvas::OnEventKeyPressed(const Nz::EventHandler* /*eventHandler*/, const Nz::WindowEvent::KeyEvent& event) |
| 145 | { |
nothing calls this directly
no test coverage detected