2022-02-01 17:09:40 +00:00
|
|
|
#include <hex/ui/view.hpp>
|
2020-12-22 17:10:01 +00:00
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <imgui.h>
|
2020-12-22 17:10:01 +00:00
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
2022-03-04 19:52:39 +00:00
|
|
|
View::View(std::string unlocalizedName) : m_unlocalizedViewName(std::move(unlocalizedName)) { }
|
2020-12-22 17:10:01 +00:00
|
|
|
|
2023-11-21 12:47:50 +00:00
|
|
|
bool View::shouldDraw() const {
|
2021-09-21 00:29:54 +00:00
|
|
|
return ImHexApi::Provider::isValid() && ImHexApi::Provider::get()->isAvailable();
|
2021-02-02 23:56:33 +00:00
|
|
|
}
|
|
|
|
|
2023-11-21 13:38:01 +00:00
|
|
|
bool View::shouldProcess() const {
|
|
|
|
return this->shouldDraw() && this->getWindowOpenState();
|
|
|
|
}
|
|
|
|
|
2022-01-10 20:05:37 +00:00
|
|
|
bool View::hasViewMenuItemEntry() const {
|
2020-12-22 17:10:01 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-01-10 20:05:37 +00:00
|
|
|
ImVec2 View::getMinSize() const {
|
2023-11-21 12:47:50 +00:00
|
|
|
return scaled({ 300, 400 });
|
2020-12-22 17:10:01 +00:00
|
|
|
}
|
|
|
|
|
2022-01-10 20:05:37 +00:00
|
|
|
ImVec2 View::getMaxSize() const {
|
2021-09-22 15:56:06 +00:00
|
|
|
return { FLT_MAX, FLT_MAX };
|
2020-12-22 17:10:01 +00:00
|
|
|
}
|
|
|
|
|
2023-11-21 12:47:50 +00:00
|
|
|
ImGuiWindowFlags View::getWindowFlags() const {
|
|
|
|
return ImGuiWindowFlags_None;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-22 17:10:01 +00:00
|
|
|
|
2022-01-24 19:53:17 +00:00
|
|
|
bool &View::getWindowOpenState() {
|
2020-12-22 17:10:01 +00:00
|
|
|
return this->m_windowOpen;
|
|
|
|
}
|
|
|
|
|
2022-01-24 19:53:17 +00:00
|
|
|
const bool &View::getWindowOpenState() const {
|
2022-01-10 20:05:37 +00:00
|
|
|
return this->m_windowOpen;
|
|
|
|
}
|
|
|
|
|
2022-01-24 19:53:17 +00:00
|
|
|
const std::string &View::getUnlocalizedName() const {
|
2021-03-03 21:26:17 +00:00
|
|
|
return this->m_unlocalizedViewName;
|
2020-12-22 17:10:01 +00:00
|
|
|
}
|
|
|
|
|
2022-01-17 23:10:10 +00:00
|
|
|
std::string View::getName() const {
|
|
|
|
return View::toWindowName(this->m_unlocalizedViewName);
|
|
|
|
}
|
|
|
|
|
2023-10-30 20:53:44 +00:00
|
|
|
bool View::didWindowJustOpen() {
|
2023-11-21 12:47:50 +00:00
|
|
|
return std::exchange(this->m_windowJustOpened, false);
|
2023-10-30 20:53:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void View::setWindowJustOpened(bool state) {
|
|
|
|
this->m_windowJustOpened = state;
|
|
|
|
}
|
|
|
|
|
2021-01-28 12:23:50 +00:00
|
|
|
void View::discardNavigationRequests() {
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows))
|
|
|
|
ImGui::GetIO().ConfigFlags &= ~ImGuiConfigFlags_NavEnableKeyboard;
|
|
|
|
}
|
|
|
|
|
2023-11-21 12:47:50 +00:00
|
|
|
std::string View::toWindowName(const std::string &unlocalizedName) {
|
2023-11-21 13:38:01 +00:00
|
|
|
return Lang(unlocalizedName) + "###" + unlocalizedName;
|
2020-12-22 17:10:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|