blob: 96c059abab04c68d4e96bcc03a7ce2f3c8469444 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* gui_athena.c */
Bram Moolenaarc01140a2006-03-24 22:21:52 +00002extern void gui_x11_create_widgets __ARGS((void));
3extern void gui_x11_destroy_widgets __ARGS((void));
4extern void gui_mch_set_toolbar_pos __ARGS((int x, int y, int w, int h));
5extern void gui_mch_set_text_area_pos __ARGS((int x, int y, int w, int h));
6extern void gui_x11_set_back_color __ARGS((void));
7extern void gui_mch_enable_menu __ARGS((int flag));
8extern void gui_mch_set_menu_pos __ARGS((int x, int y, int w, int h));
9extern void gui_mch_add_menu __ARGS((vimmenu_T *menu, int idx));
10extern void gui_mch_new_menu_font __ARGS((void));
11extern void gui_mch_new_tooltip_font __ARGS((void));
12extern void gui_mch_new_tooltip_colors __ARGS((void));
13extern void gui_mch_add_menu_item __ARGS((vimmenu_T *menu, int idx));
14extern void gui_mch_show_toolbar __ARGS((int showit));
15extern int gui_mch_compute_toolbar_height __ARGS((void));
16extern void gui_mch_get_toolbar_colors __ARGS((Pixel *bgp, Pixel *fgp, Pixel *bsp, Pixel *tsp, Pixel *hsp));
17extern void gui_mch_toggle_tearoffs __ARGS((int enable));
18extern void gui_mch_new_menu_colors __ARGS((void));
19extern void gui_mch_destroy_menu __ARGS((vimmenu_T *menu));
20extern void gui_mch_show_popupmenu __ARGS((vimmenu_T *menu));
21extern void gui_mch_def_colors __ARGS((void));
22extern void gui_mch_set_scrollbar_thumb __ARGS((scrollbar_T *sb, long val, long size, long max));
23extern void gui_mch_set_scrollbar_pos __ARGS((scrollbar_T *sb, int x, int y, int w, int h));
24extern void gui_mch_enable_scrollbar __ARGS((scrollbar_T *sb, int flag));
25extern void gui_mch_create_scrollbar __ARGS((scrollbar_T *sb, int orient));
26extern void gui_mch_destroy_scrollbar __ARGS((scrollbar_T *sb));
27extern void gui_mch_set_scrollbar_colors __ARGS((scrollbar_T *sb));
28extern Window gui_x11_get_wid __ARGS((void));
29extern char_u *gui_mch_browse __ARGS((int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter));
30extern int gui_mch_dialog __ARGS((int type, char_u *title, char_u *message, char_u *buttons, int dfltbutton, char_u *textfield));
Bram Moolenaar071d4272004-06-13 20:20:40 +000031/* vim: set ft=c : */