#pragma once #include #include "imgui.h" #include "helpers/event.hpp" #include #include #include namespace hex { class View { public: View(std::string viewName) : m_viewName(viewName) { } virtual ~View() { } virtual void createView() = 0; virtual void createMenu() { } virtual bool handleShortcut(int key, int mods) { return false; } static std::vector>& getDeferedCalls() { return View::s_deferedCalls; } static void postEvent(Events eventType, const void *userData = nullptr) { View::s_eventManager.post(eventType, userData); } static void drawCommonInterfaces() { if (ImGui::BeginPopupModal("Error", nullptr, ImGuiWindowFlags_NoResize)) { ImGui::NewLine(); if (ImGui::BeginChild("##scrolling", ImVec2(300, 100))) { ImGui::SetCursorPosX((300 - ImGui::CalcTextSize(View::s_errorMessage.c_str(), nullptr, false).x) / 2.0F); ImGui::TextWrapped("%s", View::s_errorMessage.c_str()); ImGui::EndChild(); } ImGui::NewLine(); ImGui::SetCursorPosX(75); if (ImGui::Button("Okay", ImVec2(150, 20))) ImGui::CloseCurrentPopup(); ImGui::EndPopup(); } } static void showErrorPopup(std::string_view errorMessage) { View::s_errorMessage = errorMessage; ImGui::OpenPopup("Error"); } bool& getWindowOpenState() { return this->m_windowOpen; } const std::string getName() const { return this->m_viewName; } protected: void subscribeEvent(Events eventType, std::function callback) { View::s_eventManager.subscribe(eventType, this, callback); } void unsubscribeEvent(Events eventType) { View::s_eventManager.unsubscribe(eventType, this); } void doLater(std::function &&function) { View::s_deferedCalls.push_back(function); } private: std::string m_viewName; bool m_windowOpen = false; static inline EventManager s_eventManager; static inline std::vector> s_deferedCalls; static inline std::string s_errorMessage; }; }