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

37 lines
644 B
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 "views/pattern_data.hpp"
#include <vector>
#include <tuple>
#include <cstdio>
namespace hex {
namespace prv { class Provider; }
class ViewTools : public View {
public:
ViewTools();
~ViewTools() override;
void createView() override;
void createMenu() override;
private:
bool m_windowOpen = true;
char *m_mangledBuffer = nullptr;
char *m_demangledName = nullptr;
2020-11-15 02:50:56 +01:00
bool m_asciiTableShowOctal = false;
void drawDemangler();
void drawASCIITable();
2020-11-15 00:46:38 +01:00
};
}