ImHex/plugins/builtin/include/content/views/view_diff.hpp

35 lines
621 B
C++
Raw Normal View History

2021-09-21 00:48:41 +00:00
#pragma once
#include <hex.hpp>
#include <imgui.h>
#include <hex/ui/view.hpp>
2021-09-21 00:48:41 +00:00
#include <array>
#include <string>
2021-09-21 17:54:13 +00:00
#include <vector>
2021-09-21 00:48:41 +00:00
2021-12-07 21:47:41 +00:00
namespace hex::plugin::builtin {
2021-09-21 00:48:41 +00:00
namespace prv {
class Provider;
}
2021-09-21 00:48:41 +00:00
2021-09-21 17:54:13 +00:00
class ViewDiff : public View {
2021-09-21 00:48:41 +00:00
public:
2021-09-21 17:54:13 +00:00
ViewDiff();
~ViewDiff() override;
2021-09-21 00:48:41 +00:00
void drawContent() override;
2021-09-21 17:54:13 +00:00
private:
void drawDiffLine(const std::array<int, 2> &providerIds, u64 row) const;
int m_providerA = -1, m_providerB = -1;
bool m_greyedOutZeros = true;
2022-02-01 21:09:44 +00:00
bool m_upperCaseHex = true;
int m_columnCount = 16;
2021-09-21 00:48:41 +00:00
};
}