comparison src/proto/gui_athena.pro @ 799:6beb2c667935

updated for version 7.0b
author vimboss
date Fri, 24 Mar 2006 22:21:52 +0000
parents 3fc0f57ecb91
children 2b8ff9e3c520
comparison
equal deleted inserted replaced
798:95dac6af3b3a 799:6beb2c667935
1 /* gui_athena.c */ 1 /* gui_athena.c */
2 void gui_x11_create_widgets __ARGS((void)); 2 extern void gui_x11_create_widgets __ARGS((void));
3 void gui_x11_destroy_widgets __ARGS((void)); 3 extern void gui_x11_destroy_widgets __ARGS((void));
4 void gui_mch_set_toolbar_pos __ARGS((int x, int y, int w, int h)); 4 extern void gui_mch_set_toolbar_pos __ARGS((int x, int y, int w, int h));
5 void gui_mch_set_text_area_pos __ARGS((int x, int y, int w, int h)); 5 extern void gui_mch_set_text_area_pos __ARGS((int x, int y, int w, int h));
6 void gui_x11_set_back_color __ARGS((void)); 6 extern void gui_x11_set_back_color __ARGS((void));
7 void gui_mch_enable_menu __ARGS((int flag)); 7 extern void gui_mch_enable_menu __ARGS((int flag));
8 void gui_mch_set_menu_pos __ARGS((int x, int y, int w, int h)); 8 extern void gui_mch_set_menu_pos __ARGS((int x, int y, int w, int h));
9 void gui_mch_add_menu __ARGS((vimmenu_T *menu, int idx)); 9 extern void gui_mch_add_menu __ARGS((vimmenu_T *menu, int idx));
10 void gui_mch_new_menu_font __ARGS((void)); 10 extern void gui_mch_new_menu_font __ARGS((void));
11 void gui_mch_new_tooltip_font __ARGS((void)); 11 extern void gui_mch_new_tooltip_font __ARGS((void));
12 void gui_mch_new_tooltip_colors __ARGS((void)); 12 extern void gui_mch_new_tooltip_colors __ARGS((void));
13 void gui_mch_add_menu_item __ARGS((vimmenu_T *menu, int idx)); 13 extern void gui_mch_add_menu_item __ARGS((vimmenu_T *menu, int idx));
14 void gui_mch_show_toolbar __ARGS((int showit)); 14 extern void gui_mch_show_toolbar __ARGS((int showit));
15 int gui_mch_compute_toolbar_height __ARGS((void)); 15 extern int gui_mch_compute_toolbar_height __ARGS((void));
16 void gui_mch_get_toolbar_colors __ARGS((Pixel *bgp, Pixel *fgp, Pixel *bsp, Pixel *tsp, Pixel *hsp)); 16 extern void gui_mch_get_toolbar_colors __ARGS((Pixel *bgp, Pixel *fgp, Pixel *bsp, Pixel *tsp, Pixel *hsp));
17 void gui_mch_toggle_tearoffs __ARGS((int enable)); 17 extern void gui_mch_toggle_tearoffs __ARGS((int enable));
18 void gui_mch_new_menu_colors __ARGS((void)); 18 extern void gui_mch_new_menu_colors __ARGS((void));
19 void gui_mch_destroy_menu __ARGS((vimmenu_T *menu)); 19 extern void gui_mch_destroy_menu __ARGS((vimmenu_T *menu));
20 void gui_mch_show_popupmenu __ARGS((vimmenu_T *menu)); 20 extern void gui_mch_show_popupmenu __ARGS((vimmenu_T *menu));
21 void gui_mch_def_colors __ARGS((void)); 21 extern void gui_mch_def_colors __ARGS((void));
22 void gui_mch_set_scrollbar_thumb __ARGS((scrollbar_T *sb, long val, long size, long max)); 22 extern void gui_mch_set_scrollbar_thumb __ARGS((scrollbar_T *sb, long val, long size, long max));
23 void gui_mch_set_scrollbar_pos __ARGS((scrollbar_T *sb, int x, int y, int w, int h)); 23 extern void gui_mch_set_scrollbar_pos __ARGS((scrollbar_T *sb, int x, int y, int w, int h));
24 void gui_mch_enable_scrollbar __ARGS((scrollbar_T *sb, int flag)); 24 extern void gui_mch_enable_scrollbar __ARGS((scrollbar_T *sb, int flag));
25 void gui_mch_create_scrollbar __ARGS((scrollbar_T *sb, int orient)); 25 extern void gui_mch_create_scrollbar __ARGS((scrollbar_T *sb, int orient));
26 void gui_mch_destroy_scrollbar __ARGS((scrollbar_T *sb)); 26 extern void gui_mch_destroy_scrollbar __ARGS((scrollbar_T *sb));
27 void gui_mch_set_scrollbar_colors __ARGS((scrollbar_T *sb)); 27 extern void gui_mch_set_scrollbar_colors __ARGS((scrollbar_T *sb));
28 Window gui_x11_get_wid __ARGS((void)); 28 extern Window gui_x11_get_wid __ARGS((void));
29 char_u *gui_mch_browse __ARGS((int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter)); 29 extern char_u *gui_mch_browse __ARGS((int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter));
30 int gui_mch_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield)); 30 extern int gui_mch_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield));
31 /* vim: set ft=c : */ 31 /* vim: set ft=c : */