|
@@ -240,17 +240,15 @@ static bool IsAnyMouseButtonDown()
|
|
// - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application.
|
|
// - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application.
|
|
// Generally you may always pass all inputs to dear imgui, and hide them from your application based on those two flags.
|
|
// Generally you may always pass all inputs to dear imgui, and hide them from your application based on those two flags.
|
|
// PS: In this Win32 handler, we use the capture API (GetCapture/SetCapture/ReleaseCapture) to be able to read mouse coordinations when dragging mouse outside of our window bounds.
|
|
// PS: In this Win32 handler, we use the capture API (GetCapture/SetCapture/ReleaseCapture) to be able to read mouse coordinations when dragging mouse outside of our window bounds.
|
|
|
|
+// PS: We treat DBLCLK messages as regular mouse down messages, so this code will work on windows classes that have the CS_DBLCLKS flag set. Our own example app code doesn't set this flag.
|
|
IMGUI_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
IMGUI_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
{
|
|
ImGuiIO& io = ImGui::GetIO();
|
|
ImGuiIO& io = ImGui::GetIO();
|
|
switch (msg)
|
|
switch (msg)
|
|
{
|
|
{
|
|
- case WM_LBUTTONDOWN:
|
|
|
|
- case WM_LBUTTONDBLCLK:
|
|
|
|
- case WM_RBUTTONDOWN:
|
|
|
|
- case WM_RBUTTONDBLCLK:
|
|
|
|
- case WM_MBUTTONDOWN:
|
|
|
|
- case WM_MBUTTONDBLCLK:
|
|
|
|
|
|
+ case WM_LBUTTONDOWN: case WM_LBUTTONDBLCLK:
|
|
|
|
+ case WM_RBUTTONDOWN: case WM_RBUTTONDBLCLK:
|
|
|
|
+ case WM_MBUTTONDOWN: case WM_MBUTTONDBLCLK:
|
|
{
|
|
{
|
|
int button = 0;
|
|
int button = 0;
|
|
if (msg == WM_LBUTTONDOWN || msg == WM_LBUTTONDBLCLK) button = 0;
|
|
if (msg == WM_LBUTTONDOWN || msg == WM_LBUTTONDBLCLK) button = 0;
|