100 |
7u83 |
1 |
/* menu.c */
|
|
|
2 |
void ex_menu __ARGS((exarg_T *eap));
|
|
|
3 |
char_u *set_context_in_menu_cmd __ARGS((expand_T *xp, char_u *cmd, char_u *arg, int forceit));
|
|
|
4 |
char_u *get_menu_name __ARGS((expand_T *xp, int idx));
|
|
|
5 |
char_u *get_menu_names __ARGS((expand_T *xp, int idx));
|
|
|
6 |
char_u *menu_name_skip __ARGS((char_u *name));
|
|
|
7 |
int get_menu_index __ARGS((vimmenu_T *menu, int state));
|
|
|
8 |
int menu_is_menubar __ARGS((char_u *name));
|
|
|
9 |
int menu_is_popup __ARGS((char_u *name));
|
|
|
10 |
int menu_is_child_of_popup __ARGS((vimmenu_T *menu));
|
|
|
11 |
int menu_is_toolbar __ARGS((char_u *name));
|
|
|
12 |
int menu_is_separator __ARGS((char_u *name));
|
|
|
13 |
int check_menu_pointer __ARGS((vimmenu_T *root, vimmenu_T *menu_to_check));
|
|
|
14 |
void gui_create_initial_menus __ARGS((vimmenu_T *menu));
|
|
|
15 |
void gui_update_menus __ARGS((int modes));
|
|
|
16 |
int gui_is_menu_shortcut __ARGS((int key));
|
|
|
17 |
void gui_show_popupmenu __ARGS((void));
|
|
|
18 |
void gui_mch_toggle_tearoffs __ARGS((int enable));
|
|
|
19 |
void ex_emenu __ARGS((exarg_T *eap));
|
|
|
20 |
vimmenu_T *gui_find_menu __ARGS((char_u *path_name));
|
|
|
21 |
void ex_menutranslate __ARGS((exarg_T *eap));
|
|
|
22 |
/* vim: set ft=c : */
|