aboutsummaryrefslogtreecommitdiff
path: root/src/ui.h
blob: aed242c262cd3b928a4966d6ae5006659d2facc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef NEOVIM_UI_H
#define NEOVIM_UI_H
/* ui.c */
void ui_write(char_u *s, int len);
int ui_inchar(char_u *buf, int maxlen, long wtime, int tb_change_cnt);
int ui_char_avail(void);
void ui_delay(long msec, int ignoreinput);
void ui_suspend(void);
int ui_get_shellsize(void);
void ui_set_shellsize(int mustset);
void ui_breakcheck(void);
int vim_is_input_buf_full(void);
int vim_is_input_buf_empty(void);
char_u *get_input_buf(void);
void set_input_buf(char_u *p);
void add_to_input_buf(char_u *s, int len);
void add_to_input_buf_csi(char_u *str, int len);
void trash_input_buf(void);
int read_from_input_buf(char_u *buf, long maxlen);
void fill_input_buf(int exit_on_error);
void read_error_exit(void);
void ui_cursor_shape(void);
int check_col(int col);
int check_row(int row);
int jump_to_mouse(int flags, int *inclusive, int which_button);
int mouse_comp_pos(win_T *win, int *rowp, int *colp, linenr_T *lnump);
win_T *mouse_find_win(int *rowp, int *colp);
void im_save_status(long *psave);
#endif /* NEOVIM_UI_H */