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