X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=lib-ui%2Fcurses.h;h=9f7f272f34d94aedc1b6d0516e837984304cd954;hb=eab27dfc9eb0f7b21b560f37ec28f48cfbfa9f40;hp=c639c869137872694b1c749a2942f09a17575192;hpb=c9b049f668148dab6ae90f32de6a4981f673bfa1;p=apps%2Fmadmutt.git diff --git a/lib-ui/curses.h b/lib-ui/curses.h index c639c86..9f7f272 100644 --- a/lib-ui/curses.h +++ b/lib-ui/curses.h @@ -10,19 +10,8 @@ #ifndef _MUTT_CURSES_H #define _MUTT_CURSES_H -#include #include "mutt.h" -#if defined(HAVE_NCURSESW_NCURSES_H) -#include -#elif defined(HAVE_NCURSES_NCURSES_H) -#include -#elif defined(HAVE_NCURSES_H) -#include -#else -#include -#endif - /* AIX defines ``lines'' in , but it's used as a var name in * various places in Mutt */ @@ -30,12 +19,12 @@ #undef lines #endif /* lines */ -#define CLEARLINE_WIN(x) move(x,(option(OPTMBOXPANE)?SidebarWidth:0)), clrtoeol() -#define CLEARLINE(x) move(x,0), clrtoeol() -#define CENTERLINE(x,y) move(y, (COLS-strlen(x))/2), addstr(x) +#define CLEARLINE_WIN(x) wmove(stdscr, x,(option(OPTMBOXPANE)?SidebarWidth:0)), wclrtoeol(stdscr) +#define CLEARLINE(x) wmove(stdscr, x,0), wclrtoeol(stdscr) +#define CENTERLINE(x,y) wmove(stdscr, y, (COLS-strlen(x))/2), waddstr(stdscr, x) #define BEEP() do { if (mod_core.beep) beep(); } while (0) -#define BKGDSET(x) bkgdset(ColorDefs[x] | ' ') +#define BKGDSET(x) wbkgdset(stdscr, ColorDefs[x] | ' ') void mutt_curs_set (int); #define PAGELEN (LINES-3) @@ -50,12 +39,11 @@ void mutt_curs_set (int); event_t mutt_getch (void); -void mutt_endwin (const char *); +void curses_initialize(void); +void curses_install(void); + void mutt_flushinp (void); -void mutt_refresh (void); -void mutt_resize_screen (void); void mutt_ungetch (int, int); -void mutt_need_hard_redraw (void); /* ---------------------------------------------------------------------------- * Support for color @@ -127,6 +115,7 @@ ssize_t mutt_pretty_size(char *s, ssize_t len, ssize_t n); int mutt_addwch (wchar_t); int mutt_alloc_color (int fg, int bg); int mutt_any_key_to_continue (const char *); +void mutt_what_key (void); int mutt_complete (char *, ssize_t); #define mutt_enter_fname(A,B,C,D,E) _mutt_enter_fname(A,B,C,D,E,0,NULL,NULL) int _mutt_enter_fname (const char *, char *, ssize_t, int *, int, int, @@ -155,7 +144,6 @@ extern COLOR_LINE *ColorHdrList; extern COLOR_LINE *ColorBodyList; extern COLOR_LINE *ColorIndexList; -void ci_init_color (void); void ci_start_color (void); #define mutt_make_string(A,B,C,D,E) _mutt_make_string(A,B,C,D,E,0) @@ -163,8 +151,9 @@ void _mutt_make_string (char *, ssize_t, const char *, CONTEXT *, HEADER *, format_flag); -#define SETCOLOR(X) attrset(ColorDefs[X]) -#define ADDCOLOR(X) attron(ColorDefs[X]) +#define WSETCOLOR(w, X) wattrset(w, ColorDefs[X]) +#define SETCOLOR(X) wattrset(stdscr, ColorDefs[X]) +#define ADDCOLOR(X) wattron(stdscr, ColorDefs[X]) #define MAYBE_REDRAW(x) if (option (OPTNEEDREDRAW)) { unset_option (OPTNEEDREDRAW); x = REDRAW_FULL; }