NeoMutt  2023-05-17-56-ga67199
Teaching an old dog new tricks
DOXYGEN
functions.h
Go to the documentation of this file.
1
23#ifndef MUTT_FUNCTIONS_H
24#define MUTT_FUNCTIONS_H
25
26#include "config.h"
27#include "keymap.h"
28
29extern struct MenuFuncOp OpAlias[];
30extern struct MenuFuncOp OpAttach[];
31#ifdef USE_AUTOCRYPT
32extern struct MenuFuncOp OpAutocrypt[];
33#endif
34extern struct MenuFuncOp OpBrowser[];
35extern struct MenuFuncOp OpCompose[];
36extern struct MenuFuncOp OpEditor[];
37extern struct MenuFuncOp OpGeneric[];
38extern struct MenuFuncOp OpIndex[];
39#ifdef MIXMASTER
40extern struct MenuFuncOp OpMix[];
41#endif
42extern struct MenuFuncOp OpPager[];
43extern struct MenuFuncOp OpPgp[];
44extern struct MenuFuncOp OpPostpone[];
45extern struct MenuFuncOp OpQuery[];
46extern struct MenuFuncOp OpSmime[];
47
48extern const struct MenuOpSeq AliasDefaultBindings[];
49extern const struct MenuOpSeq AttachDefaultBindings[];
50#ifdef USE_AUTOCRYPT
51extern const struct MenuOpSeq AutocryptAcctDefaultBindings[];
52#endif
53extern const struct MenuOpSeq BrowserDefaultBindings[];
54extern const struct MenuOpSeq ComposeDefaultBindings[];
55extern const struct MenuOpSeq EditorDefaultBindings[];
56extern const struct MenuOpSeq GenericDefaultBindings[];
57extern const struct MenuOpSeq IndexDefaultBindings[];
58#ifdef MIXMASTER
59extern const struct MenuOpSeq MixDefaultBindings[];
60#endif
61extern const struct MenuOpSeq PagerDefaultBindings[];
62extern const struct MenuOpSeq PgpDefaultBindings[];
63extern const struct MenuOpSeq PostDefaultBindings[];
64extern const struct MenuOpSeq QueryDefaultBindings[];
65extern const struct MenuOpSeq SmimeDefaultBindings[];
66
67#endif /* MUTT_FUNCTIONS_H */
struct MenuFuncOp OpMix[]
Functions for the Mixmaster Menu.
Definition: functions.c:514
struct MenuFuncOp OpPgp[]
Functions for the Pgp Menu.
Definition: functions.c:701
struct MenuFuncOp OpAlias[]
Functions for the Alias Menu.
Definition: functions.c:55
const struct MenuOpSeq AutocryptAcctDefaultBindings[]
Key bindings for the Autocrypt Account.
Definition: functions.c:794
const struct MenuOpSeq PostDefaultBindings[]
Key bindings for the Postpone Menu.
Definition: functions.c:1224
const struct MenuOpSeq EditorDefaultBindings[]
Key bindings for the Editor Menu.
Definition: functions.c:907
struct MenuFuncOp OpIndex[]
Functions for the Index Menu.
Definition: functions.c:349
struct MenuFuncOp OpAttach[]
Functions for the Attachment Menu.
Definition: functions.c:69
const struct MenuOpSeq QueryDefaultBindings[]
Key bindings for the external Query Menu.
Definition: functions.c:1234
const struct MenuOpSeq BrowserDefaultBindings[]
Key bindings for the file Browser Menu.
Definition: functions.c:807
const struct MenuOpSeq AliasDefaultBindings[]
Key bindings for the Alias Menu.
Definition: functions.c:748
struct MenuFuncOp OpEditor[]
Functions for the Editor Menu.
Definition: functions.c:254
struct MenuFuncOp OpPager[]
Functions for the Pager Menu.
Definition: functions.c:529
struct MenuFuncOp OpCompose[]
Functions for the Compose Menu.
Definition: functions.c:177
struct MenuFuncOp OpQuery[]
Functions for the external Query Menu.
Definition: functions.c:721
struct MenuFuncOp OpSmime[]
Functions for the Smime Menu.
Definition: functions.c:736
const struct MenuOpSeq PagerDefaultBindings[]
Key bindings for the Pager Menu.
Definition: functions.c:1110
const struct MenuOpSeq GenericDefaultBindings[]
Key bindings for the Generic Menu.
Definition: functions.c:945
struct MenuFuncOp OpGeneric[]
Functions for the Generic Menu.
Definition: functions.c:288
const struct MenuOpSeq AttachDefaultBindings[]
Key bindings for the Attachment Menu.
Definition: functions.c:763
const struct MenuOpSeq IndexDefaultBindings[]
Key bindings for the Index Menu.
Definition: functions.c:994
struct MenuFuncOp OpBrowser[]
Functions for the file Browser Menu.
Definition: functions.c:123
const struct MenuOpSeq MixDefaultBindings[]
Key bindings for the Mixmaster Menu.
Definition: functions.c:1090
const struct MenuOpSeq PgpDefaultBindings[]
Key bindings for the Pgp Menu.
Definition: functions.c:1214
const struct MenuOpSeq ComposeDefaultBindings[]
Key bindings for the Compose Menu.
Definition: functions.c:844
struct MenuFuncOp OpAutocrypt[]
Functions for the Autocrypt Account.
Definition: functions.c:110
const struct MenuOpSeq SmimeDefaultBindings[]
Key bindings for the Smime Menu.
Definition: functions.c:1249
struct MenuFuncOp OpPostpone[]
Functions for the Postpone Menu.
Definition: functions.c:711
Manage keymappings.
Mapping between a function and an operation.
Definition: keymap.h:92
Mapping between an operation and a key sequence.
Definition: keymap.h:101