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;
|
|
|
|
|
2022-01-23 02:28:38 +01:00
|
|
|
[[nodiscard]] bool isAvailable() const override { return true; }
|
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-16 00:48:35 +01:00
|
|
|
[[nodiscard]] ImVec2 getMinSize() const override { return { 500, 300 }; }
|
|
|
|
[[nodiscard]] ImVec2 getMaxSize() const override { return { 500, 300 }; }
|
2021-01-11 20:31:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|