1
0
mirror of synced 2024-11-18 12:57:12 +01:00
ImHex/include/views/view_information.hpp
WerWolv dbbc525174
Added Plugin support (#102)
* 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
2020-12-22 18:10:01 +01:00

40 lines
869 B
C++

#pragma once
#include "views/view.hpp"
#include <array>
#include <cstdio>
#include <string>
#include <vector>
namespace hex {
namespace prv { class Provider; }
class ViewInformation : public View {
public:
explicit ViewInformation(prv::Provider* &dataProvider);
~ViewInformation() override;
void drawContent() override;
void drawMenu() override;
private:
prv::Provider* &m_dataProvider;
bool m_dataValid = false;
u32 m_blockSize = 0;
float m_averageEntropy = 0;
float m_highestBlockEntropy = 0;
std::vector<float> m_blockEntropy;
std::array<float, 256> m_valueCounts = { 0 };
bool m_shouldInvalidate = false;
std::pair<u64, u64> m_analyzedRegion = { 0, 0 };
std::string m_fileDescription;
std::string m_mimeType;
};
}