blob: 3735f8d315ca9400d46e1c478250c85da9031805 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* gui_gtk_x11.c */
Bram Moolenaaref269542016-01-19 13:22:12 +01002void gui_mch_prepare(int *argc, char **argv);
3void gui_mch_free_all(void);
Bram Moolenaar703a8042016-06-04 16:24:32 +02004int gui_mch_is_blinking(void);
Bram Moolenaaref269542016-01-19 13:22:12 +01005void gui_mch_set_blinking(long waittime, long on, long off);
6void gui_mch_stop_blink(void);
7void gui_mch_start_blink(void);
8int gui_mch_early_init_check(void);
9int gui_mch_init_check(void);
10void gui_mch_show_tabline(int showit);
11int gui_mch_showing_tabline(void);
12void gui_mch_update_tabline(void);
13void gui_mch_set_curtab(int nr);
14void gui_gtk_set_selection_targets(void);
15void gui_gtk_set_dnd_targets(void);
16int gui_mch_init(void);
17void gui_mch_forked(void);
18void gui_mch_new_colors(void);
19int gui_mch_open(void);
20void gui_mch_exit(int rc);
21int gui_mch_get_winpos(int *x, int *y);
22void gui_mch_set_winpos(int x, int y);
23int gui_mch_maximized(void);
24void gui_mch_unmaximize(void);
25void gui_mch_newfont(void);
26void gui_mch_set_shellsize(int width, int height, int min_width, int min_height, int base_width, int base_height, int direction);
27void gui_mch_get_screen_dimensions(int *screen_w, int *screen_h);
28void gui_mch_settitle(char_u *title, char_u *icon);
29void gui_mch_enable_menu(int showit);
30void gui_mch_show_toolbar(int showit);
31int gui_mch_adjust_charheight(void);
32char_u *gui_mch_font_dialog(char_u *oldval);
33int gui_mch_init_font(char_u *font_name, int fontset);
34GuiFont gui_mch_get_font(char_u *name, int report_error);
35char_u *gui_mch_get_fontname(GuiFont font, char_u *name);
36void gui_mch_free_font(GuiFont font);
37guicolor_T gui_mch_get_color(char_u *name);
38void gui_mch_set_fg_color(guicolor_T color);
39void gui_mch_set_bg_color(guicolor_T color);
40void gui_mch_set_sp_color(guicolor_T color);
41int gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags);
42int gui_mch_haskey(char_u *name);
43int gui_get_x11_windis(Window *win, Display **dis);
44Display *gui_mch_get_display(void);
45void gui_mch_beep(void);
46void gui_mch_flash(int msec);
47void gui_mch_invert_rectangle(int r, int c, int nr, int nc);
48void gui_mch_iconify(void);
49void gui_mch_set_foreground(void);
50void gui_mch_draw_hollow_cursor(guicolor_T color);
51void gui_mch_draw_part_cursor(int w, int h, guicolor_T color);
52void gui_mch_update(void);
53int gui_mch_wait_for_chars(long wtime);
54void gui_mch_flush(void);
55void gui_mch_clear_block(int row1, int col1, int row2, int col2);
56void gui_mch_clear_all(void);
57void gui_mch_delete_lines(int row, int num_lines);
58void gui_mch_insert_lines(int row, int num_lines);
59void clip_mch_request_selection(VimClipboard *cbd);
60void clip_mch_lose_selection(VimClipboard *cbd);
61int clip_mch_own_selection(VimClipboard *cbd);
62void clip_mch_set_selection(VimClipboard *cbd);
63int clip_gtk_owner_exists(VimClipboard *cbd);
64void gui_mch_menu_grey(vimmenu_T *menu, int grey);
65void gui_mch_menu_hidden(vimmenu_T *menu, int hidden);
66void gui_mch_draw_menubar(void);
67void gui_mch_enable_scrollbar(scrollbar_T *sb, int flag);
68long_u gui_mch_get_rgb(guicolor_T pixel);
69void gui_mch_getmouse(int *x, int *y);
70void gui_mch_setmouse(int x, int y);
71void gui_mch_mousehide(int hide);
72void mch_set_mouse_shape(int shape);
73void gui_mch_drawsign(int row, int col, int typenr);
74void *gui_mch_register_sign(char_u *signfile);
75void gui_mch_destroy_sign(void *sign);
Bram Moolenaar071d4272004-06-13 20:20:40 +000076/* vim: set ft=c : */