#pragma once #include #include #include #include "helpers/math_evaluator.hpp" #include #include namespace hex { namespace prv { class Provider; } class ViewTools : public View { public: ViewTools(); ~ViewTools() override; void drawContent() override; void drawMenu() override; private: char *m_mangledBuffer = nullptr; std::string m_demangledName; bool m_asciiTableShowOctal = false; char *m_regexInput = nullptr; char *m_regexPattern = nullptr; char *m_replacePattern = nullptr; std::string m_regexOutput; std::array m_pickedColor; MathEvaluator m_mathEvaluator; std::vector m_mathHistory; std::string m_lastMathError; char *m_mathInput = nullptr; void drawDemangler(); void drawASCIITable(); void drawRegexReplacer(); void drawColorPicker(); void drawMathEvaluator(); }; }