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_HISTORY_FUNCTIONS_H
24#define MUTT_HISTORY_FUNCTIONS_H
25
26#include <stdbool.h>
27
28struct KeyEvent;
29struct MuttWindow;
30
35{
36 bool done;
37 bool selection;
38 struct Buffer *buf;
39 struct Menu *menu;
40 struct StringArray *matches;
41};
42
56typedef int (*history_function_t)(struct HistoryData *pd, const struct KeyEvent *event);
57
66
67int history_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
68
69#endif /* MUTT_HISTORY_FUNCTIONS_H */
int history_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform a History function - Implements function_dispatcher_t -.
Definition functions.c:81
int(* history_function_t)(struct HistoryData *pd, const struct KeyEvent *event)
Definition functions.h:56
String manipulation buffer.
Definition buffer.h:36
Data to pass to the History Functions.
Definition functions.h:35
struct Menu * menu
History Menu.
Definition functions.h:39
struct Buffer * buf
Buffer for the results.
Definition functions.h:38
struct StringArray * matches
History entries.
Definition functions.h:40
bool done
Should we close the Dialog?
Definition functions.h:36
bool selection
Was a selection made?
Definition functions.h:37
A NeoMutt function.
Definition functions.h:62
history_function_t function
Function to call.
Definition functions.h:64
int op
Op code, e.g. OP_GENERIC_SELECT_ENTRY.
Definition functions.h:63
An event such as a keypress.
Definition get.h:50
Definition lib.h:80