Mercurial > vim
annotate src/proto/ui.pro @ 5782:5ab2946f7ce5 v7.4.235
updated for version 7.4.235
Problem: It is not easy to get the full path of a command.
Solution: Add the exepath() function.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 01 Apr 2014 21:00:59 +0200 |
parents | fb533fb6c015 |
children | 7766142fc7d3 |
rev | line source |
---|---|
7 | 1 /* ui.c */ |
1123 | 2 void ui_write __ARGS((char_u *s, int len)); |
3 void ui_inchar_undo __ARGS((char_u *s, int len)); | |
4 int ui_inchar __ARGS((char_u *buf, int maxlen, long wtime, int tb_change_cnt)); | |
5 int ui_char_avail __ARGS((void)); | |
6 void ui_delay __ARGS((long msec, int ignoreinput)); | |
7 void ui_suspend __ARGS((void)); | |
8 void suspend_shell __ARGS((void)); | |
9 int ui_get_shellsize __ARGS((void)); | |
10 void ui_set_shellsize __ARGS((int mustset)); | |
11 void ui_new_shellsize __ARGS((void)); | |
12 void ui_breakcheck __ARGS((void)); | |
13 void clip_init __ARGS((int can_use)); | |
3674 | 14 void clip_update_selection __ARGS((VimClipboard *clip)); |
1123 | 15 void clip_own_selection __ARGS((VimClipboard *cbd)); |
16 void clip_lose_selection __ARGS((VimClipboard *cbd)); | |
17 void clip_auto_select __ARGS((void)); | |
3674 | 18 int clip_isautosel_star __ARGS((void)); |
19 int clip_isautosel_plus __ARGS((void)); | |
1123 | 20 void clip_modeless __ARGS((int button, int is_click, int is_drag)); |
21 void clip_start_selection __ARGS((int col, int row, int repeated_click)); | |
22 void clip_process_selection __ARGS((int button, int col, int row, int_u repeated_click)); | |
23 void clip_may_redraw_selection __ARGS((int row, int col, int len)); | |
3674 | 24 void clip_clear_selection __ARGS((VimClipboard *cbd)); |
1123 | 25 void clip_may_clear_selection __ARGS((int row1, int row2)); |
26 void clip_scroll_selection __ARGS((int rows)); | |
27 void clip_copy_modeless_selection __ARGS((int both)); | |
28 int clip_gen_own_selection __ARGS((VimClipboard *cbd)); | |
29 void clip_gen_lose_selection __ARGS((VimClipboard *cbd)); | |
30 void clip_gen_set_selection __ARGS((VimClipboard *cbd)); | |
31 void clip_gen_request_selection __ARGS((VimClipboard *cbd)); | |
4209 | 32 int clip_gen_owner_exists __ARGS((VimClipboard *cbd)); |
1123 | 33 int vim_is_input_buf_full __ARGS((void)); |
34 int vim_is_input_buf_empty __ARGS((void)); | |
35 int vim_free_in_input_buf __ARGS((void)); | |
36 int vim_used_in_input_buf __ARGS((void)); | |
37 char_u *get_input_buf __ARGS((void)); | |
38 void set_input_buf __ARGS((char_u *p)); | |
39 void add_to_input_buf __ARGS((char_u *s, int len)); | |
40 void add_to_input_buf_csi __ARGS((char_u *str, int len)); | |
41 void push_raw_key __ARGS((char_u *s, int len)); | |
42 void trash_input_buf __ARGS((void)); | |
43 int read_from_input_buf __ARGS((char_u *buf, long maxlen)); | |
44 void fill_input_buf __ARGS((int exit_on_error)); | |
45 void read_error_exit __ARGS((void)); | |
46 void ui_cursor_shape __ARGS((void)); | |
47 int check_col __ARGS((int col)); | |
48 int check_row __ARGS((int row)); | |
49 void open_app_context __ARGS((void)); | |
50 void x11_setup_atoms __ARGS((Display *dpy)); | |
2340
99c1eba60b2d
Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents:
2270
diff
changeset
|
51 void x11_setup_selection __ARGS((Widget w)); |
1123 | 52 void clip_x11_request_selection __ARGS((Widget myShell, Display *dpy, VimClipboard *cbd)); |
53 void clip_x11_lose_selection __ARGS((Widget myShell, VimClipboard *cbd)); | |
54 int clip_x11_own_selection __ARGS((Widget myShell, VimClipboard *cbd)); | |
55 void clip_x11_set_selection __ARGS((VimClipboard *cbd)); | |
4209 | 56 int clip_x11_owner_exists __ARGS((VimClipboard *cbd)); |
2200
99ba9a30755a
Various smaller changes. Updated proto files. Updated dependencies.
Bram Moolenaar <bram@vim.org>
parents:
1924
diff
changeset
|
57 void yank_cut_buffer0 __ARGS((Display *dpy, VimClipboard *cbd)); |
1123 | 58 int jump_to_mouse __ARGS((int flags, int *inclusive, int which_button)); |
59 int mouse_comp_pos __ARGS((win_T *win, int *rowp, int *colp, linenr_T *lnump)); | |
60 win_T *mouse_find_win __ARGS((int *rowp, int *colp)); | |
61 int get_fpos_of_mouse __ARGS((pos_T *mpos)); | |
62 int vcol2col __ARGS((win_T *wp, linenr_T lnum, int vcol)); | |
63 void ui_focus_change __ARGS((int in_focus)); | |
64 void im_save_status __ARGS((long *psave)); | |
7 | 65 /* vim: set ft=c : */ |