2020-12-22 17:10:01 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <imgui.h>
|
2021-01-26 23:44:10 +00:00
|
|
|
#include <ImGuiFileBrowser.h>
|
2020-12-22 17:10:01 +00:00
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <hex/api/event.hpp>
|
2021-01-27 13:26:24 +00:00
|
|
|
#include <hex/providers/provider.hpp>
|
2020-12-22 17:10:01 +00:00
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
|
|
|
class View {
|
|
|
|
public:
|
2021-01-21 09:53:12 +00:00
|
|
|
explicit View(std::string viewName);
|
2020-12-22 17:10:01 +00:00
|
|
|
virtual ~View() = default;
|
|
|
|
|
|
|
|
virtual void drawContent() = 0;
|
2021-02-07 13:29:13 +00:00
|
|
|
virtual void drawAlwaysVisible() { }
|
2020-12-22 17:10:01 +00:00
|
|
|
virtual void drawMenu();
|
|
|
|
virtual bool handleShortcut(int key, int mods);
|
2021-02-02 23:56:33 +00:00
|
|
|
virtual bool isAvailable();
|
2021-02-08 18:56:04 +00:00
|
|
|
virtual bool shouldProcess() { return this->isAvailable() && this->getWindowOpenState(); }
|
2020-12-22 17:10:01 +00:00
|
|
|
|
2021-01-26 23:44:10 +00: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 09:53:12 +00:00
|
|
|
static void doLater(std::function<void()> &&function);
|
2020-12-22 17:10:01 +00:00
|
|
|
static std::vector<std::function<void()>>& getDeferedCalls();
|
|
|
|
|
2021-01-21 09:53:12 +00:00
|
|
|
static std::vector<std::any> postEvent(Events eventType, const std::any &userData = { });
|
2020-12-22 17:10:01 +00: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 09:53:12 +00:00
|
|
|
std::string_view getName() const;
|
2020-12-22 17:10:01 +00:00
|
|
|
|
|
|
|
protected:
|
2021-01-21 09:53:12 +00: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 17:10:01 +00:00
|
|
|
|
|
|
|
void unsubscribeEvent(Events eventType);
|
|
|
|
|
2021-01-28 12:23:50 +00:00
|
|
|
void discardNavigationRequests();
|
2020-12-22 17:10:01 +00:00
|
|
|
protected:
|
2021-01-21 09:53:12 +00:00
|
|
|
void confirmButtons(const char *textLeft, const char *textRight, const std::function<void()> &leftButtonFn, const 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;
|
2021-02-21 12:49:03 +00:00
|
|
|
bool m_windowOpen = this->hasViewMenuItemEntry();
|
2020-12-22 17:10:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|