kakoune/src/hook_manager.hh

44 lines
933 B
C++
Raw Normal View History

2012-04-03 14:01:01 +02:00
#ifndef hook_manager_hh_INCLUDED
#define hook_manager_hh_INCLUDED
2011-11-25 15:26:29 +01:00
#include "idvaluemap.hh"
2011-11-25 15:26:29 +01:00
#include "utils.hh"
#include <unordered_map>
namespace Kakoune
{
2013-11-11 20:10:49 +01:00
class Context;
2013-01-17 13:44:14 +01:00
typedef std::function<void (const String&, Context&)> HookFunc;
2011-11-25 15:26:29 +01:00
2012-04-03 14:01:01 +02:00
class HookManager
2011-11-25 15:26:29 +01:00
{
public:
HookManager(HookManager& parent) : m_parent(&parent) {}
void add_hook(const String& hook_name, String id, HookFunc hook);
void remove_hooks(const String& id);
void run_hook(const String& hook_name, const String& param,
2013-01-17 13:44:14 +01:00
Context& context) const;
2011-11-25 15:26:29 +01:00
private:
HookManager()
: m_parent(nullptr) {}
// the only one allowed to construct a root hook manager
friend class GlobalHooks;
HookManager* m_parent;
std::unordered_map<String, idvaluemap<String, HookFunc>> m_hook;
2011-11-25 15:26:29 +01:00
};
class GlobalHooks : public HookManager,
public Singleton<GlobalHooks>
{
};
2011-11-25 15:26:29 +01:00
}
2012-04-03 14:01:01 +02:00
#endif // hook_manager_hh_INCLUDED
2011-11-25 15:26:29 +01:00