2020-11-10 15:26:38 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <shobjidl.h>
|
|
|
|
|
|
|
|
#include "utils.hpp"
|
|
|
|
#include "views/view.hpp"
|
|
|
|
|
|
|
|
#include "imgui_memory_editor.h"
|
|
|
|
|
|
|
|
#include <tuple>
|
|
|
|
#include <random>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-11-10 21:31:04 +01:00
|
|
|
#include "views/highlight.hpp"
|
|
|
|
|
2020-11-11 09:18:35 +01:00
|
|
|
#include "providers/provider.hpp"
|
|
|
|
|
2020-11-10 15:26:38 +01:00
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
class ViewHexEditor : public View {
|
|
|
|
public:
|
2020-11-11 09:18:35 +01:00
|
|
|
ViewHexEditor(prv::Provider* &dataProvider, std::vector<Highlight> &highlights);
|
2020-11-10 21:31:04 +01:00
|
|
|
virtual ~ViewHexEditor();
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2020-11-10 21:31:04 +01:00
|
|
|
virtual void createView() override;
|
|
|
|
virtual void createMenu() override;
|
2020-11-10 15:26:38 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
MemoryEditor m_memoryEditor;
|
|
|
|
|
2020-11-11 09:18:35 +01:00
|
|
|
prv::Provider* &m_dataProvider;
|
2020-11-10 15:26:38 +01:00
|
|
|
|
2020-11-10 21:31:04 +01:00
|
|
|
std::vector<Highlight> &m_highlights;
|
2020-11-10 15:26:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|