mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
* Build refactoring and initial plugin support * Possibly fixed linux / mac build * Added libdl to libglad build script * Add glfw to imgui dependencies * Refactored common functionality into "libimhex" for plugins * Added plugin loading and example plugin * Added proper API for creating a custom view and a custom tools entry with plugins
30 lines
699 B
C++
30 lines
699 B
C++
#pragma once
|
|
|
|
#include "views/view.hpp"
|
|
|
|
#include <cstdio>
|
|
|
|
namespace hex {
|
|
|
|
namespace prv { class Provider; }
|
|
|
|
class ViewHashes : public View {
|
|
public:
|
|
explicit ViewHashes(prv::Provider* &dataProvider);
|
|
~ViewHashes() override;
|
|
|
|
void drawContent() override;
|
|
void drawMenu() override;
|
|
|
|
private:
|
|
prv::Provider* &m_dataProvider;
|
|
|
|
bool m_shouldInvalidate = true;
|
|
int m_currHashFunction = 0;
|
|
u64 m_hashRegion[2] = { 0 };
|
|
bool m_shouldMatchSelection = false;
|
|
|
|
static constexpr const char* HashFunctionNames[] = { "CRC16", "CRC32", "MD4", "MD5", "SHA-1", "SHA-224", "SHA-256", "SHA-384", "SHA-512" };
|
|
};
|
|
|
|
} |