NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
dialog.h
Go to the documentation of this file.
1
23#ifndef MUTT_GUI_DIALOG_H
24#define MUTT_GUI_DIALOG_H
25
26struct MuttWindow;
27
28extern struct MuttWindow *AllDialogsWindow;
29
30struct MuttWindow *dialog_find(struct MuttWindow *win);
31void dialog_pop(void);
32void dialog_push(struct MuttWindow *dlg);
33
34struct MuttWindow *alldialogs_new(void);
35
36#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:142
struct MuttWindow * AllDialogsWindow
Parent of all Dialogs.
Definition: dialog.c:80
struct MuttWindow * alldialogs_new(void)
Create the AllDialogs Window.
Definition: dialog.c:210
struct MuttWindow * dialog_find(struct MuttWindow *win)
Find the parent Dialog of a Window.
Definition: dialog.c:89