dbbc525174
* Build refactoring and initial plugin support * Possibly fixed linux / mac build * Added libdl to libglad build script * Add glfw to imgui dependencies * Refactored common functionality into "libimhex" for plugins * Added plugin loading and example plugin * Added proper API for creating a custom view and a custom tools entry with plugins
41 lines
836 B
C++
41 lines
836 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <functional>
|
|
|
|
namespace hex {
|
|
|
|
enum class Events {
|
|
FileLoaded,
|
|
DataChanged,
|
|
PatternChanged,
|
|
FileDropped,
|
|
WindowClosing,
|
|
RegionSelected,
|
|
|
|
SelectionChangeRequest,
|
|
|
|
AddBookmark,
|
|
AppendPatternLanguageCode,
|
|
|
|
ProjectFileStore,
|
|
ProjectFileLoad
|
|
};
|
|
|
|
struct EventHandler {
|
|
void *owner;
|
|
Events eventType;
|
|
std::function<void(const void*)> callback;
|
|
};
|
|
|
|
class EventManager {
|
|
public:
|
|
void post(Events eventType, const void *userData);
|
|
void subscribe(Events eventType, void *owner, std::function<void(const void*)> callback);
|
|
void unsubscribe(Events eventType, void *sender);
|
|
|
|
private:
|
|
std::vector<EventHandler> m_eventHandlers;
|
|
};
|
|
|
|
} |