Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* gui_gtk.c */ |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 2 | void gui_gtk_register_stock_icons(void); |
| 3 | void gui_mch_add_menu(vimmenu_T *menu, int idx); |
| 4 | void gui_mch_add_menu_item(vimmenu_T *menu, int idx); |
| 5 | void gui_mch_set_text_area_pos(int x, int y, int w, int h); |
| 6 | void gui_gtk_set_mnemonics(int enable); |
| 7 | void gui_mch_toggle_tearoffs(int enable); |
| 8 | void gui_mch_menu_set_tip(vimmenu_T *menu); |
| 9 | void gui_mch_destroy_menu(vimmenu_T *menu); |
| 10 | void gui_mch_set_scrollbar_thumb(scrollbar_T *sb, long val, long size, long max); |
| 11 | void gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h); |
Bram Moolenaar | 203ec77 | 2020-07-17 20:43:43 +0200 | [diff] [blame] | 12 | int gui_mch_get_scrollbar_xpadding(void); |
| 13 | int gui_mch_get_scrollbar_ypadding(void); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 14 | void gui_mch_create_scrollbar(scrollbar_T *sb, int orient); |
| 15 | void gui_mch_destroy_scrollbar(scrollbar_T *sb); |
| 16 | char_u *gui_mch_browse(int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter); |
| 17 | char_u *gui_mch_browsedir(char_u *title, char_u *initdir); |
| 18 | int gui_mch_dialog(int type, char_u *title, char_u *message, char_u *buttons, int def_but, char_u *textfield, int ex_cmd); |
| 19 | void gui_mch_show_popupmenu(vimmenu_T *menu); |
| 20 | void gui_make_popup(char_u *path_name, int mouse_pos); |
| 21 | void gui_mch_find_dialog(exarg_T *eap); |
| 22 | void gui_mch_replace_dialog(exarg_T *eap); |
| 23 | void ex_helpfind(exarg_T *eap); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 24 | /* vim: set ft=c : */ |