NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
dialog.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_GUI_DIALOG_H
24
#define MUTT_GUI_DIALOG_H
25
26
struct
MuttWindow
;
27
28
struct
MuttWindow
*
dialog_find
(
struct
MuttWindow
*win);
29
void
dialog_pop
(
void
);
30
void
dialog_push
(
struct
MuttWindow
*dlg);
31
32
struct
MuttWindow
*
alldialogs_new
(
void
);
33
34
#endif
/* MUTT_GUI_DIALOG_H */
dialog_push
void dialog_push(struct MuttWindow *dlg)
Display a Window to the user.
Definition
dialog.c:109
dialog_pop
void dialog_pop(void)
Hide a Window from the user.
Definition
dialog.c:148
alldialogs_new
struct MuttWindow * alldialogs_new(void)
Create the AllDialogs Window.
Definition
dialog.c:223
dialog_find
struct MuttWindow * dialog_find(struct MuttWindow *win)
Find the parent Dialog of a Window.
Definition
dialog.c:89
MuttWindow
Definition
mutt_window.h:129