2021-01-11 19:31:40 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <hex/views/view.hpp>
|
2021-01-11 19:31:40 +00:00
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
class ViewSettings : public View {
|
|
|
|
public:
|
|
|
|
explicit ViewSettings();
|
|
|
|
~ViewSettings() override;
|
|
|
|
|
|
|
|
void drawContent() override;
|
|
|
|
void drawMenu() override;
|
2021-01-27 13:26:24 +00:00
|
|
|
bool isAvailable() override { return true; }
|
2021-01-11 19:31:40 +00:00
|
|
|
|
|
|
|
bool hasViewMenuItemEntry() override { return false; }
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|