MCPcopy Create free account
hub / github.com/NazaraEngine/NazaraEngine / OnEventMouseLeft

Method OnEventMouseLeft

SDK/src/NDK/Canvas.cpp:135–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 1

OnMouseExitMethod · 0.45

Tested by

no test coverage detected