blob: 552453ad8dc35d8208e459005e63fa0c36954d34 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* screen.c */
Bram Moolenaaref269542016-01-19 13:22:12 +01002void redraw_later(int type);
3void redraw_win_later(win_T *wp, int type);
4void redraw_later_clear(void);
5void redraw_all_later(int type);
6void redraw_curbuf_later(int type);
7void redraw_buf_later(buf_T *buf, int type);
Bram Moolenaar29ae3772017-04-30 19:39:39 +02008void redraw_buf_and_status_later(buf_T *buf, int type);
Bram Moolenaaref269542016-01-19 13:22:12 +01009int redraw_asap(int type);
Bram Moolenaar02e177d2017-08-26 23:43:28 +020010void redraw_after_callback(int call_update_screen);
Bram Moolenaar90a99792018-09-12 21:52:18 +020011void redrawWinline(win_T *wp, linenr_T lnum, int invalid);
Bram Moolenaar0cb8ac72018-05-11 22:01:51 +020012void reset_updating_screen(int may_resize_shell);
Bram Moolenaaref269542016-01-19 13:22:12 +010013void update_curbuf(int type);
Bram Moolenaar072412e2017-09-13 22:11:35 +020014int update_screen(int type_arg);
Bram Moolenaaref269542016-01-19 13:22:12 +010015int conceal_cursor_line(win_T *wp);
Bram Moolenaarb9464822018-05-10 15:09:49 +020016void conceal_check_cursor_line(void);
Bram Moolenaaref269542016-01-19 13:22:12 +010017void update_single_line(win_T *wp, linenr_T lnum);
18void update_debug_sign(buf_T *buf, linenr_T lnum);
19void updateWindow(win_T *wp);
Bram Moolenaarcb8bbe92017-07-16 13:48:22 +020020int screen_get_current_line_off(void);
21void screen_line(int row, int coloff, int endcol, int clear_width, int rlflag);
Bram Moolenaaref269542016-01-19 13:22:12 +010022void rl_mirror(char_u *str);
23void status_redraw_all(void);
24void status_redraw_curbuf(void);
25void redraw_statuslines(void);
26void win_redraw_last_status(frame_T *frp);
27void win_redr_status_matches(expand_T *xp, int num_matches, char_u **matches, int match, int showtail);
Bram Moolenaaref269542016-01-19 13:22:12 +010028int stl_connected(win_T *wp);
Bram Moolenaar73ac0c42016-07-24 16:17:59 +020029int get_keymap_str(win_T *wp, char_u *fmt, char_u *buf, int len);
Bram Moolenaaref269542016-01-19 13:22:12 +010030void screen_putchar(int c, int row, int col, int attr);
31void screen_getbytes(int row, int col, char_u *bytes, int *attrp);
32void screen_puts(char_u *text, int row, int col, int attr);
33void screen_puts_len(char_u *text, int textlen, int row, int col, int attr);
34void screen_stop_highlight(void);
35void reset_cterm_colors(void);
36void screen_draw_rectangle(int row, int col, int height, int width, int invert);
37void screen_fill(int start_row, int end_row, int start_col, int end_col, int c1, int c2, int attr);
38void check_for_delay(int check_msg_scroll);
39int screen_valid(int doclear);
40void screenalloc(int doclear);
41void free_screenlines(void);
42void screenclear(void);
43int can_clear(char_u *p);
44void screen_start(void);
45void windgoto(int row, int col);
46void setcursor(void);
Bram Moolenaar987723e2018-03-06 11:43:04 +010047void setcursor_mayforce(int force);
Bram Moolenaaref269542016-01-19 13:22:12 +010048int win_ins_lines(win_T *wp, int row, int line_count, int invalid, int mayclear);
Bram Moolenaarcfce7172017-08-17 20:31:48 +020049int win_del_lines(win_T *wp, int row, int line_count, int invalid, int mayclear, int clear_attr);
50int screen_ins_lines(int off, int row, int line_count, int end, int clear_attr, win_T *wp);
Bram Moolenaar02e177d2017-08-26 23:43:28 +020051int screen_del_lines(int off, int row, int line_count, int end, int force, int clear_attr, win_T *wp);
Bram Moolenaaref269542016-01-19 13:22:12 +010052int showmode(void);
53void unshowmode(int force);
Bram Moolenaarfd773e92016-04-02 19:39:16 +020054void clearmode(void);
Bram Moolenaare12bab32019-01-08 22:02:56 +010055void draw_tabline(void);
Bram Moolenaaref269542016-01-19 13:22:12 +010056void get_trans_bufname(buf_T *buf);
57int redrawing(void);
58int messaging(void);
59void showruler(int always);
60int number_width(win_T *wp);
61int screen_screencol(void);
62int screen_screenrow(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000063/* vim: set ft=c : */