Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* gui_gtk.c */ |
Bram Moolenaar | 313b723 | 2007-05-05 17:56:55 +0000 | [diff] [blame] | 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)); |
Bram Moolenaar | d2c340a | 2011-01-17 20:08:11 +0100 | [diff] [blame] | 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)); |
Bram Moolenaar | 313b723 | 2007-05-05 17:56:55 +0000 | [diff] [blame] | 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)); |
Bram Moolenaar | 313b723 | 2007-05-05 17:56:55 +0000 | [diff] [blame] | 21 | void ex_helpfind __ARGS((exarg_T *eap)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 22 | /* vim: set ft=c : */ |