NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
notify.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_KEY_NOTIFY_H
24#define MUTT_KEY_NOTIFY_H
25
26struct MenuDefinition;
27
32{
33 const struct MenuDefinition *menu;
34 const char *key;
35 int op;
36};
37
52
53#endif /* MUTT_KEY_NOTIFY_H */
NotifyBinding
Key Binding notification types.
Definition notify.h:46
@ NT_MACRO_ADD
Key macro has been added.
Definition notify.h:49
@ NT_MACRO_DELETE
Key macro has been deleted.
Definition notify.h:50
@ NT_BINDING_DELETE
Key binding has been deleted.
Definition notify.h:48
@ NT_BINDING_ADD
Key binding has been added.
Definition notify.h:47
A key binding Event.
Definition notify.h:32
const char * key
Key string being bound (for new bind/macro)
Definition notify.h:34
int op
Operation the key's bound to (for bind), e.g. OP_DELETE.
Definition notify.h:35
const struct MenuDefinition * menu
Menu Definition.
Definition notify.h:33
Functions for a Dialog or Window.
Definition menu.h:80