54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <hex/ui/view.hpp>
|
|
#include <hex/api/task_manager.hpp>
|
|
|
|
#include "content/helpers/diagrams.hpp"
|
|
#include <ui/widgets.hpp>
|
|
|
|
#include <string>
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
class ViewInformation : public View::Window {
|
|
public:
|
|
explicit ViewInformation();
|
|
~ViewInformation() override;
|
|
|
|
void drawContent() override;
|
|
|
|
private:
|
|
bool m_dataValid = false;
|
|
u32 m_blockSize = 0;
|
|
double m_averageEntropy = -1.0;
|
|
|
|
double m_highestBlockEntropy = -1.0;
|
|
u64 m_highestBlockEntropyAddress = 0x00;
|
|
double m_lowestBlockEntropy = -1.0;
|
|
u64 m_lowestBlockEntropyAddress = 0x00;
|
|
|
|
double m_plainTextCharacterPercentage = -1.0;
|
|
|
|
TaskHolder m_analyzerTask;
|
|
|
|
Region m_analysisRegion = { 0, 0 };
|
|
Region m_analyzedRegion = { 0, 0 };
|
|
prv::Provider *m_analyzedProvider = nullptr;
|
|
|
|
std::string m_dataDescription;
|
|
std::string m_dataMimeType;
|
|
|
|
DiagramDigram m_digram;
|
|
DiagramLayeredDistribution m_layeredDistribution;
|
|
DiagramByteDistribution m_byteDistribution;
|
|
DiagramByteTypesDistribution m_byteTypesDistribution;
|
|
DiagramChunkBasedEntropyAnalysis m_chunkBasedEntropy;
|
|
|
|
void analyze();
|
|
|
|
u32 m_inputChunkSize = 0;
|
|
ui::RegionType m_selectionType = ui::RegionType::EntireData;
|
|
};
|
|
|
|
}
|