1
0
mirror of synced 2024-11-25 08:10:24 +01:00
ImHex/plugins/builtin/include/content/views/view_diff.hpp

56 lines
1.1 KiB
C++
Raw Normal View History

2021-09-21 02:48:41 +02:00
#pragma once
#include <hex.hpp>
#include <imgui.h>
#include <hex/ui/view.hpp>
#include <hex/api/task.hpp>
2021-09-21 02:48:41 +02:00
#include <array>
#include <string>
2021-09-21 19:54:13 +02:00
#include <vector>
2021-09-21 02:48:41 +02:00
#include "ui/hex_editor.hpp"
#include <IntervalTree.h>
2021-12-07 22:47:41 +01:00
namespace hex::plugin::builtin {
2021-09-21 02:48:41 +02:00
2021-09-21 19:54:13 +02:00
class ViewDiff : public View {
2021-09-21 02:48:41 +02:00
public:
2021-09-21 19:54:13 +02:00
ViewDiff();
~ViewDiff() override;
2021-09-21 02:48:41 +02:00
void drawContent() override;
2021-09-21 19:54:13 +02:00
private:
struct Column {
ui::HexEditor hexEditor;
int provider = -1;
i32 scrollLock = 0;
};
enum class DifferenceType : u8 {
Added,
Removed,
Modified
};
struct Diff {
Region region;
DifferenceType type;
};
bool drawDiffColumn(Column &column, float height) const;
void drawProviderSelector(Column &column);
std::string getProviderName(Column &column) const;
2021-09-21 19:54:13 +02:00
private:
std::array<Column, 2> m_columns;
2021-09-21 19:54:13 +02:00
std::vector<Diff> m_diffs;
TaskHolder m_diffTask;
std::atomic<bool> m_analyzed = false;
2021-09-21 02:48:41 +02:00
};
}