76 lines
2.3 KiB
C++
76 lines
2.3 KiB
C++
#pragma once
|
|
|
|
#include <hex.hpp>
|
|
|
|
#include <imgui.h>
|
|
#include <imgui_imhex_extensions.h>
|
|
|
|
#include <fontawesome_font.h>
|
|
#include <nfd.hpp>
|
|
|
|
#include <hex/api/event.hpp>
|
|
#include <hex/providers/provider.hpp>
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
|
|
namespace hex {
|
|
|
|
class View {
|
|
public:
|
|
explicit View(std::string unlocalizedViewName);
|
|
virtual ~View() = default;
|
|
|
|
virtual void drawContent() = 0;
|
|
virtual void drawAlwaysVisible() { }
|
|
virtual void drawMenu();
|
|
virtual bool handleShortcut(int key, int mods);
|
|
virtual bool isAvailable();
|
|
virtual bool shouldProcess() { return this->isAvailable() && this->getWindowOpenState(); }
|
|
|
|
enum class DialogMode {
|
|
Open,
|
|
Save,
|
|
Folder
|
|
};
|
|
|
|
static void openFileBrowser(std::string_view title, DialogMode mode, const std::vector<nfdfilteritem_t> &validExtensions, const std::function<void(std::string)> &callback);
|
|
static void doLater(std::function<void()> &&function);
|
|
static std::vector<std::function<void()>>& getDeferedCalls();
|
|
|
|
static std::vector<std::any> postEvent(Events eventType, const std::any &userData = { });
|
|
|
|
static void drawCommonInterfaces();
|
|
|
|
static void showErrorPopup(std::string_view errorMessage);
|
|
|
|
virtual bool hasViewMenuItemEntry();
|
|
virtual ImVec2 getMinSize();
|
|
virtual ImVec2 getMaxSize();
|
|
|
|
bool& getWindowOpenState();
|
|
|
|
std::string_view getUnlocalizedName() const;
|
|
|
|
protected:
|
|
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);
|
|
|
|
void unsubscribeEvent(Events eventType);
|
|
|
|
void discardNavigationRequests();
|
|
|
|
void confirmButtons(const char *textLeft, const char *textRight, const std::function<void()> &leftButtonFn, const std::function<void()> &rightButtonFn);
|
|
|
|
static inline std::string toWindowName(std::string_view unlocalizedName) {
|
|
return LangEntry(unlocalizedName) + "##" + std::string(unlocalizedName);
|
|
}
|
|
|
|
private:
|
|
std::string m_unlocalizedViewName;
|
|
bool m_windowOpen = this->hasViewMenuItemEntry();
|
|
};
|
|
|
|
} |