1
0
mirror of synced 2024-11-18 04:47:12 +01:00
ImHex/plugins/builtin/include/content/views/view_hexeditor.hpp

77 lines
2.1 KiB
C++
Raw Normal View History

#pragma once
#include <hex/views/view.hpp>
2021-12-07 22:47:41 +01:00
#include <hex/helpers/encoding_file.hpp>
#include <imgui_memory_editor.h>
#include <list>
#include <tuple>
#include <random>
#include <vector>
2021-12-07 22:47:41 +01:00
namespace hex::prv { class Provider; }
namespace hex::plugin::builtin {
2020-11-11 09:28:44 +01:00
2020-11-15 23:04:46 +01:00
using SearchFunction = std::vector<std::pair<u64, u64>> (*)(prv::Provider* &provider, std::string string);
class ViewHexEditor : public View {
public:
ViewHexEditor();
2020-11-11 09:28:44 +01:00
~ViewHexEditor() override;
void drawContent() override;
void drawAlwaysVisible() override;
void drawMenu() override;
2021-04-16 19:43:54 +02:00
bool handleShortcut(bool keys[512], bool ctrl, bool shift, bool alt) override;
private:
MemoryEditor m_memoryEditor;
std::map<u64, u32> m_highlightedBytes;
2020-11-11 14:42:01 +01:00
2021-02-17 14:47:25 +01:00
std::vector<char> m_searchStringBuffer;
std::vector<char> m_searchHexBuffer;
2020-11-15 23:04:46 +01:00
SearchFunction m_searchFunction = nullptr;
std::vector<std::pair<u64, u64>> *m_lastSearchBuffer;
2020-11-11 14:42:01 +01:00
s64 m_lastSearchIndex = 0;
2020-11-15 23:04:46 +01:00
std::vector<std::pair<u64, u64>> m_lastStringSearch;
std::vector<std::pair<u64, u64>> m_lastHexSearch;
s64 m_gotoAddress = 0;
char m_baseAddressBuffer[0x20] = { 0 };
u64 m_resizeSize = 0;
std::vector<u8> m_dataToSave;
2020-12-01 02:21:40 +01:00
std::string m_loaderScriptScriptPath;
std::string m_loaderScriptFilePath;
hex::EncodingFile m_currEncodingFile;
u8 m_highlightAlpha = 0x80;
void drawSearchPopup();
void drawGotoPopup();
void drawEditPopup();
2020-11-15 23:04:46 +01:00
bool createFile(const std::string &path);
void openFile(const std::string &path);
bool saveToFile(const std::string &path, const std::vector<u8>& data);
bool loadFromFile(const std::string &path, std::vector<u8>& data);
enum class Language { C, Cpp, CSharp, Rust, Python, Java, JavaScript };
void copyBytes() const;
void pasteBytes() const;
void copyString() const;
void copyLanguageArray(Language language) const;
void copyHexView() const;
void copyHexViewHTML() const;
2020-11-16 00:07:42 +01:00
};
}