1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-12-22 19:11:40 +03:00
kakoune/src/hook_manager.hh

37 lines
886 B
C++
Raw Normal View History

2012-04-03 16:01:01 +04:00
#ifndef hook_manager_hh_INCLUDED
#define hook_manager_hh_INCLUDED
2011-11-25 18:26:29 +04:00
#include "id_map.hh"
#include "completion.hh"
2011-11-25 18:26:29 +04:00
namespace Kakoune
{
2013-11-11 23:10:49 +04:00
class Context;
using HookFunc = std::function<void (StringView, Context&)>;
2011-11-25 18:26:29 +04:00
2012-04-03 16:01:01 +04:00
class HookManager
2011-11-25 18:26:29 +04:00
{
public:
HookManager(HookManager& parent) : m_parent(&parent) {}
void add_hook(StringView hook_name, String group, HookFunc hook);
void remove_hooks(StringView group);
2014-07-22 00:14:32 +04:00
CandidateList complete_hook_group(StringView prefix, ByteCount pos_in_token);
void run_hook(StringView hook_name, StringView param,
2013-01-17 16:44:14 +04:00
Context& context) const;
2011-11-25 18:26:29 +04:00
private:
HookManager()
: m_parent(nullptr) {}
// the only one allowed to construct a root hook manager
friend class Scope;
HookManager* m_parent;
IdMap<IdMap<HookFunc, MemoryDomain::Hooks>, MemoryDomain::Hooks> m_hook;
2011-11-25 18:26:29 +04:00
};
}
2012-04-03 16:01:01 +04:00
#endif // hook_manager_hh_INCLUDED