comparison src/proto/gui_motif.pro @ 819:23f82b5d2814 v7.0c10

updated for version 7.0c10
author vimboss
date Wed, 05 Apr 2006 20:41:53 +0000
parents d8f905020502
children 6675076019ae
comparison
equal deleted inserted replaced
818:1f929f3ca806 819:23f82b5d2814
1 /* gui_motif.c */ 1 /* gui_motif.c */
2 extern void gui_x11_create_widgets __ARGS((void)); 2 void gui_x11_create_widgets __ARGS((void));
3 extern void gui_x11_destroy_widgets __ARGS((void)); 3 void gui_x11_destroy_widgets __ARGS((void));
4 extern void gui_mch_set_text_area_pos __ARGS((int x, int y, int w, int h)); 4 void gui_mch_set_text_area_pos __ARGS((int x, int y, int w, int h));
5 extern void gui_x11_set_back_color __ARGS((void)); 5 void gui_x11_set_back_color __ARGS((void));
6 extern void manage_centered __ARGS((Widget dialog_child)); 6 void manage_centered __ARGS((Widget dialog_child));
7 extern XmFontList gui_motif_create_fontlist __ARGS((XFontStruct *font)); 7 XmFontList gui_motif_create_fontlist __ARGS((XFontStruct *font));
8 extern XmFontList gui_motif_fontset2fontlist __ARGS((XFontSet *fontset)); 8 XmFontList gui_motif_fontset2fontlist __ARGS((XFontSet *fontset));
9 extern void gui_mch_enable_menu __ARGS((int flag)); 9 void gui_mch_enable_menu __ARGS((int flag));
10 extern void gui_motif_set_mnemonics __ARGS((int enable)); 10 void gui_motif_set_mnemonics __ARGS((int enable));
11 extern void gui_mch_add_menu __ARGS((vimmenu_T *menu, int idx)); 11 void gui_mch_add_menu __ARGS((vimmenu_T *menu, int idx));
12 extern void gui_mch_toggle_tearoffs __ARGS((int enable)); 12 void gui_mch_toggle_tearoffs __ARGS((int enable));
13 extern int gui_mch_text_area_extra_height __ARGS((void)); 13 int gui_mch_text_area_extra_height __ARGS((void));
14 extern void gui_mch_compute_menu_height __ARGS((Widget id)); 14 void gui_mch_compute_menu_height __ARGS((Widget id));
15 extern void gui_mch_add_menu_item __ARGS((vimmenu_T *menu, int idx)); 15 void gui_mch_add_menu_item __ARGS((vimmenu_T *menu, int idx));
16 extern void gui_motif_update_mousemodel __ARGS((vimmenu_T *menu)); 16 void gui_motif_update_mousemodel __ARGS((vimmenu_T *menu));
17 extern void gui_mch_new_menu_colors __ARGS((void)); 17 void gui_mch_new_menu_colors __ARGS((void));
18 extern void gui_mch_new_menu_font __ARGS((void)); 18 void gui_mch_new_menu_font __ARGS((void));
19 extern void gui_mch_new_tooltip_font __ARGS((void)); 19 void gui_mch_new_tooltip_font __ARGS((void));
20 extern void gui_mch_new_tooltip_colors __ARGS((void)); 20 void gui_mch_new_tooltip_colors __ARGS((void));
21 extern void gui_mch_destroy_menu __ARGS((vimmenu_T *menu)); 21 void gui_mch_destroy_menu __ARGS((vimmenu_T *menu));
22 extern void gui_mch_show_popupmenu __ARGS((vimmenu_T *menu)); 22 void gui_mch_show_popupmenu __ARGS((vimmenu_T *menu));
23 extern void gui_mch_def_colors __ARGS((void)); 23 void gui_mch_def_colors __ARGS((void));
24 extern void gui_mch_set_scrollbar_thumb __ARGS((scrollbar_T *sb, long val, long size, long max)); 24 void gui_mch_set_scrollbar_thumb __ARGS((scrollbar_T *sb, long val, long size, long max));
25 extern void gui_mch_set_scrollbar_pos __ARGS((scrollbar_T *sb, int x, int y, int w, int h)); 25 void gui_mch_set_scrollbar_pos __ARGS((scrollbar_T *sb, int x, int y, int w, int h));
26 extern void gui_mch_enable_scrollbar __ARGS((scrollbar_T *sb, int flag)); 26 void gui_mch_enable_scrollbar __ARGS((scrollbar_T *sb, int flag));
27 extern void gui_mch_create_scrollbar __ARGS((scrollbar_T *sb, int orient)); 27 void gui_mch_create_scrollbar __ARGS((scrollbar_T *sb, int orient));
28 extern void gui_mch_destroy_scrollbar __ARGS((scrollbar_T *sb)); 28 void gui_mch_destroy_scrollbar __ARGS((scrollbar_T *sb));
29 extern void gui_mch_set_scrollbar_colors __ARGS((scrollbar_T *sb)); 29 void gui_mch_set_scrollbar_colors __ARGS((scrollbar_T *sb));
30 extern Window gui_x11_get_wid __ARGS((void)); 30 Window gui_x11_get_wid __ARGS((void));
31 extern char_u *gui_mch_browse __ARGS((int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter)); 31 char_u *gui_mch_browse __ARGS((int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter));
32 extern int gui_mch_dialog __ARGS((int type, char_u *title, char_u *message, char_u *button_names, int dfltbutton, char_u *textfield)); 32 int gui_mch_dialog __ARGS((int type, char_u *title, char_u *message, char_u *button_names, int dfltbutton, char_u *textfield));
33 extern void gui_mch_enable_footer __ARGS((int showit)); 33 void gui_mch_enable_footer __ARGS((int showit));
34 extern void gui_mch_set_footer __ARGS((char_u *s)); 34 void gui_mch_set_footer __ARGS((char_u *s));
35 extern void gui_mch_show_toolbar __ARGS((int showit)); 35 void gui_mch_show_toolbar __ARGS((int showit));
36 extern int gui_mch_compute_toolbar_height __ARGS((void)); 36 int gui_mch_compute_toolbar_height __ARGS((void));
37 extern void motif_get_toolbar_colors __ARGS((Pixel *bgp, Pixel *fgp, Pixel *bsp, Pixel *tsp, Pixel *hsp)); 37 void motif_get_toolbar_colors __ARGS((Pixel *bgp, Pixel *fgp, Pixel *bsp, Pixel *tsp, Pixel *hsp));
38 extern void gui_motif_menu_fontlist __ARGS((Widget id)); 38 void gui_mch_show_tabline __ARGS((int showit));
39 extern void gui_mch_find_dialog __ARGS((exarg_T *eap)); 39 int gui_mch_showing_tabline __ARGS((void));
40 extern void gui_mch_replace_dialog __ARGS((exarg_T *eap)); 40 void gui_mch_update_tabline __ARGS((void));
41 extern void gui_motif_synch_fonts __ARGS((void)); 41 void gui_mch_set_curtab __ARGS((int nr));
42 void gui_motif_menu_fontlist __ARGS((Widget id));
43 void gui_mch_find_dialog __ARGS((exarg_T *eap));
44 void gui_mch_replace_dialog __ARGS((exarg_T *eap));
45 void gui_motif_synch_fonts __ARGS((void));
42 /* vim: set ft=c : */ 46 /* vim: set ft=c : */