Make layout windows visible, makes the whole thing way simpler.
[apps/madmutt.git] / lib-ui / layout.h
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19
20 #ifndef MUTT_LIB_UI_LAYOUT_H
21 #define MUTT_LIB_UI_LAYOUT_H
22
23 extern WINDOW *sidebar_w, *main_w;
24
25 void ui_layout_init(void);
26 void ui_layout_resize(void);
27
28 WINDOW *ui_layout_sidebar_w(void);
29
30 void mutt_need_hard_redraw(void);
31 void mutt_refresh(void);
32 void mutt_endwin(const char *);
33
34 static inline int ui_get_width(WINDOW *w) {
35     int x, y;
36     getmaxyx(w, y, x);
37     return y;
38 }
39
40 static inline int ui_get_height(WINDOW *w) {
41     int x, y;
42     getmaxyx(w, y, x);
43     return x;
44 }
45
46 #endif