blob: 7a41fd4319eb9d91f232b0bb399314d67a300799 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* screen.c */
2void redraw_later __ARGS((int type));
3void redraw_win_later __ARGS((win_T *wp, int type));
4void redraw_later_clear __ARGS((void));
5void redraw_all_later __ARGS((int type));
6void redraw_curbuf_later __ARGS((int type));
7void redraw_buf_later __ARGS((buf_T *buf, int type));
8void redrawWinline __ARGS((linenr_T lnum, int invalid));
9void update_curbuf __ARGS((int type));
10void update_screen __ARGS((int type));
11void update_debug_sign __ARGS((buf_T *buf, linenr_T lnum));
12void updateWindow __ARGS((win_T *wp));
13void status_redraw_all __ARGS((void));
14void status_redraw_curbuf __ARGS((void));
15void redraw_statuslines __ARGS((void));
16void win_redraw_last_status __ARGS((frame_T *frp));
17void win_redr_status_matches __ARGS((expand_T *xp, int num_matches, char_u **matches, int match, int showtail));
18void win_redr_status __ARGS((win_T *wp));
19int stl_connected __ARGS((win_T *wp));
20int get_keymap_str __ARGS((win_T *wp, char_u *buf, int len));
21void screen_putchar __ARGS((int c, int row, int col, int attr));
22void screen_getbytes __ARGS((int row, int col, char_u *bytes, int *attrp));
23void screen_puts __ARGS((char_u *text, int row, int col, int attr));
24void screen_puts_len __ARGS((char_u *text, int len, int row, int col, int attr));
25void screen_stop_highlight __ARGS((void));
26void reset_cterm_colors __ARGS((void));
27void screen_draw_rectangle __ARGS((int row, int col, int height, int width, int invert));
28void screen_fill __ARGS((int start_row, int end_row, int start_col, int end_col, int c1, int c2, int attr));
29void check_for_delay __ARGS((int check_msg_scroll));
30int screen_valid __ARGS((int clear));
31void screenalloc __ARGS((int clear));
32void screenclear __ARGS((void));
33int can_clear __ARGS((char_u *p));
34void screen_start __ARGS((void));
35void screen_down __ARGS((void));
36void windgoto __ARGS((int row, int col));
37void setcursor __ARGS((void));
38int win_ins_lines __ARGS((win_T *wp, int row, int line_count, int invalid, int mayclear));
39int win_del_lines __ARGS((win_T *wp, int row, int line_count, int invalid, int mayclear));
40int screen_del_lines __ARGS((int off, int row, int line_count, int end, int force, win_T *wp));
41int showmode __ARGS((void));
42void unshowmode __ARGS((int force));
43int redrawing __ARGS((void));
44int messaging __ARGS((void));
45void showruler __ARGS((int always));
46/* vim: set ft=c : */