ImHex/plugins/builtin/include/content/views/view_hexeditor.hpp

77 lines
2.0 KiB
C++
Raw Normal View History

#pragma once
#include <hex/views/view.hpp>
2021-12-07 21:47:41 +00:00
#include <hex/helpers/encoding_file.hpp>
#include <imgui_memory_editor.h>
#include <list>
#include <tuple>
#include <random>
#include <vector>
2021-12-07 21:47:41 +00:00
namespace hex::prv { class Provider; }
namespace hex::plugin::builtin {
2020-11-11 08:28:44 +00:00
2020-11-15 22:04:46 +00:00
using SearchFunction = std::vector<std::pair<u64, u64>> (*)(prv::Provider* &provider, std::string string);
class ViewHexEditor : public View {
public:
ViewHexEditor();
2020-11-11 08:28:44 +00:00
~ViewHexEditor() override;
void drawContent() override;
void drawAlwaysVisible() override;
void drawMenu() override;
private:
MemoryEditor m_memoryEditor;
2021-02-17 13:47:25 +00:00
std::vector<char> m_searchStringBuffer;
std::vector<char> m_searchHexBuffer;
2020-11-15 22:04:46 +00:00
SearchFunction m_searchFunction = nullptr;
std::vector<std::pair<u64, u64>> *m_lastSearchBuffer;
2020-11-11 13:42:01 +00:00
s64 m_lastSearchIndex = 0;
2020-11-15 22:04:46 +00: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;
std::set<pl::PatternData*> m_highlightedPatterns;
2020-12-01 01:21:40 +00:00
std::string m_loaderScriptScriptPath;
std::string m_loaderScriptFilePath;
hex::EncodingFile m_currEncodingFile;
u8 m_highlightAlpha = 0x80;
bool m_processingImportExport = false;
bool m_advancedDecodingEnabled = false;
void drawSearchPopup();
void drawGotoPopup();
void drawEditPopup();
2020-11-15 22:04:46 +00: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;
2020-11-15 23:07:42 +00:00
void registerEvents();
void registerShortcuts();
};
}