Qt: Hook up mouse events to ImGui
This commit is contained in:
parent
7cf50e816d
commit
1ed57a9fdf
|
@ -268,13 +268,35 @@ void QtHostInterface::onDisplayWindowMouseMoveEvent(int x, int y)
|
||||||
{
|
{
|
||||||
// display might be null here if the event happened after shutdown
|
// display might be null here if the event happened after shutdown
|
||||||
DebugAssert(isOnWorkerThread());
|
DebugAssert(isOnWorkerThread());
|
||||||
if (m_display)
|
if (!m_display)
|
||||||
|
return;
|
||||||
|
|
||||||
m_display->SetMousePosition(x, y);
|
m_display->SetMousePosition(x, y);
|
||||||
|
|
||||||
|
if (ImGui::GetCurrentContext())
|
||||||
|
{
|
||||||
|
ImGuiIO& io = ImGui::GetIO();
|
||||||
|
io.MousePos[0] = static_cast<float>(x);
|
||||||
|
io.MousePos[1] = static_cast<float>(y);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void QtHostInterface::onDisplayWindowMouseButtonEvent(int button, bool pressed)
|
void QtHostInterface::onDisplayWindowMouseButtonEvent(int button, bool pressed)
|
||||||
{
|
{
|
||||||
DebugAssert(isOnWorkerThread());
|
DebugAssert(isOnWorkerThread());
|
||||||
|
|
||||||
|
if (ImGui::GetCurrentContext() && (button > 0 && button <= countof(ImGuiIO::MouseDown)))
|
||||||
|
{
|
||||||
|
ImGuiIO& io = ImGui::GetIO();
|
||||||
|
io.MouseDown[button - 1] = pressed;
|
||||||
|
|
||||||
|
if (io.WantCaptureMouse)
|
||||||
|
{
|
||||||
|
// don't consume input events if it's hitting the UI instead
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
HandleHostMouseEvent(button, pressed);
|
HandleHostMouseEvent(button, pressed);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue