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