ImHex/source/views/view_tools.cpp

26 lines
636 B
C++
Raw Normal View History

2020-11-14 23:46:38 +00:00
#include "views/view_tools.hpp"
#include <hex/providers/provider.hpp>
2020-11-14 23:46:38 +00:00
namespace hex {
ViewTools::ViewTools() : View("hex.view.tools.name"_lang) { }
ViewTools::~ViewTools() { }
void ViewTools::drawContent() {
if (ImGui::Begin("hex.view.tools.name"_lang, &this->getWindowOpenState(), ImGuiWindowFlags_NoCollapse)) {
for (const auto& [name, function] : ContentRegistry::Tools::getEntries()) {
if (ImGui::CollapsingHeader(LangEntry(name))) {
function();
}
}
2020-11-14 23:46:38 +00:00
}
ImGui::End();
}
void ViewTools::drawMenu() {
2020-11-14 23:46:38 +00:00
}
}