From cdc32531ebfac1e59310d63e7d85c1974cf9348e Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Fri, 24 Jun 2022 17:43:50 +0200 Subject: [PATCH] Prevent selection in console when scrollbar is active Fixed issue where scrolling with the scrollbar would select text whilst sliding. Improved UX by not showing the text edit cursor when scrollbar is hovered. --- r5dev/thirdparty/imgui/include/imgui_logger.h | 4 +- r5dev/thirdparty/imgui/src/imgui_logger.cpp | 40 +++++++++++-------- 2 files changed, 26 insertions(+), 18 deletions(-) diff --git a/r5dev/thirdparty/imgui/include/imgui_logger.h b/r5dev/thirdparty/imgui/include/imgui_logger.h index ec9994ca..558d7c81 100644 --- a/r5dev/thirdparty/imgui/include/imgui_logger.h +++ b/r5dev/thirdparty/imgui/include/imgui_logger.h @@ -199,8 +199,8 @@ private: std::string GetWordAt(const Coordinates& aCoords) const; ImU32 GetGlyphColor(const Glyph& aGlyph) const; - void HandleKeyboardInputs(); - void HandleMouseInputs(); + void HandleKeyboardInputs(bool bHoveredScrollbar, bool bActiveScrollbar); + void HandleMouseInputs(bool bHoveredScrollbar, bool bActiveScrollbar); public: bool m_bAutoScroll; diff --git a/r5dev/thirdparty/imgui/src/imgui_logger.cpp b/r5dev/thirdparty/imgui/src/imgui_logger.cpp index 2a52a9b3..7e662a8c 100644 --- a/r5dev/thirdparty/imgui/src/imgui_logger.cpp +++ b/r5dev/thirdparty/imgui/src/imgui_logger.cpp @@ -7,7 +7,8 @@ #include "thirdparty/imgui/include/imgui_logger.h" #define IMGUI_DEFINE_MATH_OPERATORS -#include "thirdparty/imgui/include/imgui.h" // for imGui::GetCurrentWindow() +#include "thirdparty/imgui/include/imgui.h" +#include "thirdparty/imgui/include/imgui_internal.h" template bool equals(InputIt1 first1, InputIt1 last1, @@ -555,18 +556,17 @@ ImU32 CTextLogger::GetGlyphColor(const Glyph & aGlyph) const return ImGui::ColorConvertFloat4ToU32(color); } -void CTextLogger::HandleKeyboardInputs() +void CTextLogger::HandleKeyboardInputs(bool bHoveredScrollbar, bool bActiveScrollbar) { ImGuiIO& io = ImGui::GetIO(); bool shift = io.KeyShift; bool ctrl = io.ConfigMacOSXBehaviors ? io.KeySuper : io.KeyCtrl; bool alt = io.ConfigMacOSXBehaviors ? io.KeyCtrl : io.KeyAlt; - if (ImGui::IsWindowFocused()) + if (!bActiveScrollbar && ImGui::IsWindowFocused()) { - if (ImGui::IsWindowHovered()) + if (!bHoveredScrollbar && ImGui::IsWindowHovered()) ImGui::SetMouseCursor(ImGuiMouseCursor_TextInput); - //ImGui::CaptureKeyboardFromApp(true); io.WantCaptureKeyboard = true; io.WantTextInput = true; @@ -600,16 +600,17 @@ void CTextLogger::HandleKeyboardInputs() } } -void CTextLogger::HandleMouseInputs() +void CTextLogger::HandleMouseInputs(bool bHoveredScrollbar, bool bActiveScrollbar) { ImGuiIO& io = ImGui::GetIO(); - bool shift = io.KeyShift; - bool ctrl = io.ConfigMacOSXBehaviors ? io.KeySuper : io.KeyCtrl; - bool alt = io.ConfigMacOSXBehaviors ? io.KeyCtrl : io.KeyAlt; - if (ImGui::IsWindowFocused()) + bool bShift = io.KeyShift; + bool bCtrl = io.ConfigMacOSXBehaviors ? io.KeySuper : io.KeyCtrl; + bool bAlt = io.ConfigMacOSXBehaviors ? io.KeyCtrl : io.KeyAlt; + + if (!bHoveredScrollbar && !bActiveScrollbar && ImGui::IsWindowFocused()) { - if (!shift && !alt) + if (!bShift && !bAlt) { bool click = ImGui::IsMouseClicked(0); bool doubleClick = ImGui::IsMouseDoubleClicked(0); @@ -623,7 +624,7 @@ void CTextLogger::HandleMouseInputs() if (tripleClick) { - if (!ctrl) + if (!bCtrl) { m_State.m_CursorPosition = m_InteractiveStart = m_InteractiveEnd = ScreenPosToCoordinates(ImGui::GetMousePos()); m_SelectionMode = SelectionMode::Line; @@ -639,7 +640,7 @@ void CTextLogger::HandleMouseInputs() else if (doubleClick) { - if (!ctrl) + if (!bCtrl) { m_State.m_CursorPosition = m_InteractiveStart = m_InteractiveEnd = ScreenPosToCoordinates(ImGui::GetMousePos()); @@ -659,7 +660,7 @@ void CTextLogger::HandleMouseInputs() else if (click) { m_State.m_CursorPosition = m_InteractiveStart = m_InteractiveEnd = ScreenPosToCoordinates(ImGui::GetMousePos()); - if (ctrl) + if (bCtrl) m_SelectionMode = SelectionMode::Word; else m_SelectionMode = SelectionMode::Normal; @@ -684,14 +685,21 @@ void CTextLogger::Render() m_bCursorPositionChanged = false; ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0.0f, 0.0f)); + + ImGuiWindow* pWindow = ImGui::GetCurrentWindow(); + ImGuiID activeID = ImGui::GetActiveID(); + ImGuiID hoveredID = ImGui::GetHoveredID(); + bool bHoveredScrollbar = hoveredID && (hoveredID == ImGui::GetWindowScrollbarID(pWindow, ImGuiAxis_X) || hoveredID == ImGui::GetWindowScrollbarID(pWindow, ImGuiAxis_Y)); + bool bActiveScrollbar = activeID && (activeID == ImGui::GetWindowScrollbarID(pWindow, ImGuiAxis_X) || activeID == ImGui::GetWindowScrollbarID(pWindow, ImGuiAxis_Y)); + if (m_bHandleKeyboardInputs) { - HandleKeyboardInputs(); + HandleKeyboardInputs(bHoveredScrollbar, bActiveScrollbar); ImGui::PushAllowKeyboardFocus(true); } if (m_bHandleMouseInputs) - HandleMouseInputs(); + HandleMouseInputs(bHoveredScrollbar, bActiveScrollbar); /* Compute mCharAdvance regarding to scaled font size (Ctrl + mouse wheel)*/ const float fontSize = ImGui::GetFont()->CalcTextSizeA(ImGui::GetFontSize(), FLT_MAX, -1.0f, "#", nullptr, nullptr).x;