From 5d24f1b69126dfe6309346171cf855cee07cbf77 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Wed, 6 Dec 2023 16:20:06 +0100 Subject: [PATCH] impr: Fix input field selection in command palette --- .../content/views/view_command_palette.hpp | 1 + .../content/command_palette_commands.cpp | 4 ++-- .../content/views/view_command_palette.cpp | 23 +++++++++++-------- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/plugins/builtin/include/content/views/view_command_palette.hpp b/plugins/builtin/include/content/views/view_command_palette.hpp index 69a293368..ae684035c 100644 --- a/plugins/builtin/include/content/views/view_command_palette.hpp +++ b/plugins/builtin/include/content/views/view_command_palette.hpp @@ -41,6 +41,7 @@ namespace hex::plugin::builtin { bool m_commandPaletteOpen = false; bool m_justOpened = false; bool m_focusInputTextBox = false; + bool m_moveCursorToEnd = false; std::string m_commandBuffer; std::vector m_lastResults; diff --git a/plugins/builtin/source/content/command_palette_commands.cpp b/plugins/builtin/source/content/command_palette_commands.cpp index 7e8cf941a..e81f4daf2 100644 --- a/plugins/builtin/source/content/command_palette_commands.cpp +++ b/plugins/builtin/source/content/command_palette_commands.cpp @@ -15,7 +15,7 @@ namespace hex::plugin::builtin { ContentRegistry::CommandPaletteCommands::add( ContentRegistry::CommandPaletteCommands::Type::SymbolCommand, - "#", + "=", "hex.builtin.command.calc.desc", [](auto input) { wolv::math_eval::MathEvaluator evaluator; @@ -24,7 +24,7 @@ namespace hex::plugin::builtin { std::optional result = evaluator.evaluate(input); if (result.has_value()) - return hex::format("#{0} = {1}", input.data(), result.value()); + return hex::format("{0} = {1}", input.data(), result.value()); else if (evaluator.hasError()) return hex::format("Error: {}", *evaluator.getLastError()); else diff --git a/plugins/builtin/source/content/views/view_command_palette.cpp b/plugins/builtin/source/content/views/view_command_palette.cpp index e7747f155..9d2f226e8 100644 --- a/plugins/builtin/source/content/views/view_command_palette.cpp +++ b/plugins/builtin/source/content/views/view_command_palette.cpp @@ -53,24 +53,29 @@ namespace hex::plugin::builtin { if (ImGui::InputText("##command_input", this->m_commandBuffer)) { this->m_lastResults = this->getCommandResults(this->m_commandBuffer); } + ImGui::PopStyleVar(2); ImGui::PopStyleColor(3); ImGui::PopItemWidth(); ImGui::SetItemDefaultFocus(); - // Handle giving back focus to the input text box - if (this->m_focusInputTextBox) { - ImGui::SetKeyboardFocusHere(-1); - ImGui::ActivateItemByID(ImGui::GetID("##command_input")); - + if (this->m_moveCursorToEnd) { auto textState = ImGui::GetInputTextState(ImGui::GetID("##command_input")); if (textState != nullptr) { textState->Stb.cursor = textState->Stb.select_start = textState->Stb.select_end = this->m_commandBuffer.size(); } + this->m_moveCursorToEnd = false; + } + + // Handle giving back focus to the input text box + if (this->m_focusInputTextBox) { + ImGui::SetKeyboardFocusHere(-1); + ImGui::ActivateItemByID(ImGui::GetID("##command_input")); this->m_focusInputTextBox = false; + this->m_moveCursorToEnd = true; } // Execute the currently selected command when pressing enter @@ -148,7 +153,7 @@ namespace hex::plugin::builtin { auto AutoComplete = [this, currCommand = command](auto) { this->focusInputTextBox(); - this->m_commandBuffer = currCommand; + this->m_commandBuffer = currCommand + " "; this->m_lastResults = this->getCommandResults(currCommand); }; @@ -160,7 +165,7 @@ namespace hex::plugin::builtin { if (match != MatchType::PerfectMatch) results.push_back({ command + " (" + Lang(unlocalizedDescription) + ")", "", AutoComplete }); else { - auto matchedCommand = input.substr(command.length()); + auto matchedCommand = wolv::util::trim(input.substr(command.length())); results.push_back({ displayCallback(matchedCommand), matchedCommand, executeCallback }); } } @@ -172,7 +177,7 @@ namespace hex::plugin::builtin { if (match != MatchType::PerfectMatch) results.push_back({ command + " (" + Lang(unlocalizedDescription) + ")", "", AutoComplete }); else { - auto matchedCommand = input.substr(command.length() + 1); + auto matchedCommand = wolv::util::trim(input.substr(command.length() + 1)); results.push_back({ displayCallback(matchedCommand), matchedCommand, executeCallback }); } } @@ -185,7 +190,7 @@ namespace hex::plugin::builtin { auto processedInput = input; if (processedInput.starts_with(command)) - processedInput = processedInput.substr(command.length()); + processedInput = wolv::util::trim(processedInput.substr(command.length())); for (const auto &[description, callback] : queryCallback(processedInput)) { if (type == ContentRegistry::CommandPaletteCommands::Type::SymbolCommand) {