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 <string>
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
2023-12-19 11:22:28 +00:00
|
|
|
View::View(UnlocalizedString 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() {
|
2023-12-19 12:10:25 +00:00
|
|
|
return m_windowOpen;
|
2020-12-22 17:10:01 +00:00
|
|
|
}
|
|
|
|
|
2022-01-24 19:53:17 +00:00
|
|
|
const bool &View::getWindowOpenState() const {
|
2023-12-19 12:10:25 +00:00
|
|
|
return m_windowOpen;
|
2022-01-10 20:05:37 +00:00
|
|
|
}
|
|
|
|
|
2023-12-19 11:22:28 +00:00
|
|
|
const UnlocalizedString &View::getUnlocalizedName() const {
|
2023-12-19 12:10:25 +00:00
|
|
|
return m_unlocalizedViewName;
|
2020-12-22 17:10:01 +00:00
|
|
|
}
|
|
|
|
|
2022-01-17 23:10:10 +00:00
|
|
|
std::string View::getName() const {
|
2023-12-19 12:10:25 +00:00
|
|
|
return View::toWindowName(m_unlocalizedViewName);
|
2022-01-17 23:10:10 +00:00
|
|
|
}
|
|
|
|
|
2023-10-30 20:53:44 +00:00
|
|
|
bool View::didWindowJustOpen() {
|
2023-12-19 12:10:25 +00:00
|
|
|
return std::exchange(m_windowJustOpened, false);
|
2023-10-30 20:53:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void View::setWindowJustOpened(bool state) {
|
2023-12-19 12:10:25 +00:00
|
|
|
m_windowJustOpened = state;
|
2023-10-30 20:53:44 +00:00
|
|
|
}
|
|
|
|
|
2023-12-13 22:03:39 +00:00
|
|
|
void View::trackViewOpenState() {
|
2023-12-19 12:10:25 +00:00
|
|
|
if (m_windowOpen && !m_prevWindowOpen)
|
2023-12-13 22:03:39 +00:00
|
|
|
this->setWindowJustOpened(true);
|
2023-12-19 12:10:25 +00:00
|
|
|
m_prevWindowOpen = m_windowOpen;
|
2023-12-13 22:03:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-28 12:23:50 +00:00
|
|
|
void View::discardNavigationRequests() {
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows))
|
|
|
|
ImGui::GetIO().ConfigFlags &= ~ImGuiConfigFlags_NavEnableKeyboard;
|
|
|
|
}
|
|
|
|
|
2023-12-19 11:22:28 +00:00
|
|
|
std::string View::toWindowName(const UnlocalizedString &unlocalizedName) {
|
|
|
|
return Lang(unlocalizedName) + "###" + unlocalizedName.get();
|
2020-12-22 17:10:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|