blob: 6135657fa20df9f9397a51b9710fbde30adf2aac [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * Porting to GTK+ was done by:
12 *
Bram Moolenaar0a56cb82005-01-04 21:45:14 +000013 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * With GREAT support and continuous encouragements by Andy Kahn and of
16 * course Bram Moolenaar!
17 *
18 * Support for GTK+ 2 was added by:
19 *
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
21 * Daniel Elstner <daniel.elstner@gmx.net>
Bram Moolenaar98921892016-02-23 17:14:37 +010022 *
23 * Support for GTK+ 3 was added by:
24 *
25 * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 */
27
28#include "vim.h"
Bram Moolenaar36e294c2015-12-29 18:55:46 +010029#ifdef USE_GRESOURCE
30#include "auto/gui_gtk_gresources.h"
31#endif
Bram Moolenaarc93e7912008-07-08 10:46:08 +000032
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_GUI_GNOME
Bram Moolenaar30613902019-12-01 22:11:18 +010034// Gnome redefines _() and N_(). Grrr...
Bram Moolenaar071d4272004-06-13 20:20:40 +000035# ifdef _
36# undef _
37# endif
38# ifdef N_
39# undef N_
40# endif
41# ifdef textdomain
42# undef textdomain
43# endif
44# ifdef bindtextdomain
45# undef bindtextdomain
46# endif
Bram Moolenaara2dd9002007-05-14 17:38:30 +000047# ifdef bind_textdomain_codeset
48# undef bind_textdomain_codeset
Bram Moolenaar49325942007-05-10 19:19:59 +000049# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000050# if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
Bram Moolenaar30613902019-12-01 22:11:18 +010051# define ENABLE_NLS // so the texts in the dialog boxes are translated
Bram Moolenaar071d4272004-06-13 20:20:40 +000052# endif
53# include <gnome.h>
54# include "version.h"
Bram Moolenaar30613902019-12-01 22:11:18 +010055// missing prototype in bonobo-dock-item.h
Bram Moolenaardb552d602006-03-23 22:59:57 +000056extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#endif
58
59#if !defined(FEAT_GUI_GTK) && defined(PROTO)
Bram Moolenaar30613902019-12-01 22:11:18 +010060// When generating prototypes we don't want syntax errors.
Bram Moolenaar071d4272004-06-13 20:20:40 +000061# define GdkAtom int
62# define GdkEventExpose int
63# define GdkEventFocus int
64# define GdkEventVisibility int
65# define GdkEventProperty int
66# define GtkContainer int
67# define GtkTargetEntry int
68# define GtkType int
69# define GtkWidget int
70# define gint int
71# define gpointer int
72# define guint int
73# define GdkEventKey int
74# define GdkEventSelection int
75# define GtkSelectionData int
76# define GdkEventMotion int
77# define GdkEventButton int
78# define GdkDragContext int
79# define GdkEventConfigure int
80# define GdkEventClient int
81#else
Bram Moolenaar98921892016-02-23 17:14:37 +010082# if GTK_CHECK_VERSION(3,0,0)
83# include <gdk/gdkkeysyms-compat.h>
84# include <gtk/gtkx.h>
85# else
86# include <gdk/gdkkeysyms.h>
87# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000088# include <gdk/gdk.h>
Bram Moolenaar4f974752019-02-17 17:44:42 +010089# ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +000090# include <gdk/gdkwin32.h>
91# else
92# include <gdk/gdkx.h>
93# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000094# include <gtk/gtk.h>
95# include "gui_gtk_f.h"
96#endif
97
98#ifdef HAVE_X11_SUNKEYSYM_H
99# include <X11/Sunkeysym.h>
100#endif
101
102/*
103 * Easy-to-use macro for multihead support.
104 */
Bram Moolenaarb463e8d2017-06-05 15:07:09 +0200105#define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106 gtk_widget_get_display(gui.mainwin), atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107
Bram Moolenaar30613902019-12-01 22:11:18 +0100108// Selection type distinguishers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109enum
110{
111 TARGET_TYPE_NONE,
112 TARGET_UTF8_STRING,
113 TARGET_STRING,
114 TARGET_COMPOUND_TEXT,
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000115 TARGET_HTML,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 TARGET_TEXT,
117 TARGET_TEXT_URI_LIST,
118 TARGET_TEXT_PLAIN,
119 TARGET_VIM,
120 TARGET_VIMENC
121};
122
123/*
124 * Table of selection targets supported by Vim.
125 * Note: Order matters, preferred types should come first.
126 */
127static const GtkTargetEntry selection_targets[] =
128{
129 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
130 {VIM_ATOM_NAME, 0, TARGET_VIM},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000131 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
134 {"TEXT", 0, TARGET_TEXT},
135 {"STRING", 0, TARGET_STRING}
136};
K.Takataeeec2542021-06-02 13:28:16 +0200137#define N_SELECTION_TARGETS ARRAY_LENGTH(selection_targets)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
139#ifdef FEAT_DND
140/*
141 * Table of DnD targets supported by Vim.
142 * Note: Order matters, preferred types should come first.
143 */
144static const GtkTargetEntry dnd_targets[] =
145{
146 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000147 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149 {"STRING", 0, TARGET_STRING},
150 {"text/plain", 0, TARGET_TEXT_PLAIN}
151};
K.Takataeeec2542021-06-02 13:28:16 +0200152# define N_DND_TARGETS ARRAY_LENGTH(dnd_targets)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153#endif
154
155
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156/*
157 * "Monospace" is a standard font alias that should be present
158 * on all proper Pango/fontconfig installations.
159 */
160# define DEFAULT_FONT "Monospace 10"
161
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +0200162#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
163# define USE_GNOME_SESSION
164#endif
165
166#if !defined(FEAT_GUI_GNOME)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167/*
168 * Atoms used to communicate save-yourself from the X11 session manager. There
169 * is no need to move them into the GUI struct, since they should be constant.
170 */
171static GdkAtom wm_protocols_atom = GDK_NONE;
172static GdkAtom save_yourself_atom = GDK_NONE;
173#endif
174
175/*
176 * Atoms used to control/reference X11 selections.
177 */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000178static GdkAtom html_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179static GdkAtom utf8_string_atom = GDK_NONE;
Bram Moolenaar30613902019-12-01 22:11:18 +0100180static GdkAtom vim_atom = GDK_NONE; // Vim's own special selection format
181static GdkAtom vimenc_atom = GDK_NONE; // Vim's extended selection format
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182
183/*
184 * Keycodes recognized by vim.
185 * NOTE: when changing this, the table in gui_x11.c probably needs the same
186 * change!
187 */
188static struct special_key
189{
190 guint key_sym;
191 char_u code0;
192 char_u code1;
193}
194const special_keys[] =
195{
196 {GDK_Up, 'k', 'u'},
197 {GDK_Down, 'k', 'd'},
198 {GDK_Left, 'k', 'l'},
199 {GDK_Right, 'k', 'r'},
200 {GDK_F1, 'k', '1'},
201 {GDK_F2, 'k', '2'},
202 {GDK_F3, 'k', '3'},
203 {GDK_F4, 'k', '4'},
204 {GDK_F5, 'k', '5'},
205 {GDK_F6, 'k', '6'},
206 {GDK_F7, 'k', '7'},
207 {GDK_F8, 'k', '8'},
208 {GDK_F9, 'k', '9'},
209 {GDK_F10, 'k', ';'},
210 {GDK_F11, 'F', '1'},
211 {GDK_F12, 'F', '2'},
212 {GDK_F13, 'F', '3'},
213 {GDK_F14, 'F', '4'},
214 {GDK_F15, 'F', '5'},
215 {GDK_F16, 'F', '6'},
216 {GDK_F17, 'F', '7'},
217 {GDK_F18, 'F', '8'},
218 {GDK_F19, 'F', '9'},
219 {GDK_F20, 'F', 'A'},
220 {GDK_F21, 'F', 'B'},
Bram Moolenaar30613902019-12-01 22:11:18 +0100221 {GDK_Pause, 'F', 'B'}, // Pause == F21 according to netbeans.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222 {GDK_F22, 'F', 'C'},
223 {GDK_F23, 'F', 'D'},
224 {GDK_F24, 'F', 'E'},
225 {GDK_F25, 'F', 'F'},
226 {GDK_F26, 'F', 'G'},
227 {GDK_F27, 'F', 'H'},
228 {GDK_F28, 'F', 'I'},
229 {GDK_F29, 'F', 'J'},
230 {GDK_F30, 'F', 'K'},
231 {GDK_F31, 'F', 'L'},
232 {GDK_F32, 'F', 'M'},
233 {GDK_F33, 'F', 'N'},
234 {GDK_F34, 'F', 'O'},
235 {GDK_F35, 'F', 'P'},
236#ifdef SunXK_F36
237 {SunXK_F36, 'F', 'Q'},
238 {SunXK_F37, 'F', 'R'},
239#endif
240 {GDK_Help, '%', '1'},
241 {GDK_Undo, '&', '8'},
242 {GDK_BackSpace, 'k', 'b'},
243 {GDK_Insert, 'k', 'I'},
244 {GDK_Delete, 'k', 'D'},
245 {GDK_3270_BackTab, 'k', 'B'},
246 {GDK_Clear, 'k', 'C'},
247 {GDK_Home, 'k', 'h'},
248 {GDK_End, '@', '7'},
249 {GDK_Prior, 'k', 'P'},
250 {GDK_Next, 'k', 'N'},
251 {GDK_Print, '%', '9'},
Bram Moolenaar30613902019-12-01 22:11:18 +0100252 // Keypad keys:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 {GDK_KP_Left, 'k', 'l'},
254 {GDK_KP_Right, 'k', 'r'},
255 {GDK_KP_Up, 'k', 'u'},
256 {GDK_KP_Down, 'k', 'd'},
257 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
258 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
259 {GDK_KP_Home, 'K', '1'},
260 {GDK_KP_End, 'K', '4'},
Bram Moolenaar30613902019-12-01 22:11:18 +0100261 {GDK_KP_Prior, 'K', '3'}, // page up
262 {GDK_KP_Next, 'K', '5'}, // page down
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263
264 {GDK_KP_Add, 'K', '6'},
265 {GDK_KP_Subtract, 'K', '7'},
266 {GDK_KP_Divide, 'K', '8'},
267 {GDK_KP_Multiply, 'K', '9'},
268 {GDK_KP_Enter, 'K', 'A'},
269 {GDK_KP_Decimal, 'K', 'B'},
270
271 {GDK_KP_0, 'K', 'C'},
272 {GDK_KP_1, 'K', 'D'},
273 {GDK_KP_2, 'K', 'E'},
274 {GDK_KP_3, 'K', 'F'},
275 {GDK_KP_4, 'K', 'G'},
276 {GDK_KP_5, 'K', 'H'},
277 {GDK_KP_6, 'K', 'I'},
278 {GDK_KP_7, 'K', 'J'},
279 {GDK_KP_8, 'K', 'K'},
280 {GDK_KP_9, 'K', 'L'},
281
Bram Moolenaar30613902019-12-01 22:11:18 +0100282 // End of list marker:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 {0, 0, 0}
284};
285
286/*
287 * Flags for command line options table below.
288 */
289#define ARG_FONT 1
290#define ARG_GEOMETRY 2
291#define ARG_REVERSE 3
292#define ARG_NOREVERSE 4
293#define ARG_BACKGROUND 5
294#define ARG_FOREGROUND 6
295#define ARG_ICONIC 7
296#define ARG_ROLE 8
297#define ARG_NETBEANS 9
Bram Moolenaar30613902019-12-01 22:11:18 +0100298#define ARG_XRM 10 // ignored
299#define ARG_MENUFONT 11 // ignored
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300#define ARG_INDEX_MASK 0x00ff
Bram Moolenaar30613902019-12-01 22:11:18 +0100301#define ARG_HAS_VALUE 0x0100 // a value is expected after the argument
302#define ARG_NEEDS_GUI 0x0200 // need to initialize the GUI for this
303#define ARG_FOR_GTK 0x0400 // argument is handled by GTK+ or GNOME
304#define ARG_COMPAT_LONG 0x0800 // accept -foo but substitute with --foo
305#define ARG_KEEP 0x1000 // don't remove argument from argv[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306
307/*
308 * This table holds all the X GUI command line options allowed. This includes
309 * the standard ones so that we can skip them when Vim is started without the
310 * GUI (but the GUI might start up later).
311 *
312 * When changing this, also update doc/gui_x11.txt and the usage message!!!
313 */
314typedef struct
315{
316 const char *name;
317 unsigned int flags;
318}
319cmdline_option_T;
320
321static const cmdline_option_T cmdline_options[] =
322{
Bram Moolenaar30613902019-12-01 22:11:18 +0100323 // We handle these options ourselves
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 {"-fn", ARG_FONT|ARG_HAS_VALUE},
325 {"-font", ARG_FONT|ARG_HAS_VALUE},
326 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE},
327 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE},
328 {"-rv", ARG_REVERSE},
329 {"-reverse", ARG_REVERSE},
330 {"+rv", ARG_NOREVERSE},
331 {"+reverse", ARG_NOREVERSE},
332 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE},
333 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE},
334 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE},
335 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE},
336 {"-iconic", ARG_ICONIC},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 {"--role", ARG_ROLE|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar30613902019-12-01 22:11:18 +0100339 {"-nb", ARG_NETBEANS}, // non-standard value format
340 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, // not implemented
341 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, // not implemented
342 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, // not implemented
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343#endif
Bram Moolenaar30613902019-12-01 22:11:18 +0100344 // Arguments handled by GTK (and GNOME) internally.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 {"--g-fatal-warnings", ARG_FOR_GTK},
346 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
347 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
348 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
349 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
350 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE},
351 {"--sync", ARG_FOR_GTK},
352 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
353 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
354 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE},
356 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE},
357 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358#ifdef FEAT_GUI_GNOME
359 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE},
360 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE},
361 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE},
362 {"--sm-disable", ARG_FOR_GTK},
363 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE},
364 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE},
365 {"--oaf-private", ARG_FOR_GTK},
366 {"--enable-sound", ARG_FOR_GTK},
367 {"--disable-sound", ARG_FOR_GTK},
368 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE},
369 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI},
370 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP},
371 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI},
Bram Moolenaar30613902019-12-01 22:11:18 +0100372# if 0 // conflicts with Vim's own --version argument
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI},
374# endif
375 {"--disable-crash-dialog", ARG_FOR_GTK},
376#endif
377 {NULL, 0}
378};
379
380static int gui_argc = 0;
381static char **gui_argv = NULL;
382
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383static const char *role_argument = NULL;
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +0200384#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385static const char *restart_command = NULL;
Bram Moolenaar9085f802009-06-03 14:20:21 +0000386static char *abs_restart_command = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387#endif
388static int found_iconic_arg = FALSE;
389
390#ifdef FEAT_GUI_GNOME
391/*
392 * Can't use Gnome if --socketid given
393 */
394static int using_gnome = 0;
395#else
396# define using_gnome 0
397#endif
398
399/*
400 * Parse the GUI related command-line arguments. Any arguments used are
401 * deleted from argv, and *argc is decremented accordingly. This is called
402 * when vim is started, whether or not the GUI has been started.
403 */
404 void
405gui_mch_prepare(int *argc, char **argv)
406{
407 const cmdline_option_T *option;
408 int i = 0;
409 int len = 0;
410
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +0200411#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412 /*
413 * Determine the command used to invoke Vim, to be passed as restart
414 * command to the session manager. If argv[0] contains any directory
415 * components try building an absolute path, otherwise leave it as is.
416 */
417 restart_command = argv[0];
418
419 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
420 {
421 char_u buf[MAXPATHL];
422
423 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000424 {
425 abs_restart_command = (char *)vim_strsave(buf);
426 restart_command = abs_restart_command;
427 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 }
429#endif
430
431 /*
432 * Move all the entries in argv which are relevant to GTK+ and GNOME
433 * into gui_argv. Freed later in gui_mch_init().
434 */
435 gui_argc = 0;
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200436 gui_argv = ALLOC_MULT(char *, *argc + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437
438 g_return_if_fail(gui_argv != NULL);
439
440 gui_argv[gui_argc++] = argv[i++];
441
442 while (i < *argc)
443 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100444 // Don't waste CPU cycles on non-option arguments.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445 if (argv[i][0] != '-' && argv[i][0] != '+')
446 {
447 ++i;
448 continue;
449 }
450
Bram Moolenaar30613902019-12-01 22:11:18 +0100451 // Look for argv[i] in cmdline_options[] table.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 for (option = &cmdline_options[0]; option->name != NULL; ++option)
453 {
454 len = strlen(option->name);
455
456 if (strncmp(argv[i], option->name, len) == 0)
457 {
458 if (argv[i][len] == '\0')
459 break;
Bram Moolenaar30613902019-12-01 22:11:18 +0100460 // allow --foo=bar style
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
462 break;
463#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar30613902019-12-01 22:11:18 +0100464 // darn, -nb has non-standard syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
466 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
467 break;
468#endif
469 }
470 else if ((option->flags & ARG_COMPAT_LONG)
471 && strcmp(argv[i], option->name + 1) == 0)
472 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100473 // Replace the standard X arguments "-name" and "-display"
474 // with their GNU-style long option counterparts.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475 argv[i] = (char *)option->name;
476 break;
477 }
478 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100479 if (option->name == NULL) // no match
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 {
481 ++i;
482 continue;
483 }
484
485 if (option->flags & ARG_FOR_GTK)
486 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100487 // Move the argument into gui_argv, which
488 // will later be passed to gtk_init_check()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489 gui_argv[gui_argc++] = argv[i];
490 }
491 else
492 {
493 char *value = NULL;
494
Bram Moolenaar30613902019-12-01 22:11:18 +0100495 // Extract the option's value if there is one.
496 // Accept both "--foo bar" and "--foo=bar" style.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 if (option->flags & ARG_HAS_VALUE)
498 {
499 if (argv[i][len] == '=')
500 value = &argv[i][len + 1];
501 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
502 value = argv[i + 1];
503 }
504
Bram Moolenaar30613902019-12-01 22:11:18 +0100505 // Check for options handled by Vim itself
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 switch (option->flags & ARG_INDEX_MASK)
507 {
508 case ARG_REVERSE:
509 found_reverse_arg = TRUE;
510 break;
511 case ARG_NOREVERSE:
512 found_reverse_arg = FALSE;
513 break;
514 case ARG_FONT:
515 font_argument = value;
516 break;
517 case ARG_GEOMETRY:
518 if (value != NULL)
519 gui.geom = vim_strsave((char_u *)value);
520 break;
521 case ARG_BACKGROUND:
522 background_argument = value;
523 break;
524 case ARG_FOREGROUND:
525 foreground_argument = value;
526 break;
527 case ARG_ICONIC:
528 found_iconic_arg = TRUE;
529 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 case ARG_ROLE:
Bram Moolenaar30613902019-12-01 22:11:18 +0100531 role_argument = value; // used later in gui_mch_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533#ifdef FEAT_NETBEANS_INTG
534 case ARG_NETBEANS:
Bram Moolenaar30613902019-12-01 22:11:18 +0100535 gui.dofork = FALSE; // don't fork() when starting GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 netbeansArg = argv[i];
537 break;
538#endif
539 default:
540 break;
541 }
542 }
543
Bram Moolenaar30613902019-12-01 22:11:18 +0100544 // These arguments make gnome_program_init() print a message and exit.
545 // Must start the GUI for this, otherwise ":gui" will exit later!
546 // Only when the GUI can start.
Bram Moolenaar717e1962016-08-10 21:28:44 +0200547 if ((option->flags & ARG_NEEDS_GUI)
548 && gui_mch_early_init_check(FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 gui.starting = TRUE;
550
551 if (option->flags & ARG_KEEP)
552 ++i;
553 else
554 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100555 // Remove the flag from the argument vector.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 if (--*argc > i)
557 {
558 int n_strip = 1;
559
Bram Moolenaar30613902019-12-01 22:11:18 +0100560 // Move the argument's value as well, if there is one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 if ((option->flags & ARG_HAS_VALUE)
562 && argv[i][len] != '='
563 && strcmp(argv[i + 1], "--") != 0)
564 {
565 ++n_strip;
566 --*argc;
567 if (option->flags & ARG_FOR_GTK)
568 gui_argv[gui_argc++] = argv[i + 1];
569 }
570
571 if (*argc > i)
572 mch_memmove(&argv[i], &argv[i + n_strip],
573 (*argc - i) * sizeof(char *));
574 }
575 argv[*argc] = NULL;
576 }
577 }
578
579 gui_argv[gui_argc] = NULL;
580}
581
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000582#if defined(EXITFREE) || defined(PROTO)
583 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100584gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000585{
586 vim_free(gui_argv);
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +0200587#if defined(USE_GNOME_SESSION)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000588 vim_free(abs_restart_command);
589#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000590}
591#endif
592
Bram Moolenaar98921892016-02-23 17:14:37 +0100593#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594/*
595 * This should be maybe completely removed.
596 * Doesn't seem possible, since check_copy_area() relies on
597 * this information. --danielk
598 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000600visibility_event(GtkWidget *widget UNUSED,
601 GdkEventVisibility *event,
602 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603{
604 gui.visibility = event->state;
605 /*
606 * When we do an gdk_window_copy_area(), and the window is partially
607 * obscured, we want to receive an event to tell us whether it worked
608 * or not.
609 */
610 if (gui.text_gc != NULL)
611 gdk_gc_set_exposures(gui.text_gc,
612 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
613 return FALSE;
614}
Bram Moolenaar30613902019-12-01 22:11:18 +0100615#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616
617/*
618 * Redraw the corresponding portions of the screen.
619 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100620#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +0100621 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200622draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100623 cairo_t *cr,
624 gpointer user_data UNUSED)
625{
Bram Moolenaar30613902019-12-01 22:11:18 +0100626 // Skip this when the GUI isn't set up yet, will redraw later.
Bram Moolenaar98921892016-02-23 17:14:37 +0100627 if (gui.starting)
628 return FALSE;
629
Bram Moolenaar30613902019-12-01 22:11:18 +0100630 out_flush(); // make sure all output has been processed
631 // for GTK+ 3, may induce other draw events.
Bram Moolenaar98921892016-02-23 17:14:37 +0100632
633 cairo_set_source_surface(cr, gui.surface, 0, 0);
634
Bram Moolenaar98921892016-02-23 17:14:37 +0100635 {
636 cairo_rectangle_list_t *list = NULL;
637
Bram Moolenaar98921892016-02-23 17:14:37 +0100638 list = cairo_copy_clip_rectangle_list(cr);
639 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
640 {
641 int i;
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100642
Bram Moolenaar98921892016-02-23 17:14:37 +0100643 for (i = 0; i < list->num_rectangles; i++)
644 {
presuku9459b8d2021-11-16 20:03:56 +0000645 const cairo_rectangle_t *rect = &list->rectangles[i];
646 cairo_rectangle(cr, rect->x, rect->y, rect->width, rect->height);
647 cairo_fill(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +0100648 }
649 }
650 cairo_rectangle_list_destroy(list);
Bram Moolenaar98921892016-02-23 17:14:37 +0100651 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100652
653 return FALSE;
654}
Bram Moolenaar30613902019-12-01 22:11:18 +0100655#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000657expose_event(GtkWidget *widget UNUSED,
658 GdkEventExpose *event,
659 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660{
Bram Moolenaar30613902019-12-01 22:11:18 +0100661 // Skip this when the GUI isn't set up yet, will redraw later.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 if (gui.starting)
663 return FALSE;
664
Bram Moolenaar30613902019-12-01 22:11:18 +0100665 out_flush(); // make sure all output has been processed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 gui_redraw(event->area.x, event->area.y,
667 event->area.width, event->area.height);
668
Bram Moolenaar30613902019-12-01 22:11:18 +0100669 // Clear the border areas if needed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 if (event->area.x < FILL_X(0))
671 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
672 if (event->area.y < FILL_Y(0))
673 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
674 if (event->area.x > FILL_X(Columns))
675 gdk_window_clear_area(gui.drawarea->window,
676 FILL_X((int)Columns), 0, 0, 0);
677 if (event->area.y > FILL_Y(Rows))
678 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
679
680 return FALSE;
681}
Bram Moolenaar30613902019-12-01 22:11:18 +0100682#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683
684#ifdef FEAT_CLIENTSERVER
685/*
686 * Handle changes to the "Comm" property
687 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000689property_event(GtkWidget *widget,
690 GdkEventProperty *event,
691 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692{
693 if (event->type == GDK_PROPERTY_NOTIFY
694 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100695 && GDK_WINDOW_XID(event->window) == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 && GET_X_ATOM(event->atom) == commProperty)
697 {
698 XEvent xev;
699
Bram Moolenaar30613902019-12-01 22:11:18 +0100700 // Translate to XLib
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 xev.xproperty.type = PropertyNotify;
702 xev.xproperty.atom = commProperty;
703 xev.xproperty.window = commWindow;
704 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100705 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
706 &xev, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 }
708 return FALSE;
709}
Bram Moolenaar30613902019-12-01 22:11:18 +0100710#endif // defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +0200712/*
713 * Handle changes to the "Xft/DPI" setting
714 */
715 static void
716gtk_settings_xft_dpi_changed_cb(GtkSettings *gtk_settings UNUSED,
717 GParamSpec *pspec UNUSED,
718 gpointer data UNUSED)
719{
720 // Create a new PangoContext for this screen, and initialize it
721 // with the current font if necessary.
722 if (gui.text_context != NULL)
723 g_object_unref(gui.text_context);
724
725 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
726 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
727
728 if (gui.norm_font != NULL)
729 {
730 // force default font
731 gui_mch_init_font(*p_guifont == NUL ? NULL : p_guifont, FALSE);
732 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
733 }
734}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200736typedef gboolean timeout_cb_type;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200737
738/*
739 * Start a timer that will invoke the specified callback.
740 * Returns the ID of the timer.
741 */
742 static guint
743timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp)
744{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200745 return g_timeout_add((guint)time, (GSourceFunc)callback, flagp);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200746}
747
748 static void
749timeout_remove(guint timer)
750{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200751 g_source_remove(timer);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200752}
753
754
Bram Moolenaar30613902019-12-01 22:11:18 +0100755/////////////////////////////////////////////////////////////////////////////
756// Focus handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757
758
759/*
760 * This is a simple state machine:
761 * BLINK_NONE not blinking at all
762 * BLINK_OFF blinking, cursor is not shown
763 * BLINK_ON blinking, cursor is shown
764 */
765
766#define BLINK_NONE 0
767#define BLINK_OFF 1
768#define BLINK_ON 2
769
770static int blink_state = BLINK_NONE;
771static long_u blink_waittime = 700;
772static long_u blink_ontime = 400;
773static long_u blink_offtime = 250;
774static guint blink_timer = 0;
775
Bram Moolenaar703a8042016-06-04 16:24:32 +0200776 int
777gui_mch_is_blinking(void)
778{
779 return blink_state != BLINK_NONE;
780}
781
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200782 int
783gui_mch_is_blink_off(void)
784{
785 return blink_state == BLINK_OFF;
786}
787
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 void
789gui_mch_set_blinking(long waittime, long on, long off)
790{
791 blink_waittime = waittime;
792 blink_ontime = on;
793 blink_offtime = off;
794}
795
796/*
797 * Stop the cursor blinking. Show the cursor if it wasn't shown.
798 */
799 void
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100800gui_mch_stop_blink(int may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801{
802 if (blink_timer)
803 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200804 timeout_remove(blink_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805 blink_timer = 0;
806 }
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100807 if (blink_state == BLINK_OFF && may_call_gui_update_cursor)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200808 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 gui_update_cursor(TRUE, FALSE);
presuku9459b8d2021-11-16 20:03:56 +0000810#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200811 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000812#endif
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200813 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 blink_state = BLINK_NONE;
815}
816
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200817 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000818blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819{
820 if (blink_state == BLINK_ON)
821 {
822 gui_undraw_cursor();
823 blink_state = BLINK_OFF;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200824 blink_timer = timeout_add(blink_offtime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 }
826 else
827 {
828 gui_update_cursor(TRUE, FALSE);
829 blink_state = BLINK_ON;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200830 blink_timer = timeout_add(blink_ontime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 }
presuku9459b8d2021-11-16 20:03:56 +0000832#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200833 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000834#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835
Bram Moolenaar30613902019-12-01 22:11:18 +0100836 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837}
838
839/*
840 * Start the cursor blinking. If it was already blinking, this restarts the
841 * waiting time and shows the cursor.
842 */
843 void
844gui_mch_start_blink(void)
845{
846 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200847 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200848 timeout_remove(blink_timer);
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200849 blink_timer = 0;
850 }
Bram Moolenaar30613902019-12-01 22:11:18 +0100851 // Only switch blinking on if none of the times is zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
853 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200854 blink_timer = timeout_add(blink_waittime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 blink_state = BLINK_ON;
856 gui_update_cursor(TRUE, FALSE);
presuku9459b8d2021-11-16 20:03:56 +0000857#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200858 gui_mch_flush();
presuku9459b8d2021-11-16 20:03:56 +0000859#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 }
861}
862
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000864enter_notify_event(GtkWidget *widget UNUSED,
865 GdkEventCrossing *event UNUSED,
866 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867{
868 if (blink_state == BLINK_NONE)
869 gui_mch_start_blink();
870
Bram Moolenaar30613902019-12-01 22:11:18 +0100871 // make sure keyboard input goes there
Bram Moolenaar98921892016-02-23 17:14:37 +0100872 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 gtk_widget_grab_focus(gui.drawarea);
874
875 return FALSE;
876}
877
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000879leave_notify_event(GtkWidget *widget UNUSED,
880 GdkEventCrossing *event UNUSED,
881 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882{
883 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100884 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885
886 return FALSE;
887}
888
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000890focus_in_event(GtkWidget *widget,
891 GdkEventFocus *event UNUSED,
892 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893{
894 gui_focus_change(TRUE);
895
896 if (blink_state == BLINK_NONE)
897 gui_mch_start_blink();
898
Bram Moolenaar30613902019-12-01 22:11:18 +0100899 // make sure keyboard input goes to the draw area (if this is focus for a
900 // window)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000901 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000902 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903
904 return TRUE;
905}
906
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000908focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200909 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000910 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911{
912 gui_focus_change(FALSE);
913
914 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100915 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916
917 return TRUE;
918}
919
920
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921/*
922 * Translate a GDK key value to UTF-8 independently of the current locale.
923 * The output is written to string, which must have room for at least 6 bytes
924 * plus the NUL terminator. Returns the length in bytes.
925 *
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200926 * event->string is evil; see here why:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
928 */
929 static int
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200930keyval_to_string(unsigned int keyval, char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931{
932 int len;
933 guint32 uc;
934
935 uc = gdk_keyval_to_unicode(keyval);
936 if (uc != 0)
937 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +0200938 // Translate a normal key to UTF-8. This doesn't work for dead
939 // keys of course, you _have_ to use an input method for that.
940 len = utf_char2bytes((int)uc, string);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 }
942 else
943 {
Bram Moolenaar30613902019-12-01 22:11:18 +0100944 // Translate keys which are represented by ASCII control codes in Vim.
945 // There are only a few of those; most control keys are translated to
946 // special terminal-like control sequences.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 len = 1;
948 switch (keyval)
949 {
950 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
951 string[0] = TAB;
952 break;
953 case GDK_Linefeed:
954 string[0] = NL;
955 break;
956 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
957 string[0] = CAR;
958 break;
959 case GDK_Escape:
960 string[0] = ESC;
961 break;
962 default:
963 len = 0;
964 break;
965 }
966 }
967 string[len] = NUL;
968
969 return len;
970}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000972 static int
973modifiers_gdk2vim(guint state)
974{
975 int modifiers = 0;
976
977 if (state & GDK_SHIFT_MASK)
978 modifiers |= MOD_MASK_SHIFT;
979 if (state & GDK_CONTROL_MASK)
980 modifiers |= MOD_MASK_CTRL;
981 if (state & GDK_MOD1_MASK)
982 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +0200983#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +0200984 if (state & GDK_SUPER_MASK)
985 modifiers |= MOD_MASK_META;
986#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000987 if (state & GDK_MOD4_MASK)
988 modifiers |= MOD_MASK_META;
989
990 return modifiers;
991}
992
993 static int
994modifiers_gdk2mouse(guint state)
995{
996 int modifiers = 0;
997
998 if (state & GDK_SHIFT_MASK)
999 modifiers |= MOUSE_SHIFT;
1000 if (state & GDK_CONTROL_MASK)
1001 modifiers |= MOUSE_CTRL;
1002 if (state & GDK_MOD1_MASK)
1003 modifiers |= MOUSE_ALT;
1004
1005 return modifiers;
1006}
1007
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008/*
1009 * Main keyboard handler:
1010 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001012key_press_event(GtkWidget *widget UNUSED,
1013 GdkEventKey *event,
1014 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015{
Bram Moolenaar30613902019-12-01 22:11:18 +01001016 // For GTK+ 2 we know for sure how large the string might get.
1017 // (That is, up to 6 bytes + NUL + CSI escapes + safety measure.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 guint key_sym;
1020 int len;
1021 int i;
1022 int modifiers;
1023 int key;
1024 guint state;
1025 char_u *s, *d;
1026
Bram Moolenaar20892c12011-06-26 04:49:00 +02001027 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 key_sym = event->keyval;
1029 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030
1031#ifdef FEAT_XIM
1032 if (xim_queue_key_press_event(event, TRUE))
1033 return TRUE;
1034#endif
1035
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036#ifdef SunXK_F36
1037 /*
1038 * These keys have bogus lookup strings, and trapping them here is
1039 * easier than trying to XRebindKeysym() on them with every possible
1040 * combination of modifiers.
1041 */
1042 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1043 len = 0;
1044 else
1045#endif
1046 {
Bram Moolenaarf4ae6b22020-05-30 19:52:46 +02001047 len = keyval_to_string(key_sym, string2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048
Bram Moolenaar30613902019-12-01 22:11:18 +01001049 // Careful: convert_input() doesn't handle the NUL character.
1050 // No need to convert pure ASCII anyway, thus the len > 1 check.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 if (len > 1 && input_conv.vc_type != CONV_NONE)
1052 len = convert_input(string2, len, sizeof(string2));
1053
1054 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 d = string;
1056 for (i = 0; i < len; ++i)
1057 {
1058 *d++ = s[i];
1059 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1060 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001061 // Turn CSI into K_CSI.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062 *d++ = KS_EXTRA;
1063 *d++ = (int)KE_CSI;
1064 }
1065 }
1066 len = d - string;
1067 }
1068
Bram Moolenaar30613902019-12-01 22:11:18 +01001069 // Shift-Tab results in Left_Tab, but we want <S-Tab>
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 if (key_sym == GDK_ISO_Left_Tab)
1071 {
1072 key_sym = GDK_Tab;
1073 state |= GDK_SHIFT_MASK;
1074 }
1075
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076#ifdef FEAT_MENU
Bram Moolenaar30613902019-12-01 22:11:18 +01001077 // If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1078 // is a menu shortcut, we ignore everything with the ALT modifier.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 if ((state & GDK_MOD1_MASK)
1080 && gui.menu_is_active
1081 && (*p_wak == 'y'
1082 || (*p_wak == 'm'
1083 && len == 1
1084 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar30613902019-12-01 22:11:18 +01001085 // For GTK2 we return false to signify that we haven't handled the
1086 // keypress, so that gtk will handle the mnemonic or accelerator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088#endif
1089
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001090 // We used to apply Alt/Meta to the key here (Mod1Mask), but that is now
1091 // done later, the same as it happens for the terminal. Hopefully that
1092 // works for everybody...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093
Bram Moolenaar30613902019-12-01 22:11:18 +01001094 // Check for special keys. Also do this when len == 1 (key has an ASCII
1095 // value) to detect backspace, delete and keypad keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 if (len == 0 || len == 1)
1097 {
1098 for (i = 0; special_keys[i].key_sym != 0; i++)
1099 {
1100 if (special_keys[i].key_sym == key_sym)
1101 {
1102 string[0] = CSI;
1103 string[1] = special_keys[i].code0;
1104 string[2] = special_keys[i].code1;
1105 len = -3;
1106 break;
1107 }
1108 }
1109 }
1110
Bram Moolenaar30613902019-12-01 22:11:18 +01001111 if (len == 0) // Unrecognized key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112 return TRUE;
1113
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001114 // For some keys a shift modifier is translated into another key code.
1115 if (len == -3)
1116 key = TO_SPECIAL(string[1], string[2]);
1117 else
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001118 {
1119 string[len] = NUL;
1120 key = mb_ptr2char(string);
1121 }
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001122
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001123 // Handle modifiers.
1124 modifiers = modifiers_gdk2vim(state);
1125
1126 // Recognize special keys.
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001127 key = simplify_key(key, &modifiers);
1128 if (key == CSI)
1129 key = K_CSI;
1130 if (IS_SPECIAL(key))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 {
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001132 string[0] = CSI;
1133 string[1] = K_SECOND(key);
1134 string[2] = K_THIRD(key);
1135 len = 3;
1136 }
1137 else
1138 {
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001139 // Some keys need adjustment when the Ctrl modifier is used.
1140 key = may_adjust_key_for_ctrl(modifiers, key);
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001141
Bram Moolenaar4e2114e2020-10-07 16:12:37 +02001142 // May remove the Shift modifier if it's included in the key.
Bram Moolenaaref6746f2020-06-20 14:43:23 +02001143 modifiers = may_remove_shift_modifier(modifiers, key);
1144
Bram Moolenaar820ffa52020-06-21 15:09:14 +02001145 len = mb_char2bytes(key, string);
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001146 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147
Bram Moolenaarfd615a32020-05-16 14:01:51 +02001148 if (modifiers != 0)
1149 {
1150 string2[0] = CSI;
1151 string2[1] = KS_MODIFIER;
1152 string2[2] = modifiers;
1153 add_to_input_buf(string2, 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 }
1155
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001156 // Check if the key interrupts.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 {
Bram Moolenaar4e1d8bd2020-08-01 13:10:14 +02001158 int int_ch = check_for_interrupt(key, modifiers);
1159
1160 if (int_ch != NUL)
1161 {
1162 trash_input_buf();
1163 string[0] = int_ch;
1164 len = 1;
1165 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 }
1167
1168 add_to_input_buf(string, len);
1169
Bram Moolenaar30613902019-12-01 22:11:18 +01001170 // blank out the pointer if necessary
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 if (p_mh)
1172 gui_mch_mousehide(TRUE);
1173
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 return TRUE;
1175}
1176
Bram Moolenaar98921892016-02-23 17:14:37 +01001177#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001179key_release_event(GtkWidget *widget UNUSED,
1180 GdkEventKey *event,
1181 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182{
Bram Moolenaar98921892016-02-23 17:14:37 +01001183# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001184 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 /*
1186 * GTK+ 2 input methods may do fancy stuff on key release events too.
1187 * With the default IM for instance, you can enter any UCS code point
1188 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1189 */
1190 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001191# else
1192 return TRUE;
1193# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194}
1195#endif
1196
1197
Bram Moolenaar30613902019-12-01 22:11:18 +01001198/////////////////////////////////////////////////////////////////////////////
1199// Selection handlers:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200
Bram Moolenaar30613902019-12-01 22:11:18 +01001201// Remember when clip_lose_selection was called from here, we must not call
1202// gtk_selection_owner_set() then.
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001203static int in_selection_clear_event = FALSE;
1204
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001206selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001208 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001210 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 if (event->selection == clip_plus.gtk_sel_atom)
1212 clip_lose_selection(&clip_plus);
1213 else
1214 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001215 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 return TRUE;
1218}
1219
Bram Moolenaar30613902019-12-01 22:11:18 +01001220#define RS_NONE 0 // selection_received_cb() not called yet
1221#define RS_OK 1 // selection_received_cb() called and OK
1222#define RS_FAIL 2 // selection_received_cb() called and failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223static int received_selection = RS_NONE;
1224
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001226selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001228 guint time_ UNUSED,
1229 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001231 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 char_u *text;
1233 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001236 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237
Bram Moolenaar98921892016-02-23 17:14:37 +01001238 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 cbd = &clip_plus;
1240 else
1241 cbd = &clip_star;
1242
Bram Moolenaar98921892016-02-23 17:14:37 +01001243 text = (char_u *)gtk_selection_data_get_data(data);
1244 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245
1246 if (text == NULL || len <= 0)
1247 {
1248 received_selection = RS_FAIL;
Bram Moolenaar30613902019-12-01 22:11:18 +01001249 // clip_free_selection(cbd); ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 return;
1252 }
1253
Bram Moolenaar98921892016-02-23 17:14:37 +01001254 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 {
1256 motion_type = *text++;
1257 --len;
1258 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001259 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 {
1261 char_u *enc;
1262 vimconv_T conv;
1263
1264 motion_type = *text++;
1265 --len;
1266
1267 enc = text;
1268 text += STRLEN(text) + 1;
1269 len -= text - enc;
1270
Bram Moolenaar30613902019-12-01 22:11:18 +01001271 // If the encoding of the text is different from 'encoding', attempt
1272 // converting it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 conv.vc_type = CONV_NONE;
1274 convert_setup(&conv, enc, p_enc);
1275 if (conv.vc_type != CONV_NONE)
1276 {
1277 tmpbuf = string_convert(&conv, text, &len);
1278 if (tmpbuf != NULL)
1279 text = tmpbuf;
1280 convert_setup(&conv, NULL, NULL);
1281 }
1282 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283
Bram Moolenaar30613902019-12-01 22:11:18 +01001284 // gtk_selection_data_get_text() handles all the nasty details
1285 // and targets and encodings etc. This rocks so hard.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 else
1287 {
1288 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1289 if (tmpbuf_utf8 != NULL)
1290 {
1291 len = STRLEN(tmpbuf_utf8);
1292 if (input_conv.vc_type != CONV_NONE)
1293 {
1294 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1295 if (tmpbuf != NULL)
1296 text = tmpbuf;
1297 }
1298 else
1299 text = tmpbuf_utf8;
1300 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001301 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1302 {
1303 vimconv_T conv;
1304
Bram Moolenaar30613902019-12-01 22:11:18 +01001305 // UTF-16, we get this for HTML
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001306 conv.vc_type = CONV_NONE;
1307 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1308
1309 if (conv.vc_type != CONV_NONE)
1310 {
1311 text += 2;
1312 len -= 2;
1313 tmpbuf = string_convert(&conv, text, &len);
1314 convert_setup(&conv, NULL, NULL);
1315 }
1316 if (tmpbuf != NULL)
1317 text = tmpbuf;
1318 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320
Bram Moolenaar30613902019-12-01 22:11:18 +01001321 // Chop off any trailing NUL bytes. OpenOffice sends these.
Bram Moolenaara76638f2010-06-05 12:49:46 +02001322 while (len > 0 && text[len - 1] == NUL)
1323 --len;
1324
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 clip_yank_selection(motion_type, text, (long)len, cbd);
1326 received_selection = RS_OK;
1327 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329}
1330
1331/*
1332 * Prepare our selection data for passing it to the external selection
1333 * client.
1334 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001336selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 GtkSelectionData *selection_data,
1338 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001339 guint time_ UNUSED,
1340 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341{
1342 char_u *string;
1343 char_u *tmpbuf;
1344 long_u tmplen;
1345 int length;
1346 int motion_type;
1347 GdkAtom type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001348 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349
Bram Moolenaar98921892016-02-23 17:14:37 +01001350 if (gtk_selection_data_get_selection(selection_data)
1351 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 cbd = &clip_plus;
1353 else
1354 cbd = &clip_star;
1355
1356 if (!cbd->owned)
Bram Moolenaar30613902019-12-01 22:11:18 +01001357 return; // Shouldn't ever happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358
1359 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001360 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 && info != (guint)TARGET_UTF8_STRING
1362 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 && info != (guint)TARGET_VIM
1364 && info != (guint)TARGET_COMPOUND_TEXT
1365 && info != (guint)TARGET_TEXT)
1366 return;
1367
Bram Moolenaar30613902019-12-01 22:11:18 +01001368 // get the selection from the '*'/'+' register
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 clip_get_selection(cbd);
1370
1371 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1372 if (motion_type < 0 || string == NULL)
1373 return;
Bram Moolenaar30613902019-12-01 22:11:18 +01001374 // Due to int arguments we can't handle more than G_MAXINT. Also
1375 // reserve one extra byte for NUL or the motion type; just in case.
1376 // (Not that pasting 2G of text is ever going to work, but... ;-)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1378
1379 if (info == (guint)TARGET_VIM)
1380 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001381 tmpbuf = alloc(length + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 if (tmpbuf != NULL)
1383 {
1384 tmpbuf[0] = motion_type;
1385 mch_memmove(tmpbuf + 1, string, (size_t)length);
1386 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001387 // For our own format, the first byte contains the motion type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 ++length;
1389 vim_free(string);
1390 string = tmpbuf;
1391 type = vim_atom;
1392 }
1393
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001394 else if (info == (guint)TARGET_HTML)
1395 {
1396 vimconv_T conv;
1397
Bram Moolenaar30613902019-12-01 22:11:18 +01001398 // Since we get utf-16, we probably should set it as well.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001399 conv.vc_type = CONV_NONE;
1400 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1401 if (conv.vc_type != CONV_NONE)
1402 {
1403 tmpbuf = string_convert(&conv, string, &length);
1404 convert_setup(&conv, NULL, NULL);
1405 vim_free(string);
1406 string = tmpbuf;
1407 }
1408
Bram Moolenaar30613902019-12-01 22:11:18 +01001409 // Prepend the BOM: "fffe"
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001410 if (string != NULL)
1411 {
1412 tmpbuf = alloc(length + 2);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001413 if (tmpbuf != NULL)
1414 {
1415 tmpbuf[0] = 0xff;
1416 tmpbuf[1] = 0xfe;
1417 mch_memmove(tmpbuf + 2, string, (size_t)length);
1418 vim_free(string);
1419 string = tmpbuf;
1420 length += 2;
1421 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001422
Bram Moolenaar98921892016-02-23 17:14:37 +01001423#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001424 // Looks redundant even for GTK2 because these values are
1425 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001426 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001427 selection_data->format = 16; // 16 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001428#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001429 gtk_selection_data_set(selection_data, html_atom, 16,
1430 string, length);
1431 vim_free(string);
1432 }
1433 return;
1434 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 else if (info == (guint)TARGET_VIMENC)
1436 {
1437 int l = STRLEN(p_enc);
1438
Bram Moolenaar30613902019-12-01 22:11:18 +01001439 // contents: motion_type 'encoding' NUL text
Bram Moolenaar964b3742019-05-24 18:54:09 +02001440 tmpbuf = alloc(length + l + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 if (tmpbuf != NULL)
1442 {
1443 tmpbuf[0] = motion_type;
1444 STRCPY(tmpbuf + 1, p_enc);
1445 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001446 length += l + 2;
1447 vim_free(string);
1448 string = tmpbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450 type = vimenc_atom;
1451 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452
Bram Moolenaar30613902019-12-01 22:11:18 +01001453 // gtk_selection_data_set_text() handles everything for us. This is
1454 // so easy and simple and cool, it'd be insane not to use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 else
1456 {
1457 if (output_conv.vc_type != CONV_NONE)
1458 {
1459 tmpbuf = string_convert(&output_conv, string, &length);
1460 vim_free(string);
1461 if (tmpbuf == NULL)
1462 return;
1463 string = tmpbuf;
1464 }
Bram Moolenaar30613902019-12-01 22:11:18 +01001465 // Validate the string to avoid runtime warnings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1467 {
1468 gtk_selection_data_set_text(selection_data,
1469 (const char *)string, length);
1470 }
1471 vim_free(string);
1472 return;
1473 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474
1475 if (string != NULL)
1476 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001477#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001478 // Looks redundant even for GTK2 because these values are
1479 // overwritten by gtk_selection_data_set() that follows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 selection_data->type = selection_data->target;
Bram Moolenaar30613902019-12-01 22:11:18 +01001481 selection_data->format = 8; // 8 bits per char
Bram Moolenaar98921892016-02-23 17:14:37 +01001482#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 gtk_selection_data_set(selection_data, type, 8, string, length);
1484 vim_free(string);
1485 }
1486}
1487
1488/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001489 * Check if the GUI can be started. Called before gvimrc is sourced and
1490 * before fork().
1491 * Return OK or FAIL.
1492 */
1493 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001494gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001495{
1496 char_u *p;
1497
Bram Moolenaar30613902019-12-01 22:11:18 +01001498 // Guess that when $DISPLAY isn't set the GUI can't start.
Bram Moolenaar29695702012-05-18 17:03:18 +02001499 p = mch_getenv((char_u *)"DISPLAY");
1500 if (p == NULL || *p == NUL)
1501 {
1502 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001503 if (give_message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001504 emsg(_((char *)e_opendisp));
Bram Moolenaar29695702012-05-18 17:03:18 +02001505 return FAIL;
1506 }
1507 return OK;
1508}
1509
1510/*
1511 * Check if the GUI can be started. Called before gvimrc is sourced but after
1512 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 * Return OK or FAIL.
1514 */
1515 int
1516gui_mch_init_check(void)
1517{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001518#ifdef USE_GRESOURCE
1519 static int res_registered = FALSE;
1520
1521 if (!res_registered)
1522 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001523 // Call this function in the GUI process; otherwise, the resources
1524 // won't be available. Don't call it twice.
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001525 res_registered = TRUE;
1526 gui_gtk_register_resource();
1527 }
1528#endif
1529
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001530#if GTK_CHECK_VERSION(3,10,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01001531 // Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1532 // support for other backends such as Wayland.
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001533 gdk_set_allowed_backends ("x11");
1534#endif
1535
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536#ifdef FEAT_GUI_GNOME
1537 if (gtk_socket_id == 0)
1538 using_gnome = 1;
1539#endif
1540
Bram Moolenaar30613902019-12-01 22:11:18 +01001541 // This defaults to argv[0], but we want it to match the name of the
1542 // shipped gvim.desktop so that Vim's windows can be associated with this
1543 // file.
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001544 g_set_prgname("gvim");
1545
Bram Moolenaar30613902019-12-01 22:11:18 +01001546 // Don't use gtk_init() or gnome_init(), it exits on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 if (!gtk_init_check(&gui_argc, &gui_argv))
1548 {
1549 gui.dying = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001550 emsg(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 return FAIL;
1552 }
1553
1554 return OK;
1555}
1556
Bram Moolenaar30613902019-12-01 22:11:18 +01001557/////////////////////////////////////////////////////////////////////////////
1558// Mouse handling callbacks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559
1560
1561static guint mouse_click_timer = 0;
1562static int mouse_timed_out = TRUE;
1563
1564/*
1565 * Timer used to recognize multiple clicks of the mouse button
1566 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001567 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568mouse_click_timer_cb(gpointer data)
1569{
Bram Moolenaar30613902019-12-01 22:11:18 +01001570 // we don't use this information currently
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 int *timed_out = (int *) data;
1572
1573 *timed_out = TRUE;
Bram Moolenaar30613902019-12-01 22:11:18 +01001574 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575}
1576
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001577static guint motion_repeat_timer = 0;
1578static int motion_repeat_offset = FALSE;
1579static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580
1581 static void
1582process_motion_notify(int x, int y, GdkModifierType state)
1583{
1584 int button;
1585 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001586 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001587
1588 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1589 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1590 GDK_BUTTON5_MASK))
1591 ? MOUSE_DRAG : ' ';
1592
Bram Moolenaar30613902019-12-01 22:11:18 +01001593 // If our pointer is currently hidden, then we should show it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 gui_mch_mousehide(FALSE);
1595
Bram Moolenaar30613902019-12-01 22:11:18 +01001596 // Just moving the rodent above the drawing area without any button
1597 // being pressed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 if (button != MOUSE_DRAG)
1599 {
1600 gui_mouse_moved(x, y);
1601 return;
1602 }
1603
Bram Moolenaar30613902019-12-01 22:11:18 +01001604 // translate modifier coding between the main engine and GTK
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001605 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606
Bram Moolenaar30613902019-12-01 22:11:18 +01001607 // inform the editor engine about the occurrence of this event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1609
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 /*
1611 * Auto repeat timer handling.
1612 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001613 gtk_widget_get_allocation(gui.drawarea, &allocation);
1614
1615 if (x < 0 || y < 0
1616 || x >= allocation.width
1617 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 {
1619
1620 int dx;
1621 int dy;
1622 int offshoot;
1623 int delay = 10;
1624
Bram Moolenaar30613902019-12-01 22:11:18 +01001625 // Calculate the maximal distance of the cursor from the drawing area.
1626 // (offshoot can't become negative here!).
Bram Moolenaar98921892016-02-23 17:14:37 +01001627 dx = x < 0 ? -x : x - allocation.width;
1628 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629
1630 offshoot = dx > dy ? dx : dy;
1631
Bram Moolenaar30613902019-12-01 22:11:18 +01001632 // Make a linearly decaying timer delay with a threshold of 5 at a
1633 // distance of 127 pixels from the main window.
1634 //
1635 // One could think endlessly about the most ergonomic variant here.
1636 // For example it could make sense to calculate the distance from the
1637 // drags start instead...
1638 //
1639 // Maybe a parabolic interpolation would suite us better here too...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 if (offshoot > 127)
1641 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001642 // 5 appears to be somehow near to my perceptual limits :-).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 delay = 5;
1644 }
1645 else
1646 {
1647 delay = (130 * (127 - offshoot)) / 127 + 5;
1648 }
1649
Bram Moolenaar30613902019-12-01 22:11:18 +01001650 // shoot again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001652 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1653 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 }
1655}
1656
Bram Moolenaar98921892016-02-23 17:14:37 +01001657#if GTK_CHECK_VERSION(3,0,0)
1658 static GdkDevice *
1659gui_gtk_get_pointer_device(GtkWidget *widget)
1660{
1661 GdkWindow * const win = gtk_widget_get_window(widget);
1662 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001663# if GTK_CHECK_VERSION(3,20,0)
1664 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1665 return gdk_seat_get_pointer(seat);
1666# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001667 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1668 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001669# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001670}
1671
1672 static GdkWindow *
1673gui_gtk_get_pointer(GtkWidget *widget,
1674 gint *x,
1675 gint *y,
1676 GdkModifierType *state)
1677{
1678 GdkWindow * const win = gtk_widget_get_window(widget);
1679 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1680 return gdk_window_get_device_position(win, dev , x, y, state);
1681}
1682
Bram Moolenaar2369c152016-03-04 23:08:25 +01001683# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001684 static GdkWindow *
1685gui_gtk_window_at_position(GtkWidget *widget,
1686 gint *x,
1687 gint *y)
1688{
1689 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1690 return gdk_device_get_window_at_position(dev, x, y);
1691}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001692# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01001693#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar664323e2018-09-18 22:30:07 +02001694# define gui_gtk_get_pointer(wid, x, y, s) \
1695 gdk_window_get_pointer((wid)->window, x, y, s)
1696# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001697#endif
1698
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699/*
1700 * Timer used to recognize multiple clicks of the mouse button.
1701 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001702 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001703motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704{
1705 int x;
1706 int y;
1707 GdkModifierType state;
1708
Bram Moolenaar98921892016-02-23 17:14:37 +01001709 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710
1711 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1712 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1713 GDK_BUTTON5_MASK)))
1714 {
1715 motion_repeat_timer = 0;
1716 return FALSE;
1717 }
1718
Bram Moolenaar30613902019-12-01 22:11:18 +01001719 // If there already is a mouse click in the input buffer, wait another
1720 // time (otherwise we would create a backlog of clicks)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 if (vim_used_in_input_buf() > 10)
1722 return TRUE;
1723
1724 motion_repeat_timer = 0;
1725
1726 /*
1727 * Fake a motion event.
1728 * Trick: Pretend the mouse moved to the next character on every other
1729 * event, otherwise drag events will be discarded, because they are still
1730 * in the same character.
1731 */
1732 if (motion_repeat_offset)
1733 x += gui.char_width;
1734
1735 motion_repeat_offset = !motion_repeat_offset;
1736 process_motion_notify(x, y, state);
1737
Bram Moolenaar30613902019-12-01 22:11:18 +01001738 // Don't happen again. We will get reinstalled in the synthetic event
1739 // if needed -- thus repeating should still work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 return FALSE;
1741}
1742
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001744motion_notify_event(GtkWidget *widget,
1745 GdkEventMotion *event,
1746 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747{
1748 if (event->is_hint)
1749 {
1750 int x;
1751 int y;
1752 GdkModifierType state;
1753
Bram Moolenaar98921892016-02-23 17:14:37 +01001754 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 process_motion_notify(x, y, state);
1756 }
1757 else
1758 {
1759 process_motion_notify((int)event->x, (int)event->y,
1760 (GdkModifierType)event->state);
1761 }
1762
Bram Moolenaar30613902019-12-01 22:11:18 +01001763 return TRUE; // handled
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764}
1765
1766
1767/*
1768 * Mouse button handling. Note please that we are capturing multiple click's
1769 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1770 * This is due to the way the generic VIM code is recognizing multiple clicks.
1771 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001773button_press_event(GtkWidget *widget,
1774 GdkEventButton *event,
1775 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776{
1777 int button;
1778 int repeated_click = FALSE;
1779 int x, y;
1780 int_u vim_modifiers;
1781
Bram Moolenaar20892c12011-06-26 04:49:00 +02001782 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001783
Bram Moolenaar30613902019-12-01 22:11:18 +01001784 // Make sure we have focus now we've been selected
Bram Moolenaar98921892016-02-23 17:14:37 +01001785 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 gtk_widget_grab_focus(widget);
1787
1788 /*
1789 * Don't let additional events about multiple clicks send by GTK to us
1790 * after the initial button press event confuse us.
1791 */
1792 if (event->type != GDK_BUTTON_PRESS)
1793 return FALSE;
1794
1795 x = event->x;
1796 y = event->y;
1797
Bram Moolenaar30613902019-12-01 22:11:18 +01001798 // Handle multiple clicks
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 if (!mouse_timed_out && mouse_click_timer)
1800 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001801 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 mouse_click_timer = 0;
1803 repeated_click = TRUE;
1804 }
1805
1806 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001807 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1808 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809
1810 switch (event->button)
1811 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001812 // Keep in sync with gui_x11.c.
1813 // Buttons 4-7 are handled in scroll_event()
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001814 case 1: button = MOUSE_LEFT; break;
1815 case 2: button = MOUSE_MIDDLE; break;
1816 case 3: button = MOUSE_RIGHT; break;
1817 case 8: button = MOUSE_X1; break;
1818 case 9: button = MOUSE_X2; break;
1819 default:
Bram Moolenaar30613902019-12-01 22:11:18 +01001820 return FALSE; // Unknown button
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 }
1822
1823#ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001824 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 if (im_is_preediting())
1826 xim_reset();
1827#endif
1828
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001829 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830
1831 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832
1833 return TRUE;
1834}
1835
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001837 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001840scroll_event(GtkWidget *widget,
1841 GdkEventScroll *event,
1842 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843{
1844 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001845 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846
Bram Moolenaar98921892016-02-23 17:14:37 +01001847 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 gtk_widget_grab_focus(widget);
1849
1850 switch (event->direction)
1851 {
1852 case GDK_SCROLL_UP:
1853 button = MOUSE_4;
1854 break;
1855 case GDK_SCROLL_DOWN:
1856 button = MOUSE_5;
1857 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02001858 case GDK_SCROLL_LEFT:
1859 button = MOUSE_7;
1860 break;
1861 case GDK_SCROLL_RIGHT:
1862 button = MOUSE_6;
1863 break;
Bram Moolenaar30613902019-12-01 22:11:18 +01001864 default: // This shouldn't happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 return FALSE;
1866 }
1867
1868# ifdef FEAT_XIM
Bram Moolenaar30613902019-12-01 22:11:18 +01001869 // cancel any preediting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 if (im_is_preediting())
1871 xim_reset();
1872# endif
1873
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001874 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875
1876 gui_send_mouse_event(button, (int)event->x, (int)event->y,
1877 FALSE, vim_modifiers);
1878
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 return TRUE;
1880}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881
1882
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001884button_release_event(GtkWidget *widget UNUSED,
1885 GdkEventButton *event,
1886 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887{
1888 int x, y;
1889 int_u vim_modifiers;
1890
Bram Moolenaar20892c12011-06-26 04:49:00 +02001891 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001892
Bram Moolenaar30613902019-12-01 22:11:18 +01001893 // Remove any motion "machine gun" timers used for automatic further
1894 // extension of allocation areas if outside of the applications window
1895 // area .
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 if (motion_repeat_timer)
1897 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001898 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 motion_repeat_timer = 0;
1900 }
1901
1902 x = event->x;
1903 y = event->y;
1904
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001905 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906
1907 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908
1909 return TRUE;
1910}
1911
1912
1913#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01001914/////////////////////////////////////////////////////////////////////////////
1915// Drag aNd Drop support handlers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916
1917/*
1918 * Count how many items there may be and separate them with a NUL.
1919 * Apparently the items are separated with \r\n. This is not documented,
1920 * thus be careful not to go past the end. Also allow separation with
1921 * NUL characters.
1922 */
1923 static int
1924count_and_decode_uri_list(char_u *out, char_u *raw, int len)
1925{
1926 int i;
1927 char_u *p = out;
1928 int count = 0;
1929
1930 for (i = 0; i < len; ++i)
1931 {
1932 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
1933 {
1934 if (p > out && p[-1] != NUL)
1935 {
1936 ++count;
1937 *p++ = NUL;
1938 }
1939 }
1940 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
1941 {
1942 *p++ = hexhex2nr(raw + i + 1);
1943 i += 2;
1944 }
1945 else
1946 *p++ = raw[i];
1947 }
1948 if (p > out && p[-1] != NUL)
1949 {
Bram Moolenaar30613902019-12-01 22:11:18 +01001950 *p = NUL; // last item didn't have \r or \n
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 ++count;
1952 }
1953 return count;
1954}
1955
1956/*
1957 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
1958 * this process, URI which protocol is not "file:" are removed. Return
1959 * length of array (less than "max").
1960 */
1961 static int
1962filter_uri_list(char_u **outlist, int max, char_u *src)
1963{
1964 int i, j;
1965
1966 for (i = j = 0; i < max; ++i)
1967 {
1968 outlist[i] = NULL;
1969 if (STRNCMP(src, "file:", 5) == 0)
1970 {
1971 src += 5;
1972 if (STRNCMP(src, "//localhost", 11) == 0)
1973 src += 11;
1974 while (src[0] == '/' && src[1] == '/')
1975 ++src;
1976 outlist[j++] = vim_strsave(src);
1977 }
1978 src += STRLEN(src) + 1;
1979 }
1980 return j;
1981}
1982
1983 static char_u **
1984parse_uri_list(int *count, char_u *data, int len)
1985{
1986 int n = 0;
1987 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02001988 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001990 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 {
1992 n = count_and_decode_uri_list(tmp, data, len);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001993 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 n = filter_uri_list(array, n, tmp);
1995 }
1996 vim_free(tmp);
1997 *count = n;
1998 return array;
1999}
2000
2001 static void
2002drag_handle_uri_list(GdkDragContext *context,
2003 GtkSelectionData *data,
2004 guint time_,
2005 GdkModifierType state,
2006 gint x,
2007 gint y)
2008{
2009 char_u **fnames;
2010 int nfiles = 0;
2011
Bram Moolenaar98921892016-02-23 17:14:37 +01002012 fnames = parse_uri_list(&nfiles,
2013 (char_u *)gtk_selection_data_get_data(data),
2014 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015
2016 if (fnames != NULL && nfiles > 0)
2017 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002018 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019
Bram Moolenaar30613902019-12-01 22:11:18 +01002020 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002022 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023
2024 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2025 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002026 else
2027 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028}
2029
2030 static void
2031drag_handle_text(GdkDragContext *context,
2032 GtkSelectionData *data,
2033 guint time_,
2034 GdkModifierType state)
2035{
2036 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2037 char_u *text;
2038 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040
Bram Moolenaar98921892016-02-23 17:14:37 +01002041 text = (char_u *)gtk_selection_data_get_data(data);
2042 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043
Bram Moolenaar98921892016-02-23 17:14:37 +01002044 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 if (input_conv.vc_type != CONV_NONE)
2047 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 if (tmpbuf != NULL)
2049 text = tmpbuf;
2050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051
2052 dnd_yank_drag_data(text, (long)len);
Bram Moolenaar30613902019-12-01 22:11:18 +01002053 gtk_drag_finish(context, TRUE, FALSE, time_); // accept
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002056 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057
2058 if (dropkey[2] != 0)
2059 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2060 else
2061 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062}
2063
2064/*
2065 * DND receiver.
2066 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 static void
2068drag_data_received_cb(GtkWidget *widget,
2069 GdkDragContext *context,
2070 gint x,
2071 gint y,
2072 GtkSelectionData *data,
2073 guint info,
2074 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002075 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076{
2077 GdkModifierType state;
2078
Bram Moolenaar30613902019-12-01 22:11:18 +01002079 // Guard against trash
Bram Moolenaar98921892016-02-23 17:14:37 +01002080 const guchar * const data_data = gtk_selection_data_get_data(data);
2081 const gint data_length = gtk_selection_data_get_length(data);
2082 const gint data_format = gtk_selection_data_get_format(data);
2083
2084 if (data_data == NULL
2085 || data_length <= 0
2086 || data_format != 8
2087 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 {
2089 gtk_drag_finish(context, FALSE, FALSE, time_);
2090 return;
2091 }
2092
Bram Moolenaar30613902019-12-01 22:11:18 +01002093 // Get the current modifier state for proper distinguishment between
2094 // different operations later.
Bram Moolenaar98921892016-02-23 17:14:37 +01002095 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096
Bram Moolenaar30613902019-12-01 22:11:18 +01002097 // Not sure about the role of "text/plain" here...
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 if (info == (guint)TARGET_TEXT_URI_LIST)
2099 drag_handle_uri_list(context, data, time_, state, x, y);
2100 else
2101 drag_handle_text(context, data, time_, state);
2102
2103}
Bram Moolenaar30613902019-12-01 22:11:18 +01002104#endif // FEAT_DND
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105
2106
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002107#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108/*
2109 * GnomeClient interact callback. Check for unsaved buffers that cannot
2110 * be abandoned and pop up a dialog asking the user for confirmation if
2111 * necessary.
2112 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002114sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002116 GnomeDialogType type UNUSED,
2117 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118{
2119 cmdmod_T save_cmdmod;
2120 gboolean shutdown_cancelled;
2121
2122 save_cmdmod = cmdmod;
2123
2124# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02002125 cmdmod.cmod_flags |= CMOD_BROWSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126# endif
2127# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02002128 cmdmod.cmod_flags |= CMOD_CONFIRM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129# endif
2130 /*
2131 * If there are changed buffers, present the user with
2132 * a dialog if possible, otherwise give an error message.
2133 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002134 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135
2136 exiting = FALSE;
2137 cmdmod = save_cmdmod;
Bram Moolenaar30613902019-12-01 22:11:18 +01002138 setcursor(); // position the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 out_flush();
2140 /*
2141 * If the user hit the [Cancel] button the whole shutdown
2142 * will be cancelled. Wow, quite powerful feature (:
2143 */
2144 gnome_interaction_key_return(key, shutdown_cancelled);
2145}
2146
2147/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 * "save_yourself" signal handler. Initiate an interaction to ask the user
2149 * for confirmation if necessary. Save the current editing session and tell
2150 * the session manager how to restart Vim.
2151 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 static gboolean
2153sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002154 gint phase UNUSED,
2155 GnomeSaveStyle save_style UNUSED,
2156 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002158 gboolean fast UNUSED,
2159 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160{
2161 static const char suffix[] = "-session.vim";
2162 char *session_file;
2163 unsigned int len;
2164 gboolean success;
2165
Bram Moolenaar30613902019-12-01 22:11:18 +01002166 // Always request an interaction if possible. check_changed_any()
2167 // won't actually show a dialog unless any buffers have been modified.
2168 // There doesn't seem to be an obvious way to check that without
2169 // automatically firing the dialog. Anyway, it works just fine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 if (interact_style == GNOME_INTERACT_ANY)
2171 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2172 &sm_client_check_changed_any,
2173 NULL);
2174 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002175 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176
Bram Moolenaar30613902019-12-01 22:11:18 +01002177 // The path is unique for each session save. We do neither know nor care
2178 // which session script will actually be used later. This decision is in
2179 // the domain of the session manager.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 session_file = gnome_config_get_real_path(
2181 gnome_client_get_config_prefix(client));
2182 len = strlen(session_file);
2183
2184 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
Bram Moolenaar30613902019-12-01 22:11:18 +01002185 --len; // get rid of the superfluous trailing '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186
2187 session_file = g_renew(char, session_file, len + sizeof(suffix));
2188 memcpy(session_file + len, suffix, sizeof(suffix));
2189
2190 success = write_session_file((char_u *)session_file);
2191
2192 if (success)
2193 {
2194 const char *argv[8];
2195 int i;
2196
Bram Moolenaar30613902019-12-01 22:11:18 +01002197 // Tell the session manager how to wipe out the stored session data.
2198 // This isn't as dangerous as it looks, don't worry :) session_file
2199 // is a unique absolute filename. Usually it'll be something like
2200 // `/home/user/.gnome2/vim-XXXXXX-session.vim'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201 i = 0;
2202 argv[i++] = "rm";
2203 argv[i++] = session_file;
2204 argv[i] = NULL;
2205
2206 gnome_client_set_discard_command(client, i, (char **)argv);
2207
Bram Moolenaar30613902019-12-01 22:11:18 +01002208 // Tell the session manager how to restore the just saved session.
2209 // This is easily done thanks to Vim's -S option. Pass the -f flag
2210 // since there's no need to fork -- it might even cause confusion.
2211 // Also pass the window role to give the WM something to match on.
2212 // The role is set in gui_mch_open(), thus should _never_ be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 i = 0;
2214 argv[i++] = restart_command;
2215 argv[i++] = "-f";
2216 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 argv[i++] = "--role";
2218 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 argv[i++] = "-S";
2220 argv[i++] = session_file;
2221 argv[i] = NULL;
2222
2223 gnome_client_set_restart_command(client, i, (char **)argv);
2224 gnome_client_set_clone_command(client, 0, NULL);
2225 }
2226
2227 g_free(session_file);
2228
2229 return success;
2230}
2231
2232/*
2233 * Called when the session manager wants us to die. There isn't much to save
2234 * here since "save_yourself" has been emitted before (unless serious trouble
2235 * is happening).
2236 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002238sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239{
Bram Moolenaar30613902019-12-01 22:11:18 +01002240 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 full_screen = FALSE;
2242
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002243 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002244 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002245 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 preserve_exit();
2247}
2248
2249/*
2250 * Connect our signal handlers to be notified on session save and shutdown.
2251 */
2252 static void
2253setup_save_yourself(void)
2254{
2255 GnomeClient *client;
2256
2257 client = gnome_master_client();
2258
2259 if (client != NULL)
2260 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002261 // Must use the deprecated gtk_signal_connect() for compatibility
2262 // with GNOME 1. Arrgh, zombies!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2264 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2265 gtk_signal_connect(GTK_OBJECT(client), "die",
2266 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2267 }
2268}
2269
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002270#else // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271
2272# ifdef USE_XSMP
2273/*
2274 * GTK tells us that XSMP needs attention
2275 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002277local_xsmp_handle_requests(
2278 GIOChannel *source UNUSED,
2279 GIOCondition condition,
2280 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281{
2282 if (condition == G_IO_IN)
2283 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002284 // Do stuff; maybe close connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 if (xsmp_handle_requests() == FAIL)
2286 g_io_channel_unref((GIOChannel *)data);
2287 return TRUE;
2288 }
Bram Moolenaar30613902019-12-01 22:11:18 +01002289 // Error
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 g_io_channel_unref((GIOChannel *)data);
2291 xsmp_close();
2292 return TRUE;
2293}
Bram Moolenaar30613902019-12-01 22:11:18 +01002294# endif // USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295
2296/*
2297 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2298 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2299 */
2300 static void
2301setup_save_yourself(void)
2302{
2303 Atom *existing_atoms = NULL;
2304 int count = 0;
2305
Bram Moolenaar98921892016-02-23 17:14:37 +01002306# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 if (xsmp_icefd != -1)
2308 {
2309 /*
2310 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2311 * set up GTK IO monitor
2312 */
2313 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2314
2315 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2316 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002317 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 }
2319 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002320# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002322 // Fall back to old method
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323
Bram Moolenaar30613902019-12-01 22:11:18 +01002324 // first get the existing value
Bram Moolenaar98921892016-02-23 17:14:37 +01002325 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2326
2327 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2328 GDK_WINDOW_XID(mainwin_win),
2329 &existing_atoms, &count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330 {
2331 Atom *new_atoms;
2332 Atom save_yourself_xatom;
2333 int i;
2334
2335 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2336
Bram Moolenaar30613902019-12-01 22:11:18 +01002337 // check if WM_SAVE_YOURSELF isn't there yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 for (i = 0; i < count; ++i)
2339 if (existing_atoms[i] == save_yourself_xatom)
2340 break;
2341
2342 if (i == count)
2343 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002344 // allocate an Atoms array which is one item longer
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002345 new_atoms = ALLOC_MULT(Atom, count + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 if (new_atoms != NULL)
2347 {
2348 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2349 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002350 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2351 GDK_WINDOW_XID(mainwin_win),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 new_atoms, count + 1);
2353 vim_free(new_atoms);
2354 }
2355 }
2356 XFree(existing_atoms);
2357 }
2358 }
2359}
2360
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361/*
2362 * Installing a global event filter seems to be the only way to catch
2363 * client messages of type WM_PROTOCOLS without overriding GDK's own
2364 * client message event filter. Well, that's still better than trying
2365 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 *
2367 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2368 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2369 * I have the nasty feeling modern session managers just don't send this
2370 * deprecated message anymore. Addition: confirmed by several people.
2371 *
2372 * The GNOME session support is much cooler anyway. Unlike this ugly
2373 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2374 * it should work with KDE as well.
2375 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002377global_event_filter(GdkXEvent *xev,
2378 GdkEvent *event UNUSED,
2379 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380{
2381 XEvent *xevent = (XEvent *)xev;
2382
2383 if (xevent != NULL
2384 && xevent->type == ClientMessage
2385 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002386 && (long_u)xevent->xclient.data.l[0]
2387 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 {
2389 out_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01002390 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 /*
2392 * Set the window's WM_COMMAND property, to let the window manager
2393 * know we are done saving ourselves. We don't want to be
2394 * restarted, thus set argv to NULL.
2395 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002396 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2397 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 NULL, 0);
2399 return GDK_FILTER_REMOVE;
2400 }
2401
2402 return GDK_FILTER_CONTINUE;
2403}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002404#endif // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405
2406
2407/*
2408 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2409 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002411mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412{
Bram Moolenaar30613902019-12-01 22:11:18 +01002413// If you get an error message here, you still need to unpack the runtime
2414// archive!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415#ifdef magick
2416# undef magick
2417#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002418 // A bit hackish, but avoids casting later and allows optimization
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420#define magick vim32x32
2421#include "../runtime/vim32x32.xpm"
2422#undef magick
2423#define magick vim16x16
2424#include "../runtime/vim16x16.xpm"
2425#undef magick
2426#define magick vim48x48
2427#include "../runtime/vim48x48.xpm"
2428#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430
Bram Moolenaar98921892016-02-23 17:14:37 +01002431 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002432
Bram Moolenaar30613902019-12-01 22:11:18 +01002433 // When started with "--echo-wid" argument, write window ID on stdout.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 if (echo_wid_arg)
2435 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002436 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 fflush(stdout);
2438 }
2439
2440 if (vim_strchr(p_go, GO_ICON) != NULL)
2441 {
2442 /*
2443 * Add an icon to the main window. For fun and convenience of the user.
2444 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 GList *icons = NULL;
2446
2447 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2448 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2449 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2450
2451 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2452
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02002453 // TODO: is this type cast OK?
2454 g_list_foreach(icons, (GFunc)(void *)&g_object_unref, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 }
2457
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002458#if !defined(USE_GNOME_SESSION)
Bram Moolenaar30613902019-12-01 22:11:18 +01002459 // Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01002462 // Setup to indicate to the window manager that we want to catch the
2463 // WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2464 // manager instead.
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002465#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 if (using_gnome)
2467#endif
2468 setup_save_yourself();
2469
2470#ifdef FEAT_CLIENTSERVER
2471 if (serverName == NULL && serverDelayedStartName != NULL)
2472 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002473 // This is a :gui command in a plain vim with no previous server
Bram Moolenaar98921892016-02-23 17:14:37 +01002474 commWindow = GDK_WINDOW_XID(mainwin_win);
2475
2476 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2477 serverDelayedStartName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 }
2479 else
2480 {
2481 /*
2482 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2483 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002484 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002486 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2487 GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 }
2489 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002490 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2491 G_CALLBACK(property_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492#endif
2493}
2494
2495 static GdkCursor *
2496create_blank_pointer(void)
2497{
2498 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002499#if GTK_CHECK_VERSION(3,0,0)
2500 GdkPixbuf *blank_mask;
2501#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002503#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002505#if GTK_CHECK_VERSION(3,0,0)
2506 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2507#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 GdkColor color = { 0, 0, 0, 0 };
2509 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002510#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002512#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002513 {
2514 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2515 GdkScreen * const scrn = gdk_window_get_screen(win);
2516 root_window = gdk_screen_get_root_window(scrn);
2517 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002518#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 root_window = gtk_widget_get_root_window(gui.mainwin);
2520#endif
2521
Bram Moolenaar30613902019-12-01 22:11:18 +01002522 // Create a pseudo blank pointer, which is in fact one pixel by one pixel
2523 // in size.
Bram Moolenaar98921892016-02-23 17:14:37 +01002524#if GTK_CHECK_VERSION(3,0,0)
2525 {
2526 cairo_surface_t *surf;
2527 cairo_t *cr;
2528
2529 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2530 cr = cairo_create(surf);
2531
Bram Moolenaar36edf062016-07-21 22:10:12 +02002532 cairo_set_source_rgba(cr,
2533 color.red,
2534 color.green,
2535 color.blue,
2536 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002537 cairo_rectangle(cr, 0, 0, 1, 1);
2538 cairo_fill(cr);
2539 cairo_destroy(cr);
2540
2541 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2542 cairo_surface_destroy(surf);
2543
2544 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2545 blank_mask, 0, 0);
2546 g_object_unref(blank_mask);
2547 }
2548#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2550 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2551 &color, &color, 0, 0);
2552 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002553#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554
2555 return cursor;
2556}
2557
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 static void
2559mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002560 GdkScreen *previous_screen UNUSED,
2561 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562{
2563 if (!gtk_widget_has_screen(widget))
2564 return;
2565
2566 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002567 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 */
2569 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002570#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002571 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002572#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002574#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575
2576 gui.blank_pointer = create_blank_pointer();
2577
Bram Moolenaar98921892016-02-23 17:14:37 +01002578 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2579 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2580 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581
2582 /*
2583 * Create a new PangoContext for this screen, and initialize it
2584 * with the current font if necessary.
2585 */
2586 if (gui.text_context != NULL)
2587 g_object_unref(gui.text_context);
2588
2589 gui.text_context = gtk_widget_create_pango_context(widget);
2590 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2591
2592 if (gui.norm_font != NULL)
2593 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002594 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002595 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 }
2597}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598
2599/*
2600 * After the drawing area comes up, we calculate all colors and create the
2601 * dummy blank cursor.
2602 *
2603 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2604 * fact that the main VIM engine doesn't take them into account anywhere.
2605 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002607drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608{
2609 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002610 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611
2612#ifdef FEAT_XIM
2613 xim_init();
2614#endif
2615 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002616#if GTK_CHECK_VERSION(3,0,0)
2617 gui.surface = gdk_window_create_similar_surface(
2618 gtk_widget_get_window(widget),
2619 CAIRO_CONTENT_COLOR_ALPHA,
2620 gtk_widget_get_allocated_width(widget),
2621 gtk_widget_get_allocated_height(widget));
2622#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002624#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625
2626 gui.blank_pointer = create_blank_pointer();
2627 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002628 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629
Bram Moolenaar30613902019-12-01 22:11:18 +01002630 // get the actual size of the scrollbars, if they are realized
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2632 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2633 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2634 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002635 gtk_widget_get_allocation(sbar, &allocation);
2636 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2637 gui.scrollbar_width = allocation.width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638
2639 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002640 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2641 gui.scrollbar_height = allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642}
2643
2644/*
2645 * Properly clean up on shutdown.
2646 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002648drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649{
Bram Moolenaar30613902019-12-01 22:11:18 +01002650 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 full_screen = FALSE;
2652
2653#ifdef FEAT_XIM
2654 im_shutdown();
2655#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 if (gui.ascii_glyphs != NULL)
2657 {
2658 pango_glyph_string_free(gui.ascii_glyphs);
2659 gui.ascii_glyphs = NULL;
2660 }
2661 if (gui.ascii_font != NULL)
2662 {
2663 g_object_unref(gui.ascii_font);
2664 gui.ascii_font = NULL;
2665 }
2666 g_object_unref(gui.text_context);
2667 gui.text_context = NULL;
2668
Bram Moolenaar98921892016-02-23 17:14:37 +01002669#if GTK_CHECK_VERSION(3,0,0)
2670 if (gui.surface != NULL)
2671 {
2672 cairo_surface_destroy(gui.surface);
2673 gui.surface = NULL;
2674 }
2675#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 g_object_unref(gui.text_gc);
2677 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002678#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679
Bram Moolenaar98921892016-02-23 17:14:37 +01002680#if GTK_CHECK_VERSION(3,0,0)
2681 g_object_unref(G_OBJECT(gui.blank_pointer));
2682#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002684#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686}
2687
Bram Moolenaara859f042016-11-17 19:11:55 +01002688#if GTK_CHECK_VERSION(3,22,2)
2689 static void
2690drawarea_style_updated_cb(GtkWidget *widget UNUSED,
2691 gpointer data UNUSED)
2692#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002694drawarea_style_set_cb(GtkWidget *widget UNUSED,
2695 GtkStyle *previous_style UNUSED,
2696 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01002697#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698{
2699 gui_mch_new_colors();
2700}
2701
Bram Moolenaar98921892016-02-23 17:14:37 +01002702#if GTK_CHECK_VERSION(3,0,0)
2703 static gboolean
2704drawarea_configure_event_cb(GtkWidget *widget,
2705 GdkEventConfigure *event,
2706 gpointer data UNUSED)
2707{
2708 static int cur_width = 0;
2709 static int cur_height = 0;
2710
2711 g_return_val_if_fail(event
2712 && event->width >= 1 && event->height >= 1, TRUE);
2713
Bram Moolenaar182707a2016-11-21 20:55:58 +01002714# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01002715 // As of 3.22.2, GdkWindows have started distributing configure events to
2716 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
2717 //
2718 // As can be seen from the implementation of move_native_children() and
2719 // configure_native_child() in gdkwindow.c, those functions actually
2720 // propagate configure events to every child, failing to distinguish
2721 // "native" one from non-native one.
2722 //
2723 // Naturally, configure events propagated to here like that are fallacious
2724 // and, as a matter of fact, they trigger a geometric collapse of
2725 // gui.drawarea in fullscreen and maximized modes.
2726 //
2727 // To filter out such nuisance events, we are making use of the fact that
2728 // the field send_event of such GdkEventConfigures is set to FALSE in
2729 // configure_native_child().
2730 //
2731 // Obviously, this is a terrible hack making GVim depend on GTK's
2732 // implementation details. Therefore, watch out any relevant internal
2733 // changes happening in GTK in the feature (sigh).
2734 //
2735 // Follow-up
2736 // After a few weeks later, the GdkWindow change mentioned above was
2737 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
2738 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01002739 if (event->send_event == FALSE)
2740 return TRUE;
2741# endif
2742
Bram Moolenaar98921892016-02-23 17:14:37 +01002743 if (event->width == cur_width && event->height == cur_height)
2744 return TRUE;
2745
2746 cur_width = event->width;
2747 cur_height = event->height;
2748
2749 if (gui.surface != NULL)
2750 cairo_surface_destroy(gui.surface);
2751
2752 gui.surface = gdk_window_create_similar_surface(
2753 gtk_widget_get_window(widget),
2754 CAIRO_CONTENT_COLOR_ALPHA,
2755 event->width, event->height);
2756
2757 gtk_widget_queue_draw(widget);
2758
2759 return TRUE;
2760}
2761#endif
2762
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763/*
2764 * Callback routine for the "delete_event" signal on the toplevel window.
2765 * Tries to vim gracefully, or refuses to exit with changed buffers.
2766 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002768delete_event_cb(GtkWidget *widget UNUSED,
2769 GdkEventAny *event UNUSED,
2770 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771{
2772 gui_shell_closed();
2773 return TRUE;
2774}
2775
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002776#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2777 static int
2778get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2779{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002780# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002781 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2782
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002783 if (using_gnome && widget != NULL)
2784 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002785 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002786 BonoboDockItem *dockitem;
2787
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002788 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002789 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2790 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002791 // Only menu & toolbar are dock items. Could tabline be?
2792 // Seem to be only the 2 defined in GNOME
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002793 widget = parent;
2794 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002795
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002796 if (dockitem == NULL || dockitem->is_floating)
2797 return 0;
2798 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2799 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002800 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002801# else
2802# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01002803# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002804
Bram Moolenaar98921892016-02-23 17:14:37 +01002805 if (widget != NULL
2806 && item_orientation == orientation
2807 && gtk_widget_get_realized(widget)
2808 && gtk_widget_get_visible(widget))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002809 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02002810# if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME)
Bram Moolenaar98921892016-02-23 17:14:37 +01002811 GtkAllocation allocation;
2812
2813 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002814 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002815# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002816 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2817 return widget->allocation.height;
2818 else
2819 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01002820# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002821 }
2822 return 0;
2823}
2824#endif
2825
2826 static int
2827get_menu_tool_width(void)
2828{
2829 int width = 0;
2830
Bram Moolenaar30613902019-12-01 22:11:18 +01002831#ifdef FEAT_GUI_GNOME // these are never vertical without GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002832# ifdef FEAT_MENU
2833 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
2834# endif
2835# ifdef FEAT_TOOLBAR
2836 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
2837# endif
2838# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002839 if (gui.tabline != NULL)
2840 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002841# endif
2842#endif
2843
2844 return width;
2845}
2846
2847 static int
2848get_menu_tool_height(void)
2849{
2850 int height = 0;
2851
2852#ifdef FEAT_MENU
2853 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
2854#endif
2855#ifdef FEAT_TOOLBAR
2856 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
2857#endif
2858#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00002859 if (gui.tabline != NULL)
2860 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002861#endif
2862
2863 return height;
2864}
2865
Bram Moolenaar30613902019-12-01 22:11:18 +01002866// This controls whether we can set the real window hints at
2867// start-up when in a GtkPlug.
2868// 0 = normal processing (default)
2869// 1 = init. hints set, no-one's tried to reset since last check
2870// 2 = init. hints set, attempt made to change hints
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002871static int init_window_hints_state = 0;
2872
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002873 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002874update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002875{
2876 static int old_width = 0;
2877 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002878 static int old_min_width = 0;
2879 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002880 static int old_char_width = 0;
2881 static int old_char_height = 0;
2882
2883 int width;
2884 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002885 int min_width;
2886 int min_height;
2887
Bram Moolenaar30613902019-12-01 22:11:18 +01002888 // At start-up, don't try to set the hints until the initial
2889 // values have been used (those that dictate our initial size)
2890 // Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002891 if (!(force_width && force_height) && init_window_hints_state > 0)
2892 {
Bram Moolenaar30613902019-12-01 22:11:18 +01002893 // Don't do it!
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002894 init_window_hints_state = 2;
2895 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002896 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002897
Bram Moolenaar30613902019-12-01 22:11:18 +01002898 // This also needs to be done when the main window isn't there yet,
2899 // otherwise the hints don't work.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002900 width = gui_get_base_width();
2901 height = gui_get_base_height();
2902# ifdef FEAT_MENU
2903 height += tabline_height() * gui.char_height;
2904# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002905 width += get_menu_tool_width();
2906 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002907
Bram Moolenaar30613902019-12-01 22:11:18 +01002908 // GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
2909 // their actual widget size. When we set our size ourselves (e.g.,
2910 // 'set columns=' or init. -geom) we briefly set the min. to the size
2911 // we wish to be instead of the legitimate minimum so that we actually
2912 // resize correctly.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002913 if (force_width && force_height)
2914 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002915 min_width = force_width;
2916 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002917 }
2918 else
2919 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002920 min_width = width + MIN_COLUMNS * gui.char_width;
2921 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002922 }
2923
Bram Moolenaar30613902019-12-01 22:11:18 +01002924 // Avoid an expose event when the size didn't change.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002925 if (width != old_width
2926 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002927 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002928 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002929 || gui.char_width != old_char_width
2930 || gui.char_height != old_char_height)
2931 {
2932 GdkGeometry geometry;
2933 GdkWindowHints geometry_mask;
2934
2935 geometry.width_inc = gui.char_width;
2936 geometry.height_inc = gui.char_height;
2937 geometry.base_width = width;
2938 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002939 geometry.min_width = min_width;
2940 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002941 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
2942 |GDK_HINT_MIN_SIZE;
Bram Moolenaar30613902019-12-01 22:11:18 +01002943 // Using gui.formwin as geometry widget doesn't work as expected
2944 // with GTK+ 2 -- dunno why. Presumably all the resizing hacks
2945 // in Vim confuse GTK+.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002946 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
2947 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002948 old_width = width;
2949 old_height = height;
2950 old_min_width = min_width;
2951 old_min_height = min_height;
2952 old_char_width = gui.char_width;
2953 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002954 }
2955}
2956
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02002957#if defined(FEAT_GUI_DARKTHEME) || defined(PROTO)
2958 void
2959gui_mch_set_dark_theme(int dark)
2960{
2961# if GTK_CHECK_VERSION(3,0,0)
2962 GtkSettings *gtk_settings;
2963
2964 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
2965 g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL);
2966# endif
2967}
Bram Moolenaar30613902019-12-01 22:11:18 +01002968#endif // FEAT_GUI_DARKTHEME
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02002969
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970#ifdef FEAT_TOOLBAR
2971
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972/*
2973 * This extra effort wouldn't be necessary if we only used stock icons in the
2974 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
2975 * shouldn't be treated differently, thus we do need this.
2976 */
2977 static void
2978icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
2979{
2980 if (GTK_IS_IMAGE(widget))
2981 {
2982 GtkImage *image = (GtkImage *)widget;
2983
Bram Moolenaar98921892016-02-23 17:14:37 +01002984# if GTK_CHECK_VERSION(3,10,0)
2985 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
2986 {
2987 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
2988 const gchar *icon_name;
2989
2990 gtk_image_get_icon_name(image, &icon_name, NULL);
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02002991 image = (GtkImage *)gtk_image_new_from_icon_name(
2992 icon_name, icon_size);
Bram Moolenaar98921892016-02-23 17:14:37 +01002993 }
2994# else
Bram Moolenaar30613902019-12-01 22:11:18 +01002995 // User-defined icons are stored in a GtkIconSet
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
2997 {
2998 GtkIconSet *icon_set;
2999 GtkIconSize icon_size;
3000
3001 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3002 icon_size = (GtkIconSize)(long)user_data;
3003
3004 gtk_icon_set_ref(icon_set);
3005 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3006 gtk_icon_set_unref(icon_set);
3007 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003008# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 }
3010 else if (GTK_IS_CONTAINER(widget))
3011 {
3012 gtk_container_foreach((GtkContainer *)widget,
3013 &icon_size_changed_foreach,
3014 user_data);
3015 }
3016}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017
3018 static void
3019set_toolbar_style(GtkToolbar *toolbar)
3020{
3021 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 GtkIconSize size;
3023 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3026 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3027 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003028 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3030 style = GTK_TOOLBAR_BOTH;
3031 else if (toolbar_flags & TOOLBAR_TEXT)
3032 style = GTK_TOOLBAR_TEXT;
3033 else
3034 style = GTK_TOOLBAR_ICONS;
3035
3036 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003037# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003039# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 switch (tbis_flags)
3042 {
3043 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3044 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3045 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3046 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003047 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3048 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 default: size = GTK_ICON_SIZE_INVALID; break;
3050 }
3051 oldsize = gtk_toolbar_get_icon_size(toolbar);
3052
3053 if (size == GTK_ICON_SIZE_INVALID)
3054 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003055 // Let global user preferences decide the icon size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 gtk_toolbar_unset_icon_size(toolbar);
3057 size = gtk_toolbar_get_icon_size(toolbar);
3058 }
3059 if (size != oldsize)
3060 {
3061 gtk_container_foreach(GTK_CONTAINER(toolbar),
3062 &icon_size_changed_foreach,
3063 GINT_TO_POINTER((int)size));
3064 }
3065 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066}
3067
Bram Moolenaar30613902019-12-01 22:11:18 +01003068#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003070#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3071static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003072static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003073# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003074static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003075# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003076static int clicked_page; // page clicked in tab line
Bram Moolenaara5621492006-02-25 21:55:24 +00003077
3078/*
3079 * Handle selecting an item in the tab line popup menu.
3080 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003081 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003082tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003083{
Bram Moolenaar30613902019-12-01 22:11:18 +01003084 // Add the string cmd into input buffer
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003085 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003086}
3087
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003088 static void
3089add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3090{
3091 GtkWidget *item;
3092 char_u *utf_text;
3093
3094 utf_text = CONVERT_TO_UTF8(text);
3095 item = gtk_menu_item_new_with_label((const char *)utf_text);
3096 gtk_widget_show(item);
3097 CONVERT_TO_UTF8_FREE(utf_text);
3098
3099 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003100 g_signal_connect(G_OBJECT(item), "activate",
3101 G_CALLBACK(tabline_menu_handler),
3102 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003103}
3104
Bram Moolenaara5621492006-02-25 21:55:24 +00003105/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003106 * Create a menu for the tab line.
3107 */
3108 static GtkWidget *
3109create_tabline_menu(void)
3110{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003111 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003112
3113 menu = gtk_menu_new();
Bram Moolenaar29547192018-12-11 20:39:19 +01003114 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003115 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3116 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003117
3118 return menu;
3119}
3120
3121 static gboolean
3122on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3123{
Bram Moolenaar30613902019-12-01 22:11:18 +01003124 // Was this button press event ?
Bram Moolenaara5621492006-02-25 21:55:24 +00003125 if (event->type == GDK_BUTTON_PRESS)
3126 {
3127 GdkEventButton *bevent = (GdkEventButton *)event;
3128 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003129 int y = bevent->y;
3130 GtkWidget *tabwidget;
3131 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003132
Bram Moolenaar30613902019-12-01 22:11:18 +01003133 // When ignoring events return TRUE so that the selected page doesn't
3134 // change.
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003135 if (hold_gui_events
3136# ifdef FEAT_CMDWIN
3137 || cmdwin_type != 0
3138# endif
3139 )
3140 return TRUE;
3141
Bram Moolenaar98921892016-02-23 17:14:37 +01003142 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003143
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003144 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003145 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3146 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003147
Bram Moolenaar30613902019-12-01 22:11:18 +01003148 // If the event was generated for 3rd button popup the menu.
Bram Moolenaara5621492006-02-25 21:55:24 +00003149 if (bevent->button == 3)
3150 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003151# if GTK_CHECK_VERSION(3,22,2)
3152 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3153# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003154 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3155 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003156# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003157 // We handled the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003158 return TRUE;
3159 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003160 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003161 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003162 if (clicked_page == 0)
3163 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003164 // Click after all tabs moves to next tab page. When "x" is
3165 // small guess it's the left button.
Bram Moolenaara3f41662010-07-11 19:01:06 +02003166 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003167 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003168 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003169 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003170
Bram Moolenaar30613902019-12-01 22:11:18 +01003171 // We didn't handle the event.
Bram Moolenaara5621492006-02-25 21:55:24 +00003172 return FALSE;
3173}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003174
3175/*
3176 * Handle selecting one of the tabs.
3177 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003178 static void
3179on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003180 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003181 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003182 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003183 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003184{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003185 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003186 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003187}
3188
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003189# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003190/*
3191 * Handle reordering the tabs (using D&D).
3192 */
3193 static void
3194on_tab_reordered(
3195 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003196 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003197 gint idx,
3198 gpointer data UNUSED)
3199{
3200 if (!ignore_tabline_evt)
3201 {
3202 if ((tabpage_index(curtab) - 1) < idx)
3203 tabpage_move(idx + 1);
3204 else
3205 tabpage_move(idx);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003206 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003207}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003208# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003209
3210/*
3211 * Show or hide the tabline.
3212 */
3213 void
3214gui_mch_show_tabline(int showit)
3215{
3216 if (gui.tabline == NULL)
3217 return;
3218
3219 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3220 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003221 // Note: this may cause a resize event
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003222 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003223 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003224 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003225 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003226 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003227
3228 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003229}
3230
3231/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003232 * Return TRUE when tabline is displayed.
3233 */
3234 int
3235gui_mch_showing_tabline(void)
3236{
3237 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003238 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003239}
3240
3241/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003242 * Update the labels of the tabline.
3243 */
3244 void
3245gui_mch_update_tabline(void)
3246{
3247 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003248 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003249 GtkWidget *label;
3250 tabpage_T *tp;
3251 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003252 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003253 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003254 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003255
3256 if (gui.tabline == NULL)
3257 return;
3258
3259 ignore_tabline_evt = TRUE;
3260
Bram Moolenaar30613902019-12-01 22:11:18 +01003261 // Add a label for each tab page. They all contain the same text area.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003262 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3263 {
3264 if (tp == curtab)
3265 curtabidx = nr;
3266
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003267 tab_num = nr + 1;
3268
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003269 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3270 if (page == NULL)
3271 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003272 // Add notebook page
Bram Moolenaar98921892016-02-23 17:14:37 +01003273# if GTK_CHECK_VERSION(3,2,0)
3274 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3275 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3276# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003277 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003278# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003279 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003280 event_box = gtk_event_box_new();
3281 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003282 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003283# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003284 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003285# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003286 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003287 gtk_widget_show(label);
3288 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3289 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003290 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003291 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003292# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003293 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3294 page,
3295 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003296# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003297 }
3298
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003299 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003300 g_object_set_data(G_OBJECT(event_box), "tab_num",
3301 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003302 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003303 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003304 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003305 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003306 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003307
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003308 get_tabline_label(tp, TRUE);
3309 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003310# if GTK_CHECK_VERSION(3,0,0)
3311 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3312# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003313 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3314 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003315# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003316 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003317 }
3318
Bram Moolenaar30613902019-12-01 22:11:18 +01003319 // Remove any old labels.
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003320 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3321 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3322
Bram Moolenaar98921892016-02-23 17:14:37 +01003323 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3324 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003325
Bram Moolenaar30613902019-12-01 22:11:18 +01003326 // Make sure everything is in place before drawing text.
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003327 gui_mch_update();
3328
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003329 ignore_tabline_evt = FALSE;
3330}
3331
3332/*
3333 * Set the current tab to "nr". First tab is 1.
3334 */
3335 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003336gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003337{
3338 if (gui.tabline == NULL)
3339 return;
3340
3341 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003342 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3343 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003344 ignore_tabline_evt = FALSE;
3345}
3346
Bram Moolenaar30613902019-12-01 22:11:18 +01003347#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003348
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003350 * Add selection targets for PRIMARY and CLIPBOARD selections.
3351 */
3352 void
3353gui_gtk_set_selection_targets(void)
3354{
3355 int i, j = 0;
3356 int n_targets = N_SELECTION_TARGETS;
3357 GtkTargetEntry targets[N_SELECTION_TARGETS];
3358
3359 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3360 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003361 // OpenOffice tries to use TARGET_HTML and fails when we don't
3362 // return something, instead of trying another target. Therefore only
3363 // offer TARGET_HTML when it works.
Bram Moolenaara76638f2010-06-05 12:49:46 +02003364 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3365 n_targets--;
3366 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003367 targets[j++] = selection_targets[i];
3368 }
3369
3370 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3371 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3372 gtk_selection_add_targets(gui.drawarea,
3373 (GdkAtom)GDK_SELECTION_PRIMARY,
3374 targets, n_targets);
3375 gtk_selection_add_targets(gui.drawarea,
3376 (GdkAtom)clip_plus.gtk_sel_atom,
3377 targets, n_targets);
3378}
3379
3380/*
3381 * Set up for receiving DND items.
3382 */
3383 void
3384gui_gtk_set_dnd_targets(void)
3385{
3386 int i, j = 0;
3387 int n_targets = N_DND_TARGETS;
3388 GtkTargetEntry targets[N_DND_TARGETS];
3389
3390 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3391 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003392 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003393 n_targets--;
3394 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003395 targets[j++] = dnd_targets[i];
3396 }
3397
3398 gtk_drag_dest_unset(gui.drawarea);
3399 gtk_drag_dest_set(gui.drawarea,
3400 GTK_DEST_DEFAULT_ALL,
3401 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003402 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003403}
3404
3405/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3407 * Returns OK for success, FAIL when the GUI can't be started.
3408 */
3409 int
3410gui_mch_init(void)
3411{
3412 GtkWidget *vbox;
3413
3414#ifdef FEAT_GUI_GNOME
Bram Moolenaar30613902019-12-01 22:11:18 +01003415 // Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3416 // exits on failure, but that's a non-issue because we already called
3417 // gtk_init_check() in gui_mch_init_check().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003419 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3421 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003422# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003423 {
3424 char *p = setlocale(LC_NUMERIC, NULL);
3425
Bram Moolenaar30613902019-12-01 22:11:18 +01003426 // Make sure strtod() uses a decimal point, not a comma. Gnome
3427 // init may change it.
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003428 if (p == NULL || strcmp(p, "C") != 0)
3429 setlocale(LC_NUMERIC, "C");
3430 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003431# endif
3432 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003434 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003436#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar30613902019-12-01 22:11:18 +01003437 // Set the human-readable application name
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003439#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 /*
3441 * Force UTF-8 output no matter what the value of 'encoding' is.
3442 * did_set_string_option() in option.c prohibits changing 'termencoding'
3443 * to something else than UTF-8 if the GUI is in use.
3444 */
3445 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3446
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003447#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003449#endif
Bram Moolenaar30613902019-12-01 22:11:18 +01003450 // FIXME: Need to install the classic icons and a gtkrc.classic file.
3451 // The hard part is deciding install locations and the Makefile magic.
Bram Moolenaar98921892016-02-23 17:14:37 +01003452#if !GTK_CHECK_VERSION(3,0,0)
3453# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003455# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456#endif
3457
Bram Moolenaar30613902019-12-01 22:11:18 +01003458 // Initialize values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 gui.border_width = 2;
3460 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3461 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003462#if GTK_CHECK_VERSION(3,0,0)
3463 gui.fgcolor = g_new(GdkRGBA, 1);
3464 gui.bgcolor = g_new(GdkRGBA, 1);
3465 gui.spcolor = g_new(GdkRGBA, 1);
3466#else
Bram Moolenaar30613902019-12-01 22:11:18 +01003467 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003469 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaar30613902019-12-01 22:11:18 +01003471 // LINTED: avoid warning: conversion to 'unsigned long'
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003472 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003473#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474
Bram Moolenaar30613902019-12-01 22:11:18 +01003475 // Initialise atoms
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003476 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478
Bram Moolenaar30613902019-12-01 22:11:18 +01003479 // Set default foreground and background colors.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 gui.norm_pixel = gui.def_norm_pixel;
3481 gui.back_pixel = gui.def_back_pixel;
3482
3483 if (gtk_socket_id != 0)
3484 {
3485 GtkWidget *plug;
3486
Bram Moolenaar30613902019-12-01 22:11:18 +01003487 // Use GtkSocket from another app.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3489 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003490 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 {
3492 gui.mainwin = plug;
3493 }
3494 else
3495 {
3496 g_warning("Connection to GTK+ socket (ID %u) failed",
3497 (unsigned int)gtk_socket_id);
Bram Moolenaar30613902019-12-01 22:11:18 +01003498 // Pretend we never wanted it if it failed (get own window)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 gtk_socket_id = 0;
3500 }
3501 }
3502
3503 if (gtk_socket_id == 0)
3504 {
3505#ifdef FEAT_GUI_GNOME
3506 if (using_gnome)
3507 {
3508 gui.mainwin = gnome_app_new("Vim", NULL);
3509# ifdef USE_XSMP
Bram Moolenaar30613902019-12-01 22:11:18 +01003510 // Use the GNOME save-yourself functionality now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511 xsmp_close();
3512# endif
3513 }
3514 else
3515#endif
3516 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3517 }
3518
3519 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3520
Bram Moolenaar30613902019-12-01 22:11:18 +01003521 // Create the PangoContext used for drawing all text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3523 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524
Bram Moolenaar98921892016-02-23 17:14:37 +01003525 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3527
Bram Moolenaar98921892016-02-23 17:14:37 +01003528 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3529 G_CALLBACK(&delete_event_cb), NULL);
3530
3531 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3532 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003533
3534 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003536
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 gui.accel_group = gtk_accel_group_new();
3538 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539
Bram Moolenaar30613902019-12-01 22:11:18 +01003540 // A vertical box holds the menubar, toolbar and main text window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003541#if GTK_CHECK_VERSION(3,2,0)
3542 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3543 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3544#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003546#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547
3548#ifdef FEAT_GUI_GNOME
3549 if (using_gnome)
3550 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003551# if defined(FEAT_MENU)
Bram Moolenaar30613902019-12-01 22:11:18 +01003552 // automagically restore menubar/toolbar placement
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3554# endif
3555 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3556 }
3557 else
3558#endif
3559 {
3560 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3561 gtk_widget_show(vbox);
3562 }
3563
3564#ifdef FEAT_MENU
3565 /*
3566 * Create the menubar and handle
3567 */
3568 gui.menubar = gtk_menu_bar_new();
3569 gtk_widget_set_name(gui.menubar, "vim-menubar");
3570
Bram Moolenaar30613902019-12-01 22:11:18 +01003571 // Avoid that GTK takes <F10> away from us.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003572 {
3573 GtkSettings *gtk_settings;
3574
3575 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3576 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3577 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003578
3579
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580# ifdef FEAT_GUI_GNOME
3581 if (using_gnome)
3582 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 BonoboDockItem *dockitem;
3584
3585 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3586 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3587 GNOME_APP_MENUBAR_NAME);
Bram Moolenaar30613902019-12-01 22:11:18 +01003588 // We don't want the menu to float.
Bram Moolenaardb552d602006-03-23 22:59:57 +00003589 bonobo_dock_item_set_behavior(dockitem,
3590 bonobo_dock_item_get_behavior(dockitem)
3591 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 }
3594 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003595# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 {
Bram Moolenaar30613902019-12-01 22:11:18 +01003597 // Always show the menubar, otherwise <F10> doesn't work. It may be
3598 // disabled in gui_init() later.
Bram Moolenaar18144c82006-04-12 21:52:12 +00003599 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3601 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003602#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603
3604#ifdef FEAT_TOOLBAR
3605 /*
3606 * Create the toolbar and handle
3607 */
Bram Moolenaar30613902019-12-01 22:11:18 +01003608 // some aesthetics on the toolbar
Bram Moolenaar98921892016-02-23 17:14:37 +01003609# ifdef USE_GTK3
Bram Moolenaar30613902019-12-01 22:11:18 +01003610 // TODO: Add GTK+ 3 code here using GtkCssProvider if necessary.
3611 // N.B. Since the default value of GtkToolbar::button-relief is
3612 // GTK_RELIEF_NONE, there's no need to specify that, probably.
Bram Moolenaar98921892016-02-23 17:14:37 +01003613# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 gtk_rc_parse_string(
3615 "style \"vim-toolbar-style\" {\n"
3616 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3617 "}\n"
3618 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003619# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 gui.toolbar = gtk_toolbar_new();
3621 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3623
3624# ifdef FEAT_GUI_GNOME
3625 if (using_gnome)
3626 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 BonoboDockItem *dockitem;
3628
3629 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3630 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3631 GNOME_APP_TOOLBAR_NAME);
3632 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaar30613902019-12-01 22:11:18 +01003633 // When the toolbar is floating it gets stuck. So long as that isn't
3634 // fixed let's disallow floating.
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003635 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003636 bonobo_dock_item_get_behavior(dockitem)
3637 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 }
3640 else
Bram Moolenaar30613902019-12-01 22:11:18 +01003641# endif // FEAT_GUI_GNOME
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3644 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3645 gtk_widget_show(gui.toolbar);
3646 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3647 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003648#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003650#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003651 /*
3652 * Use a Notebook for the tab pages labels. The labels are hidden by
3653 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003654 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003655 gui.tabline = gtk_notebook_new();
3656 gtk_widget_show(gui.tabline);
3657 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3658 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3659 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003660 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003661# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003662 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003663# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003664
Bram Moolenaar98921892016-02-23 17:14:37 +01003665# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003666 tabline_tooltip = gtk_tooltips_new();
3667 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003668# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003669
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003670 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003671 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003672
Bram Moolenaar30613902019-12-01 22:11:18 +01003673 // Add the first tab.
Bram Moolenaar98921892016-02-23 17:14:37 +01003674# if GTK_CHECK_VERSION(3,2,0)
3675 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3676 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3677# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003678 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003679# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003680 gtk_widget_show(page);
3681 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3682 label = gtk_label_new("-Empty-");
3683 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003684 event_box = gtk_event_box_new();
3685 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003686 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003687# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003688 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003689# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003690 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003691 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003692# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003693 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003694# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003695 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003696
Bram Moolenaar98921892016-02-23 17:14:37 +01003697 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3698 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003699# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003700 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3701 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003702# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003703
Bram Moolenaar30613902019-12-01 22:11:18 +01003704 // Create a popup menu for the tab line and connect it.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003705 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003706 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3707 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar30613902019-12-01 22:11:18 +01003708#endif // FEAT_GUI_TABLINE
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003709
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003710 gui.formwin = gui_gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003711 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003712#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003714#endif
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01003715#if GTK_CHECK_VERSION(3,22,2)
3716 gtk_widget_set_name(gui.formwin, "vim-gtk-form");
3717#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718
3719 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003720#if GTK_CHECK_VERSION(3,0,0)
3721 gui.surface = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003722#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723
Bram Moolenaar30613902019-12-01 22:11:18 +01003724 // Determine which events we will filter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 gtk_widget_set_events(gui.drawarea,
3726 GDK_EXPOSURE_MASK |
3727 GDK_ENTER_NOTIFY_MASK |
3728 GDK_LEAVE_NOTIFY_MASK |
3729 GDK_BUTTON_PRESS_MASK |
3730 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 GDK_KEY_PRESS_MASK |
3733 GDK_KEY_RELEASE_MASK |
3734 GDK_POINTER_MOTION_MASK |
3735 GDK_POINTER_MOTION_HINT_MASK);
3736
3737 gtk_widget_show(gui.drawarea);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02003738 gui_gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 gtk_widget_show(gui.formwin);
3740 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3741
Bram Moolenaar30613902019-12-01 22:11:18 +01003742 // For GtkSockets, key-presses must go to the focus widget (drawarea)
3743 // and not the window.
Bram Moolenaar98921892016-02-23 17:14:37 +01003744 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3745 : G_OBJECT(gui.drawarea),
3746 "key-press-event",
3747 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003748#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003749 // Also forward key release events for the benefit of GTK+ 2 input
3750 // modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3752 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003753 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 G_CALLBACK(&key_release_event), NULL);
3755#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003756 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3757 G_CALLBACK(drawarea_realize_cb), NULL);
3758 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3759 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003760#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003761 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3762 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003763#endif
3764#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003765 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3766 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003767#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003768 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3769 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003770#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771
Bram Moolenaar98921892016-02-23 17:14:37 +01003772#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01003774#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003776#if !defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3778 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3779#endif
3780
3781 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01003782 // make sure keyboard input can go to the drawarea
Bram Moolenaar98921892016-02-23 17:14:37 +01003783 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784
3785 /*
3786 * Set clipboard specific atoms
3787 */
3788 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3791 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3792
3793 /*
3794 * Start out by adding the configured border width into the border offset.
3795 */
3796 gui.border_offset = gui.border_width;
3797
Bram Moolenaar98921892016-02-23 17:14:37 +01003798#if GTK_CHECK_VERSION(3,0,0)
3799 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
3800 G_CALLBACK(draw_event), NULL);
3801#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3803 GTK_SIGNAL_FUNC(visibility_event), NULL);
3804 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3805 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003806#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807
3808 /*
3809 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3810 * Only needed for some window managers.
3811 */
3812 if (vim_strchr(p_go, GO_POINTER) != NULL)
3813 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003814 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
3815 G_CALLBACK(leave_notify_event), NULL);
3816 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
3817 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 }
3819
Bram Moolenaar30613902019-12-01 22:11:18 +01003820 // Real windows can get focus ... GtkPlug, being a mere container can't,
3821 // only its widgets. Arguably, this could be common code and we not use
3822 // the window focus at all, but let's be safe.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003823 if (gtk_socket_id == 0)
3824 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003825 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
3826 G_CALLBACK(focus_out_event), NULL);
3827 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
3828 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003829 }
3830 else
3831 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003832 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
3833 G_CALLBACK(focus_out_event), NULL);
3834 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
3835 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003836#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01003837 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
3838 G_CALLBACK(focus_out_event), NULL);
3839 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
3840 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaar30613902019-12-01 22:11:18 +01003841#endif // FEAT_GUI_TABLINE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003842 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843
Bram Moolenaar98921892016-02-23 17:14:37 +01003844 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
3845 G_CALLBACK(motion_notify_event), NULL);
3846 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
3847 G_CALLBACK(button_press_event), NULL);
3848 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
3849 G_CALLBACK(button_release_event), NULL);
3850 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
3851 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852
3853 /*
3854 * Add selection handler functions.
3855 */
Bram Moolenaar98921892016-02-23 17:14:37 +01003856 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
3857 G_CALLBACK(selection_clear_event), NULL);
3858 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
3859 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860
Bram Moolenaara76638f2010-06-05 12:49:46 +02003861 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862
Bram Moolenaar98921892016-02-23 17:14:37 +01003863 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
3864 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865
Bram Moolenaar30613902019-12-01 22:11:18 +01003866 // Pretend we don't have input focus, we will get an event if we do.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 gui.in_focus = FALSE;
3868
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02003869 // Handle changes to the "Xft/DPI" setting.
3870 {
3871 GtkSettings *gtk_settings =
3872 gtk_settings_get_for_screen(gdk_screen_get_default());
3873
3874 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
3875 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
3876 }
3877
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 return OK;
3879}
3880
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003881#if defined(USE_GNOME_SESSION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882/*
3883 * This is called from gui_start() after a fork() has been done.
3884 * We have to tell the session manager our new PID.
3885 */
3886 void
3887gui_mch_forked(void)
3888{
3889 if (using_gnome)
3890 {
3891 GnomeClient *client;
3892
3893 client = gnome_master_client();
3894
3895 if (client != NULL)
3896 gnome_client_set_process_id(client, getpid());
3897 }
3898}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003899#endif // USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900
Bram Moolenaar98921892016-02-23 17:14:37 +01003901#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02003902 static GdkRGBA
3903color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01003904{
Bram Moolenaar36edf062016-07-21 22:10:12 +02003905 GdkRGBA rgba;
3906 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
3907 rgba.green = ((color & 0xff00) >> 8) / 255.0;
3908 rgba.blue = ((color & 0xff)) / 255.0;
3909 rgba.alpha = 1.0;
3910 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01003911}
3912
3913 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02003914set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01003915{
Bram Moolenaar36edf062016-07-21 22:10:12 +02003916 const GdkRGBA rgba = color_to_rgba(color);
3917 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01003918}
Bram Moolenaar30613902019-12-01 22:11:18 +01003919#endif // GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003920
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921/*
3922 * Called when the foreground or background color has been changed.
3923 * This used to change the graphics contexts directly but we are
3924 * currently manipulating them where desired.
3925 */
3926 void
3927gui_mch_new_colors(void)
3928{
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01003929 if (gui.drawarea != NULL
3930#if GTK_CHECK_VERSION(3,22,2)
3931 && gui.formwin != NULL
3932#endif
3933 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02003935#if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01003936 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003937#endif
Bram Moolenaara859f042016-11-17 19:11:55 +01003938#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar7988a6f2020-12-09 15:53:27 +01003939 GtkStyleContext * const context =
3940 gtk_widget_get_style_context(gui.formwin);
Bram Moolenaara859f042016-11-17 19:11:55 +01003941 GtkCssProvider * const provider = gtk_css_provider_new();
3942 gchar * const css = g_strdup_printf(
Bram Moolenaar023fd5d2020-12-08 20:31:16 +01003943 "widget#vim-gtk-form {\n"
Bram Moolenaara859f042016-11-17 19:11:55 +01003944 " background-color: #%.2lx%.2lx%.2lx;\n"
3945 "}\n",
3946 (gui.back_pixel >> 16) & 0xff,
3947 (gui.back_pixel >> 8) & 0xff,
3948 gui.back_pixel & 0xff);
3949
3950 gtk_css_provider_load_from_data(provider, css, -1, NULL);
3951 gtk_style_context_add_provider(context,
3952 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
3953
3954 g_free(css);
3955 g_object_unref(provider);
Bram Moolenaar30613902019-12-01 22:11:18 +01003956#elif GTK_CHECK_VERSION(3,4,0) // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar36edf062016-07-21 22:10:12 +02003957 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01003958
Bram Moolenaar36edf062016-07-21 22:10:12 +02003959 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01003960 {
3961 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02003962 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01003963 if (pat != NULL)
3964 {
3965 gdk_window_set_background_pattern(da_win, pat);
3966 cairo_pattern_destroy(pat);
3967 }
3968 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02003969 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01003970 }
Bram Moolenaar30613902019-12-01 22:11:18 +01003971#else // !GTK_CHECK_VERSION(3,4,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 GdkColor color = { 0, 0, 0, 0 };
3973
3974 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01003975 gdk_window_set_background(da_win, &color);
Bram Moolenaar30613902019-12-01 22:11:18 +01003976#endif // !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 }
3978}
3979
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980/*
3981 * This signal informs us about the need to rearrange our sub-widgets.
3982 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003984form_configure_event(GtkWidget *widget UNUSED,
3985 GdkEventConfigure *event,
3986 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003988 int usable_height = event->height;
3989
Bram Moolenaar182707a2016-11-21 20:55:58 +01003990#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaar30613902019-12-01 22:11:18 +01003991 // As of 3.22.2, GdkWindows have started distributing configure events to
3992 // their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
3993 //
3994 // As can be seen from the implementation of move_native_children() and
3995 // configure_native_child() in gdkwindow.c, those functions actually
3996 // propagate configure events to every child, failing to distinguish
3997 // "native" one from non-native one.
3998 //
3999 // Naturally, configure events propagated to here like that are fallacious
4000 // and, as a matter of fact, they trigger a geometric collapse of
4001 // gui.formwin.
4002 //
4003 // To filter out such fallacious events, check if the given event is the
4004 // one that was sent out to the right place. Ignore it if not.
4005 //
4006 // Follow-up
4007 // After a few weeks later, the GdkWindow change mentioned above was
4008 // reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4009 // The corresponding official release is 3.22.4.
Bram Moolenaara859f042016-11-17 19:11:55 +01004010 if (event->window != gtk_widget_get_window(gui.formwin))
4011 return TRUE;
4012#endif
4013
Bram Moolenaar30613902019-12-01 22:11:18 +01004014 // When in a GtkPlug, we can't guarantee valid heights (as a round
4015 // no. of char-heights), so we have to manually sanitise them.
4016 // Widths seem to sort themselves out, don't ask me why.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004017 if (gtk_socket_id != 0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004018 usable_height -= (gui.char_height - (gui.char_height/2)); // sic.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004019
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004020 gui_gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004021 gui_resize_shell(event->width, usable_height);
Bram Moolenaar8a99e662020-10-21 16:10:21 +02004022 gui_gtk_form_thaw(GTK_FORM(gui.formwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023
4024 return TRUE;
4025}
4026
4027/*
4028 * Function called when window already closed.
4029 * We can't do much more here than to trying to preserve what had been done,
4030 * since the window is already inevitably going away.
4031 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004032 static void
4033mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034{
Bram Moolenaar30613902019-12-01 22:11:18 +01004035 // Don't write messages to the GUI anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 full_screen = FALSE;
4037
4038 gui.mainwin = NULL;
4039 gui.drawarea = NULL;
4040
Bram Moolenaar30613902019-12-01 22:11:18 +01004041 if (!exiting) // only do anything if the destroy was unexpected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004043 vim_strncpy(IObuff,
4044 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4045 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 preserve_exit();
4047 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004048#ifdef USE_GRESOURCE
4049 gui_gtk_unregister_resource();
4050#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051}
4052
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004053 void
4054gui_gtk_get_screen_geom_of_win(
4055 GtkWidget *wid,
4056 int point_x, // x position of window if not initialized
4057 int point_y, // y position of window if not initialized
4058 int *screen_x,
4059 int *screen_y,
4060 int *width,
4061 int *height)
4062{
4063 GdkRectangle geometry;
4064 GdkWindow *win = gtk_widget_get_window(wid);
4065#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar24001432021-03-20 12:36:46 +01004066 GdkDisplay *dpy;
4067 GdkMonitor *monitor;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004068
Bram Moolenaar24001432021-03-20 12:36:46 +01004069 if (wid != NULL && gtk_widget_get_realized(wid))
4070 dpy = gtk_widget_get_display(wid);
4071 else
4072 dpy = gdk_display_get_default();
4073 if (win != NULL)
4074 monitor = gdk_display_get_monitor_at_window(dpy, win);
4075 else
4076 monitor = gdk_display_get_monitor_at_point(dpy, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004077 gdk_monitor_get_geometry(monitor, &geometry);
4078#else
4079 GdkScreen* screen;
4080 int monitor;
4081
4082 if (wid != NULL && gtk_widget_has_screen(wid))
4083 screen = gtk_widget_get_screen(wid);
4084 else
4085 screen = gdk_screen_get_default();
Bram Moolenaar24001432021-03-20 12:36:46 +01004086 if (win != NULL)
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004087 monitor = gdk_screen_get_monitor_at_window(screen, win);
Bram Moolenaar24001432021-03-20 12:36:46 +01004088 else
4089 monitor = gdk_screen_get_monitor_at_point(screen, point_x, point_y);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004090 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
4091#endif
4092 *screen_x = geometry.x;
4093 *screen_y = geometry.y;
4094 *width = geometry.width;
4095 *height = geometry.height;
4096}
4097
4098/*
4099 * The screen size is used to make sure the initial window doesn't get bigger
4100 * than the screen. This subtracts some room for menubar, toolbar and window
4101 * decorations.
4102 */
4103 static void
4104gui_gtk_get_screen_dimensions(
4105 int point_x,
4106 int point_y,
4107 int *screen_w,
4108 int *screen_h)
4109{
4110 int x, y;
4111
4112 gui_gtk_get_screen_geom_of_win(gui.mainwin, point_x, point_y,
4113 &x, &y, screen_w, screen_h);
4114
4115 // Subtract 'guiheadroom' from the height to allow some room for the
4116 // window manager (task list and window title bar).
4117 *screen_h -= p_ghr;
4118
4119 /*
4120 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4121 * the toolbar and menubar for GTK, we subtract them from the screen
4122 * height, so that the window size can be made to fit on the screen.
4123 * This should be completely changed later.
4124 */
4125 *screen_w -= get_menu_tool_width();
4126 *screen_h -= get_menu_tool_height();
4127}
4128
4129 void
4130gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4131{
4132 gui_gtk_get_screen_dimensions(0, 0, screen_w, screen_h);
4133}
4134
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004135
4136/*
4137 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4138 * hints (and thus the required size from -geom), but that after that we
4139 * put the hints back to normal (the actual minimum size) so we may
4140 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004141 * plug's window 'min hints to set *its* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004142 * only way we have of making ourselves bigger (by set lines/columns).
4143 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004144 * second after the final attempt to reset the real minimum hints (done by
4145 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004146 * We'll not let the default hints be set while this timer's active.
4147 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004148 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004149check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004150{
4151 if (init_window_hints_state == 1)
4152 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004153 // Safe to use normal hints now
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004154 init_window_hints_state = 0;
4155 update_window_manager_hints(0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01004156 return FALSE; // stop timer
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004157 }
4158
Bram Moolenaar30613902019-12-01 22:11:18 +01004159 // Keep on trying
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004160 init_window_hints_state = 1;
4161 return TRUE;
4162}
4163
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164/*
4165 * Open the GUI window which was created by a call to gui_mch_init().
4166 */
4167 int
4168gui_mch_open(void)
4169{
4170 guicolor_T fg_pixel = INVALCOLOR;
4171 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004172 guint pixel_width;
4173 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175 /*
4176 * Allow setting a window role on the command line, or invent one
4177 * if none was specified. This is mainly useful for GNOME session
4178 * support; allowing the WM to restore window placement.
4179 */
4180 if (role_argument != NULL)
4181 {
4182 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4183 }
4184 else
4185 {
4186 char *role;
4187
Bram Moolenaar30613902019-12-01 22:11:18 +01004188 // Invent a unique-enough ID string for the role
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 role = g_strdup_printf("vim-%u-%u-%u",
4190 (unsigned)mch_get_pid(),
4191 (unsigned)g_random_int(),
4192 (unsigned)time(NULL));
4193
4194 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4195 g_free(role);
4196 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197
4198 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200
Bram Moolenaar30613902019-12-01 22:11:18 +01004201 // Determine user specified geometry, if present.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 if (gui.geom != NULL)
4203 {
4204 int mask;
4205 unsigned int w, h;
4206 int x = 0;
4207 int y = 0;
4208
4209 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4210
4211 if (mask & WidthValue)
4212 Columns = w;
4213 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004214 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004215 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004216 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004218 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004219 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004220
4221 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4222 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4223
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004224 pixel_width += get_menu_tool_width();
4225 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004226
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004228 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004229 int ww, hh;
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004230
4231#ifdef FEAT_GUI_GTK
4232 gui_gtk_get_screen_dimensions(x, y, &ww, &hh);
4233#else
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004234 gui_mch_get_screen_dimensions(&ww, &hh);
Bram Moolenaara555e6f2021-03-18 22:28:57 +01004235#endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004236 hh += p_ghr + get_menu_tool_height();
4237 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004238 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004239 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004240 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004241 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004243 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004244 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004245
Bram Moolenaar30613902019-12-01 22:11:18 +01004246 // From now until everyone's stopped trying to set the window hints
4247 // to their correct minimum values, stop them being set as we need
4248 // them to remain at our required size for the parent GtkSocket to
4249 // give us the right initial size.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004250 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004251 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004252 update_window_manager_hints(pixel_width, pixel_height);
4253 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004254 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004255 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 }
4257
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004258 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4259 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01004260 // For GTK2 changing the size of the form widget doesn't cause window
4261 // resizing.
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004262 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004263 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004264 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265
4266 if (foreground_argument != NULL)
4267 fg_pixel = gui_get_color((char_u *)foreground_argument);
4268 if (fg_pixel == INVALCOLOR)
4269 fg_pixel = gui_get_color((char_u *)"Black");
4270
4271 if (background_argument != NULL)
4272 bg_pixel = gui_get_color((char_u *)background_argument);
4273 if (bg_pixel == INVALCOLOR)
4274 bg_pixel = gui_get_color((char_u *)"White");
4275
4276 if (found_reverse_arg)
4277 {
4278 gui.def_norm_pixel = bg_pixel;
4279 gui.def_back_pixel = fg_pixel;
4280 }
4281 else
4282 {
4283 gui.def_norm_pixel = fg_pixel;
4284 gui.def_back_pixel = bg_pixel;
4285 }
4286
Bram Moolenaar30613902019-12-01 22:11:18 +01004287 // Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4288 // in a vimrc file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 set_normal_colors();
4290
Bram Moolenaar30613902019-12-01 22:11:18 +01004291 // Check that none of the colors are the same as the background color
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 gui_check_colors();
4293
Bram Moolenaar30613902019-12-01 22:11:18 +01004294 // Get the colors for the highlight groups (gui_check_colors() might have
4295 // changed them).
4296 highlight_gui_started(); // re-init colors and fonts
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297
Bram Moolenaar98921892016-02-23 17:14:37 +01004298 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4299 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 /*
4302 * Notify the fixed area about the need to resize the contents of the
4303 * gui.formwin, which we use for random positioning of the included
4304 * components.
4305 *
4306 * We connect this signal deferred finally after anything is in place,
4307 * since this is intended to handle resizements coming from the window
4308 * manager upon us and should not interfere with what VIM is requesting
4309 * upon startup.
4310 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004311 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4312 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313
4314#ifdef FEAT_DND
Bram Moolenaar30613902019-12-01 22:11:18 +01004315 // Set up for receiving DND items.
Bram Moolenaara76638f2010-06-05 12:49:46 +02004316 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317
Bram Moolenaar98921892016-02-23 17:14:37 +01004318 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4319 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320#endif
4321
Bram Moolenaar30613902019-12-01 22:11:18 +01004322 // With GTK+ 2, we need to iconify the window before calling show()
4323 // to avoid mapping the window for a short time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 if (found_iconic_arg && gtk_socket_id == 0)
4325 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326
4327 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004328#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 unsigned long menu_handler = 0;
4330# ifdef FEAT_TOOLBAR
4331 unsigned long tool_handler = 0;
4332# endif
4333 /*
4334 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4335 * show when restoring the saved layout configuration. We can't just
4336 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4337 * a toplevel window and thus will be realized immediately. Instead,
4338 * connect signal handlers to hide the widgets just after they've been
4339 * marked visible, but before the main window is realized.
4340 */
4341 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4342 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4343 G_CALLBACK(&gtk_widget_hide),
4344 NULL);
4345# ifdef FEAT_TOOLBAR
4346 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4347 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4348 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4349 G_CALLBACK(&gtk_widget_hide),
4350 NULL);
4351# endif
4352#endif
4353 gtk_widget_show(gui.mainwin);
4354
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004355#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 if (menu_handler != 0)
4357 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4358# ifdef FEAT_TOOLBAR
4359 if (tool_handler != 0)
4360 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4361# endif
4362#endif
4363 }
4364
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 return OK;
4366}
4367
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004368/*
4369 * Clean up for when exiting Vim.
4370 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004372gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373{
Bram Moolenaar32fbc4f2020-09-29 22:16:09 +02004374 // Clean up, unless we don't want to invoke free().
4375 if (gui.mainwin != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377}
4378
4379/*
4380 * Get the position of the top left corner of the window.
4381 */
4382 int
4383gui_mch_get_winpos(int *x, int *y)
4384{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 return OK;
4387}
4388
4389/*
4390 * Set the position of the top left corner of the window to the given
4391 * coordinates.
4392 */
4393 void
4394gui_mch_set_winpos(int x, int y)
4395{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397}
4398
Bram Moolenaar98921892016-02-23 17:14:37 +01004399#if !GTK_CHECK_VERSION(3,0,0)
4400# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401static int resize_idle_installed = FALSE;
4402/*
4403 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4404 * the shell size doesn't exceed the window size, i.e. if the window manager
4405 * ignored our size request. Usually this happens if the window is maximized.
4406 *
4407 * FIXME: It'd be nice if we could find a little more orthodox solution.
4408 * See also the remark below in gui_mch_set_shellsize().
4409 *
4410 * DISABLED: When doing ":set lines+=1" this function would first invoke
4411 * gui_resize_shell() with the old size, then the normal callback would
4412 * report the new size through form_configure_event(). That caused the window
4413 * layout to be messed up.
4414 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 static gboolean
4416force_shell_resize_idle(gpointer data)
4417{
4418 if (gui.mainwin != NULL
4419 && GTK_WIDGET_REALIZED(gui.mainwin)
4420 && GTK_WIDGET_VISIBLE(gui.mainwin))
4421 {
4422 int width;
4423 int height;
4424
4425 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4426
4427 width -= get_menu_tool_width();
4428 height -= get_menu_tool_height();
4429
4430 gui_resize_shell(width, height);
4431 }
4432
4433 resize_idle_installed = FALSE;
Bram Moolenaar30613902019-12-01 22:11:18 +01004434 return FALSE; // don't call me again
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435}
Bram Moolenaar98921892016-02-23 17:14:37 +01004436# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004437#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438
Bram Moolenaar09736232009-09-23 16:14:49 +00004439/*
4440 * Return TRUE if the main window is maximized.
4441 */
4442 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004443gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004444{
Bram Moolenaar98921892016-02-23 17:14:37 +01004445 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4446 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4447 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004448}
4449
4450/*
4451 * Unmaximize the main window
4452 */
4453 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004454gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004455{
4456 if (gui.mainwin != NULL)
4457 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4458}
Bram Moolenaar09736232009-09-23 16:14:49 +00004459
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004461 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4462 * is set. Compute the new Rows and Columns. This is like resizing the
4463 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004464 */
4465 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004466gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004467{
4468 int w, h;
4469
4470 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4471 w -= get_menu_tool_width();
4472 h -= get_menu_tool_height();
4473 gui_resize_shell(w, h);
4474}
4475
4476/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 * Set the windows size.
4478 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 void
4480gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004481 int min_width UNUSED, int min_height UNUSED,
4482 int base_width UNUSED, int base_height UNUSED,
4483 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484{
Bram Moolenaar30613902019-12-01 22:11:18 +01004485 // give GTK+ a chance to put all widget's into place
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 gui_mch_update();
4487
Bram Moolenaar30613902019-12-01 22:11:18 +01004488 // this will cause the proper resizement to happen too
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004489 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004490 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004491
Bram Moolenaar30613902019-12-01 22:11:18 +01004492 // With GTK+ 2, changing the size of the form widget doesn't resize
4493 // the window. So let's do it the other way around and resize the
4494 // main window instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 width += get_menu_tool_width();
4496 height += get_menu_tool_height();
4497
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004498 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004499 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004500 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004501 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502
Bram Moolenaar98921892016-02-23 17:14:37 +01004503# if !GTK_CHECK_VERSION(3,0,0)
4504# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 if (!resize_idle_installed)
4506 {
4507 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4508 &force_shell_resize_idle, NULL, NULL);
4509 resize_idle_installed = TRUE;
4510 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004511# endif
Bram Moolenaar30613902019-12-01 22:11:18 +01004512# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 /*
4514 * Wait until all events are processed to prevent a crash because the
4515 * real size of the drawing area doesn't reflect Vim's internal ideas.
4516 *
4517 * This is a bit of a hack, since Vim is a terminal application with a GUI
4518 * on top, while the GUI expects to be the boss.
4519 */
4520 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521}
4522
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004525gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 if (title != NULL && output_conv.vc_type != CONV_NONE)
4528 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529
4530 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4531
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 if (output_conv.vc_type != CONV_NONE)
4533 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534}
Bram Moolenaar30613902019-12-01 22:11:18 +01004535#endif // FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536
4537#if defined(FEAT_MENU) || defined(PROTO)
4538 void
4539gui_mch_enable_menu(int showit)
4540{
4541 GtkWidget *widget;
4542
4543# ifdef FEAT_GUI_GNOME
4544 if (using_gnome)
4545 widget = gui.menubar_h;
4546 else
4547# endif
4548 widget = gui.menubar;
4549
Bram Moolenaar30613902019-12-01 22:11:18 +01004550 // Do not disable the menu while starting up, otherwise F10 doesn't work.
Bram Moolenaar98921892016-02-23 17:14:37 +01004551 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552 {
4553 if (showit)
4554 gtk_widget_show(widget);
4555 else
4556 gtk_widget_hide(widget);
4557
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004558 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 }
4560}
Bram Moolenaar30613902019-12-01 22:11:18 +01004561#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562
4563#if defined(FEAT_TOOLBAR) || defined(PROTO)
4564 void
4565gui_mch_show_toolbar(int showit)
4566{
4567 GtkWidget *widget;
4568
4569 if (gui.toolbar == NULL)
4570 return;
4571
4572# ifdef FEAT_GUI_GNOME
4573 if (using_gnome)
4574 widget = gui.toolbar_h;
4575 else
4576# endif
4577 widget = gui.toolbar;
4578
4579 if (showit)
4580 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4581
Bram Moolenaar98921892016-02-23 17:14:37 +01004582 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 {
4584 if (showit)
4585 gtk_widget_show(widget);
4586 else
4587 gtk_widget_hide(widget);
4588
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004589 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 }
4591}
Bram Moolenaar30613902019-12-01 22:11:18 +01004592#endif // FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594/*
4595 * Check if a given font is a CJK font. This is done in a very crude manner. It
4596 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4597 * font. Consequently, this function cannot be used as a general purpose check
4598 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4599 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4600 */
4601 static int
4602is_cjk_font(PangoFontDescription *font_desc)
4603{
4604 static const char * const cjk_langs[] =
4605 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4606
4607 PangoFont *font;
4608 unsigned i;
4609 int is_cjk = FALSE;
4610
4611 font = pango_context_load_font(gui.text_context, font_desc);
4612
4613 if (font == NULL)
4614 return FALSE;
4615
4616 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4617 {
4618 PangoCoverage *coverage;
4619 gunichar uc;
4620
Bram Moolenaar14285cb2020-03-27 20:58:37 +01004621 // Valgrind reports a leak for pango_language_from_string(), but the
4622 // documentation says "This is owned by Pango and should not be freed".
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 coverage = pango_font_get_coverage(
4624 font, pango_language_from_string(cjk_langs[i]));
4625
4626 if (coverage != NULL)
4627 {
4628 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4629 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4630 pango_coverage_unref(coverage);
4631 }
4632 }
4633
4634 g_object_unref(font);
4635
4636 return is_cjk;
4637}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638
Bram Moolenaar231334e2005-07-25 20:46:57 +00004639/*
4640 * Adjust gui.char_height (after 'linespace' was changed).
4641 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004643gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 PangoFontMetrics *metrics;
4646 int ascent;
4647 int descent;
4648
4649 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4650 pango_context_get_language(gui.text_context));
4651 ascent = pango_font_metrics_get_ascent(metrics);
4652 descent = pango_font_metrics_get_descent(metrics);
4653
4654 pango_font_metrics_unref(metrics);
4655
Bram Moolenaar70cf4582020-10-27 20:43:26 +01004656 // Round up when the value is more than about 1/16 of a pixel above a whole
4657 // pixel (12.0624 becomes 12, 12.07 becomes 13). Then add 'linespace'.
4658 gui.char_height = (ascent + descent + (PANGO_SCALE * 15) / 16)
4659 / PANGO_SCALE + p_linespace;
Bram Moolenaar30613902019-12-01 22:11:18 +01004660 // LINTED: avoid warning: bitwise operation on signed value
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4662
Bram Moolenaar30613902019-12-01 22:11:18 +01004663 // A not-positive value of char_height may crash Vim. Only happens
4664 // if 'linespace' is negative (which does make sense sometimes).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 gui.char_ascent = MAX(gui.char_ascent, 0);
4666 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4667
4668 return OK;
4669}
4670
Bram Moolenaar98921892016-02-23 17:14:37 +01004671#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01004672// Callback function used in gui_mch_font_dialog()
Bram Moolenaar98921892016-02-23 17:14:37 +01004673 static gboolean
4674font_filter(const PangoFontFamily *family,
4675 const PangoFontFace *face UNUSED,
4676 gpointer data UNUSED)
4677{
4678 return pango_font_family_is_monospace((PangoFontFamily *)family);
4679}
4680#endif
4681
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682/*
4683 * Put up a font dialog and return the selected font name in allocated memory.
4684 * "oldval" is the previous value. Return NULL when cancelled.
4685 * This should probably go into gui_gtk.c. Hmm.
4686 * FIXME:
4687 * The GTK2 font selection dialog has no filtering API. So we could either
4688 * a) implement our own (possibly copying the code from somewhere else) or
4689 * b) just live with it.
4690 */
4691 char_u *
4692gui_mch_font_dialog(char_u *oldval)
4693{
4694 GtkWidget *dialog;
4695 int response;
4696 char_u *fontname = NULL;
4697 char_u *oldname;
4698
Bram Moolenaar98921892016-02-23 17:14:37 +01004699#if GTK_CHECK_VERSION(3,2,0)
4700 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4701 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4702 NULL, NULL);
4703#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004705#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706
4707 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4708 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4709
4710 if (oldval != NULL && oldval[0] != NUL)
4711 {
4712 if (output_conv.vc_type != CONV_NONE)
4713 oldname = string_convert(&output_conv, oldval, NULL);
4714 else
4715 oldname = oldval;
4716
Bram Moolenaar30613902019-12-01 22:11:18 +01004717 // Annoying bug in GTK (or Pango): if the font name does not include a
4718 // size, zero is used. Use default point size ten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4720 {
4721 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4722
4723 if (p != NULL)
4724 {
4725 STRCPY(p + STRLEN(p), " 10");
4726 if (oldname != oldval)
4727 vim_free(oldname);
4728 oldname = p;
4729 }
4730 }
4731
Bram Moolenaar98921892016-02-23 17:14:37 +01004732#if GTK_CHECK_VERSION(3,2,0)
4733 gtk_font_chooser_set_font(
4734 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4735#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 gtk_font_selection_dialog_set_font_name(
4737 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004738#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739
4740 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004741 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004743 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004744#if GTK_CHECK_VERSION(3,2,0)
4745 gtk_font_chooser_set_font(
4746 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4747#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004748 gtk_font_selection_dialog_set_font_name(
4749 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004750#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751
4752 response = gtk_dialog_run(GTK_DIALOG(dialog));
4753
4754 if (response == GTK_RESPONSE_OK)
4755 {
4756 char *name;
4757
Bram Moolenaar98921892016-02-23 17:14:37 +01004758#if GTK_CHECK_VERSION(3,2,0)
4759 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4760#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 name = gtk_font_selection_dialog_get_font_name(
4762 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004763#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 if (name != NULL)
4765 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004766 char_u *p;
4767
Bram Moolenaar30613902019-12-01 22:11:18 +01004768 // Apparently some font names include a comma, need to escape
4769 // that, because in 'guifont' it separates names.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004770 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004772 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004773 {
4774 fontname = string_convert(&input_conv, p, NULL);
4775 vim_free(p);
4776 }
4777 else
4778 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 }
4780 }
4781
4782 if (response != GTK_RESPONSE_NONE)
4783 gtk_widget_destroy(dialog);
4784
4785 return fontname;
4786}
4787
4788/*
4789 * Some monospace fonts don't support a bold weight, and fall back
4790 * silently to the regular weight. But this is no good since our text
4791 * drawing function can emulate bold by overstriking. So let's try
4792 * to detect whether bold weight is actually available and emulate it
4793 * otherwise.
4794 *
4795 * Note that we don't need to check for italic style since Xft can
4796 * emulate italic on its own, provided you have a proper fontconfig
4797 * setup. We wouldn't be able to emulate it in Vim anyway.
4798 */
4799 static void
4800get_styled_font_variants(void)
4801{
4802 PangoFontDescription *bold_font_desc;
4803 PangoFont *plain_font;
4804 PangoFont *bold_font;
4805
4806 gui.font_can_bold = FALSE;
4807
4808 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
4809
4810 if (plain_font == NULL)
4811 return;
4812
4813 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
4814 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
4815
4816 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
4817 /*
4818 * The comparison relies on the unique handle nature of a PangoFont*,
4819 * i.e. it's assumed that a different PangoFont* won't refer to the
4820 * same font. Seems to work, and failing here isn't critical anyway.
4821 */
4822 if (bold_font != NULL)
4823 {
4824 gui.font_can_bold = (bold_font != plain_font);
4825 g_object_unref(bold_font);
4826 }
4827
4828 pango_font_description_free(bold_font_desc);
4829 g_object_unref(plain_font);
4830}
4831
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832static PangoEngineShape *default_shape_engine = NULL;
4833
4834/*
4835 * Create a map from ASCII characters in the range [32,126] to glyphs
4836 * of the current font. This is used by gui_gtk2_draw_string() to skip
4837 * the itemize and shaping process for the most common case.
4838 */
4839 static void
4840ascii_glyph_table_init(void)
4841{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02004842 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843 PangoAttrList *attr_list;
4844 GList *item_list;
4845 int i;
4846
4847 if (gui.ascii_glyphs != NULL)
4848 pango_glyph_string_free(gui.ascii_glyphs);
4849 if (gui.ascii_font != NULL)
4850 g_object_unref(gui.ascii_font);
4851
4852 gui.ascii_glyphs = NULL;
4853 gui.ascii_font = NULL;
4854
Bram Moolenaar30613902019-12-01 22:11:18 +01004855 // For safety, fill in question marks for the control characters.
4856 // Put a space between characters to avoid shaping.
Bram Moolenaar16350cb2016-08-14 20:27:34 +02004857 for (i = 0; i < 128; ++i)
4858 {
4859 if (i >= 32 && i < 127)
4860 ascii_chars[2 * i] = i;
4861 else
4862 ascii_chars[2 * i] = '?';
4863 ascii_chars[2 * i + 1] = ' ';
4864 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865
4866 attr_list = pango_attr_list_new();
4867 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
4868 0, sizeof(ascii_chars), attr_list, NULL);
4869
Bram Moolenaar30613902019-12-01 22:11:18 +01004870 if (item_list != NULL && item_list->next == NULL) // play safe
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 {
4872 PangoItem *item;
4873 int width;
4874
4875 item = (PangoItem *)item_list->data;
4876 width = gui.char_width * PANGO_SCALE;
4877
Bram Moolenaar30613902019-12-01 22:11:18 +01004878 // Remember the shape engine used for ASCII.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 default_shape_engine = item->analysis.shape_engine;
4880
4881 gui.ascii_font = item->analysis.font;
4882 g_object_ref(gui.ascii_font);
4883
4884 gui.ascii_glyphs = pango_glyph_string_new();
4885
4886 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
4887 &item->analysis, gui.ascii_glyphs);
4888
4889 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
4890
4891 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
4892 {
4893 PangoGlyphGeometry *geom;
4894
4895 geom = &gui.ascii_glyphs->glyphs[i].geometry;
4896 geom->x_offset += MAX(0, width - geom->width) / 2;
4897 geom->width = width;
4898 }
4899 }
4900
Bram Moolenaar81a4cf42020-09-09 19:05:13 +02004901 // TODO: is this type cast OK?
4902 g_list_foreach(item_list, (GFunc)(void *)&pango_item_free, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 g_list_free(item_list);
4904 pango_attr_list_unref(attr_list);
4905}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906
4907/*
4908 * Initialize Vim to use the font or fontset with the given name.
4909 * Return FAIL if the font could not be loaded, OK otherwise.
4910 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004912gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 PangoFontDescription *font_desc;
4915 PangoLayout *layout;
4916 int width;
4917
Bram Moolenaar30613902019-12-01 22:11:18 +01004918 // If font_name is NULL, this means to use the default, which should
4919 // be present on all proper Pango/fontconfig installations.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 if (font_name == NULL)
4921 font_name = (char_u *)DEFAULT_FONT;
4922
4923 font_desc = gui_mch_get_font(font_name, FALSE);
4924
4925 if (font_desc == NULL)
4926 return FAIL;
4927
4928 gui_mch_free_font(gui.norm_font);
4929 gui.norm_font = font_desc;
4930
4931 pango_context_set_font_description(gui.text_context, font_desc);
4932
4933 layout = pango_layout_new(gui.text_context);
4934 pango_layout_set_text(layout, "MW", 2);
4935 pango_layout_get_size(layout, &width, NULL);
4936 /*
4937 * Set char_width to half the width obtained from pango_layout_get_size()
4938 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
4939 * Pango to use the same width for both non-CJK characters (e.g. Latin
4940 * letters and numbers) and CJK characters. This results in 's p a c e d
4941 * o u t' rendering when a CJK 'fixed width' font is used. To work around
4942 * that, divide the width returned by Pango by 2 if cjk_width is equal to
4943 * width for CJK fonts.
4944 *
4945 * For related bugs, see:
4946 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
4947 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
4948 *
4949 * With this, for all four of the following cases, Vim works fine:
4950 * guifont=CJK_fixed_width_font
4951 * guifont=Non_CJK_fixed_font
4952 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
4953 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
4954 */
4955 if (is_cjk_font(gui.norm_font))
4956 {
4957 int cjk_width;
4958
Bram Moolenaar30613902019-12-01 22:11:18 +01004959 // Measure the text extent of U+4E00 and U+4E8C
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
4961 pango_layout_get_size(layout, &cjk_width, NULL);
4962
Bram Moolenaar30613902019-12-01 22:11:18 +01004963 if (width == cjk_width) // Xft not patched
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 width /= 2;
4965 }
4966 g_object_unref(layout);
4967
4968 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
4969
Bram Moolenaar30613902019-12-01 22:11:18 +01004970 // A zero width may cause a crash. Happens for semi-invalid fontsets.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 if (gui.char_width <= 0)
4972 gui.char_width = 8;
4973
Bram Moolenaar231334e2005-07-25 20:46:57 +00004974 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975
Bram Moolenaar30613902019-12-01 22:11:18 +01004976 // Set the fontname, which will be used for information purposes
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 hl_set_font_name(font_name);
4978
4979 get_styled_font_variants();
4980 ascii_glyph_table_init();
4981
Bram Moolenaar30613902019-12-01 22:11:18 +01004982 // Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 if (gui.wide_font != NULL
4984 && pango_font_description_equal(gui.norm_font, gui.wide_font))
4985 {
4986 pango_font_description_free(gui.wide_font);
4987 gui.wide_font = NULL;
4988 }
4989
Bram Moolenaare161c792009-11-03 17:13:59 +00004990 if (gui_mch_maximized())
4991 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004992 // Update lines and columns in accordance with the new font, keep the
4993 // window maximized.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004994 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00004995 }
4996 else
Bram Moolenaare161c792009-11-03 17:13:59 +00004997 {
Bram Moolenaar30613902019-12-01 22:11:18 +01004998 // Preserve the logical dimensions of the screen.
Bram Moolenaare161c792009-11-03 17:13:59 +00004999 update_window_manager_hints(0, 0);
5000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001
5002 return OK;
5003}
5004
5005/*
5006 * Get a reference to the font "name".
5007 * Return zero for failure.
5008 */
5009 GuiFont
5010gui_mch_get_font(char_u *name, int report_error)
5011{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013
Bram Moolenaar30613902019-12-01 22:11:18 +01005014 // can't do this when GUI is not running
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 if (!gui.in_use || name == NULL)
5016 return NULL;
5017
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 if (output_conv.vc_type != CONV_NONE)
5019 {
5020 char_u *buf;
5021
5022 buf = string_convert(&output_conv, name, NULL);
5023 if (buf != NULL)
5024 {
5025 font = pango_font_description_from_string((const char *)buf);
5026 vim_free(buf);
5027 }
5028 else
5029 font = NULL;
5030 }
5031 else
5032 font = pango_font_description_from_string((const char *)name);
5033
5034 if (font != NULL)
5035 {
5036 PangoFont *real_font;
5037
Bram Moolenaar30613902019-12-01 22:11:18 +01005038 // pango_context_load_font() bails out if no font size is set
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 if (pango_font_description_get_size(font) <= 0)
5040 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5041
5042 real_font = pango_context_load_font(gui.text_context, font);
5043
5044 if (real_font == NULL)
5045 {
5046 pango_font_description_free(font);
5047 font = NULL;
5048 }
5049 else
5050 g_object_unref(real_font);
5051 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052
5053 if (font == NULL)
5054 {
5055 if (report_error)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005056 semsg(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 return NULL;
5058 }
5059
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 return font;
5061}
5062
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005063#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005064/*
5065 * Return the name of font "font" in allocated memory.
5066 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005067 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005068gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005069{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005070 if (font != NOFONT)
5071 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005072 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005073
Bram Moolenaar89d40322006-08-29 15:30:07 +00005074 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005075 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005076 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005077
Bram Moolenaar89d40322006-08-29 15:30:07 +00005078 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005079 return s;
5080 }
5081 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005082 return NULL;
5083}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005084#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005085
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086/*
5087 * If a font is not going to be used, free its structure.
5088 */
5089 void
5090gui_mch_free_font(GuiFont font)
5091{
5092 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094}
5095
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005097 * Return the Pixel value (color) for the given color name.
5098 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 * Return INVALCOLOR for error.
5100 */
5101 guicolor_T
5102gui_mch_get_color(char_u *name)
5103{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005104 guicolor_T color = INVALCOLOR;
5105
Bram Moolenaar30613902019-12-01 22:11:18 +01005106 if (!gui.in_use) // can't do this when GUI not running
Bram Moolenaar2e324952018-04-14 14:37:07 +02005107 return color;
5108
5109 if (name != NULL)
5110 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111
Bram Moolenaar98921892016-02-23 17:14:37 +01005112#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005113 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005114#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005115 if (color == INVALCOLOR)
5116 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005118 return gui_mch_get_rgb_color(
5119 (color & 0xff0000) >> 16,
5120 (color & 0xff00) >> 8,
5121 color & 0xff);
5122#endif
5123}
5124
5125/*
5126 * Return the Pixel value (color) for the given RGB values.
5127 * Return INVALCOLOR for error.
5128 */
5129 guicolor_T
5130gui_mch_get_rgb_color(int r, int g, int b)
5131{
5132#if GTK_CHECK_VERSION(3,0,0)
5133 return gui_get_rgb_color_cmn(r, g, b);
5134#else
5135 GdkColor gcolor;
5136 int ret;
5137
5138 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5139 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5140 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141
Bram Moolenaar36edf062016-07-21 22:10:12 +02005142 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5143 &gcolor, FALSE, TRUE);
5144
5145 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5146#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147}
5148
5149/*
5150 * Set the current text foreground color.
5151 */
5152 void
5153gui_mch_set_fg_color(guicolor_T color)
5154{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005155#if GTK_CHECK_VERSION(3,0,0)
5156 *gui.fgcolor = color_to_rgba(color);
5157#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005159#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160}
5161
5162/*
5163 * Set the current text background color.
5164 */
5165 void
5166gui_mch_set_bg_color(guicolor_T color)
5167{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005168#if GTK_CHECK_VERSION(3,0,0)
5169 *gui.bgcolor = color_to_rgba(color);
5170#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005172#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173}
5174
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005175/*
5176 * Set the current text special color.
5177 */
5178 void
5179gui_mch_set_sp_color(guicolor_T color)
5180{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005181#if GTK_CHECK_VERSION(3,0,0)
5182 *gui.spcolor = color_to_rgba(color);
5183#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005184 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005185#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005186}
5187
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188/*
5189 * Function-like convenience macro for the sake of efficiency.
5190 */
5191#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5192 G_STMT_START{ \
5193 PangoAttribute *tmp_attr_; \
5194 tmp_attr_ = (Attribute); \
5195 tmp_attr_->start_index = (Start); \
5196 tmp_attr_->end_index = (End); \
5197 pango_attr_list_insert((AttrList), tmp_attr_); \
5198 }G_STMT_END
5199
5200 static void
5201apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5202{
5203 char_u *start = NULL;
5204 char_u *p;
5205 int uc;
5206
5207 for (p = s; p < s + len; p += utf_byte2len(*p))
5208 {
5209 uc = utf_ptr2char(p);
5210
5211 if (start == NULL)
5212 {
5213 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5214 start = p;
5215 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005216 else if (uc < 0x80 // optimization shortcut
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5218 {
5219 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5220 attr_list, start - s, p - s);
5221 start = NULL;
5222 }
5223 }
5224
5225 if (start != NULL)
5226 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5227 attr_list, start - s, len);
5228}
5229
5230 static int
5231count_cluster_cells(char_u *s, PangoItem *item,
5232 PangoGlyphString* glyphs, int i,
5233 int *cluster_width,
5234 int *last_glyph_rbearing)
5235{
5236 char_u *p;
Bram Moolenaar30613902019-12-01 22:11:18 +01005237 int next; // glyph start index of next cluster
5238 int start, end; // string segment of current cluster
5239 int width; // real cluster width in Pango units
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 int uc;
5241 int cellcount = 0;
5242
5243 width = glyphs->glyphs[i].geometry.width;
5244
5245 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5246 {
5247 if (glyphs->glyphs[next].attr.is_cluster_start)
5248 break;
5249 else if (glyphs->glyphs[next].geometry.width > width)
5250 width = glyphs->glyphs[next].geometry.width;
5251 }
5252
5253 start = item->offset + glyphs->log_clusters[i];
5254 end = item->offset + ((next < glyphs->num_glyphs) ?
5255 glyphs->log_clusters[next] : item->length);
5256
5257 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5258 {
5259 uc = utf_ptr2char(p);
5260 if (uc < 0x80)
5261 ++cellcount;
5262 else if (!utf_iscomposing(uc))
5263 cellcount += utf_char2cells(uc);
5264 }
5265
5266 if (last_glyph_rbearing != NULL
5267 && cellcount > 0 && next == glyphs->num_glyphs)
5268 {
5269 PangoRectangle ink_rect;
5270 /*
5271 * If a certain combining mark had to be taken from a non-monospace
5272 * font, we have to compensate manually by adapting x_offset according
5273 * to the ink extents of the previous glyph.
5274 */
5275 pango_font_get_glyph_extents(item->analysis.font,
5276 glyphs->glyphs[i].glyph,
5277 &ink_rect, NULL);
5278
5279 if (PANGO_RBEARING(ink_rect) > 0)
5280 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5281 }
5282
5283 if (cellcount > 0)
5284 *cluster_width = width;
5285
5286 return cellcount;
5287}
5288
5289/*
5290 * If there are only combining characters in the cluster, we cannot just
5291 * change the width of the previous glyph since there is none. Therefore
5292 * some guesswork is needed.
5293 *
5294 * If ink_rect.x is negative Pango apparently has taken care of the composing
5295 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5296 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005297 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 *
5299 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5300 * the position of the previous glyph. Apparently this happens only with old
5301 * X fonts which don't provide the special combining information needed by
5302 * Pango.
5303 */
5304 static void
5305setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5306 int last_cellcount, int last_cluster_width,
5307 int last_glyph_rbearing)
5308{
5309 PangoRectangle ink_rect;
5310 PangoRectangle logical_rect;
5311 int width;
5312
5313 width = last_cellcount * gui.char_width * PANGO_SCALE;
5314 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5315 glyph->geometry.width = 0;
5316
5317 pango_font_get_glyph_extents(item->analysis.font,
5318 glyph->glyph,
5319 &ink_rect, &logical_rect);
5320 if (ink_rect.x < 0)
5321 {
5322 glyph->geometry.x_offset += last_glyph_rbearing;
5323 glyph->geometry.y_offset = logical_rect.height
5324 - (gui.char_height - p_linespace) * PANGO_SCALE;
5325 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005326 else
Bram Moolenaar30613902019-12-01 22:11:18 +01005327 // If the accent width is smaller than the cluster width, position it
5328 // in the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005329 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330}
5331
Bram Moolenaar98921892016-02-23 17:14:37 +01005332#if GTK_CHECK_VERSION(3,0,0)
5333 static void
5334draw_glyph_string(int row, int col, int num_cells, int flags,
5335 PangoFont *font, PangoGlyphString *glyphs,
5336 cairo_t *cr)
5337#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 static void
5339draw_glyph_string(int row, int col, int num_cells, int flags,
5340 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005341#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342{
5343 if (!(flags & DRAW_TRANSP))
5344 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005345#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005346 cairo_set_source_rgba(cr,
5347 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5348 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005349 cairo_rectangle(cr,
5350 FILL_X(col), FILL_Y(row),
5351 num_cells * gui.char_width, gui.char_height);
5352 cairo_fill(cr);
5353#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5355
5356 gdk_draw_rectangle(gui.drawarea->window,
5357 gui.text_gc,
5358 TRUE,
5359 FILL_X(col),
5360 FILL_Y(row),
5361 num_cells * gui.char_width,
5362 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005363#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 }
5365
Bram Moolenaar98921892016-02-23 17:14:37 +01005366#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005367 cairo_set_source_rgba(cr,
5368 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5369 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005370 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5371 pango_cairo_show_glyph_string(cr, font, glyphs);
5372#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5374
5375 gdk_draw_glyphs(gui.drawarea->window,
5376 gui.text_gc,
5377 font,
5378 TEXT_X(col),
5379 TEXT_Y(row),
5380 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005381#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382
Bram Moolenaar30613902019-12-01 22:11:18 +01005383 // redraw the contents with an offset of 1 to emulate bold
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005385#if GTK_CHECK_VERSION(3,0,0)
5386 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005387 cairo_set_source_rgba(cr,
5388 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5389 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005390 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5391 pango_cairo_show_glyph_string(cr, font, glyphs);
5392 }
5393#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 gdk_draw_glyphs(gui.drawarea->window,
5395 gui.text_gc,
5396 font,
5397 TEXT_X(col) + 1,
5398 TEXT_Y(row),
5399 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005400#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401}
5402
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005403/*
5404 * Draw underline and undercurl at the bottom of the character cell.
5405 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005406#if GTK_CHECK_VERSION(3,0,0)
5407 static void
5408draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5409#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005410 static void
5411draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005412#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005413{
5414 int i;
5415 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005416 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005417 int y = FILL_Y(row + 1) - 1;
5418
Bram Moolenaar30613902019-12-01 22:11:18 +01005419 // Undercurl: draw curl at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005420 if (flags & DRAW_UNDERC)
5421 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005422#if GTK_CHECK_VERSION(3,0,0)
5423 cairo_set_line_width(cr, 1.0);
5424 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005425 cairo_set_source_rgba(cr,
5426 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5427 gui.spcolor->alpha);
Yamagi9cd93852021-11-20 20:42:29 +00005428 cairo_move_to(cr, FILL_X(col) + 1, y - 2 + 0.5);
5429 for (i = FILL_X(col) + 1; i < FILL_X(col + cells); ++i)
Bram Moolenaar98921892016-02-23 17:14:37 +01005430 {
5431 offset = val[i % 8];
5432 cairo_line_to(cr, i, y - offset + 0.5);
5433 }
5434 cairo_stroke(cr);
5435#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005436 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5437 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5438 {
5439 offset = val[i % 8];
5440 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5441 }
5442 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005443#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005444 }
5445
Bram Moolenaar30613902019-12-01 22:11:18 +01005446 // Draw a strikethrough line
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005447 if (flags & DRAW_STRIKE)
5448 {
5449#if GTK_CHECK_VERSION(3,0,0)
5450 cairo_set_line_width(cr, 1.0);
5451 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5452 cairo_set_source_rgba(cr,
5453 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5454 gui.spcolor->alpha);
5455 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5456 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5457 cairo_stroke(cr);
5458#else
5459 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5460 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5461 FILL_X(col), y + 1 - gui.char_height/2,
5462 FILL_X(col + cells), y + 1 - gui.char_height/2);
5463 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5464#endif
5465 }
5466
Bram Moolenaar30613902019-12-01 22:11:18 +01005467 // Underline: draw a line at the bottom of the character cell.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005468 if (flags & DRAW_UNDERL)
5469 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005470 // When p_linespace is 0, overwrite the bottom row of pixels.
5471 // Otherwise put the line just below the character.
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005472 if (p_linespace > 1)
5473 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005474#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005475 cairo_set_line_width(cr, 1.0);
5476 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5477 cairo_set_source_rgba(cr,
5478 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5479 gui.fgcolor->alpha);
5480 cairo_move_to(cr, FILL_X(col), y + 0.5);
5481 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5482 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005483#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005484 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5485 FILL_X(col), y,
5486 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005487#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005488 }
5489}
5490
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491 int
5492gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5493{
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005494 char_u *conv_buf = NULL; // result of UTF-8 conversion
5495 char_u *new_conv_buf;
5496 int convlen;
5497 char_u *sp, *bp;
5498 int plen;
5499 int len_sum; // return value needs to add up since we are
5500 // printing substrings
5501 int byte_sum; // byte position in string
5502 char_u *cs; // current *s pointer
5503 int needs_pango; // look ahead, 0=ascii 1=unicode/ligatures
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005504 int should_need_pango = FALSE;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005505 int slen;
5506 int is_ligature;
5507 int next_is_ligature;
5508 int is_utf8;
5509 char_u backup_ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510
Bram Moolenaar98921892016-02-23 17:14:37 +01005511 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512 return len;
5513
5514 if (output_conv.vc_type != CONV_NONE)
5515 {
5516 /*
5517 * Convert characters from 'encoding' to 'termencoding', which is set
5518 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5519 * prohibits changing this to something else than UTF-8 if the GUI is
5520 * in use.
5521 */
5522 convlen = len;
5523 conv_buf = string_convert(&output_conv, s, &convlen);
5524 g_return_val_if_fail(conv_buf != NULL, len);
5525
Bram Moolenaar30613902019-12-01 22:11:18 +01005526 // Correct for differences in char width: some chars are
5527 // double-wide in 'encoding' but single-wide in utf-8. Add a space to
5528 // compensate for that.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5530 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005531 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5533 {
5534 new_conv_buf = alloc(convlen + 2);
5535 if (new_conv_buf == NULL)
5536 return len;
5537 plen += bp - conv_buf;
5538 mch_memmove(new_conv_buf, conv_buf, plen);
5539 new_conv_buf[plen] = ' ';
5540 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5541 convlen - plen + 1);
5542 vim_free(conv_buf);
5543 conv_buf = new_conv_buf;
5544 ++convlen;
5545 bp = conv_buf + plen;
5546 plen = 1;
5547 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005548 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 bp += plen;
5550 }
5551 s = conv_buf;
5552 len = convlen;
5553 }
5554
5555 /*
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005556 * Ligature support and complex utf-8 char optimization:
5557 * String received to output to screen can print using pre-cached glyphs
5558 * (fast) or Pango (slow). Ligatures and multibype utf-8 must use Pango.
5559 * Since we receive mixed content string, split it into logical segments
5560 * that are guaranteed to go trough glyphs as much as possible. Since
5561 * single ligature char prints as ascii, print it that way.
5562 */
5563 len_sum = 0; // return value needs to add up since we are printing
5564 // substrings
5565 byte_sum = 0;
5566 cs = s;
5567 // look ahead, 0=ascii 1=unicode/ligatures
5568 needs_pango = ((*cs & 0x80) || gui.ligatures_map[*cs]);
5569
5570 // split string into ascii and non-ascii (ligatures + utf-8) substrings,
5571 // print glyphs or use Pango
5572 while (cs < s + len)
5573 {
5574 slen = 0;
5575 while (slen < (len - byte_sum))
5576 {
5577 is_ligature = gui.ligatures_map[*(cs + slen)];
5578 // look ahead, single ligature char between ascii is ascii
5579 if (is_ligature && !needs_pango)
5580 {
5581 if ((slen + 1) < (len - byte_sum))
5582 {
5583 next_is_ligature = gui.ligatures_map[*(cs + slen + 1)];
5584 if (!next_is_ligature)
5585 is_ligature = 0;
5586 }
5587 else
5588 {
5589 is_ligature = 0;
5590 }
5591 }
5592 is_utf8 = *(cs + slen) & 0x80;
5593 should_need_pango = (is_ligature || is_utf8);
5594 if (needs_pango != should_need_pango) // mode switch
5595 break;
5596 if (needs_pango)
5597 {
5598 if (is_ligature)
5599 {
5600 slen++; // ligature char by char
5601 }
5602 else
5603 {
5604 if ((*(cs + slen) & 0xC0) == 0x80)
5605 {
5606 // a continuation, find next 0xC0 != 0x80 but don't
5607 // include it
5608 while ((slen < (len - byte_sum))
5609 && ((*(cs + slen) & 0xC0) == 0x80))
5610 {
5611 slen++;
5612 }
5613 }
5614 else if ((*(cs + slen) & 0xE0) == 0xC0)
5615 {
5616 // + one byte utf8
5617 slen++;
5618 }
5619 else if ((*(cs + slen) & 0xF0) == 0xE0)
5620 {
5621 // + two bytes utf8
5622 slen += 2;
5623 }
5624 else if ((*(cs + slen) & 0xF8) == 0xF0)
5625 {
5626 // + three bytes utf8
5627 slen += 3;
5628 }
5629 else
5630 {
5631 // this should not happen, try moving forward, Pango
5632 // will catch it
5633 slen++;
5634 }
5635 }
5636 }
5637 else
5638 {
5639 slen++; // ascii
5640 }
5641 }
Bram Moolenaar9d4b8ca2021-10-17 11:33:47 +01005642
Bram Moolenaard68a0042021-10-20 23:08:11 +01005643 if (slen < len)
5644 {
5645 // temporarily zero terminate substring, print, restore char, wrap
5646 backup_ch = *(cs + slen);
5647 *(cs + slen) = NUL;
5648 }
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005649 len_sum += gui_gtk2_draw_string_ext(row, col + len_sum,
5650 cs, slen, flags, needs_pango);
Bram Moolenaard68a0042021-10-20 23:08:11 +01005651 if (slen < len)
5652 *(cs + slen) = backup_ch;
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005653 cs += slen;
5654 byte_sum += slen;
5655 needs_pango = should_need_pango;
5656 }
5657 vim_free(conv_buf);
5658 return len_sum;
5659}
5660
5661 int
5662gui_gtk2_draw_string_ext(
5663 int row,
5664 int col,
5665 char_u *s,
5666 int len,
5667 int flags,
5668 int force_pango)
5669{
5670 GdkRectangle area; // area for clip mask
5671 PangoGlyphString *glyphs; // glyphs of current item
5672 int column_offset = 0; // column offset in cells
5673 int i;
5674#if GTK_CHECK_VERSION(3,0,0)
5675 cairo_t *cr;
5676#endif
5677
5678 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679 * Restrict all drawing to the current screen line in order to prevent
5680 * fuzzy font lookups from messing up the screen.
5681 */
5682 area.x = gui.border_offset;
5683 area.y = FILL_Y(row);
5684 area.width = gui.num_cols * gui.char_width;
5685 area.height = gui.char_height;
5686
Bram Moolenaar98921892016-02-23 17:14:37 +01005687#if GTK_CHECK_VERSION(3,0,0)
5688 cr = cairo_create(gui.surface);
5689 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5690 cairo_clip(cr);
5691#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5693 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005694#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695
5696 glyphs = pango_glyph_string_new();
5697
5698 /*
5699 * Optimization hack: If possible, skip the itemize and shaping process
5700 * for pure ASCII strings. This optimization is particularly effective
5701 * because Vim draws space characters to clear parts of the screen.
5702 */
5703 if (!(flags & DRAW_ITALIC)
5704 && !((flags & DRAW_BOLD) && gui.font_can_bold)
Dusan Popovic4eeedc02021-10-16 20:52:05 +01005705 && gui.ascii_glyphs != NULL
5706 && !force_pango)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 {
5708 char_u *p;
5709
5710 for (p = s; p < s + len; ++p)
5711 if (*p & 0x80)
5712 goto not_ascii;
5713
5714 pango_glyph_string_set_size(glyphs, len);
5715
5716 for (i = 0; i < len; ++i)
5717 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005718 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 glyphs->log_clusters[i] = i;
5720 }
5721
Bram Moolenaar98921892016-02-23 17:14:37 +01005722#if GTK_CHECK_VERSION(3,0,0)
5723 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5724#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005726#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727
5728 column_offset = len;
5729 }
5730 else
5731not_ascii:
5732 {
5733 PangoAttrList *attr_list;
5734 GList *item_list;
5735 int cluster_width;
5736 int last_glyph_rbearing;
Bram Moolenaar30613902019-12-01 22:11:18 +01005737 int cells = 0; // cells occupied by current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738
Bram Moolenaar30613902019-12-01 22:11:18 +01005739 // Safety check: pango crashes when invoked with invalid utf-8
5740 // characters.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005741 if (!utf_valid_string(s, s + len))
5742 {
5743 column_offset = len;
5744 goto skipitall;
5745 }
5746
Bram Moolenaar30613902019-12-01 22:11:18 +01005747 // original width of the current cluster
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 cluster_width = PANGO_SCALE * gui.char_width;
5749
Bram Moolenaar30613902019-12-01 22:11:18 +01005750 // right bearing of the last non-composing glyph
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5752
5753 attr_list = pango_attr_list_new();
5754
Bram Moolenaar30613902019-12-01 22:11:18 +01005755 // If 'guifontwide' is set then use that for double-width characters.
5756 // Otherwise just go with 'guifont' and let Pango do its thing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757 if (gui.wide_font != NULL)
5758 apply_wide_font_attr(s, len, attr_list);
5759
5760 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5761 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5762 attr_list, 0, len);
5763 if (flags & DRAW_ITALIC)
5764 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5765 attr_list, 0, len);
5766 /*
5767 * Break the text into segments with consistent directional level
5768 * and shaping engine. Pure Latin text needs only a single segment,
5769 * so there's no need to worry about the loop's efficiency. Better
5770 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5771 */
5772 item_list = pango_itemize(gui.text_context,
5773 (const char *)s, 0, len, attr_list, NULL);
5774
5775 while (item_list != NULL)
5776 {
5777 PangoItem *item;
Bram Moolenaar30613902019-12-01 22:11:18 +01005778 int item_cells = 0; // item length in cells
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779
5780 item = (PangoItem *)item_list->data;
5781 item_list = g_list_delete_link(item_list, item_list);
5782 /*
5783 * Increment the bidirectional embedding level by 1 if it is not
5784 * even. An odd number means the output will be RTL, but we don't
5785 * want that since Vim handles right-to-left text on its own. It
5786 * would probably be sufficient to just set level = 0, but you can
5787 * never know :)
5788 *
5789 * Unfortunately we can't take advantage of Pango's ability to
5790 * render both LTR and RTL at the same time. In order to support
5791 * that, Vim's main screen engine would have to make use of Pango
5792 * functionality.
5793 */
5794 item->analysis.level = (item->analysis.level + 1) & (~1U);
5795
Bram Moolenaar30613902019-12-01 22:11:18 +01005796 // HACK: Overrule the shape engine, we don't want shaping to be
5797 // done, because drawing the cursor would change the display.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 item->analysis.shape_engine = default_shape_engine;
5799
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005800#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02005801 pango_shape_full((const char *)s + item->offset, item->length,
5802 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005803#else
5804 pango_shape((const char *)s + item->offset, item->length,
5805 &item->analysis, glyphs);
5806#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807 /*
5808 * Fixed-width hack: iterate over the array and assign a fixed
5809 * width to each glyph, thus overriding the choice made by the
5810 * shaping engine. We use utf_char2cells() to determine the
5811 * number of cells needed.
5812 *
5813 * Also perform all kind of dark magic to get composing
5814 * characters right (and pretty too of course).
5815 */
5816 for (i = 0; i < glyphs->num_glyphs; ++i)
5817 {
5818 PangoGlyphInfo *glyph;
5819
5820 glyph = &glyphs->glyphs[i];
5821
5822 if (glyph->attr.is_cluster_start)
5823 {
5824 int cellcount;
5825
5826 cellcount = count_cluster_cells(
5827 s, item, glyphs, i, &cluster_width,
5828 (item_list != NULL) ? &last_glyph_rbearing : NULL);
5829
5830 if (cellcount > 0)
5831 {
5832 int width;
5833
5834 width = cellcount * gui.char_width * PANGO_SCALE;
5835 glyph->geometry.x_offset +=
5836 MAX(0, width - cluster_width) / 2;
5837 glyph->geometry.width = width;
5838 }
5839 else
5840 {
Bram Moolenaar30613902019-12-01 22:11:18 +01005841 // If there are only combining characters in the
5842 // cluster, we cannot just change the width of the
5843 // previous glyph since there is none. Therefore
5844 // some guesswork is needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845 setup_zero_width_cluster(item, glyph, cells,
5846 cluster_width,
5847 last_glyph_rbearing);
5848 }
5849
5850 item_cells += cellcount;
5851 cells = cellcount;
5852 }
5853 else if (i > 0)
5854 {
5855 int width;
5856
Bram Moolenaar30613902019-12-01 22:11:18 +01005857 // There is a previous glyph, so we deal with combining
5858 // characters the canonical way.
5859 // In some circumstances Pango uses a positive x_offset,
5860 // then use the width of the previous glyph for this one
5861 // and set the previous width to zero.
5862 // Otherwise we get a negative x_offset, Pango has already
5863 // positioned the combining char, keep the widths as they
5864 // are.
5865 // For both adjust the x_offset to position the glyph in
5866 // the middle.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005867 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02005868 {
5869 glyphs->glyphs[i].geometry.width =
5870 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005871 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02005872 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873 width = cells * gui.char_width * PANGO_SCALE;
5874 glyph->geometry.x_offset +=
5875 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 }
Bram Moolenaar30613902019-12-01 22:11:18 +01005877 else // i == 0 "cannot happen"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878 {
5879 glyph->geometry.width = 0;
5880 }
5881 }
5882
Bram Moolenaar30613902019-12-01 22:11:18 +01005883 //// Aaaaand action! **
Bram Moolenaar98921892016-02-23 17:14:37 +01005884#if GTK_CHECK_VERSION(3,0,0)
5885 draw_glyph_string(row, col + column_offset, item_cells,
5886 flags, item->analysis.font, glyphs,
5887 cr);
5888#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 draw_glyph_string(row, col + column_offset, item_cells,
5890 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005891#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892
5893 pango_item_free(item);
5894
5895 column_offset += item_cells;
5896 }
5897
5898 pango_attr_list_unref(attr_list);
5899 }
5900
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005901skipitall:
Bram Moolenaar30613902019-12-01 22:11:18 +01005902 // Draw underline and undercurl.
Bram Moolenaar98921892016-02-23 17:14:37 +01005903#if GTK_CHECK_VERSION(3,0,0)
5904 draw_under(flags, row, col, column_offset, cr);
5905#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005906 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01005907#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908
5909 pango_glyph_string_free(glyphs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910
Bram Moolenaar98921892016-02-23 17:14:37 +01005911#if GTK_CHECK_VERSION(3,0,0)
5912 cairo_destroy(cr);
presuku9459b8d2021-11-16 20:03:56 +00005913 gtk_widget_queue_draw_area(gui.drawarea, area.x, area.y,
5914 area.width, area.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005915#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918
5919 return column_offset;
5920}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921
5922/*
5923 * Return OK if the key with the termcap name "name" is supported.
5924 */
5925 int
5926gui_mch_haskey(char_u *name)
5927{
5928 int i;
5929
5930 for (i = 0; special_keys[i].key_sym != 0; i++)
5931 if (name[0] == special_keys[i].code0
5932 && name[1] == special_keys[i].code1)
5933 return OK;
5934 return FAIL;
5935}
5936
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005937#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938/*
5939 * Return the text window-id and display. Only required for X-based GUI's
5940 */
5941 int
5942gui_get_x11_windis(Window *win, Display **dis)
5943{
Bram Moolenaar98921892016-02-23 17:14:37 +01005944 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005946 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
5947 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948 return OK;
5949 }
5950
5951 *dis = NULL;
5952 *win = 0;
5953 return FAIL;
5954}
5955#endif
5956
5957#if defined(FEAT_CLIENTSERVER) \
5958 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
5959
5960 Display *
5961gui_mch_get_display(void)
5962{
Bram Moolenaar98921892016-02-23 17:14:37 +01005963 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
5964 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 else
5966 return NULL;
5967}
5968#endif
5969
5970 void
5971gui_mch_beep(void)
5972{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 GdkDisplay *display;
5974
Bram Moolenaar98921892016-02-23 17:14:37 +01005975 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 display = gtk_widget_get_display(gui.mainwin);
5977 else
5978 display = gdk_display_get_default();
5979
5980 if (display != NULL)
5981 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982}
5983
5984 void
5985gui_mch_flash(int msec)
5986{
Bram Moolenaar98921892016-02-23 17:14:37 +01005987#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar30613902019-12-01 22:11:18 +01005988 // TODO Replace GdkGC with Cairo
Bram Moolenaar98921892016-02-23 17:14:37 +01005989 (void)msec;
5990#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991 GdkGCValues values;
5992 GdkGC *invert_gc;
5993
5994 if (gui.drawarea->window == NULL)
5995 return;
5996
5997 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
5998 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
5999 values.function = GDK_XOR;
6000 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6001 &values,
6002 GDK_GC_FOREGROUND |
6003 GDK_GC_BACKGROUND |
6004 GDK_GC_FUNCTION);
6005 gdk_gc_set_exposures(invert_gc,
6006 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6007 /*
6008 * Do a visual beep by changing back and forth in some undetermined way,
6009 * the foreground and background colors. This is due to the fact that
6010 * there can't be really any prediction about the effects of XOR on
6011 * arbitrary X11 servers. However this seems to be enough for what we
6012 * intend it to do.
6013 */
6014 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6015 TRUE,
6016 0, 0,
6017 FILL_X((int)Columns) + gui.border_offset,
6018 FILL_Y((int)Rows) + gui.border_offset);
6019
6020 gui_mch_flush();
Bram Moolenaar30613902019-12-01 22:11:18 +01006021 ui_delay((long)msec, TRUE); // wait so many msec
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022
6023 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6024 TRUE,
6025 0, 0,
6026 FILL_X((int)Columns) + gui.border_offset,
6027 FILL_Y((int)Rows) + gui.border_offset);
6028
6029 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006030#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006031}
6032
6033/*
6034 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6035 */
6036 void
6037gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6038{
Bram Moolenaar98921892016-02-23 17:14:37 +01006039#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006040 const GdkRectangle rect = {
6041 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6042 };
6043 cairo_t * const cr = cairo_create(gui.surface);
6044
Bram Moolenaar36edf062016-07-21 22:10:12 +02006045 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006046# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6047 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6048# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006049 // Give an implementation for older cairo versions if necessary.
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006050# endif
presuku9459b8d2021-11-16 20:03:56 +00006051 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006052 cairo_fill(cr);
6053
6054 cairo_destroy(cr);
6055
presuku9459b8d2021-11-16 20:03:56 +00006056 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6057 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006058#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059 GdkGCValues values;
6060 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061
6062 if (gui.drawarea->window == NULL)
6063 return;
6064
Bram Moolenaar89d40322006-08-29 15:30:07 +00006065 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6066 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067 values.function = GDK_XOR;
6068 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6069 &values,
6070 GDK_GC_FOREGROUND |
6071 GDK_GC_BACKGROUND |
6072 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006073 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6074 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6076 TRUE,
6077 FILL_X(c), FILL_Y(r),
6078 (nc) * gui.char_width, (nr) * gui.char_height);
6079 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006080#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081}
6082
6083/*
6084 * Iconify the GUI window.
6085 */
6086 void
6087gui_mch_iconify(void)
6088{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090}
6091
6092#if defined(FEAT_EVAL) || defined(PROTO)
6093/*
6094 * Bring the Vim window to the foreground.
6095 */
6096 void
6097gui_mch_set_foreground(void)
6098{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100}
6101#endif
6102
6103/*
6104 * Draw a cursor without focus.
6105 */
6106 void
6107gui_mch_draw_hollow_cursor(guicolor_T color)
6108{
6109 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006110#if GTK_CHECK_VERSION(3,0,0)
6111 cairo_t *cr;
6112#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113
Bram Moolenaar98921892016-02-23 17:14:37 +01006114 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115 return;
6116
Bram Moolenaar98921892016-02-23 17:14:37 +01006117#if GTK_CHECK_VERSION(3,0,0)
6118 cr = cairo_create(gui.surface);
6119#endif
6120
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121 gui_mch_set_fg_color(color);
6122
Bram Moolenaar98921892016-02-23 17:14:37 +01006123#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006124 cairo_set_source_rgba(cr,
6125 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6126 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006127#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006129#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006130 if (mb_lefthalve(gui.row, gui.col))
6131 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006132#if GTK_CHECK_VERSION(3,0,0)
6133 cairo_set_line_width(cr, 1.0);
6134 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6135 cairo_rectangle(cr,
6136 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6137 i * gui.char_width - 1, gui.char_height - 1);
6138 cairo_stroke(cr);
6139 cairo_destroy(cr);
6140#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6142 FALSE,
6143 FILL_X(gui.col), FILL_Y(gui.row),
6144 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006145#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146}
6147
6148/*
6149 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6150 * color "color".
6151 */
6152 void
6153gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6154{
Bram Moolenaar98921892016-02-23 17:14:37 +01006155 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156 return;
6157
6158 gui_mch_set_fg_color(color);
6159
Bram Moolenaar98921892016-02-23 17:14:37 +01006160#if GTK_CHECK_VERSION(3,0,0)
6161 {
6162 cairo_t *cr;
6163
6164 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006165 cairo_set_source_rgba(cr,
6166 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6167 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006168 cairo_rectangle(cr,
6169# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006170 // vertical line should be on the right of current point
Bram Moolenaar98921892016-02-23 17:14:37 +01006171 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6172# endif
6173 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6174 w, h);
6175 cairo_fill(cr);
6176 cairo_destroy(cr);
6177 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006178#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6180 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6181 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006182# ifdef FEAT_RIGHTLEFT
Bram Moolenaar30613902019-12-01 22:11:18 +01006183 // vertical line should be on the right of current point
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006185# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186 FILL_X(gui.col),
6187 FILL_Y(gui.row) + gui.char_height - h,
6188 w, h);
Bram Moolenaar30613902019-12-01 22:11:18 +01006189#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190}
6191
6192
6193/*
6194 * Catch up with any queued X11 events. This may put keyboard input into the
6195 * input buffer, call resize call-backs, trigger timers etc. If there is
6196 * nothing in the X11 event queue (& no timers pending), then we return
6197 * immediately.
6198 */
6199 void
6200gui_mch_update(void)
6201{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006202 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6203 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204}
6205
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006206 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006207input_timer_cb(gpointer data)
6208{
6209 int *timed_out = (int *) data;
6210
Bram Moolenaar30613902019-12-01 22:11:18 +01006211 // Just inform the caller about the occurrence of it
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212 *timed_out = TRUE;
6213
Bram Moolenaar30613902019-12-01 22:11:18 +01006214 return FALSE; // don't happen again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215}
6216
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006217#ifdef FEAT_JOB_CHANNEL
6218 static timeout_cb_type
6219channel_poll_cb(gpointer data UNUSED)
6220{
Bram Moolenaar30613902019-12-01 22:11:18 +01006221 // Using an event handler for a channel that may be disconnected does
6222 // not work, it hangs. Instead poll for messages.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006223 channel_handle_events(TRUE);
6224 parse_queued_messages();
6225
Bram Moolenaar30613902019-12-01 22:11:18 +01006226 return TRUE; // repeat
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006227}
6228#endif
6229
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230/*
6231 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6232 * from the keyboard.
6233 * wtime == -1 Wait forever.
6234 * wtime == 0 This should never happen.
6235 * wtime > 0 Wait wtime milliseconds for a character.
6236 * Returns OK if a character was found to be available within the given time,
6237 * or FAIL otherwise.
6238 */
6239 int
6240gui_mch_wait_for_chars(long wtime)
6241{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006242 int focus;
6243 guint timer;
6244 static int timed_out;
6245 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006246#ifdef FEAT_JOB_CHANNEL
6247 guint channel_timer = 0;
6248#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249
6250 timed_out = FALSE;
6251
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006252 // This timeout makes sure that we will return if no characters arrived in
6253 // time. If "wtime" is zero just use one.
6254 if (wtime >= 0)
Bram Moolenaar34a58742019-02-03 15:28:28 +01006255 timer = timeout_add(wtime == 0 ? 1L : wtime,
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006256 input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 else
6258 timer = 0;
6259
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006260#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar30613902019-12-01 22:11:18 +01006261 // If there is a channel with the keep_open flag we need to poll for input
6262 // on them.
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006263 if (channel_any_keep_open())
6264 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6265#endif
6266
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267 focus = gui.in_focus;
6268
6269 do
6270 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006271 // Stop or start blinking when focus changes
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272 if (gui.in_focus != focus)
6273 {
6274 if (gui.in_focus)
6275 gui_mch_start_blink();
6276 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006277 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278 focus = gui.in_focus;
6279 }
6280
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006281#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006282# ifdef FEAT_TIMERS
6283 did_add_timer = FALSE;
6284# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006285 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006286# ifdef FEAT_TIMERS
6287 if (did_add_timer)
Bram Moolenaar30613902019-12-01 22:11:18 +01006288 // Need to recompute the waiting time.
Bram Moolenaar4231da42016-06-02 14:30:04 +02006289 goto theend;
6290# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006291#endif
6292
Bram Moolenaar071d4272004-06-13 20:20:40 +00006293 /*
6294 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006295 * Skip this if input is available anyway (can happen in rare
6296 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006298 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006299 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006300
Bram Moolenaar30613902019-12-01 22:11:18 +01006301 // Got char, return immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006302 if (input_available())
6303 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006304 retval = OK;
6305 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306 }
6307 } while (wtime < 0 || !timed_out);
6308
6309 /*
6310 * Flush all eventually pending (drawing) events.
6311 */
6312 gui_mch_update();
6313
Bram Moolenaar4231da42016-06-02 14:30:04 +02006314theend:
6315 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006316 timeout_remove(timer);
6317#ifdef FEAT_JOB_CHANNEL
6318 if (channel_timer != 0)
6319 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006320#endif
6321
6322 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323}
6324
6325
Bram Moolenaar30613902019-12-01 22:11:18 +01006326/////////////////////////////////////////////////////////////////////////////
6327// Output drawing routines.
6328//
Bram Moolenaar071d4272004-06-13 20:20:40 +00006329
6330
Bram Moolenaar30613902019-12-01 22:11:18 +01006331// Flush any output to the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 void
6333gui_mch_flush(void)
6334{
Bram Moolenaar98921892016-02-23 17:14:37 +01006335 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006336#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006337 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006338#else
6339 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6340#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341}
6342
6343/*
6344 * Clear a rectangular region of the screen from text pos (row1, col1) to
6345 * (row2, col2) inclusive.
6346 */
6347 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006348gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006350
6351 int col1 = check_col(col1arg);
6352 int col2 = check_col(col2arg);
6353 int row1 = check_row(row1arg);
6354 int row2 = check_row(row2arg);
6355
Bram Moolenaar98921892016-02-23 17:14:37 +01006356#if GTK_CHECK_VERSION(3,0,0)
6357 if (gtk_widget_get_window(gui.drawarea) == NULL)
6358 return;
6359#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006360 GdkColor color;
6361
6362 if (gui.drawarea->window == NULL)
6363 return;
6364
6365 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006366#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367
Bram Moolenaar98921892016-02-23 17:14:37 +01006368#if GTK_CHECK_VERSION(3,0,0)
6369 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006370 // Add one pixel to the far right column in case a double-stroked
6371 // bold glyph may sit there.
Bram Moolenaar98921892016-02-23 17:14:37 +01006372 const GdkRectangle rect = {
6373 FILL_X(col1), FILL_Y(row1),
6374 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6375 (row2 - row1 + 1) * gui.char_height
6376 };
Bram Moolenaar98921892016-02-23 17:14:37 +01006377 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006378# if GTK_CHECK_VERSION(3,22,2)
6379 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6380# else
presuku9459b8d2021-11-16 20:03:56 +00006381 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaar98921892016-02-23 17:14:37 +01006382 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6383 if (pat != NULL)
6384 cairo_set_source(cr, pat);
6385 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006386 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006387# endif
presuku9459b8d2021-11-16 20:03:56 +00006388 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006389 cairo_fill(cr);
6390 cairo_destroy(cr);
6391
presuku9459b8d2021-11-16 20:03:56 +00006392 gtk_widget_queue_draw_area(gui.drawarea,
6393 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006394 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006395#else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006396 gdk_gc_set_foreground(gui.text_gc, &color);
6397
Bram Moolenaar30613902019-12-01 22:11:18 +01006398 // Clear one extra pixel at the far right, for when bold characters have
6399 // spilled over to the window border.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006400 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6401 FILL_X(col1), FILL_Y(row1),
6402 (col2 - col1 + 1) * gui.char_width
6403 + (col2 == Columns - 1),
6404 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar30613902019-12-01 22:11:18 +01006405#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406}
6407
Bram Moolenaar98921892016-02-23 17:14:37 +01006408#if GTK_CHECK_VERSION(3,0,0)
6409 static void
6410gui_gtk_window_clear(GdkWindow *win)
6411{
6412 const GdkRectangle rect = {
6413 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6414 };
6415 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006416# if GTK_CHECK_VERSION(3,22,2)
6417 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6418# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006419 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6420 if (pat != NULL)
6421 cairo_set_source(cr, pat);
6422 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006423 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006424# endif
presuku9459b8d2021-11-16 20:03:56 +00006425 cairo_rectangle(cr, rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006426 cairo_fill(cr);
6427 cairo_destroy(cr);
6428
presuku9459b8d2021-11-16 20:03:56 +00006429 gtk_widget_queue_draw_area(gui.drawarea,
6430 rect.x, rect.y, rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006431}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006432#else
6433# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006434#endif
6435
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436 void
6437gui_mch_clear_all(void)
6438{
Bram Moolenaar98921892016-02-23 17:14:37 +01006439 if (gtk_widget_get_window(gui.drawarea) != NULL)
6440 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441}
6442
Bram Moolenaar98921892016-02-23 17:14:37 +01006443#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444/*
6445 * Redraw any text revealed by scrolling up/down.
6446 */
6447 static void
6448check_copy_area(void)
6449{
6450 GdkEvent *event;
6451 int expose_count;
6452
6453 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6454 return;
6455
Bram Moolenaar30613902019-12-01 22:11:18 +01006456 // Avoid redrawing the cursor while scrolling or it'll end up where
6457 // we don't want it to be. I'm not sure if it's correct to call
6458 // gui_dont_update_cursor() at this point but it works as a quick
6459 // fix for now.
Bram Moolenaar107abd22016-08-12 14:08:25 +02006460 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461
6462 do
6463 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006464 // Wait to check whether the scroll worked or not.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006465 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6466
6467 if (event == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006468 break; // received NoExpose event
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469
6470 gui_redraw(event->expose.area.x, event->expose.area.y,
6471 event->expose.area.width, event->expose.area.height);
6472
6473 expose_count = event->expose.count;
6474 gdk_event_free(event);
6475 }
Bram Moolenaar30613902019-12-01 22:11:18 +01006476 while (expose_count > 0); // more events follow
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477
6478 gui_can_update_cursor();
6479}
Bram Moolenaar30613902019-12-01 22:11:18 +01006480#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006481
6482#if GTK_CHECK_VERSION(3,0,0)
6483 static void
6484gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6485 int src_x, int src_y,
6486 int width, int height)
6487{
6488 cairo_t * const cr = cairo_create(gui.surface);
6489
6490 cairo_rectangle(cr, dest_x, dest_y, width, height);
6491 cairo_clip(cr);
6492 cairo_push_group(cr);
6493 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6494 cairo_paint(cr);
6495 cairo_pop_group_to_source(cr);
6496 cairo_paint(cr);
6497
6498 cairo_destroy(cr);
6499}
6500#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501
6502/*
6503 * Delete the given number of lines from the given row, scrolling up any
6504 * text further down within the scroll region.
6505 */
6506 void
6507gui_mch_delete_lines(int row, int num_lines)
6508{
Bram Moolenaar98921892016-02-23 17:14:37 +01006509#if GTK_CHECK_VERSION(3,0,0)
6510 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6511 const int nrows = gui.scroll_region_bot - row + 1;
6512 const int src_nrows = nrows - num_lines;
6513
6514 gui_gtk_surface_copy_rect(
6515 FILL_X(gui.scroll_region_left), FILL_Y(row),
6516 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6517 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6518 gui_clear_block(
6519 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6520 gui.scroll_region_bot, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006521 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006522 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006523 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006524#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006525 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006526 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527
6528 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6529 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6530
Bram Moolenaar30613902019-12-01 22:11:18 +01006531 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6533 FILL_X(gui.scroll_region_left), FILL_Y(row),
6534 gui.drawarea->window,
6535 FILL_X(gui.scroll_region_left),
6536 FILL_Y(row + num_lines),
6537 gui.char_width * (gui.scroll_region_right
6538 - gui.scroll_region_left + 1) + 1,
6539 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6540
6541 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6542 gui.scroll_region_left,
6543 gui.scroll_region_bot, gui.scroll_region_right);
6544 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006545#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546}
6547
6548/*
6549 * Insert the given number of lines before the given row, scrolling down any
6550 * following text within the scroll region.
6551 */
6552 void
6553gui_mch_insert_lines(int row, int num_lines)
6554{
Bram Moolenaar98921892016-02-23 17:14:37 +01006555#if GTK_CHECK_VERSION(3,0,0)
6556 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6557 const int nrows = gui.scroll_region_bot - row + 1;
6558 const int src_nrows = nrows - num_lines;
6559
6560 gui_gtk_surface_copy_rect(
6561 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6562 FILL_X(gui.scroll_region_left), FILL_Y(row),
6563 gui.char_width * ncols + 1, gui.char_height * src_nrows);
presuku9459b8d2021-11-16 20:03:56 +00006564 gui_clear_block(
Bram Moolenaar98921892016-02-23 17:14:37 +01006565 row, gui.scroll_region_left,
6566 row + num_lines - 1, gui.scroll_region_right);
presuku9459b8d2021-11-16 20:03:56 +00006567 gtk_widget_queue_draw_area(gui.drawarea,
Bram Moolenaar98921892016-02-23 17:14:37 +01006568 FILL_X(gui.scroll_region_left), FILL_Y(row),
presuku9459b8d2021-11-16 20:03:56 +00006569 gui.char_width * ncols + 1, gui.char_height * nrows);
Bram Moolenaar98921892016-02-23 17:14:37 +01006570#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
Bram Moolenaar30613902019-12-01 22:11:18 +01006572 return; // Can't see the window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573
6574 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6575 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6576
Bram Moolenaar30613902019-12-01 22:11:18 +01006577 // copy one extra pixel, for when bold has spilled over
Bram Moolenaar071d4272004-06-13 20:20:40 +00006578 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6579 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6580 gui.drawarea->window,
6581 FILL_X(gui.scroll_region_left), FILL_Y(row),
6582 gui.char_width * (gui.scroll_region_right
6583 - gui.scroll_region_left + 1) + 1,
6584 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6585
6586 gui_clear_block(row, gui.scroll_region_left,
6587 row + num_lines - 1, gui.scroll_region_right);
6588 check_copy_area();
Bram Moolenaar30613902019-12-01 22:11:18 +01006589#endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006590}
6591
6592/*
6593 * X Selection stuff, for cutting and pasting text to other windows.
6594 */
6595 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006596clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597{
6598 GdkAtom target;
6599 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006600 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006601
6602 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6603 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006604 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6605 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606 received_selection = RS_NONE;
6607 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6608
6609 gtk_selection_convert(gui.drawarea,
6610 cbd->gtk_sel_atom, target,
6611 (guint32)GDK_CURRENT_TIME);
6612
Bram Moolenaar30613902019-12-01 22:11:18 +01006613 // Hack: Wait up to three seconds for the selection. A hang was
6614 // noticed here when using the netrw plugin combined with ":gui"
6615 // during the FocusGained event.
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006616 start = time(NULL);
6617 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaar30613902019-12-01 22:11:18 +01006618 g_main_context_iteration(NULL, TRUE); // wait for selection_received_cb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619
6620 if (received_selection != RS_FAIL)
6621 return;
6622 }
6623
Bram Moolenaar30613902019-12-01 22:11:18 +01006624 // Final fallback position - use the X CUT_BUFFER0 store
Bram Moolenaar98921892016-02-23 17:14:37 +01006625 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6626 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627}
6628
6629/*
6630 * Disown the selection.
6631 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006633clip_mch_lose_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006634{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01006635 if (!in_selection_clear_event)
6636 {
6637 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6638 gui_mch_update();
6639 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006640}
6641
6642/*
6643 * Own the selection and return OK if it worked.
6644 */
6645 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006646clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006647{
6648 int success;
6649
6650 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006651 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006652 gui_mch_update();
6653 return (success) ? OK : FAIL;
6654}
6655
6656/*
6657 * Send the current selection to the clipboard. Do nothing for X because we
6658 * will fill in the selection only when requested by another app.
6659 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006661clip_mch_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006662{
6663}
6664
Bram Moolenaar113e1072019-01-20 15:30:40 +01006665#if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006666 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006667clip_gtk_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006668{
6669 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6670}
Bram Moolenaar113e1072019-01-20 15:30:40 +01006671#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006672
Bram Moolenaar071d4272004-06-13 20:20:40 +00006673
6674#if defined(FEAT_MENU) || defined(PROTO)
6675/*
6676 * Make a menu item appear either active or not active (grey or not grey).
6677 */
6678 void
6679gui_mch_menu_grey(vimmenu_T *menu, int grey)
6680{
6681 if (menu->id == NULL)
6682 return;
6683
6684 if (menu_is_separator(menu->name))
6685 grey = TRUE;
6686
6687 gui_mch_menu_hidden(menu, FALSE);
Bram Moolenaar30613902019-12-01 22:11:18 +01006688 // Be clever about bitfields versus true booleans here!
Bram Moolenaar98921892016-02-23 17:14:37 +01006689 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006690 {
6691 gtk_widget_set_sensitive(menu->id, !grey);
6692 gui_mch_update();
6693 }
6694}
6695
6696/*
6697 * Make menu item hidden or not hidden.
6698 */
6699 void
6700gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6701{
6702 if (menu->id == 0)
6703 return;
6704
6705 if (hidden)
6706 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006707 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006708 {
6709 gtk_widget_hide(menu->id);
6710 gui_mch_update();
6711 }
6712 }
6713 else
6714 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006715 if (!gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716 {
6717 gtk_widget_show(menu->id);
6718 gui_mch_update();
6719 }
6720 }
6721}
6722
6723/*
6724 * This is called after setting all the menus to grey/hidden or not.
6725 */
6726 void
6727gui_mch_draw_menubar(void)
6728{
Bram Moolenaar30613902019-12-01 22:11:18 +01006729 // just make sure that the visual changes get effect immediately
Bram Moolenaar071d4272004-06-13 20:20:40 +00006730 gui_mch_update();
6731}
Bram Moolenaar30613902019-12-01 22:11:18 +01006732#endif // FEAT_MENU
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733
6734/*
6735 * Scrollbar stuff.
6736 */
6737 void
6738gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6739{
6740 if (sb->id == NULL)
6741 return;
6742
Bram Moolenaar98921892016-02-23 17:14:37 +01006743 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006744 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006745}
6746
6747
6748/*
6749 * Return the RGB value of a pixel as long.
6750 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006751 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006752gui_mch_get_rgb(guicolor_T pixel)
6753{
Bram Moolenaar98921892016-02-23 17:14:37 +01006754#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006755 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006756#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006757 GdkColor color;
6758
Bram Moolenaar071d4272004-06-13 20:20:40 +00006759 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6760 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006761
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006762 return (guicolor_T)(
6763 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006764 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006765 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02006766#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006767}
6768
6769/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006770 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006771 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006772 void
6773gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006774{
Bram Moolenaar98921892016-02-23 17:14:37 +01006775 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006776}
6777
6778 void
6779gui_mch_setmouse(int x, int y)
6780{
Bram Moolenaar30613902019-12-01 22:11:18 +01006781 // Sorry for the Xlib call, but we can't avoid it, since there is no
6782 // internal GDK mechanism present to accomplish this. (and for good
6783 // reason...)
Bram Moolenaar98921892016-02-23 17:14:37 +01006784 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
6785 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
6786 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006787}
6788
6789
6790#ifdef FEAT_MOUSESHAPE
Bram Moolenaar30613902019-12-01 22:11:18 +01006791// The last set mouse pointer shape is remembered, to be used when it goes
6792// from hidden to not hidden.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006793static int last_shape = 0;
6794#endif
6795
6796/*
6797 * Use the blank mouse pointer or not.
6798 *
6799 * hide: TRUE = use blank ptr, FALSE = use parent ptr
6800 */
6801 void
6802gui_mch_mousehide(int hide)
6803{
6804 if (gui.pointer_hidden != hide)
6805 {
6806 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01006807 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006808 {
6809 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01006810 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6811 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006812 else
6813#ifdef FEAT_MOUSESHAPE
6814 mch_set_mouse_shape(last_shape);
6815#else
Bram Moolenaar25328e32018-09-11 21:30:09 +02006816 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817#endif
6818 }
6819 }
6820}
6821
6822#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
6823
Bram Moolenaar30613902019-12-01 22:11:18 +01006824// Table for shape IDs. Keep in sync with the mshape_names[] table in
6825// misc2.c!
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826static const int mshape_ids[] =
6827{
Bram Moolenaar30613902019-12-01 22:11:18 +01006828 GDK_LEFT_PTR, // arrow
6829 GDK_CURSOR_IS_PIXMAP, // blank
6830 GDK_XTERM, // beam
6831 GDK_SB_V_DOUBLE_ARROW, // updown
6832 GDK_SIZING, // udsizing
6833 GDK_SB_H_DOUBLE_ARROW, // leftright
6834 GDK_SIZING, // lrsizing
6835 GDK_WATCH, // busy
6836 GDK_X_CURSOR, // no
6837 GDK_CROSSHAIR, // crosshair
6838 GDK_HAND1, // hand1
6839 GDK_HAND2, // hand2
6840 GDK_PENCIL, // pencil
6841 GDK_QUESTION_ARROW, // question
6842 GDK_RIGHT_PTR, // right-arrow
6843 GDK_CENTER_PTR, // up-arrow
6844 GDK_LEFT_PTR // last one
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845};
6846
6847 void
6848mch_set_mouse_shape(int shape)
6849{
6850 int id;
6851 GdkCursor *c;
6852
Bram Moolenaar98921892016-02-23 17:14:37 +01006853 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006854 return;
6855
6856 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01006857 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6858 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859 else
6860 {
6861 if (shape >= MSHAPE_NUMBERED)
6862 {
6863 id = shape - MSHAPE_NUMBERED;
6864 if (id >= GDK_LAST_CURSOR)
6865 id = GDK_LEFT_PTR;
6866 else
Bram Moolenaar30613902019-12-01 22:11:18 +01006867 id &= ~1; // they are always even (why?)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868 }
K.Takataeeec2542021-06-02 13:28:16 +02006869 else if (shape < (int)ARRAY_LENGTH(mshape_ids))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006870 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00006871 else
6872 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00006874 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01006875 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01006876# if GTK_CHECK_VERSION(3,0,0)
6877 g_object_unref(G_OBJECT(c));
6878# else
Bram Moolenaar30613902019-12-01 22:11:18 +01006879 gdk_cursor_destroy(c); // Unref, actually. Bloody GTK+ 1.
Bram Moolenaar98921892016-02-23 17:14:37 +01006880# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006881 }
6882 if (shape != MSHAPE_HIDE)
6883 last_shape = shape;
6884}
Bram Moolenaar30613902019-12-01 22:11:18 +01006885#endif // FEAT_MOUSESHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006886
6887
6888#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6889/*
6890 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
6891 * scaled down if the current font is not big enough, or scaled up if the image
6892 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
6893 * will be cut off if the current font is not big enough, or centered if it's
6894 * too small.
6895 */
6896# define SIGN_WIDTH (2 * gui.char_width)
6897# define SIGN_HEIGHT (gui.char_height)
6898# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
6899
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900 void
6901gui_mch_drawsign(int row, int col, int typenr)
6902{
6903 GdkPixbuf *sign;
6904
6905 sign = (GdkPixbuf *)sign_get_image(typenr);
6906
Bram Moolenaar98921892016-02-23 17:14:37 +01006907 if (sign != NULL && gui.drawarea != NULL
6908 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006909 {
6910 int width;
6911 int height;
6912 int xoffset;
6913 int yoffset;
6914 int need_scale;
6915
6916 width = gdk_pixbuf_get_width(sign);
6917 height = gdk_pixbuf_get_height(sign);
6918 /*
6919 * Decide whether we need to scale. Allow one pixel of border
6920 * width to be cut off, in order to avoid excessive scaling for
6921 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006922 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006923 */
6924 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006925 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926 || (width < 3 * SIGN_WIDTH / 4
6927 && height < 3 * SIGN_HEIGHT / 4));
6928 if (need_scale)
6929 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006930 double aspect;
6931 int w = width;
6932 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006933
Bram Moolenaar30613902019-12-01 22:11:18 +01006934 // Keep the original aspect ratio
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935 aspect = (double)height / (double)width;
6936 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
6937 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006938 if (((double)(MAX(height, SIGN_HEIGHT)) /
6939 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
6940 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006941 // Change the aspect ratio by at most 15% to fill the
6942 // available space completely.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006943 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
6944 height = MIN(height, SIGN_HEIGHT);
6945 }
6946 else
6947 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006948
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006949 if (w == width && h == height)
6950 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006951 // no change in dimensions; don't decrease reference counter
6952 // (below)
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006953 need_scale = FALSE;
6954 }
6955 else
6956 {
Bram Moolenaar30613902019-12-01 22:11:18 +01006957 // This doesn't seem to be worth caching, and doing so would
6958 // complicate the code quite a bit.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006959 sign = gdk_pixbuf_scale_simple(sign, width, height,
6960 GDK_INTERP_BILINEAR);
6961 if (sign == NULL)
Bram Moolenaar30613902019-12-01 22:11:18 +01006962 return; // out of memory
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006964 }
6965
Bram Moolenaar30613902019-12-01 22:11:18 +01006966 // The origin is the upper-left corner of the pixmap. Therefore
6967 // these offset may become negative if the pixmap is smaller than
6968 // the 2x1 cells reserved for the sign icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969 xoffset = (width - SIGN_WIDTH) / 2;
6970 yoffset = (height - SIGN_HEIGHT) / 2;
6971
Bram Moolenaar98921892016-02-23 17:14:37 +01006972# if GTK_CHECK_VERSION(3,0,0)
6973 {
6974 cairo_t *cr;
6975 cairo_surface_t *bg_surf;
6976 cairo_t *bg_cr;
6977 cairo_surface_t *sign_surf;
6978 cairo_t *sign_cr;
6979
6980 cr = cairo_create(gui.surface);
6981
6982 bg_surf = cairo_surface_create_similar(gui.surface,
6983 cairo_surface_get_content(gui.surface),
6984 SIGN_WIDTH, SIGN_HEIGHT);
6985 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006986 cairo_set_source_rgba(bg_cr,
6987 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
6988 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006989 cairo_paint(bg_cr);
6990
6991 sign_surf = cairo_surface_create_similar(gui.surface,
6992 cairo_surface_get_content(gui.surface),
6993 SIGN_WIDTH, SIGN_HEIGHT);
6994 sign_cr = cairo_create(sign_surf);
6995 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
6996 cairo_paint(sign_cr);
6997
6998 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
6999 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7000 cairo_paint(sign_cr);
7001
7002 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7003 cairo_paint(cr);
7004
7005 cairo_destroy(sign_cr);
7006 cairo_surface_destroy(sign_surf);
7007 cairo_destroy(bg_cr);
7008 cairo_surface_destroy(bg_surf);
7009 cairo_destroy(cr);
7010
presuku9459b8d2021-11-16 20:03:56 +00007011 gtk_widget_queue_draw_area(gui.drawarea,
7012 FILL_X(col), FILL_Y(col), width, height);
Bram Moolenaar98921892016-02-23 17:14:37 +01007013
7014 }
Bram Moolenaar30613902019-12-01 22:11:18 +01007015# else // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7017
7018 gdk_draw_rectangle(gui.drawarea->window,
7019 gui.text_gc,
7020 TRUE,
7021 FILL_X(col),
7022 FILL_Y(row),
7023 SIGN_WIDTH,
7024 SIGN_HEIGHT);
7025
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026 gdk_pixbuf_render_to_drawable_alpha(sign,
7027 gui.drawarea->window,
7028 MAX(0, xoffset),
7029 MAX(0, yoffset),
7030 FILL_X(col) - MIN(0, xoffset),
7031 FILL_Y(row) - MIN(0, yoffset),
7032 MIN(width, SIGN_WIDTH),
7033 MIN(height, SIGN_HEIGHT),
7034 GDK_PIXBUF_ALPHA_BILEVEL,
7035 127,
7036 GDK_RGB_DITHER_NORMAL,
7037 0, 0);
Bram Moolenaar30613902019-12-01 22:11:18 +01007038# endif // !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039 if (need_scale)
7040 g_object_unref(sign);
7041 }
7042}
7043
7044 void *
7045gui_mch_register_sign(char_u *signfile)
7046{
7047 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7048 {
7049 GdkPixbuf *sign;
7050 GError *error = NULL;
7051 char_u *message;
7052
7053 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7054
7055 if (error == NULL)
7056 return sign;
7057
7058 message = (char_u *)error->message;
7059
7060 if (message != NULL && input_conv.vc_type != CONV_NONE)
7061 message = string_convert(&input_conv, message, NULL);
7062
7063 if (message != NULL)
7064 {
Bram Moolenaar30613902019-12-01 22:11:18 +01007065 // The error message is already translated and will be more
7066 // descriptive than anything we could possibly do ourselves.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007067 semsg("E255: %s", message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068
7069 if (input_conv.vc_type != CONV_NONE)
7070 vim_free(message);
7071 }
7072 g_error_free(error);
7073 }
7074
7075 return NULL;
7076}
7077
7078 void
7079gui_mch_destroy_sign(void *sign)
7080{
7081 if (sign != NULL)
7082 g_object_unref(sign);
7083}
7084
Bram Moolenaar30613902019-12-01 22:11:18 +01007085#endif // FEAT_SIGN_ICONS