NeoMutt
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
Global Function API

Prototype for a Global Function. More...

+ Collaboration diagram for Global Function API:

Functions

static int op_check_stats (int op)
 Calculate message statistics for all mailboxes - Implements global_function_t -.
 
static int op_enter_command (int op)
 Enter a neomuttrc command - Implements global_function_t -.
 
static int op_redraw (int op)
 Clear and redraw the screen - Implements global_function_t -.
 
static int op_shell_escape (int op)
 Invoke a command in a subshell - Implements global_function_t -.
 
static int op_show_log_messages (int op)
 Show log (and debug) messages - Implements global_function_t -.
 
static int op_version (int op)
 Show the NeoMutt version number - Implements global_function_t -.
 
static int op_what_key (int op)
 display the keycode for a key press - Implements global_function_t -
 

Detailed Description

Prototype for a Global Function.

Parameters
opOperation to perform, e.g. OP_VERSION
Return values
enumFunctionRetval

Function Documentation

◆ op_check_stats()

static int op_check_stats ( int  op)
static

Calculate message statistics for all mailboxes - Implements global_function_t -.

Definition at line 49 of file global.c.

50{
53 return FR_SUCCESS;
54}
@ FR_SUCCESS
Valid function - successfully performed.
Definition: dispatcher.h:39
struct Mailbox * get_current_mailbox(void)
Get the current Mailbox.
Definition: index.c:662
int mutt_mailbox_check(struct Mailbox *m_cur, CheckStatsFlags flags)
Check all all Mailboxes for new mail.
Definition: mutt_mailbox.c:165
#define MUTT_MAILBOX_CHECK_FORCE_STATS
Ignore MailboxType and calculate statistics.
Definition: mxapi.h:55
#define MUTT_MAILBOX_CHECK_FORCE
Ignore MailboxTime and check for new mail.
Definition: mxapi.h:54
+ Here is the call graph for this function:

◆ op_enter_command()

static int op_enter_command ( int  op)
static

Enter a neomuttrc command - Implements global_function_t -.

Definition at line 59 of file global.c.

60{
62 window_redraw(NULL);
63 return FR_SUCCESS;
64}
void mutt_enter_command(void)
Enter a neomutt command.
Definition: external.c:623
void window_redraw(struct MuttWindow *win)
Reflow, recalc and repaint a tree of Windows.
Definition: mutt_window.c:634
+ Here is the call graph for this function:

◆ op_redraw()

static int op_redraw ( int  op)
static

Clear and redraw the screen - Implements global_function_t -.

Definition at line 69 of file global.c.

70{
71 clearok(stdscr, true);
74 window_redraw(NULL);
75 return FR_SUCCESS;
76}
void mutt_resize_screen(void)
Update NeoMutt's opinion about the window size.
Definition: resize.c:74
void window_invalidate_all(void)
Mark all windows as in need of repaint.
Definition: mutt_window.c:767
+ Here is the call graph for this function:

◆ op_shell_escape()

static int op_shell_escape ( int  op)
static

Invoke a command in a subshell - Implements global_function_t -.

Definition at line 81 of file global.c.

82{
84 {
85 struct Mailbox *m_cur = get_current_mailbox();
87 }
88 return FR_SUCCESS;
89}
bool mutt_shell_escape(void)
Invoke a command in a subshell.
Definition: external.c:581
A mailbox.
Definition: mailbox.h:79
+ Here is the call graph for this function:

◆ op_show_log_messages()

static int op_show_log_messages ( int  op)
static

Show log (and debug) messages - Implements global_function_t -.

Definition at line 94 of file global.c.

95{
96 struct Buffer *tempfile = buf_pool_get();
97 buf_mktemp(tempfile);
98
99 FILE *fp = mutt_file_fopen(buf_string(tempfile), "a+");
100 if (!fp)
101 {
102 mutt_perror("fopen");
103 buf_pool_release(&tempfile);
104 return FR_ERROR;
105 }
106
107 log_queue_save(fp);
108 mutt_file_fclose(&fp);
109
110 struct PagerData pdata = { 0 };
111 struct PagerView pview = { &pdata };
112
113 pdata.fname = buf_string(tempfile);
114
115 pview.banner = "messages";
117 pview.mode = PAGER_MODE_OTHER;
118
119 mutt_do_pager(&pview, NULL);
120 buf_pool_release(&tempfile);
121
122 return FR_SUCCESS;
123}
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:93
@ FR_ERROR
Valid function - error occurred.
Definition: dispatcher.h:38
int mutt_do_pager(struct PagerView *pview, struct Email *e)
Display some page-able text to the user (help or attachment)
Definition: do_pager.c:123
FILE * mutt_file_fopen(const char *path, const char *mode)
Call fopen() safely.
Definition: file.c:636
int mutt_file_fclose(FILE **fp)
Close a FILE handle (and NULL the pointer)
Definition: file.c:152
#define mutt_perror(...)
Definition: logging2.h:93
int log_queue_save(FILE *fp)
Save the contents of the queue to a temporary file.
Definition: logging.c:366
#define MUTT_PAGER_LOGS
Logview mode.
Definition: lib.h:73
#define MUTT_PAGER_BOTTOM
Start at the bottom.
Definition: lib.h:74
@ PAGER_MODE_OTHER
Pager is invoked via 3rd path. Non-email content is likely to be shown.
Definition: lib.h:141
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition: pool.c:81
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition: pool.c:94
String manipulation buffer.
Definition: buffer.h:34
Data to be displayed by PagerView.
Definition: lib.h:160
const char * fname
Name of the file to read.
Definition: lib.h:164
Paged view into some data.
Definition: lib.h:171
struct PagerData * pdata
Data that pager displays. NOTNULL.
Definition: lib.h:172
enum PagerMode mode
Pager mode.
Definition: lib.h:173
PagerFlags flags
Additional settings to tweak pager's function.
Definition: lib.h:174
const char * banner
Title to display in status bar.
Definition: lib.h:175
#define buf_mktemp(buf)
Definition: tmp.h:33
+ Here is the call graph for this function:

◆ op_version()

static int op_version ( int  op)
static

Show the NeoMutt version number - Implements global_function_t -.

Definition at line 128 of file global.c.

129{
131 return FR_SUCCESS;
132}
#define mutt_message(...)
Definition: logging2.h:91
const char * mutt_make_version(void)
Generate the NeoMutt version string.
Definition: muttlib.c:1443
+ Here is the call graph for this function:

◆ op_what_key()

static int op_what_key ( int  op)
static

display the keycode for a key press - Implements global_function_t -

Definition at line 137 of file global.c.

138{
139 mw_what_key();
140 return FR_SUCCESS;
141}
void mw_what_key(void)
Display the value of a key -.
Definition: curs_lib.c:703
+ Here is the call graph for this function: