Home
last modified time | relevance | path

Searched refs:EditorHooks (Results 1 – 13 of 13) sorted by relevance

/dports/devel/codeblocks/codeblocks-20.03/src/sdk/
H A Deditor_hooks.cpp71 namespace EditorHooks namespace
78 int EditorHooks::RegisterHook(EditorHooks::HookFunctorBase* functor) in RegisterHook()
89 EditorHooks::HookFunctorBase* EditorHooks::UnregisterHook(int id, bool deleteHook) in UnregisterHook()
94 EditorHooks::HookFunctorBase* functor = it->second; in UnregisterHook()
106 bool EditorHooks::HasRegisteredHooks() in HasRegisteredHooks()
111 void EditorHooks::CallHooks(cbEditor* editor, wxScintillaEvent& event) in CallHooks()
115 EditorHooks::HookFunctorBase* functor = it->second; in CallHooks()
151 namespace EditorHooks namespace
H A Dcbplugin.cpp1050 … m_FunctorId = EditorHooks::RegisterHook( new EditorHooks::cbSmartIndentEditorHookFunctor(this) ); in OnAttach()
1056 EditorHooks::UnregisterHook(m_FunctorId); in OnRelease()
H A Dccmanager.cpp333 …m_EditorHookID = EditorHooks::RegisterHook(new EditorHooks::HookFunctor<CCManager>(this, &CCManage… in BEGIN_EVENT_TABLE()
353 EditorHooks::UnregisterHook(m_EditorHookID, true); in ~CCManager()
H A Dcbeditor.cpp3630 if (!ProjectManager::IsBusy() && EditorHooks::HasRegisteredHooks()) in OnScintillaEvent()
3632 EditorHooks::CallHooks(this, event); in OnScintillaEvent()
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/occurrenceshighlighting/
H A Doccurrenceshighlighting.cpp87EditorHooks::HookFunctorBase *editor_hook = new EditorHooks::HookFunctor<OccurrencesHighlighting>(… in OnAttach()
88 m_FunctorId = EditorHooks::RegisterHook(editor_hook); in OnAttach()
128 EditorHooks::UnregisterHook(m_FunctorId); in OnRelease()
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/abbreviations/
H A Dabbreviations.cpp79EditorHooks::HookFunctorBase* myhook = new EditorHooks::HookFunctor<Abbreviations>(this, &Abbrevia… in OnAttach()
80 m_EditorHookId = EditorHooks::RegisterHook(myhook); in OnAttach()
99 EditorHooks::UnregisterHook(m_EditorHookId, true); in OnRelease()
/dports/devel/codeblocks/codeblocks-20.03/src/include/
H A Deditor_hooks.h23 namespace EditorHooks
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/SpellChecker/
H A DSpellCheckerPlugin.cpp138EditorHooks::HookFunctorBase *editor_hook = new EditorHooks::HookFunctor<SpellCheckerPlugin>(this,… in Init()
139 m_FunctorId = EditorHooks::RegisterHook( editor_hook ); in Init()
214 EditorHooks::UnregisterHook(m_FunctorId); in OnRelease()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/panmirror/src/editor/src/editor/
H A Deditor.ts150 readonly hooks?: EditorHooks;
154 export interface EditorHooks { interface
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/BrowseTracker/
H A DBrowseTracker.cpp364EditorHooks::HookFunctorBase* myEdhook = new EditorHooks::HookFunctor<BrowseTracker>(this, &Browse… in OnAttach()
365 m_EditorHookId = EditorHooks::RegisterHook(myEdhook); in OnAttach()
1701 EditorHooks::UnregisterHook(m_EditorHookId, true); in AppShuttingDown()
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/FortranProject/
H A Dfortranproject.cpp149EditorHooks::HookFunctorBase* myhook = new EditorHooks::HookFunctor<FortranProject>(this, &Fortran… in OnAttach()
150 m_EditorHookId = EditorHooks::RegisterHook(myhook); in OnAttach()
185 EditorHooks::UnregisterHook(m_EditorHookId, true); in OnRelease()
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/codecompletion/
H A Dcodecompletion.cpp471EditorHooks::HookFunctorBase* myhook = new EditorHooks::HookFunctor<CodeCompletion>(this, &CodeCom… in OnAttach()
472 m_EditorHookId = EditorHooks::RegisterHook(myhook); in OnAttach()
506 EditorHooks::UnregisterHook(m_EditorHookId, true); in OnRelease()
/dports/devel/codeblocks/codeblocks-20.03/
H A DChangeLog19877 svn2135:  * Added EditorHooks for modules to hook on editor