Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* gui_motif.c */ |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 2 | void gui_x11_create_widgets(void); |
| 3 | void gui_x11_destroy_widgets(void); |
| 4 | void gui_mch_set_text_area_pos(int x, int y, int w, int h); |
| 5 | void gui_x11_set_back_color(void); |
| 6 | void manage_centered(Widget dialog_child); |
| 7 | XmFontList gui_motif_create_fontlist(XFontStruct *font); |
| 8 | XmFontList gui_motif_fontset2fontlist(XFontSet *fontset); |
| 9 | void gui_mch_enable_menu(int flag); |
| 10 | void gui_motif_set_mnemonics(int enable); |
| 11 | void gui_mch_add_menu(vimmenu_T *menu, int idx); |
| 12 | void gui_mch_toggle_tearoffs(int enable); |
| 13 | int gui_mch_text_area_extra_height(void); |
| 14 | void gui_mch_compute_menu_height(Widget id); |
| 15 | void gui_mch_add_menu_item(vimmenu_T *menu, int idx); |
| 16 | void gui_motif_update_mousemodel(vimmenu_T *menu); |
| 17 | void gui_mch_new_menu_colors(void); |
| 18 | void gui_mch_new_menu_font(void); |
| 19 | void gui_mch_new_tooltip_font(void); |
| 20 | void gui_mch_new_tooltip_colors(void); |
| 21 | void gui_mch_destroy_menu(vimmenu_T *menu); |
| 22 | void gui_mch_show_popupmenu(vimmenu_T *menu); |
| 23 | void gui_mch_def_colors(void); |
| 24 | void gui_mch_set_scrollbar_thumb(scrollbar_T *sb, long val, long size, long max); |
| 25 | void gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h); |
| 26 | void gui_mch_enable_scrollbar(scrollbar_T *sb, int flag); |
| 27 | void gui_mch_create_scrollbar(scrollbar_T *sb, int orient); |
| 28 | void gui_mch_destroy_scrollbar(scrollbar_T *sb); |
| 29 | void gui_mch_set_scrollbar_colors(scrollbar_T *sb); |
| 30 | Window gui_x11_get_wid(void); |
| 31 | char_u *gui_mch_browse(int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter); |
| 32 | int gui_mch_dialog(int type, char_u *title, char_u *message, char_u *button_names, int dfltbutton, char_u *textfield, int ex_cmd); |
| 33 | void gui_mch_enable_footer(int showit); |
| 34 | void gui_mch_set_footer(char_u *s); |
| 35 | void gui_mch_show_toolbar(int showit); |
| 36 | int gui_mch_compute_toolbar_height(void); |
| 37 | void motif_get_toolbar_colors(Pixel *bgp, Pixel *fgp, Pixel *bsp, Pixel *tsp, Pixel *hsp); |
| 38 | void gui_mch_show_tabline(int showit); |
| 39 | int gui_mch_showing_tabline(void); |
| 40 | void gui_mch_update_tabline(void); |
| 41 | void gui_mch_set_curtab(int nr); |
| 42 | void gui_motif_menu_fontlist(Widget id); |
| 43 | void gui_mch_find_dialog(exarg_T *eap); |
| 44 | void gui_mch_replace_dialog(exarg_T *eap); |
| 45 | void gui_motif_synch_fonts(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 46 | /* vim: set ft=c : */ |