]> granicus.if.org Git - neomutt/commit
merge: refactor use of curses
authorRichard Russon <rich@flatcap.org>
Mon, 30 Sep 2019 11:43:11 +0000 (12:43 +0100)
committerRichard Russon <rich@flatcap.org>
Mon, 30 Sep 2019 11:43:11 +0000 (12:43 +0100)
commit9f906b87de11ace270eb17d12d96b1fea44a6e04
treed3408c7d7594659c7b73fbb101c113540277b556
parentd30633b2a8f631d5a02edcf5afbe5a549fb8b158
parent6308bf8997a932418f71f8cc647b60df349a8580
merge: refactor use of curses

Tidy:
 * eliminate curses from Progress Bar
 * move colour definitions to color.h
 * tidy naming of color functions
 * move KeyEvent out of mutt_curses.h

Refactor:
 * SET_COLOR() to mutt_curses_set_color()
 * NORMAL_COLOR() to mutt_curses_set_color()
 * ATTR_SET() to mutt_curses_set_attr()
 * curs_set() to mutt_curses_set_cursor()
 * beep() to mutt_beep()
 * addch() to mutt_window_addch()
 * addnstr() to mutt_window_addnstr()
 * addstr() to mutt_window_addstr()
 * clrtobot() to mutt_window_clrtobot()
 * move() to mutt_window_move_abs()
 * printw() to mutt_window_printf()
 * mutt_window_mvaddstr()
 * clearok() to mutt_window_clear_screen()
 * mutt_window_getxy() to mutt_window_get_coords()