2021-01-11 19:31:40 +00:00
|
|
|
#include "views/view_settings.hpp"
|
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <hex/api/content_registry.hpp>
|
2021-01-11 19:31:40 +00:00
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
2021-02-11 22:09:45 +00:00
|
|
|
ViewSettings::ViewSettings() : View("hex.view.settings.title"_lang) {
|
2021-01-27 13:26:24 +00:00
|
|
|
View::subscribeEvent(Events::OpenWindow, [this](auto name) {
|
2021-02-13 14:15:32 +00:00
|
|
|
if (std::any_cast<const char*>(name) == std::string("hex.view.settings.title")) {
|
2021-02-11 22:09:45 +00:00
|
|
|
View::doLater([]{ ImGui::OpenPopup("hex.view.settings.title"_lang); });
|
2021-01-27 13:26:24 +00:00
|
|
|
this->getWindowOpenState() = true;
|
|
|
|
}
|
|
|
|
});
|
2021-01-11 19:31:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ViewSettings::~ViewSettings() {
|
2021-01-27 13:26:24 +00:00
|
|
|
View::unsubscribeEvent(Events::OpenWindow);
|
2021-01-11 19:31:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewSettings::drawContent() {
|
|
|
|
|
|
|
|
ImGui::SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, FLT_MAX));
|
|
|
|
|
2021-02-11 22:09:45 +00:00
|
|
|
if (ImGui::BeginPopupModal("hex.view.settings.title"_lang, &this->getWindowOpenState(), ImGuiWindowFlags_AlwaysAutoResize)) {
|
2021-01-11 19:31:40 +00:00
|
|
|
for (auto &[category, entries] : ContentRegistry::Settings::getEntries()) {
|
2021-02-13 14:15:32 +00:00
|
|
|
ImGui::TextUnformatted(LangEntry(category));
|
2021-01-11 19:31:40 +00:00
|
|
|
ImGui::Separator();
|
|
|
|
for (auto &[name, callback] : entries) {
|
2021-02-13 14:15:32 +00:00
|
|
|
if (callback(LangEntry(name), ContentRegistry::Settings::getSettingsData()[category][name]))
|
2021-01-21 09:53:12 +00:00
|
|
|
View::postEvent(Events::SettingsChanged);
|
2021-01-11 19:31:40 +00:00
|
|
|
}
|
|
|
|
ImGui::NewLine();
|
|
|
|
}
|
|
|
|
ImGui::EndPopup();
|
2021-01-27 13:26:24 +00:00
|
|
|
} else
|
|
|
|
this->getWindowOpenState() = false;
|
2021-01-11 19:31:40 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewSettings::drawMenu() {
|
2021-02-11 22:09:45 +00:00
|
|
|
if (ImGui::BeginMenu("hex.menu.help"_lang)) {
|
|
|
|
if (ImGui::MenuItem("hex.view.settings.title"_lang)) {
|
|
|
|
View::doLater([]{ ImGui::OpenPopup("hex.view.settings.title"_lang); });
|
2021-01-27 13:26:24 +00:00
|
|
|
this->getWindowOpenState() = true;
|
2021-01-11 19:31:40 +00:00
|
|
|
}
|
|
|
|
ImGui::EndMenu();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|