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 | 27a472c | 2019-01-09 21:47:30 +0100 | [diff] [blame] | 8 | void redraw_buf_line_later(buf_T *buf, linenr_T lnum); |
Bram Moolenaar | 29ae377 | 2017-04-30 19:39:39 +0200 | [diff] [blame] | 9 | void redraw_buf_and_status_later(buf_T *buf, int type); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 10 | int redraw_asap(int type); |
Bram Moolenaar | 02e177d | 2017-08-26 23:43:28 +0200 | [diff] [blame] | 11 | void redraw_after_callback(int call_update_screen); |
Bram Moolenaar | ae12f4b | 2019-01-09 20:51:04 +0100 | [diff] [blame] | 12 | void redrawWinline(win_T *wp, linenr_T lnum); |
Bram Moolenaar | 68a4b04 | 2019-05-29 22:28:29 +0200 | [diff] [blame^] | 13 | void after_updating_screen(int may_resize_shell); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 14 | void update_curbuf(int type); |
Bram Moolenaar | 072412e | 2017-09-13 22:11:35 +0200 | [diff] [blame] | 15 | int update_screen(int type_arg); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 16 | int conceal_cursor_line(win_T *wp); |
Bram Moolenaar | b946482 | 2018-05-10 15:09:49 +0200 | [diff] [blame] | 17 | void conceal_check_cursor_line(void); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 18 | void update_debug_sign(buf_T *buf, linenr_T lnum); |
| 19 | void updateWindow(win_T *wp); |
Bram Moolenaar | cb8bbe9 | 2017-07-16 13:48:22 +0200 | [diff] [blame] | 20 | int screen_get_current_line_off(void); |
Bram Moolenaar | 68a4b04 | 2019-05-29 22:28:29 +0200 | [diff] [blame^] | 21 | void screen_line(int row, int coloff, int endcol, int clear_width, int flags); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 22 | void rl_mirror(char_u *str); |
| 23 | void status_redraw_all(void); |
| 24 | void status_redraw_curbuf(void); |
| 25 | void redraw_statuslines(void); |
| 26 | void win_redraw_last_status(frame_T *frp); |
| 27 | void win_redr_status_matches(expand_T *xp, int num_matches, char_u **matches, int match, int showtail); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 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); |
Bram Moolenaar | 987723e | 2018-03-06 11:43:04 +0100 | [diff] [blame] | 47 | void setcursor_mayforce(int force); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 48 | 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] | 49 | int win_del_lines(win_T *wp, int row, int line_count, int invalid, int mayclear, int clear_attr); |
| 50 | 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] | 51 | int screen_del_lines(int off, int row, int line_count, int end, int force, int clear_attr, win_T *wp); |
Bram Moolenaar | cb574f4 | 2019-01-25 22:29:57 +0100 | [diff] [blame] | 52 | int skip_showmode(void); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 53 | int showmode(void); |
| 54 | void unshowmode(int force); |
Bram Moolenaar | fd773e9 | 2016-04-02 19:39:16 +0200 | [diff] [blame] | 55 | void clearmode(void); |
Bram Moolenaar | e12bab3 | 2019-01-08 22:02:56 +0100 | [diff] [blame] | 56 | void draw_tabline(void); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 57 | void get_trans_bufname(buf_T *buf); |
| 58 | int redrawing(void); |
| 59 | int messaging(void); |
| 60 | void showruler(int always); |
| 61 | int number_width(win_T *wp); |
| 62 | int screen_screencol(void); |
| 63 | int screen_screenrow(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 64 | /* vim: set ft=c : */ |