1
0
mirror of synced 2024-11-18 12:57:12 +01:00
ImHex/include/views/view_tools.hpp

49 lines
1.0 KiB
C++
Raw Normal View History

2020-11-15 00:46:38 +01:00
#pragma once
#include <hex.hpp>
#include "imgui.h"
#include "views/view.hpp"
#include "helpers/math_evaluator.hpp"
2020-11-15 00:46:38 +01:00
#include <array>
#include <string>
2020-11-15 00:46:38 +01:00
namespace hex {
namespace prv { class Provider; }
class ViewTools : public View {
public:
ViewTools();
2020-11-15 00:46:38 +01:00
~ViewTools() override;
void drawContent() override;
void drawMenu() override;
2020-11-15 00:46:38 +01:00
private:
char *m_mangledBuffer = nullptr;
std::string m_demangledName;
2020-11-15 02:50:56 +01:00
bool m_asciiTableShowOctal = false;
char *m_regexInput = nullptr;
char *m_regexPattern = nullptr;
char *m_replacePattern = nullptr;
std::string m_regexOutput;
std::array<float, 4> m_pickedColor;
MathEvaluator m_mathEvaluator;
std::vector<long double> m_mathHistory;
std::string m_lastMathError;
char *m_mathInput = nullptr;
2020-11-15 02:50:56 +01:00
void drawDemangler();
void drawASCIITable();
void drawRegexReplacer();
void drawColorPicker();
void drawMathEvaluator();
2020-11-15 00:46:38 +01:00
};
}