Bram Moolenaar | 38f1eea | 2019-09-27 14:19:09 +0200 | [diff] [blame] | 1 | /* popupmenu.c */ |
Bram Moolenaar | 30e8e73 | 2019-09-27 13:08:36 +0200 | [diff] [blame] | 2 | void pum_display(pumitem_T *array, int size, int selected); |
| 3 | void pum_call_update_screen(void); |
| 4 | int pum_under_menu(int row, int col); |
| 5 | void pum_redraw(void); |
Bram Moolenaar | dca7abe | 2019-10-20 18:17:57 +0200 | [diff] [blame] | 6 | void pum_position_info_popup(win_T *wp); |
Bram Moolenaar | 30e8e73 | 2019-09-27 13:08:36 +0200 | [diff] [blame] | 7 | void pum_undisplay(void); |
| 8 | void pum_clear(void); |
| 9 | int pum_visible(void); |
| 10 | void pum_may_redraw(void); |
| 11 | int pum_get_height(void); |
| 12 | void pum_set_event_info(dict_T *dict); |
| 13 | int split_message(char_u *mesg, pumitem_T **array); |
| 14 | void ui_remove_balloon(void); |
| 15 | void ui_post_balloon(char_u *mesg, list_T *list); |
| 16 | void ui_may_remove_balloon(void); |
| 17 | void pum_show_popupmenu(vimmenu_T *menu); |
| 18 | void pum_make_popup(char_u *path_name, int use_mouse_pos); |
| 19 | /* vim: set ft=c : */ |