1
0
mirror of synced 2024-11-18 21:07:12 +01:00
ImHex/include/views/view.hpp

37 lines
840 B
C++
Raw Normal View History

#pragma once
#include <hex.hpp>
#include "imgui.h"
#include "event.hpp"
namespace hex {
class View {
public:
View() { }
virtual ~View() { }
virtual void createView() = 0;
virtual void createMenu() { }
2020-11-11 14:41:44 +01:00
virtual bool handleShortcut(int key, int mods) { return false; }
protected:
void subscribeEvent(Events eventType, std::function<void(void*)> callback) {
View::s_eventManager.subscribe(eventType, this, callback);
}
void unsubscribeEvent(Events eventType) {
View::s_eventManager.unsubscribe(eventType, this);
}
void postEvent(Events eventType, void *userData = nullptr) {
View::s_eventManager.post(eventType, userData);
}
private:
static inline EventManager s_eventManager;
};
}