NeoMutt  2025-12-11-769-g906513
Teaching an old dog new tricks
DOXYGEN
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
26struct MuttWindow;
27
28struct MuttWindow *dialog_find(struct MuttWindow *win);
29void dialog_pop(void);
30void dialog_push(struct MuttWindow *dlg);
31
32struct MuttWindow *alldialogs_new(void);
33
34#endif /* MUTT_GUI_DIALOG_H */
void dialog_push(struct MuttWindow *dlg)
Display a Window to the user.
Definition dialog.c:109
void dialog_pop(void)
Hide a Window from the user.
Definition dialog.c:148
struct MuttWindow * alldialogs_new(void)
Create the AllDialogs Window.
Definition dialog.c:223
struct MuttWindow * dialog_find(struct MuttWindow *win)
Find the parent Dialog of a Window.
Definition dialog.c:89