NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
msgcont.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_GUI_MSGCONT_H
24
#define MUTT_GUI_MSGCONT_H
25
26
struct
MuttWindow
;
27
28
struct
MuttWindow
*
msgcont_get_msgwin
(
void
);
29
struct
MuttWindow
*
msgcont_new
(
void
);
30
struct
MuttWindow
*
msgcont_pop_window
(
void
);
31
void
msgcont_push_window
(
struct
MuttWindow
*win);
32
void
msgcont_recalc_rows
(
void
);
33
int
msgcont_num_windows
(
void
);
34
35
#endif
/* MUTT_GUI_MSGCONT_H */
msgcont_new
struct MuttWindow * msgcont_new(void)
Create a new Message Container.
Definition
msgcont.c:46
msgcont_num_windows
int msgcont_num_windows(void)
Count the Windows in the Message Container.
Definition
msgcont.c:90
msgcont_push_window
void msgcont_push_window(struct MuttWindow *win)
Add a window to the Container Stack.
Definition
msgcont.c:150
msgcont_recalc_rows
void msgcont_recalc_rows(void)
Recalculate the Bottom Bar height.
Definition
msgcont.c:64
msgcont_pop_window
struct MuttWindow * msgcont_pop_window(void)
Remove the last Window from the Container Stack.
Definition
msgcont.c:103
msgcont_get_msgwin
struct MuttWindow * msgcont_get_msgwin(void)
Get the Message Window.
Definition
msgcont.c:190
MuttWindow
Definition
mutt_window.h:129