blob: 2e5f2e0bec91cbaa2903ea06f49786f78b5617bc [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 Moolenaar27a472c2019-01-09 21:47:30 +01008void redraw_buf_line_later(buf_T *buf, linenr_T lnum);
Bram Moolenaar29ae3772017-04-30 19:39:39 +02009void redraw_buf_and_status_later(buf_T *buf, int type);
Bram Moolenaaref269542016-01-19 13:22:12 +010010int redraw_asap(int type);
Bram Moolenaar02e177d2017-08-26 23:43:28 +020011void redraw_after_callback(int call_update_screen);
Bram Moolenaarae12f4b2019-01-09 20:51:04 +010012void redrawWinline(win_T *wp, linenr_T lnum);
Bram Moolenaar0cb8ac72018-05-11 22:01:51 +020013void reset_updating_screen(int may_resize_shell);
Bram Moolenaaref269542016-01-19 13:22:12 +010014void update_curbuf(int type);
Bram Moolenaar072412e2017-09-13 22:11:35 +020015int update_screen(int type_arg);
Bram Moolenaaref269542016-01-19 13:22:12 +010016int conceal_cursor_line(win_T *wp);
Bram Moolenaarb9464822018-05-10 15:09:49 +020017void conceal_check_cursor_line(void);
Bram Moolenaaref269542016-01-19 13:22:12 +010018void update_single_line(win_T *wp, linenr_T lnum);
19void update_debug_sign(buf_T *buf, linenr_T lnum);
20void updateWindow(win_T *wp);
Bram Moolenaarcb8bbe92017-07-16 13:48:22 +020021int screen_get_current_line_off(void);
22void screen_line(int row, int coloff, int endcol, int clear_width, int rlflag);
Bram Moolenaaref269542016-01-19 13:22:12 +010023void rl_mirror(char_u *str);
24void status_redraw_all(void);
25void status_redraw_curbuf(void);
26void redraw_statuslines(void);
27void win_redraw_last_status(frame_T *frp);
28void win_redr_status_matches(expand_T *xp, int num_matches, char_u **matches, int match, int showtail);
Bram Moolenaaref269542016-01-19 13:22:12 +010029int stl_connected(win_T *wp);
Bram Moolenaar73ac0c42016-07-24 16:17:59 +020030int get_keymap_str(win_T *wp, char_u *fmt, char_u *buf, int len);
Bram Moolenaaref269542016-01-19 13:22:12 +010031void screen_putchar(int c, int row, int col, int attr);
32void screen_getbytes(int row, int col, char_u *bytes, int *attrp);
33void screen_puts(char_u *text, int row, int col, int attr);
34void screen_puts_len(char_u *text, int textlen, int row, int col, int attr);
35void screen_stop_highlight(void);
36void reset_cterm_colors(void);
37void screen_draw_rectangle(int row, int col, int height, int width, int invert);
38void screen_fill(int start_row, int end_row, int start_col, int end_col, int c1, int c2, int attr);
39void check_for_delay(int check_msg_scroll);
40int screen_valid(int doclear);
41void screenalloc(int doclear);
42void free_screenlines(void);
43void screenclear(void);
44int can_clear(char_u *p);
45void screen_start(void);
46void windgoto(int row, int col);
47void setcursor(void);
Bram Moolenaar987723e2018-03-06 11:43:04 +010048void setcursor_mayforce(int force);
Bram Moolenaaref269542016-01-19 13:22:12 +010049int win_ins_lines(win_T *wp, int row, int line_count, int invalid, int mayclear);
Bram Moolenaarcfce7172017-08-17 20:31:48 +020050int win_del_lines(win_T *wp, int row, int line_count, int invalid, int mayclear, int clear_attr);
51int 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 +020052int 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 +010053int showmode(void);
54void unshowmode(int force);
Bram Moolenaarfd773e92016-04-02 19:39:16 +020055void clearmode(void);
Bram Moolenaare12bab32019-01-08 22:02:56 +010056void draw_tabline(void);
Bram Moolenaaref269542016-01-19 13:22:12 +010057void get_trans_bufname(buf_T *buf);
58int redrawing(void);
59int messaging(void);
60void showruler(int always);
61int number_width(win_T *wp);
62int screen_screencol(void);
63int screen_screenrow(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000064/* vim: set ft=c : */