comparison src/proto/gui_gtk_x11.pro @ 14575:f8cd07a1cbb5 v8.1.0301

patch 8.1.0301: GTK: input method popup displayed on wrong screen. commit https://github.com/vim/vim/commit/3f6a16f022c437eccaeb683640b25a972cb1b376 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 19 22:58:45 2018 +0200 patch 8.1.0301: GTK: input method popup displayed on wrong screen. Problem: GTK: Input method popup displayed on wrong screen. Solution: Add the screen position offset. (Ken Takata, closes https://github.com/vim/vim/issues/3268)
author Christian Brabandt <cb@256bit.org>
date Sun, 19 Aug 2018 23:00:06 +0200
parents f4c3a7f410f4
children 3147c7c2e86b
comparison
equal deleted inserted replaced
14574:4ba20935ebe7 14575:f8cd07a1cbb5
23 void gui_mch_set_winpos(int x, int y); 23 void gui_mch_set_winpos(int x, int y);
24 int gui_mch_maximized(void); 24 int gui_mch_maximized(void);
25 void gui_mch_unmaximize(void); 25 void gui_mch_unmaximize(void);
26 void gui_mch_newfont(void); 26 void gui_mch_newfont(void);
27 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_set_shellsize(int width, int height, int min_width, int min_height, int base_width, int base_height, int direction);
28 void gui_gtk_get_screen_size_of_win(GtkWidget *wid, int *width, int *height); 28 void gui_gtk_get_screen_geom_of_win(GtkWidget *wid, int *screen_x, int *screen_y, int *width, int *height);
29 void gui_mch_get_screen_dimensions(int *screen_w, int *screen_h); 29 void gui_mch_get_screen_dimensions(int *screen_w, int *screen_h);
30 void gui_mch_settitle(char_u *title, char_u *icon); 30 void gui_mch_settitle(char_u *title, char_u *icon);
31 void gui_mch_enable_menu(int showit); 31 void gui_mch_enable_menu(int showit);
32 void gui_mch_show_toolbar(int showit); 32 void gui_mch_show_toolbar(int showit);
33 int gui_mch_adjust_charheight(void); 33 int gui_mch_adjust_charheight(void);