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>
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
class ViewSettings : public View {
|
|
|
|
public:
|
|
|
|
explicit ViewSettings();
|
|
|
|
~ViewSettings() override;
|
|
|
|
|
|
|
|
void drawContent() override;
|
|
|
|
void drawMenu() override;
|
2021-01-27 14:26:24 +01:00
|
|
|
bool isAvailable() override { return true; }
|
2021-01-11 20:31:40 +01:00
|
|
|
|
|
|
|
bool hasViewMenuItemEntry() override { return false; }
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|