Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* screen.c */ |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 2 | void redraw_later(int type); |
| 3 | void redraw_win_later(win_T *wp, int type); |
| 4 | void redraw_later_clear(void); |
| 5 | void redraw_all_later(int type); |
| 6 | void redraw_curbuf_later(int type); |
| 7 | void redraw_buf_later(buf_T *buf, int type); |
Bram Moolenaar | 29ae377 | 2017-04-30 19:39:39 +0200 | [diff] [blame^] | 8 | void redraw_buf_and_status_later(buf_T *buf, int type); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 9 | int redraw_asap(int type); |
Bram Moolenaar | 975b527 | 2016-03-15 23:10:59 +0100 | [diff] [blame] | 10 | void redraw_after_callback(void); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 11 | void redrawWinline(linenr_T lnum, int invalid); |
| 12 | void update_curbuf(int type); |
Bram Moolenaar | 29ae377 | 2017-04-30 19:39:39 +0200 | [diff] [blame^] | 13 | void update_screen(int type_arg); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 14 | int conceal_cursor_line(win_T *wp); |
| 15 | void conceal_check_cursur_line(void); |
| 16 | void update_single_line(win_T *wp, linenr_T lnum); |
| 17 | void update_debug_sign(buf_T *buf, linenr_T lnum); |
| 18 | void updateWindow(win_T *wp); |
| 19 | void rl_mirror(char_u *str); |
| 20 | void status_redraw_all(void); |
| 21 | void status_redraw_curbuf(void); |
| 22 | void redraw_statuslines(void); |
| 23 | void win_redraw_last_status(frame_T *frp); |
| 24 | void win_redr_status_matches(expand_T *xp, int num_matches, char_u **matches, int match, int showtail); |
| 25 | void win_redr_status(win_T *wp); |
| 26 | int stl_connected(win_T *wp); |
Bram Moolenaar | 73ac0c4 | 2016-07-24 16:17:59 +0200 | [diff] [blame] | 27 | int get_keymap_str(win_T *wp, char_u *fmt, char_u *buf, int len); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 28 | void screen_putchar(int c, int row, int col, int attr); |
| 29 | void screen_getbytes(int row, int col, char_u *bytes, int *attrp); |
| 30 | void screen_puts(char_u *text, int row, int col, int attr); |
| 31 | void screen_puts_len(char_u *text, int textlen, int row, int col, int attr); |
| 32 | void screen_stop_highlight(void); |
| 33 | void reset_cterm_colors(void); |
| 34 | void screen_draw_rectangle(int row, int col, int height, int width, int invert); |
| 35 | void screen_fill(int start_row, int end_row, int start_col, int end_col, int c1, int c2, int attr); |
| 36 | void check_for_delay(int check_msg_scroll); |
| 37 | int screen_valid(int doclear); |
| 38 | void screenalloc(int doclear); |
| 39 | void free_screenlines(void); |
| 40 | void screenclear(void); |
| 41 | int can_clear(char_u *p); |
| 42 | void screen_start(void); |
| 43 | void windgoto(int row, int col); |
| 44 | void setcursor(void); |
| 45 | int win_ins_lines(win_T *wp, int row, int line_count, int invalid, int mayclear); |
| 46 | int win_del_lines(win_T *wp, int row, int line_count, int invalid, int mayclear); |
| 47 | int screen_ins_lines(int off, int row, int line_count, int end, win_T *wp); |
| 48 | int screen_del_lines(int off, int row, int line_count, int end, int force, win_T *wp); |
| 49 | int showmode(void); |
| 50 | void unshowmode(int force); |
Bram Moolenaar | fd773e9 | 2016-04-02 19:39:16 +0200 | [diff] [blame] | 51 | void clearmode(void); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 52 | void get_trans_bufname(buf_T *buf); |
| 53 | int redrawing(void); |
| 54 | int messaging(void); |
| 55 | void showruler(int always); |
| 56 | int number_width(win_T *wp); |
| 57 | int screen_screencol(void); |
| 58 | int screen_screenrow(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 59 | /* vim: set ft=c : */ |