xref: /vim-8.2.3635/src/proto/screen.pro (revision ea042677)
1/* screen.c */
2int conceal_cursor_line(win_T *wp);
3void conceal_check_cursor_line(int was_concealed);
4int get_wcr_attr(win_T *wp);
5void win_draw_end(win_T *wp, int c1, int c2, int draw_margin, int row, int endrow, hlf_T hl);
6int compute_foldcolumn(win_T *wp, int col);
7size_t fill_foldcolumn(char_u *p, win_T *wp, int closed, linenr_T lnum);
8int screen_get_current_line_off(void);
9void reset_screen_attr(void);
10void screen_line(int row, int coloff, int endcol, int clear_width, int flags);
11void rl_mirror(char_u *str);
12void draw_vsep_win(win_T *wp, int row);
13void win_redr_status_matches(expand_T *xp, int num_matches, char_u **matches, int match, int showtail);
14int stl_connected(win_T *wp);
15int get_keymap_str(win_T *wp, char_u *fmt, char_u *buf, int len);
16void win_redr_custom(win_T *wp, int draw_ruler);
17void screen_putchar(int c, int row, int col, int attr);
18void screen_getbytes(int row, int col, char_u *bytes, int *attrp);
19void screen_puts(char_u *text, int row, int col, int attr);
20void screen_puts_len(char_u *text, int textlen, int row, int col, int attr);
21void start_search_hl(void);
22void end_search_hl(void);
23void screen_stop_highlight(void);
24void reset_cterm_colors(void);
25void screen_char(unsigned off, int row, int col);
26void screen_draw_rectangle(int row, int col, int height, int width, int invert);
27void space_to_screenline(int off, int attr);
28void screen_fill(int start_row, int end_row, int start_col, int end_col, int c1, int c2, int attr);
29void check_for_delay(int check_msg_scroll);
30int screen_valid(int doclear);
31void screenalloc(int doclear);
32void free_screenlines(void);
33void screenclear(void);
34void line_was_clobbered(int screen_lnum);
35int can_clear(char_u *p);
36void screen_start(void);
37void windgoto(int row, int col);
38void setcursor(void);
39void setcursor_mayforce(int force);
40int win_ins_lines(win_T *wp, int row, int line_count, int invalid, int mayclear);
41int win_del_lines(win_T *wp, int row, int line_count, int invalid, int mayclear, int clear_attr);
42int screen_ins_lines(int off, int row, int line_count, int end, int clear_attr, win_T *wp);
43int screen_del_lines(int off, int row, int line_count, int end, int force, int clear_attr, win_T *wp);
44int skip_showmode(void);
45int showmode(void);
46void unshowmode(int force);
47void clearmode(void);
48void draw_tabline(void);
49void get_trans_bufname(buf_T *buf);
50int fillchar_status(int *attr, win_T *wp);
51int fillchar_vsep(int *attr);
52int redrawing(void);
53int messaging(void);
54void comp_col(void);
55int number_width(win_T *wp);
56int screen_screencol(void);
57int screen_screenrow(void);
58char *set_chars_option(win_T *wp, char_u **varp);
59/* vim: set ft=c : */
60