1
0
mirror of synced 2024-11-15 03:27:40 +01:00
ImHex/source/views/view_settings.cpp
2021-01-11 20:31:40 +01:00

47 lines
1.4 KiB
C++

#include "views/view_settings.hpp"
#include "helpers/content_registry.hpp"
namespace hex {
ViewSettings::ViewSettings() : View("Settings") {
this->getWindowOpenState() = true;
}
ViewSettings::~ViewSettings() {
}
void ViewSettings::drawContent() {
ImGui::SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, FLT_MAX));
if (ImGui::BeginPopupModal("Preferences", &this->m_settingsWindowOpen, ImGuiWindowFlags_AlwaysAutoResize)) {
for (auto &[category, entries] : ContentRegistry::Settings::getEntries()) {
ImGui::TextUnformatted(category.c_str());
ImGui::Separator();
for (auto &[name, callback] : entries) {
ImGui::TextUnformatted(name.c_str());
ImGui::SameLine();
if (callback(ContentRegistry::Settings::getSettingsData()[category][name]))
View::postEvent(Events::SettingsChanged, nullptr);
ImGui::NewLine();
}
ImGui::NewLine();
}
ImGui::EndPopup();
}
}
void ViewSettings::drawMenu() {
if (ImGui::BeginMenu("Help")) {
if (ImGui::MenuItem("Preferences")) {
View::doLater([]{ ImGui::OpenPopup("Preferences"); });
this->m_settingsWindowOpen = true;
}
ImGui::EndMenu();
}
}
}