1
0
mirror of synced 2024-11-14 19:17:42 +01:00
ImHex/plugins/builtin/include/content/views/view_hashes.hpp

33 lines
707 B
C++
Raw Normal View History

#pragma once
#include <hex/api/content_registry.hpp>
#include <hex/ui/view.hpp>
#include <array>
#include <utility>
#include <cstdio>
2021-12-07 22:47:41 +01:00
namespace hex::plugin::builtin {
class ViewHashes : public View {
public:
explicit ViewHashes();
2020-11-11 09:28:44 +01:00
~ViewHashes() override;
void drawContent() override;
private:
bool importHashes(prv::Provider *provider, const nlohmann::json &json);
bool exportHashes(prv::Provider *provider, nlohmann::json &json);
private:
ContentRegistry::Hashes::Hash *m_selectedHash = nullptr;
std::string m_newHashName;
PerProvider<std::vector<ContentRegistry::Hashes::Hash::Function>> m_hashFunctions;
};
}