NeoMutt  2025-12-11-911-gd8d604
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
37
51typedef int (*sidebar_function_t)(struct SidebarFunctionData *fdata, const struct KeyEvent *event);
52
61
62#endif /* MUTT_SIDEBAR_FUNCTIONS_H */
Manage keymappings.
int(* sidebar_function_t)(struct SidebarFunctionData *fdata, const struct KeyEvent *event)
Definition functions.h:51
An event such as a keypress.
Definition get.h:75
Container for Accounts, Notifications.
Definition neomutt.h:41
Data passed to Sidebar worker functions.
Definition functions.h:32
struct SidebarWindowData * wdata
Sidebar window data.
Definition functions.h:35
struct NeoMutt * n
NeoMutt application data.
Definition functions.h:33
struct SidebarModuleData * mod_data
Sidebar module data.
Definition functions.h:34
A NeoMutt function.
Definition functions.h:57
int op
Op code, e.g. OP_SIDEBAR_NEXT.
Definition functions.h:58
sidebar_function_t function
Function to call.
Definition functions.h:59
Sidebar private Module data.
Definition module_data.h:32
Sidebar private Window data -.
Definition private.h:89