7
|
1 /* gui_gtk.c */
|
1122
|
2 void gui_gtk_register_stock_icons __ARGS((void));
|
|
3 void gui_mch_add_menu __ARGS((vimmenu_T *menu, int idx));
|
|
4 void gui_mch_add_menu_item __ARGS((vimmenu_T *menu, int idx));
|
|
5 void gui_mch_set_text_area_pos __ARGS((int x, int y, int w, int h));
|
|
6 void gui_gtk_set_mnemonics __ARGS((int enable));
|
|
7 void gui_mch_toggle_tearoffs __ARGS((int enable));
|
|
8 void gui_mch_menu_set_tip __ARGS((vimmenu_T *menu));
|
|
9 void gui_mch_destroy_menu __ARGS((vimmenu_T *menu));
|
|
10 void gui_mch_set_scrollbar_thumb __ARGS((scrollbar_T *sb, long val, long size, long max));
|
|
11 void gui_mch_set_scrollbar_pos __ARGS((scrollbar_T *sb, int x, int y, int w, int h));
|
|
12 void gui_mch_create_scrollbar __ARGS((scrollbar_T *sb, int orient));
|
|
13 void gui_mch_destroy_scrollbar __ARGS((scrollbar_T *sb));
|
|
14 char_u *gui_mch_browse __ARGS((int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter));
|
|
15 char_u *gui_mch_browsedir __ARGS((char_u *title, char_u *initdir));
|
2684
|
16 int gui_mch_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int def_but, char_u *textfield, int ex_cmd));
|
1122
|
17 void gui_mch_show_popupmenu __ARGS((vimmenu_T *menu));
|
|
18 void gui_make_popup __ARGS((char_u *path_name, int mouse_pos));
|
|
19 void gui_mch_find_dialog __ARGS((exarg_T *eap));
|
|
20 void gui_mch_replace_dialog __ARGS((exarg_T *eap));
|
|
21 void ex_helpfind __ARGS((exarg_T *eap));
|
7
|
22 /* vim: set ft=c : */
|