1
0
mirror of synced 2024-11-12 10:10:53 +01:00
ImHex/plugins/builtin/include/content/views/view_command_palette.hpp
2023-11-14 12:15:37 +01:00

55 lines
1.4 KiB
C++

#pragma once
#include <hex/ui/view.hpp>
#include <imgui.h>
#include <vector>
namespace hex::plugin::builtin {
class ViewCommandPalette : public View {
public:
ViewCommandPalette();
~ViewCommandPalette() override = default;
void drawContent() 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 scaled({ 600, 150 }); }
[[nodiscard]] ImVec2 getMaxSize() const override { return scaled({ 600, 150 }); }
private:
enum class MatchType
{
NoMatch,
InfoMatch,
PartialMatch,
PerfectMatch
};
struct CommandResult {
std::string displayResult;
std::string matchedCommand;
std::function<void(std::string)> executeCallback;
};
bool m_commandPaletteOpen = false;
bool m_justOpened = false;
bool m_focusInputTextBox = false;
std::string m_commandBuffer;
std::vector<CommandResult> m_lastResults;
std::string m_exactResult;
void focusInputTextBox() {
this->m_focusInputTextBox = true;
}
std::vector<CommandResult> getCommandResults(const std::string &input);
};
}