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_SIDEBAR_FUNCTIONS_H
24
#define MUTT_SIDEBAR_FUNCTIONS_H
25
26
#include "
key/lib.h
"
27
28
struct
SidebarWindowData
;
29
43
typedef
int (*
sidebar_function_t
)(
struct
SidebarWindowData
*
wdata
,
const
struct
KeyEvent
*event);
44
48
struct
SidebarFunction
49
{
50
int
op
;
51
sidebar_function_t
function
;
52
};
53
54
#endif
/* MUTT_SIDEBAR_FUNCTIONS_H */
lib.h
Manage keymappings.
sidebar_function_t
int(* sidebar_function_t)(struct SidebarWindowData *wdata, const struct KeyEvent *event)
Definition
functions.h:43
KeyEvent
An event such as a keypress.
Definition
get.h:50
MuttWindow::wdata
void * wdata
Private data.
Definition
mutt_window.h:143
SidebarFunction
A NeoMutt function.
Definition
functions.h:49
SidebarFunction::op
int op
Op code, e.g. OP_SIDEBAR_NEXT.
Definition
functions.h:50
SidebarFunction::function
sidebar_function_t function
Function to call.
Definition
functions.h:51
SidebarWindowData
Sidebar private Window data -.
Definition
private.h:89