NeoMutt  2025-12-11-911-gd8d604
Teaching an old dog new tricks
DOXYGEN
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
26struct MuttWindow;
27
28struct MuttWindow *msgcont_get_msgwin(void);
29struct MuttWindow *msgcont_new(void);
30struct MuttWindow *msgcont_pop_window(void);
31void msgcont_push_window(struct MuttWindow *win);
32void msgcont_recalc_rows(void);
33int msgcont_num_windows(void);
34
35#endif /* MUTT_GUI_MSGCONT_H */
struct MuttWindow * msgcont_new(void)
Create a new Message Container.
Definition msgcont.c:46
int msgcont_num_windows(void)
Count the Windows in the Message Container.
Definition msgcont.c:90
void msgcont_push_window(struct MuttWindow *win)
Add a window to the Container Stack.
Definition msgcont.c:150
void msgcont_recalc_rows(void)
Recalculate the Bottom Bar height.
Definition msgcont.c:64
struct MuttWindow * msgcont_pop_window(void)
Remove the last Window from the Container Stack.
Definition msgcont.c:103
struct MuttWindow * msgcont_get_msgwin(void)
Get the Message Window.
Definition msgcont.c:190