2020-11-14 23:46:38 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <imgui.h>
|
2022-02-01 17:09:40 +00:00
|
|
|
#include <hex/ui/view.hpp>
|
2020-11-14 23:46:38 +00:00
|
|
|
|
2020-11-15 20:31:04 +00:00
|
|
|
#include <array>
|
|
|
|
#include <string>
|
2020-11-14 23:46:38 +00:00
|
|
|
|
2021-12-07 21:47:41 +00:00
|
|
|
namespace hex::plugin::builtin {
|
2020-11-14 23:46:38 +00:00
|
|
|
|
2022-01-24 19:53:17 +00:00
|
|
|
namespace prv {
|
|
|
|
class Provider;
|
|
|
|
}
|
2020-11-14 23:46:38 +00:00
|
|
|
|
|
|
|
class ViewTools : public View {
|
|
|
|
public:
|
2020-12-27 14:39:06 +00:00
|
|
|
ViewTools();
|
2020-11-14 23:46:38 +00:00
|
|
|
~ViewTools() override;
|
|
|
|
|
2020-12-22 17:10:01 +00:00
|
|
|
void drawContent() override;
|
2020-11-14 23:46:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|