Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 1 | /* drawscreen.c */ |
| 2 | int update_screen(int type_arg); |
Bram Moolenaar | 49c51b8 | 2021-04-01 16:16:18 +0200 | [diff] [blame] | 3 | int statusline_row(win_T *wp); |
Luuk van Baal | ba936f6 | 2022-12-15 13:15:39 +0000 | [diff] [blame] | 4 | void win_redr_status(win_T *wp, int ignore_pum); |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 5 | void showruler(int always); |
| 6 | void win_redr_ruler(win_T *wp, int always, int ignore_pum); |
| 7 | void after_updating_screen(int may_resize_shell); |
| 8 | void update_curbuf(int type); |
| 9 | void update_debug_sign(buf_T *buf, linenr_T lnum); |
| 10 | void updateWindow(win_T *wp); |
| 11 | int redraw_asap(int type); |
Bram Moolenaar | e505071 | 2021-12-09 10:51:05 +0000 | [diff] [blame] | 12 | void redraw_after_callback(int call_update_screen, int do_message); |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 13 | void redraw_later(int type); |
| 14 | void redraw_win_later(win_T *wp, int type); |
| 15 | void redraw_later_clear(void); |
| 16 | void redraw_all_later(int type); |
Bram Moolenaar | 471c0fa | 2022-08-22 15:19:16 +0100 | [diff] [blame] | 17 | void set_must_redraw(int type); |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 18 | void redraw_curbuf_later(int type); |
| 19 | void redraw_buf_later(buf_T *buf, int type); |
| 20 | void redraw_buf_line_later(buf_T *buf, linenr_T lnum); |
| 21 | void redraw_buf_and_status_later(buf_T *buf, int type); |
| 22 | void status_redraw_all(void); |
| 23 | void status_redraw_curbuf(void); |
| 24 | void redraw_statuslines(void); |
| 25 | void win_redraw_last_status(frame_T *frp); |
| 26 | void redrawWinline(win_T *wp, linenr_T lnum); |
| 27 | /* vim: set ft=c : */ |