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 "utils.hh"
|
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2012-01-23 14:56:43 +01:00
|
|
|
class Context;
|
2012-04-14 03:17:09 +02:00
|
|
|
typedef std::function<void (const String&, const 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:
|
2012-06-07 15:29:44 +02:00
|
|
|
HookManager(HookManager& parent) : m_parent(&parent) {}
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
void add_hook(const String& hook_name, HookFunc hook);
|
|
|
|
void run_hook(const String& hook_name, const String& param,
|
2011-11-26 19:34:10 +01:00
|
|
|
const Context& context) const;
|
2011-11-25 15:26:29 +01:00
|
|
|
|
|
|
|
private:
|
2012-06-07 15:29:44 +02:00
|
|
|
HookManager()
|
|
|
|
: m_parent(nullptr) {}
|
|
|
|
// the only one allowed to construct a root hook manager
|
2012-11-22 13:50:29 +01:00
|
|
|
friend class GlobalHooks;
|
2012-06-07 15:29:44 +02:00
|
|
|
|
|
|
|
HookManager* m_parent;
|
2012-04-14 03:17:09 +02:00
|
|
|
std::unordered_map<String, std::vector<HookFunc>> m_hook;
|
2011-11-25 15:26:29 +01:00
|
|
|
};
|
|
|
|
|
2012-11-22 13:50:29 +01:00
|
|
|
class GlobalHooks : public HookManager,
|
|
|
|
public Singleton<GlobalHooks>
|
2012-01-23 14:40:42 +01:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|