#pragma once #include #include #include #include #include #include namespace hex::plugin::builtin { class ViewCommandPalette : public View { public: ViewCommandPalette(); ~ViewCommandPalette() override; void drawContent() override; void drawMenu() override; [[nodiscard]] bool isAvailable() const override { return true; } [[nodiscard]] bool shouldProcess() const override { return true; } [[nodiscard]] bool hasViewMenuItemEntry() const override { return false; } [[nodiscard]] ImVec2 getMinSize() const override { return ImVec2(400, 100); } [[nodiscard]] ImVec2 getMaxSize() const override { return ImVec2(400, 100); } private: enum class MatchType { NoMatch, InfoMatch, PartialMatch, PerfectMatch }; struct CommandResult { std::string displayResult; std::string matchedCommand; std::function executeCallback; }; bool m_commandPaletteOpen = false; bool m_justOpened = false; bool m_focusInputTextBox = false; std::vector m_commandBuffer; std::vector m_lastResults; std::string m_exactResult; void focusInputTextBox() { this->m_focusInputTextBox = true; } std::vector getCommandResults(const std::string &command); }; }