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 | 02e177d | 2017-08-26 23:43:28 +0200 | [diff] [blame] | 10 | void redraw_after_callback(int call_update_screen); |
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 | 072412e | 2017-09-13 22:11:35 +0200 | [diff] [blame^] | 13 | int 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); |
Bram Moolenaar | cb8bbe9 | 2017-07-16 13:48:22 +0200 | [diff] [blame] | 19 | int screen_get_current_line_off(void); |
| 20 | void screen_line(int row, int coloff, int endcol, int clear_width, int rlflag); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 21 | void rl_mirror(char_u *str); |
| 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 win_redr_status_matches(expand_T *xp, int num_matches, char_u **matches, int match, int showtail); |
| 27 | void win_redr_status(win_T *wp); |
| 28 | int stl_connected(win_T *wp); |
Bram Moolenaar | 73ac0c4 | 2016-07-24 16:17:59 +0200 | [diff] [blame] | 29 | 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] | 30 | void screen_putchar(int c, int row, int col, int attr); |
| 31 | void screen_getbytes(int row, int col, char_u *bytes, int *attrp); |
| 32 | void screen_puts(char_u *text, int row, int col, int attr); |
| 33 | void screen_puts_len(char_u *text, int textlen, int row, int col, int attr); |
| 34 | void screen_stop_highlight(void); |
| 35 | void reset_cterm_colors(void); |
| 36 | void screen_draw_rectangle(int row, int col, int height, int width, int invert); |
| 37 | void screen_fill(int start_row, int end_row, int start_col, int end_col, int c1, int c2, int attr); |
| 38 | void check_for_delay(int check_msg_scroll); |
| 39 | int screen_valid(int doclear); |
| 40 | void screenalloc(int doclear); |
| 41 | void free_screenlines(void); |
| 42 | void screenclear(void); |
| 43 | int can_clear(char_u *p); |
| 44 | void screen_start(void); |
| 45 | void windgoto(int row, int col); |
| 46 | void setcursor(void); |
| 47 | int win_ins_lines(win_T *wp, int row, int line_count, int invalid, int mayclear); |
Bram Moolenaar | cfce717 | 2017-08-17 20:31:48 +0200 | [diff] [blame] | 48 | int win_del_lines(win_T *wp, int row, int line_count, int invalid, int mayclear, int clear_attr); |
| 49 | int screen_ins_lines(int off, int row, int line_count, int end, int clear_attr, win_T *wp); |
Bram Moolenaar | 02e177d | 2017-08-26 23:43:28 +0200 | [diff] [blame] | 50 | int screen_del_lines(int off, int row, int line_count, int end, int force, int clear_attr, win_T *wp); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 51 | int showmode(void); |
| 52 | void unshowmode(int force); |
Bram Moolenaar | fd773e9 | 2016-04-02 19:39:16 +0200 | [diff] [blame] | 53 | void clearmode(void); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 54 | void get_trans_bufname(buf_T *buf); |
| 55 | int redrawing(void); |
| 56 | int messaging(void); |
| 57 | void showruler(int always); |
| 58 | int number_width(win_T *wp); |
| 59 | int screen_screencol(void); |
| 60 | int screen_screenrow(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 61 | /* vim: set ft=c : */ |