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