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); |
Bakudankun | 6555500 | 2021-11-17 20:40:16 +0000 | [diff] [blame] | 4 | int pum_under_menu(int row, int col, int only_redrawing); |
Bram Moolenaar | 30e8e73 | 2019-09-27 13:08:36 +0200 | [diff] [blame] | 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); |
Bram Moolenaar | e0c03c8 | 2021-04-23 21:01:34 +0200 | [diff] [blame] | 10 | int pum_redraw_in_same_position(void); |
Bram Moolenaar | 30e8e73 | 2019-09-27 13:08:36 +0200 | [diff] [blame] | 11 | void pum_may_redraw(void); |
| 12 | int pum_get_height(void); |
| 13 | void pum_set_event_info(dict_T *dict); |
| 14 | int split_message(char_u *mesg, pumitem_T **array); |
| 15 | void ui_remove_balloon(void); |
| 16 | void ui_post_balloon(char_u *mesg, list_T *list); |
| 17 | void ui_may_remove_balloon(void); |
| 18 | void pum_show_popupmenu(vimmenu_T *menu); |
| 19 | void pum_make_popup(char_u *path_name, int use_mouse_pos); |
| 20 | /* vim: set ft=c : */ |