2020-12-22 17:10:01 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <imgui.h>
|
2020-12-22 17:10:01 +00:00
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <hex/api/event.hpp>
|
2020-12-22 17:10:01 +00:00
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
class View {
|
|
|
|
public:
|
|
|
|
View(std::string viewName);
|
|
|
|
virtual ~View() = default;
|
|
|
|
|
|
|
|
virtual void drawContent() = 0;
|
|
|
|
virtual void drawMenu();
|
|
|
|
virtual bool handleShortcut(int key, int mods);
|
|
|
|
|
|
|
|
static std::vector<std::function<void()>>& getDeferedCalls();
|
|
|
|
|
|
|
|
static void postEvent(Events eventType, const void *userData = nullptr);
|
|
|
|
|
|
|
|
static void drawCommonInterfaces();
|
|
|
|
|
|
|
|
static void showErrorPopup(std::string_view errorMessage);
|
|
|
|
|
|
|
|
virtual bool hasViewMenuItemEntry();
|
|
|
|
virtual ImVec2 getMinSize();
|
|
|
|
virtual ImVec2 getMaxSize();
|
|
|
|
|
|
|
|
bool& getWindowOpenState();
|
|
|
|
|
|
|
|
const std::string getName() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void subscribeEvent(Events eventType, std::function<void(const void*)> callback);
|
|
|
|
|
|
|
|
void unsubscribeEvent(Events eventType);
|
|
|
|
|
|
|
|
void doLater(std::function<void()> &&function);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void confirmButtons(const char *textLeft, const char *textRight, std::function<void()> leftButtonFn, std::function<void()> rightButtonFn);
|
2021-01-03 23:19:56 +00:00
|
|
|
|
2020-12-22 17:10:01 +00:00
|
|
|
private:
|
|
|
|
std::string m_viewName;
|
|
|
|
bool m_windowOpen = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|