diff options
author | ashleyh <gh@ashleyh.eu> | 2014-02-26 22:10:25 +0000 |
---|---|---|
committer | ashleyh <gh@ashleyh.eu> | 2014-02-26 22:10:25 +0000 |
commit | 00ba300d3941d5e9d59ffffcb760eb0f9d1079ef (patch) | |
tree | 2b22d404b040adf2441af3b8369db44b800ac5ab /src/menu.h | |
parent | 14cbd618ec4930878afc6f9073d9ebb9e514fd75 (diff) | |
parent | 314791dca7b80e167165694222dfc0f70dd77e5c (diff) | |
download | rneovim-00ba300d3941d5e9d59ffffcb760eb0f9d1079ef.tar.gz rneovim-00ba300d3941d5e9d59ffffcb760eb0f9d1079ef.tar.bz2 rneovim-00ba300d3941d5e9d59ffffcb760eb0f9d1079ef.zip |
Merge branch 'master' into pr36
Conflicts:
README.md
Diffstat (limited to 'src/menu.h')
-rw-r--r-- | src/menu.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/menu.h b/src/menu.h new file mode 100644 index 0000000000..0d76b523bd --- /dev/null +++ b/src/menu.h @@ -0,0 +1,26 @@ +#ifndef NEOVIM_MENU_H +#define NEOVIM_MENU_H +/* menu.c */ +void ex_menu __ARGS((exarg_T *eap)); +char_u *set_context_in_menu_cmd __ARGS((expand_T *xp, char_u *cmd, char_u *arg, + int forceit)); +char_u *get_menu_name __ARGS((expand_T *xp, int idx)); +char_u *get_menu_names __ARGS((expand_T *xp, int idx)); +char_u *menu_name_skip __ARGS((char_u *name)); +int get_menu_index __ARGS((vimmenu_T *menu, int state)); +int menu_is_menubar __ARGS((char_u *name)); +int menu_is_popup __ARGS((char_u *name)); +int menu_is_child_of_popup __ARGS((vimmenu_T *menu)); +int menu_is_toolbar __ARGS((char_u *name)); +int menu_is_separator __ARGS((char_u *name)); +int check_menu_pointer __ARGS((vimmenu_T *root, vimmenu_T *menu_to_check)); +void gui_create_initial_menus __ARGS((vimmenu_T *menu)); +void gui_update_menus __ARGS((int modes)); +int gui_is_menu_shortcut __ARGS((int key)); +void gui_show_popupmenu __ARGS((void)); +void gui_mch_toggle_tearoffs __ARGS((int enable)); +void ex_emenu __ARGS((exarg_T *eap)); +vimmenu_T *gui_find_menu __ARGS((char_u *path_name)); +void ex_menutranslate __ARGS((exarg_T *eap)); +/* vim: set ft=c : */ +#endif /* NEOVIM_MENU_H */ |