2021-01-11 20:31:40 +01:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <hex/views/view.hpp>
|
2021-01-11 20:31:40 +01:00
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <string>
|
|
|
|
|
2021-12-07 22:47:41 +01:00
|
|
|
namespace hex::plugin::builtin {
|
2021-01-11 20:31:40 +01:00
|
|
|
|
|
|
|
class ViewSettings : public View {
|
|
|
|
public:
|
|
|
|
explicit ViewSettings();
|
|
|
|
~ViewSettings() override;
|
|
|
|
|
|
|
|
void drawContent() override;
|
|
|
|
void drawMenu() override;
|
2022-01-10 21:05:37 +01:00
|
|
|
[[nodiscard]] bool isAvailable() const override { return true; }
|
2021-01-11 20:31:40 +01:00
|
|
|
|
2022-01-10 21:05:37 +01:00
|
|
|
[[nodiscard]] bool hasViewMenuItemEntry() const override { return false; }
|
2022-01-10 21:05:18 +01:00
|
|
|
|
2022-01-10 21:05:37 +01:00
|
|
|
[[nodiscard]] ImVec2 getMinSize() const override {
|
|
|
|
return ImVec2(500, 300) * SharedData::globalScale;
|
2022-01-10 21:05:18 +01:00
|
|
|
}
|
2021-01-11 20:31:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|