Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* ui.c */ |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 2 | void ui_write(char_u *s, int len); |
| 3 | void ui_inchar_undo(char_u *s, int len); |
| 4 | int ui_inchar(char_u *buf, int maxlen, long wtime, int tb_change_cnt); |
| 5 | int ui_char_avail(void); |
| 6 | void ui_delay(long msec, int ignoreinput); |
| 7 | void ui_suspend(void); |
| 8 | void suspend_shell(void); |
| 9 | int ui_get_shellsize(void); |
| 10 | void ui_set_shellsize(int mustset); |
| 11 | void ui_new_shellsize(void); |
| 12 | void ui_breakcheck(void); |
| 13 | void clip_init(int can_use); |
| 14 | void clip_update_selection(VimClipboard *clip); |
| 15 | void clip_own_selection(VimClipboard *cbd); |
| 16 | void clip_lose_selection(VimClipboard *cbd); |
| 17 | void start_global_changes(void); |
| 18 | void end_global_changes(void); |
| 19 | void clip_auto_select(void); |
| 20 | int clip_isautosel_star(void); |
| 21 | int clip_isautosel_plus(void); |
| 22 | void clip_modeless(int button, int is_click, int is_drag); |
| 23 | void clip_start_selection(int col, int row, int repeated_click); |
| 24 | void clip_process_selection(int button, int col, int row, int_u repeated_click); |
| 25 | void clip_may_redraw_selection(int row, int col, int len); |
| 26 | void clip_clear_selection(VimClipboard *cbd); |
| 27 | void clip_may_clear_selection(int row1, int row2); |
| 28 | void clip_scroll_selection(int rows); |
| 29 | void clip_copy_modeless_selection(int both); |
| 30 | int clip_gen_own_selection(VimClipboard *cbd); |
| 31 | void clip_gen_lose_selection(VimClipboard *cbd); |
| 32 | void clip_gen_set_selection(VimClipboard *cbd); |
| 33 | void clip_gen_request_selection(VimClipboard *cbd); |
| 34 | int clip_gen_owner_exists(VimClipboard *cbd); |
| 35 | int vim_is_input_buf_full(void); |
| 36 | int vim_is_input_buf_empty(void); |
| 37 | int vim_free_in_input_buf(void); |
| 38 | int vim_used_in_input_buf(void); |
| 39 | char_u *get_input_buf(void); |
| 40 | void set_input_buf(char_u *p); |
| 41 | void add_to_input_buf(char_u *s, int len); |
| 42 | void add_to_input_buf_csi(char_u *str, int len); |
| 43 | void push_raw_key(char_u *s, int len); |
| 44 | void trash_input_buf(void); |
| 45 | int read_from_input_buf(char_u *buf, long maxlen); |
| 46 | void fill_input_buf(int exit_on_error); |
| 47 | void read_error_exit(void); |
| 48 | void ui_cursor_shape(void); |
| 49 | int check_col(int col); |
| 50 | int check_row(int row); |
| 51 | void open_app_context(void); |
| 52 | void x11_setup_atoms(Display *dpy); |
| 53 | void x11_setup_selection(Widget w); |
| 54 | void clip_x11_request_selection(Widget myShell, Display *dpy, VimClipboard *cbd); |
| 55 | void clip_x11_lose_selection(Widget myShell, VimClipboard *cbd); |
| 56 | int clip_x11_own_selection(Widget myShell, VimClipboard *cbd); |
| 57 | void clip_x11_set_selection(VimClipboard *cbd); |
| 58 | int clip_x11_owner_exists(VimClipboard *cbd); |
| 59 | void yank_cut_buffer0(Display *dpy, VimClipboard *cbd); |
| 60 | int jump_to_mouse(int flags, int *inclusive, int which_button); |
| 61 | int mouse_comp_pos(win_T *win, int *rowp, int *colp, linenr_T *lnump); |
| 62 | win_T *mouse_find_win(int *rowp, int *colp); |
| 63 | int get_fpos_of_mouse(pos_T *mpos); |
| 64 | int vcol2col(win_T *wp, linenr_T lnum, int vcol); |
| 65 | void ui_focus_change(int in_focus); |
| 66 | void im_save_status(long *psave); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 67 | /* vim: set ft=c : */ |