NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_BROWSER_FUNCTIONS_H
24#define MUTT_BROWSER_FUNCTIONS_H
25
26#include "key/lib.h"
27
28struct MuttWindow;
30
31extern struct MenuDefinition *MdBrowser;
32
45typedef int (*browser_function_t)(struct BrowserPrivateData *priv, const struct KeyEvent *event);
46
55
56int browser_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
57
58#endif //MUTT_BROWSER_FUNCTIONS_H
struct MenuDefinition * MdBrowser
Browser Menu Definition.
Definition functions.c:64
int(* browser_function_t)(struct BrowserPrivateData *priv, const struct KeyEvent *event)
Definition functions.h:45
int browser_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform a Browser function.
Definition functions.c:1152
Manage keymappings.
A NeoMutt function.
Definition functions.h:51
int op
Op code, e.g. OP_MAIN_LIMIT.
Definition functions.h:52
browser_function_t function
Function to call.
Definition functions.h:53
Private state data for the Browser.
An event such as a keypress.
Definition get.h:50
Functions for a Dialog or Window.
Definition menu.h:80