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_PAGER_FUNCTIONS_H
24#define MUTT_PAGER_FUNCTIONS_H
25
26#include <stdbool.h>
27
28struct IndexSharedData;
29struct KeyEvent;
30struct MuttWindow;
31struct PagerPrivateData;
32struct PagerView;
33
34extern struct MenuDefinition *MdPager;
35
51typedef int (*pager_function_t)(struct IndexSharedData *shared, struct PagerPrivateData *priv, const struct KeyEvent *event);
52
61
62int pager_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
63bool jump_to_bottom(struct PagerPrivateData *priv, struct PagerView *pview);
64
65#endif /* MUTT_PAGER_FUNCTIONS_H */
int pager_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform a Pager function - Implements function_dispatcher_t -.
Definition functions.c:1145
struct MenuDefinition * MdPager
Pager Menu Definition.
Definition functions.c:64
int(* pager_function_t)(struct IndexSharedData *shared, struct PagerPrivateData *priv, const struct KeyEvent *event)
Definition functions.h:51
bool jump_to_bottom(struct PagerPrivateData *priv, struct PagerView *pview)
Make sure the bottom line is displayed.
Definition functions.c:381
Data shared between Index, Pager and Sidebar.
Definition shared_data.h:37
An event such as a keypress.
Definition get.h:50
Functions for a Dialog or Window.
Definition menu.h:80
A NeoMutt function.
Definition functions.h:57
pager_function_t function
Function to call.
Definition functions.h:59
int op
Op code, e.g. OP_MAIN_LIMIT.
Definition functions.h:58
Private state data for the Pager.
Paged view into some data.
Definition lib.h:172