forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.h
68 lines (64 loc) · 2.25 KB
/
lib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* @file
* Convenience wrapper for the gui headers
*
* @authors
* Copyright (C) 2019 Richard Russon <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @page lib_gui Graphical code
*
* Curses and Window code
*
* | File | Description |
* | :------------------ | :------------------------- |
* | gui/curs_lib.c | @subpage gui_curs_lib |
* | gui/dialog.c | @subpage gui_dialog |
* | gui/functions.c | @subpage gui_functions |
* | gui/global.c | @subpage gui_global |
* | gui/msgcont.c | @subpage gui_msgcont |
* | gui/msgwin.c | @subpage gui_msgwin |
* | gui/msgwin_wdata.c | @subpage gui_msgwin_wdata |
* | gui/mutt_curses.c | @subpage gui_curses |
* | gui/mutt_window.c | @subpage gui_window |
* | gui/opcodes.c | @subpage gui_opcode |
* | gui/reflow.c | @subpage gui_reflow |
* | gui/resize.c | @subpage gui_resize |
* | gui/rootwin.c | @subpage gui_rootwin |
* | gui/sbar.c | @subpage gui_sbar |
* | gui/simple.c | @subpage gui_simple |
* | gui/terminal.c | @subpage gui_terminal |
*/
#ifndef MUTT_GUI_LIB_H
#define MUTT_GUI_LIB_H
// IWYU pragma: begin_keep
#include "curs_lib.h"
#include "dialog.h"
#include "functions.h"
#include "global.h"
#include "msgcont.h"
#include "msgwin.h"
#include "mutt_curses.h"
#include "mutt_window.h"
#include "opcodes.h"
#include "reflow.h"
#include "rootwin.h"
#include "sbar.h"
#include "simple.h"
#include "terminal.h"
// IWYU pragma: end_keep
#endif /* MUTT_GUI_LIB_H */