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