blob: 1bf836fce14365b89a56136250f56f35c16b8dc6 [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
34/* Gnome redefines _() and N_(). Grrr... */
35# 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)
51# define ENABLE_NLS /* so the texts in the dialog boxes are translated */
52# endif
53# include <gnome.h>
54# include "version.h"
Bram Moolenaardb552d602006-03-23 22:59:57 +000055/* missing prototype in bonobo-dock-item.h */
56extern 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)
60/* When generating prototypes we don't want syntax errors. */
61# 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
108/* Selection type distinguishers */
109enum
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};
137#define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
138
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};
152# define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
153#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 Moolenaar071d4272004-06-13 20:20:40 +0000180static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181static 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'},
221 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */
222 {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'},
252 /* Keypad keys: */
253 {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'},
261 {GDK_KP_Prior, 'K', '3'}, /* page up */
262 {GDK_KP_Next, 'K', '5'}, /* page down */
263
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
282 /* End of list marker: */
283 {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
298#define ARG_XRM 10 /* ignored */
299#define ARG_MENUFONT 11 /* ignored */
300#define ARG_INDEX_MASK 0x00ff
301#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[] */
306
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{
323 /* We handle these options ourselves */
324 {"-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
339 {"-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 */
343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 /* Arguments handled by GTK (and GNOME) internally. */
345 {"--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},
372# if 0 /* conflicts with Vim's own --version argument */
373 {"--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 {
444 /* Don't waste CPU cycles on non-option arguments. */
445 if (argv[i][0] != '-' && argv[i][0] != '+')
446 {
447 ++i;
448 continue;
449 }
450
451 /* Look for argv[i] in cmdline_options[] table. */
452 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;
460 /* allow --foo=bar style */
461 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
462 break;
463#ifdef FEAT_NETBEANS_INTG
464 /* darn, -nb has non-standard syntax */
465 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 {
473 /* Replace the standard X arguments "-name" and "-display"
474 * with their GNU-style long option counterparts. */
475 argv[i] = (char *)option->name;
476 break;
477 }
478 }
479 if (option->name == NULL) /* no match */
480 {
481 ++i;
482 continue;
483 }
484
485 if (option->flags & ARG_FOR_GTK)
486 {
487 /* Move the argument into gui_argv, which
488 * will later be passed to gtk_init_check() */
489 gui_argv[gui_argc++] = argv[i];
490 }
491 else
492 {
493 char *value = NULL;
494
495 /* Extract the option's value if there is one.
496 * Accept both "--foo bar" and "--foo=bar" style. */
497 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
505 /* Check for options handled by Vim itself */
506 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:
531 role_argument = value; /* used later in gui_mch_open() */
532 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533#ifdef FEAT_NETBEANS_INTG
534 case ARG_NETBEANS:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 gui.dofork = FALSE; /* don't fork() when starting GUI */
536 netbeansArg = argv[i];
537 break;
538#endif
539 default:
540 break;
541 }
542 }
543
544 /* These arguments make gnome_program_init() print a message and exit.
Bram Moolenaar717e1962016-08-10 21:28:44 +0200545 * Must start the GUI for this, otherwise ":gui" will exit later!
546 * Only when the GUI can start. */
547 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 {
555 /* Remove the flag from the argument vector. */
556 if (--*argc > i)
557 {
558 int n_strip = 1;
559
560 /* Move the argument's value as well, if there is one. */
561 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 Moolenaar98921892016-02-23 17:14:37 +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)
621static gboolean is_key_pressed = FALSE;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100622static gboolean blink_mode = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100623
624static gboolean gui_gtk_is_blink_on(void);
Bram Moolenaar98921892016-02-23 17:14:37 +0100625
626 static void
627gui_gtk3_redraw(int x, int y, int width, int height)
628{
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100629 /* Range checks are left to gui_redraw_block() */
Bram Moolenaar98921892016-02-23 17:14:37 +0100630 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
631 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
632 GUI_MON_NOCLEAR);
633}
634
635 static void
636gui_gtk3_update_cursor(cairo_t *cr)
637{
638 if (gui.row == gui.cursor_row)
639 {
640 gui.by_signal = TRUE;
Bram Moolenaar4fc563b2016-03-12 12:40:58 +0100641 if (State & CMDLINE)
642 gui_update_cursor(TRUE, FALSE);
643 else
644 gui_update_cursor(TRUE, TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +0100645 gui.by_signal = FALSE;
646 cairo_paint(cr);
647 }
648}
649
650 static gboolean
651gui_gtk3_should_draw_cursor(void)
652{
653 unsigned int cond = 0;
654 cond |= gui_gtk_is_blink_on();
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100655 if (gui.cursor_col >= gui.col)
656 cond |= is_key_pressed;
Bram Moolenaar98921892016-02-23 17:14:37 +0100657 cond |= gui.in_focus == FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100658 return cond;
659}
660
661 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200662draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100663 cairo_t *cr,
664 gpointer user_data UNUSED)
665{
666 /* Skip this when the GUI isn't set up yet, will redraw later. */
667 if (gui.starting)
668 return FALSE;
669
670 out_flush(); /* make sure all output has been processed */
671 /* for GTK+ 3, may induce other draw events. */
672
673 cairo_set_source_surface(cr, gui.surface, 0, 0);
674
675 /* Draw the window without the cursor. */
676 gui.by_signal = TRUE;
677 {
678 cairo_rectangle_list_t *list = NULL;
679
Bram Moolenaar98921892016-02-23 17:14:37 +0100680 list = cairo_copy_clip_rectangle_list(cr);
681 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
682 {
683 int i;
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100684
685 /* First clear all the blocks and then redraw them. Just in case
686 * some blocks overlap. */
Bram Moolenaar98921892016-02-23 17:14:37 +0100687 for (i = 0; i < list->num_rectangles; i++)
688 {
689 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200690
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100691 gui_mch_clear_block(Y_2_ROW((int)rect.y), 0,
692 Y_2_ROW((int)(rect.y + rect.height)) - 1, Columns - 1);
693 }
694
695 for (i = 0; i < list->num_rectangles; i++)
696 {
697 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200698
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100699 if (blink_mode)
700 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
701 else
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100702 {
703 if (get_real_state() & VISUAL)
704 gui_gtk3_redraw(rect.x, rect.y,
705 rect.width, rect.height);
706 else
707 gui_redraw(rect.x, rect.y, rect.width, rect.height);
708 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100709 }
710 }
711 cairo_rectangle_list_destroy(list);
712
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100713 if (get_real_state() & VISUAL)
714 {
715 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col)
716 gui_update_cursor(TRUE, TRUE);
717 }
718
Bram Moolenaar98921892016-02-23 17:14:37 +0100719 cairo_paint(cr);
720 }
721 gui.by_signal = FALSE;
722
723 /* Add the cursor to the window if necessary.*/
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100724 if (gui_gtk3_should_draw_cursor() && blink_mode)
Bram Moolenaar98921892016-02-23 17:14:37 +0100725 gui_gtk3_update_cursor(cr);
726
727 return FALSE;
728}
729#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000731expose_event(GtkWidget *widget UNUSED,
732 GdkEventExpose *event,
733 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734{
735 /* Skip this when the GUI isn't set up yet, will redraw later. */
736 if (gui.starting)
737 return FALSE;
738
739 out_flush(); /* make sure all output has been processed */
740 gui_redraw(event->area.x, event->area.y,
741 event->area.width, event->area.height);
742
743 /* Clear the border areas if needed */
744 if (event->area.x < FILL_X(0))
745 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
746 if (event->area.y < FILL_Y(0))
747 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
748 if (event->area.x > FILL_X(Columns))
749 gdk_window_clear_area(gui.drawarea->window,
750 FILL_X((int)Columns), 0, 0, 0);
751 if (event->area.y > FILL_Y(Rows))
752 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
753
754 return FALSE;
755}
Bram Moolenaar98921892016-02-23 17:14:37 +0100756#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757
758#ifdef FEAT_CLIENTSERVER
759/*
760 * Handle changes to the "Comm" property
761 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000763property_event(GtkWidget *widget,
764 GdkEventProperty *event,
765 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766{
767 if (event->type == GDK_PROPERTY_NOTIFY
768 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100769 && GDK_WINDOW_XID(event->window) == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 && GET_X_ATOM(event->atom) == commProperty)
771 {
772 XEvent xev;
773
774 /* Translate to XLib */
775 xev.xproperty.type = PropertyNotify;
776 xev.xproperty.atom = commProperty;
777 xev.xproperty.window = commWindow;
778 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100779 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
780 &xev, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 }
782 return FALSE;
783}
Bram Moolenaar98921892016-02-23 17:14:37 +0100784#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +0200786/*
787 * Handle changes to the "Xft/DPI" setting
788 */
789 static void
790gtk_settings_xft_dpi_changed_cb(GtkSettings *gtk_settings UNUSED,
791 GParamSpec *pspec UNUSED,
792 gpointer data UNUSED)
793{
794 // Create a new PangoContext for this screen, and initialize it
795 // with the current font if necessary.
796 if (gui.text_context != NULL)
797 g_object_unref(gui.text_context);
798
799 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
800 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
801
802 if (gui.norm_font != NULL)
803 {
804 // force default font
805 gui_mch_init_font(*p_guifont == NUL ? NULL : p_guifont, FALSE);
806 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
807 }
808}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200810typedef gboolean timeout_cb_type;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200811
812/*
813 * Start a timer that will invoke the specified callback.
814 * Returns the ID of the timer.
815 */
816 static guint
817timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp)
818{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200819 return g_timeout_add((guint)time, (GSourceFunc)callback, flagp);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200820}
821
822 static void
823timeout_remove(guint timer)
824{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200825 g_source_remove(timer);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200826}
827
828
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829/****************************************************************************
830 * Focus handlers:
831 */
832
833
834/*
835 * This is a simple state machine:
836 * BLINK_NONE not blinking at all
837 * BLINK_OFF blinking, cursor is not shown
838 * BLINK_ON blinking, cursor is shown
839 */
840
841#define BLINK_NONE 0
842#define BLINK_OFF 1
843#define BLINK_ON 2
844
845static int blink_state = BLINK_NONE;
846static long_u blink_waittime = 700;
847static long_u blink_ontime = 400;
848static long_u blink_offtime = 250;
849static guint blink_timer = 0;
850
Bram Moolenaar98921892016-02-23 17:14:37 +0100851#if GTK_CHECK_VERSION(3,0,0)
852 static gboolean
853gui_gtk_is_blink_on(void)
854{
855 return blink_state == BLINK_ON;
856}
Bram Moolenaar98921892016-02-23 17:14:37 +0100857#endif
858
Bram Moolenaar703a8042016-06-04 16:24:32 +0200859 int
860gui_mch_is_blinking(void)
861{
862 return blink_state != BLINK_NONE;
863}
864
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200865 int
866gui_mch_is_blink_off(void)
867{
868 return blink_state == BLINK_OFF;
869}
870
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 void
872gui_mch_set_blinking(long waittime, long on, long off)
873{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100874#if GTK_CHECK_VERSION(3,0,0)
875 if (waittime == 0 || on == 0 || off == 0)
876 {
877 blink_mode = FALSE;
878
879 blink_waittime = 700;
880 blink_ontime = 400;
881 blink_offtime = 250;
882 }
883 else
884 {
885 blink_mode = TRUE;
886
887 blink_waittime = waittime;
888 blink_ontime = on;
889 blink_offtime = off;
890 }
891#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 blink_waittime = waittime;
893 blink_ontime = on;
894 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100895#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896}
897
898/*
899 * Stop the cursor blinking. Show the cursor if it wasn't shown.
900 */
901 void
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100902gui_mch_stop_blink(int may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903{
904 if (blink_timer)
905 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200906 timeout_remove(blink_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 blink_timer = 0;
908 }
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100909 if (blink_state == BLINK_OFF && may_call_gui_update_cursor)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200910 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200912 gui_mch_flush();
913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 blink_state = BLINK_NONE;
915}
916
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200917 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000918blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919{
920 if (blink_state == BLINK_ON)
921 {
922 gui_undraw_cursor();
923 blink_state = BLINK_OFF;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200924 blink_timer = timeout_add(blink_offtime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 }
926 else
927 {
928 gui_update_cursor(TRUE, FALSE);
929 blink_state = BLINK_ON;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200930 blink_timer = timeout_add(blink_ontime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 }
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200932 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933
934 return FALSE; /* don't happen again */
935}
936
937/*
938 * Start the cursor blinking. If it was already blinking, this restarts the
939 * waiting time and shows the cursor.
940 */
941 void
942gui_mch_start_blink(void)
943{
944 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200945 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200946 timeout_remove(blink_timer);
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200947 blink_timer = 0;
948 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 /* Only switch blinking on if none of the times is zero */
950 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
951 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200952 blink_timer = timeout_add(blink_waittime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 blink_state = BLINK_ON;
954 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200955 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 }
957}
958
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000960enter_notify_event(GtkWidget *widget UNUSED,
961 GdkEventCrossing *event UNUSED,
962 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963{
964 if (blink_state == BLINK_NONE)
965 gui_mch_start_blink();
966
967 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100968 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 gtk_widget_grab_focus(gui.drawarea);
970
971 return FALSE;
972}
973
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000975leave_notify_event(GtkWidget *widget UNUSED,
976 GdkEventCrossing *event UNUSED,
977 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978{
979 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100980 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981
982 return FALSE;
983}
984
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000986focus_in_event(GtkWidget *widget,
987 GdkEventFocus *event UNUSED,
988 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989{
990 gui_focus_change(TRUE);
991
992 if (blink_state == BLINK_NONE)
993 gui_mch_start_blink();
994
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000995 /* make sure keyboard input goes to the draw area (if this is focus for a
996 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000997 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000998 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999
1000 return TRUE;
1001}
1002
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001004focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001005 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001006 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007{
1008 gui_focus_change(FALSE);
1009
1010 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001011 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012
1013 return TRUE;
1014}
1015
1016
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017/*
1018 * Translate a GDK key value to UTF-8 independently of the current locale.
1019 * The output is written to string, which must have room for at least 6 bytes
1020 * plus the NUL terminator. Returns the length in bytes.
1021 *
1022 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
1023 * of GdkEventKey::string instead. But event->string is evil; see here why:
1024 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1025 */
1026 static int
1027keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
1028{
1029 int len;
1030 guint32 uc;
1031
1032 uc = gdk_keyval_to_unicode(keyval);
1033 if (uc != 0)
1034 {
1035 /* Check for CTRL-foo */
1036 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
1037 {
1038 /* These mappings look arbitrary at the first glance, but in fact
1039 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
1040 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
1041 * more sense and is consistent with usual terminal behaviour). */
1042 if (uc >= '@')
1043 string[0] = uc & 0x1F;
1044 else if (uc == '2')
1045 string[0] = NUL;
1046 else if (uc >= '3' && uc <= '7')
1047 string[0] = uc ^ 0x28;
1048 else if (uc == '8')
1049 string[0] = BS;
1050 else if (uc == '?')
1051 string[0] = DEL;
1052 else
1053 string[0] = uc;
1054 len = 1;
1055 }
1056 else
1057 {
1058 /* Translate a normal key to UTF-8. This doesn't work for dead
1059 * keys of course, you _have_ to use an input method for that. */
1060 len = utf_char2bytes((int)uc, string);
1061 }
1062 }
1063 else
1064 {
1065 /* Translate keys which are represented by ASCII control codes in Vim.
1066 * There are only a few of those; most control keys are translated to
1067 * special terminal-like control sequences. */
1068 len = 1;
1069 switch (keyval)
1070 {
1071 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1072 string[0] = TAB;
1073 break;
1074 case GDK_Linefeed:
1075 string[0] = NL;
1076 break;
1077 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1078 string[0] = CAR;
1079 break;
1080 case GDK_Escape:
1081 string[0] = ESC;
1082 break;
1083 default:
1084 len = 0;
1085 break;
1086 }
1087 }
1088 string[len] = NUL;
1089
1090 return len;
1091}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001093 static int
1094modifiers_gdk2vim(guint state)
1095{
1096 int modifiers = 0;
1097
1098 if (state & GDK_SHIFT_MASK)
1099 modifiers |= MOD_MASK_SHIFT;
1100 if (state & GDK_CONTROL_MASK)
1101 modifiers |= MOD_MASK_CTRL;
1102 if (state & GDK_MOD1_MASK)
1103 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001104#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001105 if (state & GDK_SUPER_MASK)
1106 modifiers |= MOD_MASK_META;
1107#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001108 if (state & GDK_MOD4_MASK)
1109 modifiers |= MOD_MASK_META;
1110
1111 return modifiers;
1112}
1113
1114 static int
1115modifiers_gdk2mouse(guint state)
1116{
1117 int modifiers = 0;
1118
1119 if (state & GDK_SHIFT_MASK)
1120 modifiers |= MOUSE_SHIFT;
1121 if (state & GDK_CONTROL_MASK)
1122 modifiers |= MOUSE_CTRL;
1123 if (state & GDK_MOD1_MASK)
1124 modifiers |= MOUSE_ALT;
1125
1126 return modifiers;
1127}
1128
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129/*
1130 * Main keyboard handler:
1131 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001133key_press_event(GtkWidget *widget UNUSED,
1134 GdkEventKey *event,
1135 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001137 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1139 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 guint key_sym;
1141 int len;
1142 int i;
1143 int modifiers;
1144 int key;
1145 guint state;
1146 char_u *s, *d;
1147
Bram Moolenaar98921892016-02-23 17:14:37 +01001148#if GTK_CHECK_VERSION(3,0,0)
1149 is_key_pressed = TRUE;
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001150 gui_mch_stop_blink(TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001151#endif
1152
Bram Moolenaar20892c12011-06-26 04:49:00 +02001153 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 key_sym = event->keyval;
1155 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156
1157#ifdef FEAT_XIM
1158 if (xim_queue_key_press_event(event, TRUE))
1159 return TRUE;
1160#endif
1161
1162#ifdef FEAT_HANGULIN
1163 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1164 {
1165 hangul_input_state_toggle();
1166 return TRUE;
1167 }
1168#endif
1169
1170#ifdef SunXK_F36
1171 /*
1172 * These keys have bogus lookup strings, and trapping them here is
1173 * easier than trying to XRebindKeysym() on them with every possible
1174 * combination of modifiers.
1175 */
1176 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1177 len = 0;
1178 else
1179#endif
1180 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 len = keyval_to_string(key_sym, state, string2);
1182
1183 /* Careful: convert_input() doesn't handle the NUL character.
1184 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1185 if (len > 1 && input_conv.vc_type != CONV_NONE)
1186 len = convert_input(string2, len, sizeof(string2));
1187
1188 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 d = string;
1190 for (i = 0; i < len; ++i)
1191 {
1192 *d++ = s[i];
1193 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1194 {
1195 /* Turn CSI into K_CSI. */
1196 *d++ = KS_EXTRA;
1197 *d++ = (int)KE_CSI;
1198 }
1199 }
1200 len = d - string;
1201 }
1202
1203 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1204 if (key_sym == GDK_ISO_Left_Tab)
1205 {
1206 key_sym = GDK_Tab;
1207 state |= GDK_SHIFT_MASK;
1208 }
1209
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210#ifdef FEAT_MENU
1211 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1212 * is a menu shortcut, we ignore everything with the ALT modifier. */
1213 if ((state & GDK_MOD1_MASK)
1214 && gui.menu_is_active
1215 && (*p_wak == 'y'
1216 || (*p_wak == 'm'
1217 && len == 1
1218 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 /* For GTK2 we return false to signify that we haven't handled the
1220 * keypress, so that gtk will handle the mnemonic or accelerator. */
1221 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222#endif
1223
1224 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1225 * that already has the 8th bit set.
1226 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1227 * Don't do this for double-byte encodings, it turns the char into a lead
1228 * byte. */
1229 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001230 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001231#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001232 || (state & GDK_SUPER_MASK)
1233#endif
1234 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1236 && (string[0] & 0x80) == 0
1237 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 )
1240 {
1241 string[0] |= 0x80;
1242 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 if (enc_utf8) /* convert to utf-8 */
1244 {
1245 string[1] = string[0] & 0xbf;
1246 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1247 if (string[1] == CSI)
1248 {
1249 string[2] = KS_EXTRA;
1250 string[3] = (int)KE_CSI;
1251 len = 4;
1252 }
1253 else
1254 len = 2;
1255 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 }
1257
1258 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1259 * value) to detect backspace, delete and keypad keys. */
1260 if (len == 0 || len == 1)
1261 {
1262 for (i = 0; special_keys[i].key_sym != 0; i++)
1263 {
1264 if (special_keys[i].key_sym == key_sym)
1265 {
1266 string[0] = CSI;
1267 string[1] = special_keys[i].code0;
1268 string[2] = special_keys[i].code1;
1269 len = -3;
1270 break;
1271 }
1272 }
1273 }
1274
1275 if (len == 0) /* Unrecognized key */
1276 return TRUE;
1277
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 /* Special keys (and a few others) may have modifiers. Also when using a
1279 * double-byte encoding (can't set the 8th bit). */
1280 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1281 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1282 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1283 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001284 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001285#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001286 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001288 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001290 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291
1292 /*
1293 * For some keys a shift modifier is translated into another key
1294 * code.
1295 */
1296 if (len == -3)
1297 key = TO_SPECIAL(string[1], string[2]);
1298 else
1299 key = string[0];
1300
1301 key = simplify_key(key, &modifiers);
1302 if (key == CSI)
1303 key = K_CSI;
1304 if (IS_SPECIAL(key))
1305 {
1306 string[0] = CSI;
1307 string[1] = K_SECOND(key);
1308 string[2] = K_THIRD(key);
1309 len = 3;
1310 }
1311 else
1312 {
1313 string[0] = key;
1314 len = 1;
1315 }
1316
1317 if (modifiers != 0)
1318 {
1319 string2[0] = CSI;
1320 string2[1] = KS_MODIFIER;
1321 string2[2] = modifiers;
1322 add_to_input_buf(string2, 3);
1323 }
1324 }
1325
1326 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1327 || (string[0] == intr_char && intr_char != Ctrl_C)))
1328 {
1329 trash_input_buf();
1330 got_int = TRUE;
1331 }
1332
1333 add_to_input_buf(string, len);
1334
1335 /* blank out the pointer if necessary */
1336 if (p_mh)
1337 gui_mch_mousehide(TRUE);
1338
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 return TRUE;
1340}
1341
Bram Moolenaar98921892016-02-23 17:14:37 +01001342#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001344key_release_event(GtkWidget *widget UNUSED,
1345 GdkEventKey *event,
1346 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347{
Bram Moolenaar98921892016-02-23 17:14:37 +01001348# if GTK_CHECK_VERSION(3,0,0)
1349 is_key_pressed = FALSE;
1350 gui_mch_start_blink();
1351# endif
1352# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001353 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 /*
1355 * GTK+ 2 input methods may do fancy stuff on key release events too.
1356 * With the default IM for instance, you can enter any UCS code point
1357 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1358 */
1359 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001360# else
1361 return TRUE;
1362# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363}
1364#endif
1365
1366
1367/****************************************************************************
1368 * Selection handlers:
1369 */
1370
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001371/* Remember when clip_lose_selection was called from here, we must not call
1372 * gtk_selection_owner_set() then. */
1373static int in_selection_clear_event = FALSE;
1374
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001376selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001378 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001380 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 if (event->selection == clip_plus.gtk_sel_atom)
1382 clip_lose_selection(&clip_plus);
1383 else
1384 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001385 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 return TRUE;
1388}
1389
1390#define RS_NONE 0 /* selection_received_cb() not called yet */
1391#define RS_OK 1 /* selection_received_cb() called and OK */
1392#define RS_FAIL 2 /* selection_received_cb() called and failed */
1393static int received_selection = RS_NONE;
1394
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001396selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001398 guint time_ UNUSED,
1399 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400{
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001401 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 char_u *text;
1403 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001406 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407
Bram Moolenaar98921892016-02-23 17:14:37 +01001408 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 cbd = &clip_plus;
1410 else
1411 cbd = &clip_star;
1412
Bram Moolenaar98921892016-02-23 17:14:37 +01001413 text = (char_u *)gtk_selection_data_get_data(data);
1414 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415
1416 if (text == NULL || len <= 0)
1417 {
1418 received_selection = RS_FAIL;
1419 /* clip_free_selection(cbd); ??? */
1420
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 return;
1422 }
1423
Bram Moolenaar98921892016-02-23 17:14:37 +01001424 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 {
1426 motion_type = *text++;
1427 --len;
1428 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001429 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 {
1431 char_u *enc;
1432 vimconv_T conv;
1433
1434 motion_type = *text++;
1435 --len;
1436
1437 enc = text;
1438 text += STRLEN(text) + 1;
1439 len -= text - enc;
1440
1441 /* If the encoding of the text is different from 'encoding', attempt
1442 * converting it. */
1443 conv.vc_type = CONV_NONE;
1444 convert_setup(&conv, enc, p_enc);
1445 if (conv.vc_type != CONV_NONE)
1446 {
1447 tmpbuf = string_convert(&conv, text, &len);
1448 if (tmpbuf != NULL)
1449 text = tmpbuf;
1450 convert_setup(&conv, NULL, NULL);
1451 }
1452 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 /* gtk_selection_data_get_text() handles all the nasty details
1455 * and targets and encodings etc. This rocks so hard. */
1456 else
1457 {
1458 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1459 if (tmpbuf_utf8 != NULL)
1460 {
1461 len = STRLEN(tmpbuf_utf8);
1462 if (input_conv.vc_type != CONV_NONE)
1463 {
1464 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1465 if (tmpbuf != NULL)
1466 text = tmpbuf;
1467 }
1468 else
1469 text = tmpbuf_utf8;
1470 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001471 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1472 {
1473 vimconv_T conv;
1474
1475 /* UTF-16, we get this for HTML */
1476 conv.vc_type = CONV_NONE;
1477 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1478
1479 if (conv.vc_type != CONV_NONE)
1480 {
1481 text += 2;
1482 len -= 2;
1483 tmpbuf = string_convert(&conv, text, &len);
1484 convert_setup(&conv, NULL, NULL);
1485 }
1486 if (tmpbuf != NULL)
1487 text = tmpbuf;
1488 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001491 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001492 while (len > 0 && text[len - 1] == NUL)
1493 --len;
1494
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 clip_yank_selection(motion_type, text, (long)len, cbd);
1496 received_selection = RS_OK;
1497 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499}
1500
1501/*
1502 * Prepare our selection data for passing it to the external selection
1503 * client.
1504 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001506selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 GtkSelectionData *selection_data,
1508 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001509 guint time_ UNUSED,
1510 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511{
1512 char_u *string;
1513 char_u *tmpbuf;
1514 long_u tmplen;
1515 int length;
1516 int motion_type;
1517 GdkAtom type;
Bram Moolenaar0554fa42019-06-14 21:36:54 +02001518 Clipboard_T *cbd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519
Bram Moolenaar98921892016-02-23 17:14:37 +01001520 if (gtk_selection_data_get_selection(selection_data)
1521 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 cbd = &clip_plus;
1523 else
1524 cbd = &clip_star;
1525
1526 if (!cbd->owned)
1527 return; /* Shouldn't ever happen */
1528
1529 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001530 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 && info != (guint)TARGET_UTF8_STRING
1532 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 && info != (guint)TARGET_VIM
1534 && info != (guint)TARGET_COMPOUND_TEXT
1535 && info != (guint)TARGET_TEXT)
1536 return;
1537
1538 /* get the selection from the '*'/'+' register */
1539 clip_get_selection(cbd);
1540
1541 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1542 if (motion_type < 0 || string == NULL)
1543 return;
1544 /* Due to int arguments we can't handle more than G_MAXINT. Also
1545 * reserve one extra byte for NUL or the motion type; just in case.
1546 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1547 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1548
1549 if (info == (guint)TARGET_VIM)
1550 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001551 tmpbuf = alloc(length + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 if (tmpbuf != NULL)
1553 {
1554 tmpbuf[0] = motion_type;
1555 mch_memmove(tmpbuf + 1, string, (size_t)length);
1556 }
1557 /* For our own format, the first byte contains the motion type */
1558 ++length;
1559 vim_free(string);
1560 string = tmpbuf;
1561 type = vim_atom;
1562 }
1563
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001564 else if (info == (guint)TARGET_HTML)
1565 {
1566 vimconv_T conv;
1567
1568 /* Since we get utf-16, we probably should set it as well. */
1569 conv.vc_type = CONV_NONE;
1570 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1571 if (conv.vc_type != CONV_NONE)
1572 {
1573 tmpbuf = string_convert(&conv, string, &length);
1574 convert_setup(&conv, NULL, NULL);
1575 vim_free(string);
1576 string = tmpbuf;
1577 }
1578
1579 /* Prepend the BOM: "fffe" */
1580 if (string != NULL)
1581 {
1582 tmpbuf = alloc(length + 2);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001583 if (tmpbuf != NULL)
1584 {
1585 tmpbuf[0] = 0xff;
1586 tmpbuf[1] = 0xfe;
1587 mch_memmove(tmpbuf + 2, string, (size_t)length);
1588 vim_free(string);
1589 string = tmpbuf;
1590 length += 2;
1591 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001592
Bram Moolenaar98921892016-02-23 17:14:37 +01001593#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001594 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001595 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001596 selection_data->type = selection_data->target;
1597 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001598#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001599 gtk_selection_data_set(selection_data, html_atom, 16,
1600 string, length);
1601 vim_free(string);
1602 }
1603 return;
1604 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 else if (info == (guint)TARGET_VIMENC)
1606 {
1607 int l = STRLEN(p_enc);
1608
1609 /* contents: motion_type 'encoding' NUL text */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001610 tmpbuf = alloc(length + l + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 if (tmpbuf != NULL)
1612 {
1613 tmpbuf[0] = motion_type;
1614 STRCPY(tmpbuf + 1, p_enc);
1615 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001616 length += l + 2;
1617 vim_free(string);
1618 string = tmpbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 type = vimenc_atom;
1621 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 /* gtk_selection_data_set_text() handles everything for us. This is
1624 * so easy and simple and cool, it'd be insane not to use it. */
1625 else
1626 {
1627 if (output_conv.vc_type != CONV_NONE)
1628 {
1629 tmpbuf = string_convert(&output_conv, string, &length);
1630 vim_free(string);
1631 if (tmpbuf == NULL)
1632 return;
1633 string = tmpbuf;
1634 }
1635 /* Validate the string to avoid runtime warnings */
1636 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1637 {
1638 gtk_selection_data_set_text(selection_data,
1639 (const char *)string, length);
1640 }
1641 vim_free(string);
1642 return;
1643 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
1645 if (string != NULL)
1646 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001647#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001648 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001649 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 selection_data->type = selection_data->target;
1651 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001652#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 gtk_selection_data_set(selection_data, type, 8, string, length);
1654 vim_free(string);
1655 }
1656}
1657
1658/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001659 * Check if the GUI can be started. Called before gvimrc is sourced and
1660 * before fork().
1661 * Return OK or FAIL.
1662 */
1663 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001664gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001665{
1666 char_u *p;
1667
1668 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1669 p = mch_getenv((char_u *)"DISPLAY");
1670 if (p == NULL || *p == NUL)
1671 {
1672 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001673 if (give_message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001674 emsg(_((char *)e_opendisp));
Bram Moolenaar29695702012-05-18 17:03:18 +02001675 return FAIL;
1676 }
1677 return OK;
1678}
1679
1680/*
1681 * Check if the GUI can be started. Called before gvimrc is sourced but after
1682 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 * Return OK or FAIL.
1684 */
1685 int
1686gui_mch_init_check(void)
1687{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001688#ifdef USE_GRESOURCE
1689 static int res_registered = FALSE;
1690
1691 if (!res_registered)
1692 {
1693 /* Call this function in the GUI process; otherwise, the resources
1694 * won't be available. Don't call it twice. */
1695 res_registered = TRUE;
1696 gui_gtk_register_resource();
1697 }
1698#endif
1699
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001700#if GTK_CHECK_VERSION(3,10,0)
1701 /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1702 * support for other backends such as Wayland. */
1703 gdk_set_allowed_backends ("x11");
1704#endif
1705
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706#ifdef FEAT_GUI_GNOME
1707 if (gtk_socket_id == 0)
1708 using_gnome = 1;
1709#endif
1710
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001711 /* This defaults to argv[0], but we want it to match the name of the
1712 * shipped gvim.desktop so that Vim's windows can be associated with this
1713 * file. */
1714 g_set_prgname("gvim");
1715
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1717 if (!gtk_init_check(&gui_argc, &gui_argv))
1718 {
1719 gui.dying = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001720 emsg(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 return FAIL;
1722 }
1723
1724 return OK;
1725}
1726
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727/****************************************************************************
1728 * Mouse handling callbacks
1729 */
1730
1731
1732static guint mouse_click_timer = 0;
1733static int mouse_timed_out = TRUE;
1734
1735/*
1736 * Timer used to recognize multiple clicks of the mouse button
1737 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001738 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739mouse_click_timer_cb(gpointer data)
1740{
1741 /* we don't use this information currently */
1742 int *timed_out = (int *) data;
1743
1744 *timed_out = TRUE;
1745 return FALSE; /* don't happen again */
1746}
1747
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001748static guint motion_repeat_timer = 0;
1749static int motion_repeat_offset = FALSE;
1750static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751
1752 static void
1753process_motion_notify(int x, int y, GdkModifierType state)
1754{
1755 int button;
1756 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001757 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758
1759 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1760 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1761 GDK_BUTTON5_MASK))
1762 ? MOUSE_DRAG : ' ';
1763
1764 /* If our pointer is currently hidden, then we should show it. */
1765 gui_mch_mousehide(FALSE);
1766
1767 /* Just moving the rodent above the drawing area without any button
1768 * being pressed. */
1769 if (button != MOUSE_DRAG)
1770 {
1771 gui_mouse_moved(x, y);
1772 return;
1773 }
1774
1775 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001776 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777
Bram Moolenaar49325942007-05-10 19:19:59 +00001778 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1780
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 /*
1782 * Auto repeat timer handling.
1783 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001784 gtk_widget_get_allocation(gui.drawarea, &allocation);
1785
1786 if (x < 0 || y < 0
1787 || x >= allocation.width
1788 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 {
1790
1791 int dx;
1792 int dy;
1793 int offshoot;
1794 int delay = 10;
1795
1796 /* Calculate the maximal distance of the cursor from the drawing area.
1797 * (offshoot can't become negative here!).
1798 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001799 dx = x < 0 ? -x : x - allocation.width;
1800 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801
1802 offshoot = dx > dy ? dx : dy;
1803
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001804 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 * distance of 127 pixels from the main window.
1806 *
1807 * One could think endlessly about the most ergonomic variant here.
1808 * For example it could make sense to calculate the distance from the
1809 * drags start instead...
1810 *
1811 * Maybe a parabolic interpolation would suite us better here too...
1812 */
1813 if (offshoot > 127)
1814 {
1815 /* 5 appears to be somehow near to my perceptual limits :-). */
1816 delay = 5;
1817 }
1818 else
1819 {
1820 delay = (130 * (127 - offshoot)) / 127 + 5;
1821 }
1822
1823 /* shoot again */
1824 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001825 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1826 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 }
1828}
1829
Bram Moolenaar98921892016-02-23 17:14:37 +01001830#if GTK_CHECK_VERSION(3,0,0)
1831 static GdkDevice *
1832gui_gtk_get_pointer_device(GtkWidget *widget)
1833{
1834 GdkWindow * const win = gtk_widget_get_window(widget);
1835 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001836# if GTK_CHECK_VERSION(3,20,0)
1837 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1838 return gdk_seat_get_pointer(seat);
1839# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001840 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1841 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001842# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001843}
1844
1845 static GdkWindow *
1846gui_gtk_get_pointer(GtkWidget *widget,
1847 gint *x,
1848 gint *y,
1849 GdkModifierType *state)
1850{
1851 GdkWindow * const win = gtk_widget_get_window(widget);
1852 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1853 return gdk_window_get_device_position(win, dev , x, y, state);
1854}
1855
Bram Moolenaar2369c152016-03-04 23:08:25 +01001856# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001857 static GdkWindow *
1858gui_gtk_window_at_position(GtkWidget *widget,
1859 gint *x,
1860 gint *y)
1861{
1862 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1863 return gdk_device_get_window_at_position(dev, x, y);
1864}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001865# endif
Bram Moolenaar664323e2018-09-18 22:30:07 +02001866#else /* !GTK_CHECK_VERSION(3,0,0) */
1867# define gui_gtk_get_pointer(wid, x, y, s) \
1868 gdk_window_get_pointer((wid)->window, x, y, s)
1869# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001870#endif
1871
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872/*
1873 * Timer used to recognize multiple clicks of the mouse button.
1874 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001875 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001876motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877{
1878 int x;
1879 int y;
1880 GdkModifierType state;
1881
Bram Moolenaar98921892016-02-23 17:14:37 +01001882 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883
1884 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1885 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1886 GDK_BUTTON5_MASK)))
1887 {
1888 motion_repeat_timer = 0;
1889 return FALSE;
1890 }
1891
1892 /* If there already is a mouse click in the input buffer, wait another
1893 * time (otherwise we would create a backlog of clicks) */
1894 if (vim_used_in_input_buf() > 10)
1895 return TRUE;
1896
1897 motion_repeat_timer = 0;
1898
1899 /*
1900 * Fake a motion event.
1901 * Trick: Pretend the mouse moved to the next character on every other
1902 * event, otherwise drag events will be discarded, because they are still
1903 * in the same character.
1904 */
1905 if (motion_repeat_offset)
1906 x += gui.char_width;
1907
1908 motion_repeat_offset = !motion_repeat_offset;
1909 process_motion_notify(x, y, state);
1910
1911 /* Don't happen again. We will get reinstalled in the synthetic event
1912 * if needed -- thus repeating should still work. */
1913 return FALSE;
1914}
1915
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001917motion_notify_event(GtkWidget *widget,
1918 GdkEventMotion *event,
1919 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920{
1921 if (event->is_hint)
1922 {
1923 int x;
1924 int y;
1925 GdkModifierType state;
1926
Bram Moolenaar98921892016-02-23 17:14:37 +01001927 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 process_motion_notify(x, y, state);
1929 }
1930 else
1931 {
1932 process_motion_notify((int)event->x, (int)event->y,
1933 (GdkModifierType)event->state);
1934 }
1935
1936 return TRUE; /* handled */
1937}
1938
1939
1940/*
1941 * Mouse button handling. Note please that we are capturing multiple click's
1942 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1943 * This is due to the way the generic VIM code is recognizing multiple clicks.
1944 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001946button_press_event(GtkWidget *widget,
1947 GdkEventButton *event,
1948 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949{
1950 int button;
1951 int repeated_click = FALSE;
1952 int x, y;
1953 int_u vim_modifiers;
1954
Bram Moolenaar20892c12011-06-26 04:49:00 +02001955 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001956
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01001958 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 gtk_widget_grab_focus(widget);
1960
1961 /*
1962 * Don't let additional events about multiple clicks send by GTK to us
1963 * after the initial button press event confuse us.
1964 */
1965 if (event->type != GDK_BUTTON_PRESS)
1966 return FALSE;
1967
1968 x = event->x;
1969 y = event->y;
1970
1971 /* Handle multiple clicks */
1972 if (!mouse_timed_out && mouse_click_timer)
1973 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001974 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 mouse_click_timer = 0;
1976 repeated_click = TRUE;
1977 }
1978
1979 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001980 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1981 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982
1983 switch (event->button)
1984 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001985 /* Keep in sync with gui_x11.c.
1986 * Buttons 4-7 are handled in scroll_event() */
1987 case 1: button = MOUSE_LEFT; break;
1988 case 2: button = MOUSE_MIDDLE; break;
1989 case 3: button = MOUSE_RIGHT; break;
1990 case 8: button = MOUSE_X1; break;
1991 case 9: button = MOUSE_X2; break;
1992 default:
1993 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 }
1995
1996#ifdef FEAT_XIM
1997 /* cancel any preediting */
1998 if (im_is_preediting())
1999 xim_reset();
2000#endif
2001
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002002 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003
2004 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005
2006 return TRUE;
2007}
2008
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002010 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002013scroll_event(GtkWidget *widget,
2014 GdkEventScroll *event,
2015 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016{
2017 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002018 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019
Bram Moolenaar98921892016-02-23 17:14:37 +01002020 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 gtk_widget_grab_focus(widget);
2022
2023 switch (event->direction)
2024 {
2025 case GDK_SCROLL_UP:
2026 button = MOUSE_4;
2027 break;
2028 case GDK_SCROLL_DOWN:
2029 button = MOUSE_5;
2030 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002031 case GDK_SCROLL_LEFT:
2032 button = MOUSE_7;
2033 break;
2034 case GDK_SCROLL_RIGHT:
2035 button = MOUSE_6;
2036 break;
2037 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 return FALSE;
2039 }
2040
2041# ifdef FEAT_XIM
2042 /* cancel any preediting */
2043 if (im_is_preediting())
2044 xim_reset();
2045# endif
2046
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002047 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048
2049 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2050 FALSE, vim_modifiers);
2051
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 return TRUE;
2053}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054
2055
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002057button_release_event(GtkWidget *widget UNUSED,
2058 GdkEventButton *event,
2059 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060{
2061 int x, y;
2062 int_u vim_modifiers;
2063
Bram Moolenaar20892c12011-06-26 04:49:00 +02002064 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002065
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 /* Remove any motion "machine gun" timers used for automatic further
2067 extension of allocation areas if outside of the applications window
2068 area .*/
2069 if (motion_repeat_timer)
2070 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002071 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 motion_repeat_timer = 0;
2073 }
2074
2075 x = event->x;
2076 y = event->y;
2077
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002078 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079
2080 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081
2082 return TRUE;
2083}
2084
2085
2086#ifdef FEAT_DND
2087/****************************************************************************
2088 * Drag aNd Drop support handlers.
2089 */
2090
2091/*
2092 * Count how many items there may be and separate them with a NUL.
2093 * Apparently the items are separated with \r\n. This is not documented,
2094 * thus be careful not to go past the end. Also allow separation with
2095 * NUL characters.
2096 */
2097 static int
2098count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2099{
2100 int i;
2101 char_u *p = out;
2102 int count = 0;
2103
2104 for (i = 0; i < len; ++i)
2105 {
2106 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2107 {
2108 if (p > out && p[-1] != NUL)
2109 {
2110 ++count;
2111 *p++ = NUL;
2112 }
2113 }
2114 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2115 {
2116 *p++ = hexhex2nr(raw + i + 1);
2117 i += 2;
2118 }
2119 else
2120 *p++ = raw[i];
2121 }
2122 if (p > out && p[-1] != NUL)
2123 {
2124 *p = NUL; /* last item didn't have \r or \n */
2125 ++count;
2126 }
2127 return count;
2128}
2129
2130/*
2131 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2132 * this process, URI which protocol is not "file:" are removed. Return
2133 * length of array (less than "max").
2134 */
2135 static int
2136filter_uri_list(char_u **outlist, int max, char_u *src)
2137{
2138 int i, j;
2139
2140 for (i = j = 0; i < max; ++i)
2141 {
2142 outlist[i] = NULL;
2143 if (STRNCMP(src, "file:", 5) == 0)
2144 {
2145 src += 5;
2146 if (STRNCMP(src, "//localhost", 11) == 0)
2147 src += 11;
2148 while (src[0] == '/' && src[1] == '/')
2149 ++src;
2150 outlist[j++] = vim_strsave(src);
2151 }
2152 src += STRLEN(src) + 1;
2153 }
2154 return j;
2155}
2156
2157 static char_u **
2158parse_uri_list(int *count, char_u *data, int len)
2159{
2160 int n = 0;
2161 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002162 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002164 if (data != NULL && len > 0 && (tmp = alloc(len + 1)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 {
2166 n = count_and_decode_uri_list(tmp, data, len);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002167 if (n > 0 && (array = ALLOC_MULT(char_u *, n)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 n = filter_uri_list(array, n, tmp);
2169 }
2170 vim_free(tmp);
2171 *count = n;
2172 return array;
2173}
2174
2175 static void
2176drag_handle_uri_list(GdkDragContext *context,
2177 GtkSelectionData *data,
2178 guint time_,
2179 GdkModifierType state,
2180 gint x,
2181 gint y)
2182{
2183 char_u **fnames;
2184 int nfiles = 0;
2185
Bram Moolenaar98921892016-02-23 17:14:37 +01002186 fnames = parse_uri_list(&nfiles,
2187 (char_u *)gtk_selection_data_get_data(data),
2188 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189
2190 if (fnames != NULL && nfiles > 0)
2191 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002192 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193
2194 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2195
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002196 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197
2198 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2199 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002200 else
2201 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202}
2203
2204 static void
2205drag_handle_text(GdkDragContext *context,
2206 GtkSelectionData *data,
2207 guint time_,
2208 GdkModifierType state)
2209{
2210 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2211 char_u *text;
2212 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214
Bram Moolenaar98921892016-02-23 17:14:37 +01002215 text = (char_u *)gtk_selection_data_get_data(data);
2216 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217
Bram Moolenaar98921892016-02-23 17:14:37 +01002218 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 if (input_conv.vc_type != CONV_NONE)
2221 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 if (tmpbuf != NULL)
2223 text = tmpbuf;
2224 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225
2226 dnd_yank_drag_data(text, (long)len);
2227 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002230 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231
2232 if (dropkey[2] != 0)
2233 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2234 else
2235 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236}
2237
2238/*
2239 * DND receiver.
2240 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 static void
2242drag_data_received_cb(GtkWidget *widget,
2243 GdkDragContext *context,
2244 gint x,
2245 gint y,
2246 GtkSelectionData *data,
2247 guint info,
2248 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002249 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250{
2251 GdkModifierType state;
2252
2253 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002254 const guchar * const data_data = gtk_selection_data_get_data(data);
2255 const gint data_length = gtk_selection_data_get_length(data);
2256 const gint data_format = gtk_selection_data_get_format(data);
2257
2258 if (data_data == NULL
2259 || data_length <= 0
2260 || data_format != 8
2261 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 {
2263 gtk_drag_finish(context, FALSE, FALSE, time_);
2264 return;
2265 }
2266
2267 /* Get the current modifier state for proper distinguishment between
2268 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002269 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270
2271 /* Not sure about the role of "text/plain" here... */
2272 if (info == (guint)TARGET_TEXT_URI_LIST)
2273 drag_handle_uri_list(context, data, time_, state, x, y);
2274 else
2275 drag_handle_text(context, data, time_, state);
2276
2277}
2278#endif /* FEAT_DND */
2279
2280
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002281#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282/*
2283 * GnomeClient interact callback. Check for unsaved buffers that cannot
2284 * be abandoned and pop up a dialog asking the user for confirmation if
2285 * necessary.
2286 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002288sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002290 GnomeDialogType type UNUSED,
2291 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292{
2293 cmdmod_T save_cmdmod;
2294 gboolean shutdown_cancelled;
2295
2296 save_cmdmod = cmdmod;
2297
2298# ifdef FEAT_BROWSE
2299 cmdmod.browse = TRUE;
2300# endif
2301# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2302 cmdmod.confirm = TRUE;
2303# endif
2304 /*
2305 * If there are changed buffers, present the user with
2306 * a dialog if possible, otherwise give an error message.
2307 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002308 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309
2310 exiting = FALSE;
2311 cmdmod = save_cmdmod;
2312 setcursor(); /* position the cursor */
2313 out_flush();
2314 /*
2315 * If the user hit the [Cancel] button the whole shutdown
2316 * will be cancelled. Wow, quite powerful feature (:
2317 */
2318 gnome_interaction_key_return(key, shutdown_cancelled);
2319}
2320
2321/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 * "save_yourself" signal handler. Initiate an interaction to ask the user
2323 * for confirmation if necessary. Save the current editing session and tell
2324 * the session manager how to restart Vim.
2325 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 static gboolean
2327sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002328 gint phase UNUSED,
2329 GnomeSaveStyle save_style UNUSED,
2330 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002332 gboolean fast UNUSED,
2333 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334{
2335 static const char suffix[] = "-session.vim";
2336 char *session_file;
2337 unsigned int len;
2338 gboolean success;
2339
2340 /* Always request an interaction if possible. check_changed_any()
2341 * won't actually show a dialog unless any buffers have been modified.
2342 * There doesn't seem to be an obvious way to check that without
2343 * automatically firing the dialog. Anyway, it works just fine. */
2344 if (interact_style == GNOME_INTERACT_ANY)
2345 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2346 &sm_client_check_changed_any,
2347 NULL);
2348 out_flush();
2349 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2350
2351 /* The path is unique for each session save. We do neither know nor care
2352 * which session script will actually be used later. This decision is in
2353 * the domain of the session manager. */
2354 session_file = gnome_config_get_real_path(
2355 gnome_client_get_config_prefix(client));
2356 len = strlen(session_file);
2357
2358 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2359 --len; /* get rid of the superfluous trailing '/' */
2360
2361 session_file = g_renew(char, session_file, len + sizeof(suffix));
2362 memcpy(session_file + len, suffix, sizeof(suffix));
2363
2364 success = write_session_file((char_u *)session_file);
2365
2366 if (success)
2367 {
2368 const char *argv[8];
2369 int i;
2370
2371 /* Tell the session manager how to wipe out the stored session data.
2372 * This isn't as dangerous as it looks, don't worry :) session_file
2373 * is a unique absolute filename. Usually it'll be something like
2374 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2375 i = 0;
2376 argv[i++] = "rm";
2377 argv[i++] = session_file;
2378 argv[i] = NULL;
2379
2380 gnome_client_set_discard_command(client, i, (char **)argv);
2381
2382 /* Tell the session manager how to restore the just saved session.
2383 * This is easily done thanks to Vim's -S option. Pass the -f flag
2384 * since there's no need to fork -- it might even cause confusion.
2385 * Also pass the window role to give the WM something to match on.
2386 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2387 i = 0;
2388 argv[i++] = restart_command;
2389 argv[i++] = "-f";
2390 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 argv[i++] = "--role";
2392 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 argv[i++] = "-S";
2394 argv[i++] = session_file;
2395 argv[i] = NULL;
2396
2397 gnome_client_set_restart_command(client, i, (char **)argv);
2398 gnome_client_set_clone_command(client, 0, NULL);
2399 }
2400
2401 g_free(session_file);
2402
2403 return success;
2404}
2405
2406/*
2407 * Called when the session manager wants us to die. There isn't much to save
2408 * here since "save_yourself" has been emitted before (unless serious trouble
2409 * is happening).
2410 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002412sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413{
2414 /* Don't write messages to the GUI anymore */
2415 full_screen = FALSE;
2416
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002417 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002418 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002419 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 preserve_exit();
2421}
2422
2423/*
2424 * Connect our signal handlers to be notified on session save and shutdown.
2425 */
2426 static void
2427setup_save_yourself(void)
2428{
2429 GnomeClient *client;
2430
2431 client = gnome_master_client();
2432
2433 if (client != NULL)
2434 {
2435 /* Must use the deprecated gtk_signal_connect() for compatibility
2436 * with GNOME 1. Arrgh, zombies! */
2437 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2438 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2439 gtk_signal_connect(GTK_OBJECT(client), "die",
2440 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2441 }
2442}
2443
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002444#else // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445
2446# ifdef USE_XSMP
2447/*
2448 * GTK tells us that XSMP needs attention
2449 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002451local_xsmp_handle_requests(
2452 GIOChannel *source UNUSED,
2453 GIOCondition condition,
2454 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455{
2456 if (condition == G_IO_IN)
2457 {
2458 /* Do stuff; maybe close connection */
2459 if (xsmp_handle_requests() == FAIL)
2460 g_io_channel_unref((GIOChannel *)data);
2461 return TRUE;
2462 }
2463 /* Error */
2464 g_io_channel_unref((GIOChannel *)data);
2465 xsmp_close();
2466 return TRUE;
2467}
2468# endif /* USE_XSMP */
2469
2470/*
2471 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2472 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2473 */
2474 static void
2475setup_save_yourself(void)
2476{
2477 Atom *existing_atoms = NULL;
2478 int count = 0;
2479
Bram Moolenaar98921892016-02-23 17:14:37 +01002480# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 if (xsmp_icefd != -1)
2482 {
2483 /*
2484 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2485 * set up GTK IO monitor
2486 */
2487 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2488
2489 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2490 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002491 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492 }
2493 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002494# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 {
2496 /* Fall back to old method */
2497
2498 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002499 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2500
2501 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2502 GDK_WINDOW_XID(mainwin_win),
2503 &existing_atoms, &count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 {
2505 Atom *new_atoms;
2506 Atom save_yourself_xatom;
2507 int i;
2508
2509 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2510
2511 /* check if WM_SAVE_YOURSELF isn't there yet */
2512 for (i = 0; i < count; ++i)
2513 if (existing_atoms[i] == save_yourself_xatom)
2514 break;
2515
2516 if (i == count)
2517 {
2518 /* allocate an Atoms array which is one item longer */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002519 new_atoms = ALLOC_MULT(Atom, count + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 if (new_atoms != NULL)
2521 {
2522 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2523 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002524 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2525 GDK_WINDOW_XID(mainwin_win),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 new_atoms, count + 1);
2527 vim_free(new_atoms);
2528 }
2529 }
2530 XFree(existing_atoms);
2531 }
2532 }
2533}
2534
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535/*
2536 * Installing a global event filter seems to be the only way to catch
2537 * client messages of type WM_PROTOCOLS without overriding GDK's own
2538 * client message event filter. Well, that's still better than trying
2539 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 *
2541 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2542 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2543 * I have the nasty feeling modern session managers just don't send this
2544 * deprecated message anymore. Addition: confirmed by several people.
2545 *
2546 * The GNOME session support is much cooler anyway. Unlike this ugly
2547 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2548 * it should work with KDE as well.
2549 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002551global_event_filter(GdkXEvent *xev,
2552 GdkEvent *event UNUSED,
2553 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554{
2555 XEvent *xevent = (XEvent *)xev;
2556
2557 if (xevent != NULL
2558 && xevent->type == ClientMessage
2559 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002560 && (long_u)xevent->xclient.data.l[0]
2561 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 {
2563 out_flush();
2564 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2565 /*
2566 * Set the window's WM_COMMAND property, to let the window manager
2567 * know we are done saving ourselves. We don't want to be
2568 * restarted, thus set argv to NULL.
2569 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002570 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2571 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 NULL, 0);
2573 return GDK_FILTER_REMOVE;
2574 }
2575
2576 return GDK_FILTER_CONTINUE;
2577}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002578#endif // !USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579
2580
2581/*
2582 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2583 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002584 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002585mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586{
2587/* If you get an error message here, you still need to unpack the runtime
2588 * archive! */
2589#ifdef magick
2590# undef magick
2591#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 /* A bit hackish, but avoids casting later and allows optimization */
2593# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594#define magick vim32x32
2595#include "../runtime/vim32x32.xpm"
2596#undef magick
2597#define magick vim16x16
2598#include "../runtime/vim16x16.xpm"
2599#undef magick
2600#define magick vim48x48
2601#include "../runtime/vim48x48.xpm"
2602#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604
Bram Moolenaar98921892016-02-23 17:14:37 +01002605 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002606
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 /* When started with "--echo-wid" argument, write window ID on stdout. */
2608 if (echo_wid_arg)
2609 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002610 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 fflush(stdout);
2612 }
2613
2614 if (vim_strchr(p_go, GO_ICON) != NULL)
2615 {
2616 /*
2617 * Add an icon to the main window. For fun and convenience of the user.
2618 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 GList *icons = NULL;
2620
2621 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2622 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2623 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2624
2625 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2626
2627 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2628 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 }
2630
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002631#if !defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634#endif
2635 /* Setup to indicate to the window manager that we want to catch the
2636 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2637 * manager instead. */
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02002638#if defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 if (using_gnome)
2640#endif
2641 setup_save_yourself();
2642
2643#ifdef FEAT_CLIENTSERVER
2644 if (serverName == NULL && serverDelayedStartName != NULL)
2645 {
2646 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002647 commWindow = GDK_WINDOW_XID(mainwin_win);
2648
2649 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2650 serverDelayedStartName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 }
2652 else
2653 {
2654 /*
2655 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2656 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002657 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002659 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2660 GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 }
2662 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002663 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2664 G_CALLBACK(property_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665#endif
2666}
2667
2668 static GdkCursor *
2669create_blank_pointer(void)
2670{
2671 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002672#if GTK_CHECK_VERSION(3,0,0)
2673 GdkPixbuf *blank_mask;
2674#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002676#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002678#if GTK_CHECK_VERSION(3,0,0)
2679 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2680#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 GdkColor color = { 0, 0, 0, 0 };
2682 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002683#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002684
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002685#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002686 {
2687 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2688 GdkScreen * const scrn = gdk_window_get_screen(win);
2689 root_window = gdk_screen_get_root_window(scrn);
2690 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002691#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 root_window = gtk_widget_get_root_window(gui.mainwin);
2693#endif
2694
2695 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2696 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002697#if GTK_CHECK_VERSION(3,0,0)
2698 {
2699 cairo_surface_t *surf;
2700 cairo_t *cr;
2701
2702 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2703 cr = cairo_create(surf);
2704
Bram Moolenaar36edf062016-07-21 22:10:12 +02002705 cairo_set_source_rgba(cr,
2706 color.red,
2707 color.green,
2708 color.blue,
2709 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002710 cairo_rectangle(cr, 0, 0, 1, 1);
2711 cairo_fill(cr);
2712 cairo_destroy(cr);
2713
2714 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2715 cairo_surface_destroy(surf);
2716
2717 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2718 blank_mask, 0, 0);
2719 g_object_unref(blank_mask);
2720 }
2721#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2723 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2724 &color, &color, 0, 0);
2725 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002726#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727
2728 return cursor;
2729}
2730
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 static void
2732mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002733 GdkScreen *previous_screen UNUSED,
2734 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735{
2736 if (!gtk_widget_has_screen(widget))
2737 return;
2738
2739 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002740 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 */
2742 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002743#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002744 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002745#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748
2749 gui.blank_pointer = create_blank_pointer();
2750
Bram Moolenaar98921892016-02-23 17:14:37 +01002751 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2752 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2753 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754
2755 /*
2756 * Create a new PangoContext for this screen, and initialize it
2757 * with the current font if necessary.
2758 */
2759 if (gui.text_context != NULL)
2760 g_object_unref(gui.text_context);
2761
2762 gui.text_context = gtk_widget_create_pango_context(widget);
2763 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2764
2765 if (gui.norm_font != NULL)
2766 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002767 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002768 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 }
2770}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771
2772/*
2773 * After the drawing area comes up, we calculate all colors and create the
2774 * dummy blank cursor.
2775 *
2776 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2777 * fact that the main VIM engine doesn't take them into account anywhere.
2778 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002780drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781{
2782 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002783 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784
2785#ifdef FEAT_XIM
2786 xim_init();
2787#endif
2788 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002789#if GTK_CHECK_VERSION(3,0,0)
2790 gui.surface = gdk_window_create_similar_surface(
2791 gtk_widget_get_window(widget),
2792 CAIRO_CONTENT_COLOR_ALPHA,
2793 gtk_widget_get_allocated_width(widget),
2794 gtk_widget_get_allocated_height(widget));
2795#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002797#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798
2799 gui.blank_pointer = create_blank_pointer();
2800 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002801 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802
2803 /* get the actual size of the scrollbars, if they are realized */
2804 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2805 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2806 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2807 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002808 gtk_widget_get_allocation(sbar, &allocation);
2809 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2810 gui.scrollbar_width = allocation.width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811
2812 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002813 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2814 gui.scrollbar_height = allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815}
2816
2817/*
2818 * Properly clean up on shutdown.
2819 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002821drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822{
2823 /* Don't write messages to the GUI anymore */
2824 full_screen = FALSE;
2825
2826#ifdef FEAT_XIM
2827 im_shutdown();
2828#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 if (gui.ascii_glyphs != NULL)
2830 {
2831 pango_glyph_string_free(gui.ascii_glyphs);
2832 gui.ascii_glyphs = NULL;
2833 }
2834 if (gui.ascii_font != NULL)
2835 {
2836 g_object_unref(gui.ascii_font);
2837 gui.ascii_font = NULL;
2838 }
2839 g_object_unref(gui.text_context);
2840 gui.text_context = NULL;
2841
Bram Moolenaar98921892016-02-23 17:14:37 +01002842#if GTK_CHECK_VERSION(3,0,0)
2843 if (gui.surface != NULL)
2844 {
2845 cairo_surface_destroy(gui.surface);
2846 gui.surface = NULL;
2847 }
2848#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 g_object_unref(gui.text_gc);
2850 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002851#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852
Bram Moolenaar98921892016-02-23 17:14:37 +01002853#if GTK_CHECK_VERSION(3,0,0)
2854 g_object_unref(G_OBJECT(gui.blank_pointer));
2855#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002857#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859}
2860
Bram Moolenaara859f042016-11-17 19:11:55 +01002861#if GTK_CHECK_VERSION(3,22,2)
2862 static void
2863drawarea_style_updated_cb(GtkWidget *widget UNUSED,
2864 gpointer data UNUSED)
2865#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002867drawarea_style_set_cb(GtkWidget *widget UNUSED,
2868 GtkStyle *previous_style UNUSED,
2869 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01002870#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871{
2872 gui_mch_new_colors();
2873}
2874
Bram Moolenaar98921892016-02-23 17:14:37 +01002875#if GTK_CHECK_VERSION(3,0,0)
2876 static gboolean
2877drawarea_configure_event_cb(GtkWidget *widget,
2878 GdkEventConfigure *event,
2879 gpointer data UNUSED)
2880{
2881 static int cur_width = 0;
2882 static int cur_height = 0;
2883
2884 g_return_val_if_fail(event
2885 && event->width >= 1 && event->height >= 1, TRUE);
2886
Bram Moolenaar182707a2016-11-21 20:55:58 +01002887# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01002888 /* As of 3.22.2, GdkWindows have started distributing configure events to
2889 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
2890 *
2891 * As can be seen from the implementation of move_native_children() and
2892 * configure_native_child() in gdkwindow.c, those functions actually
2893 * propagate configure events to every child, failing to distinguish
2894 * "native" one from non-native one.
2895 *
2896 * Naturally, configure events propagated to here like that are fallacious
2897 * and, as a matter of fact, they trigger a geometric collapse of
2898 * gui.drawarea in fullscreen and miximized modes.
2899 *
2900 * To filter out such nuisance events, we are making use of the fact that
2901 * the field send_event of such GdkEventConfigures is set to FALSE in
2902 * configure_native_child().
2903 *
2904 * Obviously, this is a terrible hack making GVim depend on GTK's
2905 * implementation details. Therefore, watch out any relevant internal
2906 * changes happening in GTK in the feature (sigh).
2907 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01002908 /* Follow-up
2909 * After a few weeks later, the GdkWindow change mentioned above was
2910 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
2911 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01002912 if (event->send_event == FALSE)
2913 return TRUE;
2914# endif
2915
Bram Moolenaar98921892016-02-23 17:14:37 +01002916 if (event->width == cur_width && event->height == cur_height)
2917 return TRUE;
2918
2919 cur_width = event->width;
2920 cur_height = event->height;
2921
2922 if (gui.surface != NULL)
2923 cairo_surface_destroy(gui.surface);
2924
2925 gui.surface = gdk_window_create_similar_surface(
2926 gtk_widget_get_window(widget),
2927 CAIRO_CONTENT_COLOR_ALPHA,
2928 event->width, event->height);
2929
2930 gtk_widget_queue_draw(widget);
2931
2932 return TRUE;
2933}
2934#endif
2935
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936/*
2937 * Callback routine for the "delete_event" signal on the toplevel window.
2938 * Tries to vim gracefully, or refuses to exit with changed buffers.
2939 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002941delete_event_cb(GtkWidget *widget UNUSED,
2942 GdkEventAny *event UNUSED,
2943 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944{
2945 gui_shell_closed();
2946 return TRUE;
2947}
2948
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002949#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2950 static int
2951get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2952{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002953# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002954 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2955
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002956 if (using_gnome && widget != NULL)
2957 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002958 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002959 BonoboDockItem *dockitem;
2960
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002961 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002962 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2963 {
2964 /* Only menu & toolbar are dock items. Could tabline be?
2965 * Seem to be only the 2 defined in GNOME */
2966 widget = parent;
2967 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002968
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002969 if (dockitem == NULL || dockitem->is_floating)
2970 return 0;
2971 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2972 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002973 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002974# else
2975# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01002976# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002977
Bram Moolenaar98921892016-02-23 17:14:37 +01002978 if (widget != NULL
2979 && item_orientation == orientation
2980 && gtk_widget_get_realized(widget)
2981 && gtk_widget_get_visible(widget))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002982 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02002983# if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME)
Bram Moolenaar98921892016-02-23 17:14:37 +01002984 GtkAllocation allocation;
2985
2986 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002987 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002988# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002989 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2990 return widget->allocation.height;
2991 else
2992 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01002993# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002994 }
2995 return 0;
2996}
2997#endif
2998
2999 static int
3000get_menu_tool_width(void)
3001{
3002 int width = 0;
3003
3004#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3005# ifdef FEAT_MENU
3006 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3007# endif
3008# ifdef FEAT_TOOLBAR
3009 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3010# endif
3011# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003012 if (gui.tabline != NULL)
3013 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003014# endif
3015#endif
3016
3017 return width;
3018}
3019
3020 static int
3021get_menu_tool_height(void)
3022{
3023 int height = 0;
3024
3025#ifdef FEAT_MENU
3026 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3027#endif
3028#ifdef FEAT_TOOLBAR
3029 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3030#endif
3031#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003032 if (gui.tabline != NULL)
3033 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003034#endif
3035
3036 return height;
3037}
3038
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003039/* This controls whether we can set the real window hints at
3040 * start-up when in a GtkPlug.
3041 * 0 = normal processing (default)
3042 * 1 = init. hints set, no-one's tried to reset since last check
3043 * 2 = init. hints set, attempt made to change hints
3044 */
3045static int init_window_hints_state = 0;
3046
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003047 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003048update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003049{
3050 static int old_width = 0;
3051 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003052 static int old_min_width = 0;
3053 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003054 static int old_char_width = 0;
3055 static int old_char_height = 0;
3056
3057 int width;
3058 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003059 int min_width;
3060 int min_height;
3061
3062 /* At start-up, don't try to set the hints until the initial
3063 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003064 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003065 */
3066 if (!(force_width && force_height) && init_window_hints_state > 0)
3067 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003068 /* Don't do it! */
3069 init_window_hints_state = 2;
3070 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003071 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003072
3073 /* This also needs to be done when the main window isn't there yet,
3074 * otherwise the hints don't work. */
3075 width = gui_get_base_width();
3076 height = gui_get_base_height();
3077# ifdef FEAT_MENU
3078 height += tabline_height() * gui.char_height;
3079# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003080 width += get_menu_tool_width();
3081 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003082
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003083 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003084 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003085 * 'set columns=' or init. -geom) we briefly set the min. to the size
3086 * we wish to be instead of the legitimate minimum so that we actually
3087 * resize correctly.
3088 */
3089 if (force_width && force_height)
3090 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003091 min_width = force_width;
3092 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003093 }
3094 else
3095 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003096 min_width = width + MIN_COLUMNS * gui.char_width;
3097 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003098 }
3099
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003100 /* Avoid an expose event when the size didn't change. */
3101 if (width != old_width
3102 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003103 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003104 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003105 || gui.char_width != old_char_width
3106 || gui.char_height != old_char_height)
3107 {
3108 GdkGeometry geometry;
3109 GdkWindowHints geometry_mask;
3110
3111 geometry.width_inc = gui.char_width;
3112 geometry.height_inc = gui.char_height;
3113 geometry.base_width = width;
3114 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003115 geometry.min_width = min_width;
3116 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003117 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3118 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003119 /* Using gui.formwin as geometry widget doesn't work as expected
3120 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3121 * in Vim confuse GTK+. */
3122 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3123 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003124 old_width = width;
3125 old_height = height;
3126 old_min_width = min_width;
3127 old_min_height = min_height;
3128 old_char_width = gui.char_width;
3129 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003130 }
3131}
3132
Bram Moolenaar50bf7ce2019-09-15 13:17:00 +02003133#if defined(FEAT_GUI_DARKTHEME) || defined(PROTO)
3134 void
3135gui_mch_set_dark_theme(int dark)
3136{
3137# if GTK_CHECK_VERSION(3,0,0)
3138 GtkSettings *gtk_settings;
3139
3140 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3141 g_object_set(gtk_settings, "gtk-application-prefer-dark-theme", (gboolean)dark, NULL);
3142# endif
3143}
3144#endif /* FEAT_GUI_DARKTHEME */
3145
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146#ifdef FEAT_TOOLBAR
3147
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148/*
3149 * This extra effort wouldn't be necessary if we only used stock icons in the
3150 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3151 * shouldn't be treated differently, thus we do need this.
3152 */
3153 static void
3154icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3155{
3156 if (GTK_IS_IMAGE(widget))
3157 {
3158 GtkImage *image = (GtkImage *)widget;
3159
Bram Moolenaar98921892016-02-23 17:14:37 +01003160# if GTK_CHECK_VERSION(3,10,0)
3161 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3162 {
3163 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3164 const gchar *icon_name;
3165
3166 gtk_image_get_icon_name(image, &icon_name, NULL);
3167
3168 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3169 }
3170# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 /* User-defined icons are stored in a GtkIconSet */
3172 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3173 {
3174 GtkIconSet *icon_set;
3175 GtkIconSize icon_size;
3176
3177 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3178 icon_size = (GtkIconSize)(long)user_data;
3179
3180 gtk_icon_set_ref(icon_set);
3181 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3182 gtk_icon_set_unref(icon_set);
3183 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003184# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185 }
3186 else if (GTK_IS_CONTAINER(widget))
3187 {
3188 gtk_container_foreach((GtkContainer *)widget,
3189 &icon_size_changed_foreach,
3190 user_data);
3191 }
3192}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193
3194 static void
3195set_toolbar_style(GtkToolbar *toolbar)
3196{
3197 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 GtkIconSize size;
3199 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3202 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3203 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003204 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3206 style = GTK_TOOLBAR_BOTH;
3207 else if (toolbar_flags & TOOLBAR_TEXT)
3208 style = GTK_TOOLBAR_TEXT;
3209 else
3210 style = GTK_TOOLBAR_ICONS;
3211
3212 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003213# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003215# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 switch (tbis_flags)
3218 {
3219 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3220 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3221 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3222 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003223 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3224 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 default: size = GTK_ICON_SIZE_INVALID; break;
3226 }
3227 oldsize = gtk_toolbar_get_icon_size(toolbar);
3228
3229 if (size == GTK_ICON_SIZE_INVALID)
3230 {
3231 /* Let global user preferences decide the icon size. */
3232 gtk_toolbar_unset_icon_size(toolbar);
3233 size = gtk_toolbar_get_icon_size(toolbar);
3234 }
3235 if (size != oldsize)
3236 {
3237 gtk_container_foreach(GTK_CONTAINER(toolbar),
3238 &icon_size_changed_foreach,
3239 GINT_TO_POINTER((int)size));
3240 }
3241 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242}
3243
3244#endif /* FEAT_TOOLBAR */
3245
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003246#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3247static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003248static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003249# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003250static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003251# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003252static int clicked_page; /* page clicked in tab line */
3253
3254/*
3255 * Handle selecting an item in the tab line popup menu.
3256 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003257 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003258tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003259{
Bram Moolenaara5621492006-02-25 21:55:24 +00003260 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003261 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003262}
3263
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003264 static void
3265add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3266{
3267 GtkWidget *item;
3268 char_u *utf_text;
3269
3270 utf_text = CONVERT_TO_UTF8(text);
3271 item = gtk_menu_item_new_with_label((const char *)utf_text);
3272 gtk_widget_show(item);
3273 CONVERT_TO_UTF8_FREE(utf_text);
3274
3275 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003276 g_signal_connect(G_OBJECT(item), "activate",
3277 G_CALLBACK(tabline_menu_handler),
3278 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003279}
3280
Bram Moolenaara5621492006-02-25 21:55:24 +00003281/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003282 * Create a menu for the tab line.
3283 */
3284 static GtkWidget *
3285create_tabline_menu(void)
3286{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003287 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003288
3289 menu = gtk_menu_new();
Bram Moolenaar29547192018-12-11 20:39:19 +01003290 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003291 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3292 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003293
3294 return menu;
3295}
3296
3297 static gboolean
3298on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3299{
3300 /* Was this button press event ? */
3301 if (event->type == GDK_BUTTON_PRESS)
3302 {
3303 GdkEventButton *bevent = (GdkEventButton *)event;
3304 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003305 int y = bevent->y;
3306 GtkWidget *tabwidget;
3307 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003308
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003309 /* When ignoring events return TRUE so that the selected page doesn't
3310 * change. */
3311 if (hold_gui_events
3312# ifdef FEAT_CMDWIN
3313 || cmdwin_type != 0
3314# endif
3315 )
3316 return TRUE;
3317
Bram Moolenaar98921892016-02-23 17:14:37 +01003318 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003319
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003320 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003321 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3322 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003323
3324 /* If the event was generated for 3rd button popup the menu. */
3325 if (bevent->button == 3)
3326 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003327# if GTK_CHECK_VERSION(3,22,2)
3328 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3329# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003330 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3331 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003332# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003333 /* We handled the event. */
3334 return TRUE;
3335 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003336 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003337 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003338 if (clicked_page == 0)
3339 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003340 /* Click after all tabs moves to next tab page. When "x" is
3341 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003342 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003343 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003344 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003345 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003346
Bram Moolenaara5621492006-02-25 21:55:24 +00003347 /* We didn't handle the event. */
3348 return FALSE;
3349}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003350
3351/*
3352 * Handle selecting one of the tabs.
3353 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003354 static void
3355on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003356 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003357 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003358 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003359 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003360{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003361 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003362 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003363}
3364
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003365# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003366/*
3367 * Handle reordering the tabs (using D&D).
3368 */
3369 static void
3370on_tab_reordered(
3371 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003372 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003373 gint idx,
3374 gpointer data UNUSED)
3375{
3376 if (!ignore_tabline_evt)
3377 {
3378 if ((tabpage_index(curtab) - 1) < idx)
3379 tabpage_move(idx + 1);
3380 else
3381 tabpage_move(idx);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003382 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003383}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003384# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003385
3386/*
3387 * Show or hide the tabline.
3388 */
3389 void
3390gui_mch_show_tabline(int showit)
3391{
3392 if (gui.tabline == NULL)
3393 return;
3394
3395 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3396 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003397 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003398 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003399 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003400 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003401 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003402 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003403
3404 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003405}
3406
3407/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003408 * Return TRUE when tabline is displayed.
3409 */
3410 int
3411gui_mch_showing_tabline(void)
3412{
3413 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003414 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003415}
3416
3417/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003418 * Update the labels of the tabline.
3419 */
3420 void
3421gui_mch_update_tabline(void)
3422{
3423 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003424 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003425 GtkWidget *label;
3426 tabpage_T *tp;
3427 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003428 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003429 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003430 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003431
3432 if (gui.tabline == NULL)
3433 return;
3434
3435 ignore_tabline_evt = TRUE;
3436
3437 /* Add a label for each tab page. They all contain the same text area. */
3438 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3439 {
3440 if (tp == curtab)
3441 curtabidx = nr;
3442
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003443 tab_num = nr + 1;
3444
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003445 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3446 if (page == NULL)
3447 {
3448 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003449# if GTK_CHECK_VERSION(3,2,0)
3450 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3451 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3452# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003453 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003454# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003455 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003456 event_box = gtk_event_box_new();
3457 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003458 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003459# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003460 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003461# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003462 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003463 gtk_widget_show(label);
3464 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3465 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003466 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003467 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003468# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003469 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3470 page,
3471 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003472# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003473 }
3474
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003475 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003476 g_object_set_data(G_OBJECT(event_box), "tab_num",
3477 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003478 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003479 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003480 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003481 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003482 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003483
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003484 get_tabline_label(tp, TRUE);
3485 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003486# if GTK_CHECK_VERSION(3,0,0)
3487 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3488# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003489 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3490 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003491# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003492 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003493 }
3494
3495 /* Remove any old labels. */
3496 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3497 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3498
Bram Moolenaar98921892016-02-23 17:14:37 +01003499 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3500 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003501
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003502 /* Make sure everything is in place before drawing text. */
3503 gui_mch_update();
3504
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003505 ignore_tabline_evt = FALSE;
3506}
3507
3508/*
3509 * Set the current tab to "nr". First tab is 1.
3510 */
3511 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003512gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003513{
3514 if (gui.tabline == NULL)
3515 return;
3516
3517 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003518 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3519 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003520 ignore_tabline_evt = FALSE;
3521}
3522
3523#endif /* FEAT_GUI_TABLINE */
3524
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003526 * Add selection targets for PRIMARY and CLIPBOARD selections.
3527 */
3528 void
3529gui_gtk_set_selection_targets(void)
3530{
3531 int i, j = 0;
3532 int n_targets = N_SELECTION_TARGETS;
3533 GtkTargetEntry targets[N_SELECTION_TARGETS];
3534
3535 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3536 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003537 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003538 * return something, instead of trying another target. Therefore only
3539 * offer TARGET_HTML when it works. */
3540 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3541 n_targets--;
3542 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003543 targets[j++] = selection_targets[i];
3544 }
3545
3546 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3547 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3548 gtk_selection_add_targets(gui.drawarea,
3549 (GdkAtom)GDK_SELECTION_PRIMARY,
3550 targets, n_targets);
3551 gtk_selection_add_targets(gui.drawarea,
3552 (GdkAtom)clip_plus.gtk_sel_atom,
3553 targets, n_targets);
3554}
3555
3556/*
3557 * Set up for receiving DND items.
3558 */
3559 void
3560gui_gtk_set_dnd_targets(void)
3561{
3562 int i, j = 0;
3563 int n_targets = N_DND_TARGETS;
3564 GtkTargetEntry targets[N_DND_TARGETS];
3565
3566 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3567 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003568 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003569 n_targets--;
3570 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003571 targets[j++] = dnd_targets[i];
3572 }
3573
3574 gtk_drag_dest_unset(gui.drawarea);
3575 gtk_drag_dest_set(gui.drawarea,
3576 GTK_DEST_DEFAULT_ALL,
3577 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003578 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003579}
3580
3581/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3583 * Returns OK for success, FAIL when the GUI can't be started.
3584 */
3585 int
3586gui_mch_init(void)
3587{
3588 GtkWidget *vbox;
3589
3590#ifdef FEAT_GUI_GNOME
3591 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3592 * exits on failure, but that's a non-issue because we already called
3593 * gtk_init_check() in gui_mch_init_check(). */
3594 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003595 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3597 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003598# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003599 {
3600 char *p = setlocale(LC_NUMERIC, NULL);
3601
3602 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3603 * init may change it. */
3604 if (p == NULL || strcmp(p, "C") != 0)
3605 setlocale(LC_NUMERIC, "C");
3606 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003607# endif
3608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003610 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003612#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 /* Set the human-readable application name */
3614 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003615#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 /*
3617 * Force UTF-8 output no matter what the value of 'encoding' is.
3618 * did_set_string_option() in option.c prohibits changing 'termencoding'
3619 * to something else than UTF-8 if the GUI is in use.
3620 */
3621 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3622
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003623#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003625#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3627 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003628#if !GTK_CHECK_VERSION(3,0,0)
3629# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003631# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003632#endif
3633
3634 /* Initialize values */
3635 gui.border_width = 2;
3636 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3637 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003638#if GTK_CHECK_VERSION(3,0,0)
3639 gui.fgcolor = g_new(GdkRGBA, 1);
3640 gui.bgcolor = g_new(GdkRGBA, 1);
3641 gui.spcolor = g_new(GdkRGBA, 1);
3642#else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003643 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003645 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003647 /* LINTED: avoid warning: conversion to 'unsigned long' */
3648 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003649#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650
3651 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003652 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654
3655 /* Set default foreground and background colors. */
3656 gui.norm_pixel = gui.def_norm_pixel;
3657 gui.back_pixel = gui.def_back_pixel;
3658
3659 if (gtk_socket_id != 0)
3660 {
3661 GtkWidget *plug;
3662
3663 /* Use GtkSocket from another app. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3665 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003666 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 {
3668 gui.mainwin = plug;
3669 }
3670 else
3671 {
3672 g_warning("Connection to GTK+ socket (ID %u) failed",
3673 (unsigned int)gtk_socket_id);
3674 /* Pretend we never wanted it if it failed (get own window) */
3675 gtk_socket_id = 0;
3676 }
3677 }
3678
3679 if (gtk_socket_id == 0)
3680 {
3681#ifdef FEAT_GUI_GNOME
3682 if (using_gnome)
3683 {
3684 gui.mainwin = gnome_app_new("Vim", NULL);
3685# ifdef USE_XSMP
3686 /* Use the GNOME save-yourself functionality now. */
3687 xsmp_close();
3688# endif
3689 }
3690 else
3691#endif
3692 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3693 }
3694
3695 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3696
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 /* Create the PangoContext used for drawing all text. */
3698 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3699 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700
Bram Moolenaar98921892016-02-23 17:14:37 +01003701 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3703
Bram Moolenaar98921892016-02-23 17:14:37 +01003704 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3705 G_CALLBACK(&delete_event_cb), NULL);
3706
3707 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3708 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003709
3710 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003712
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 gui.accel_group = gtk_accel_group_new();
3714 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003716 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003717#if GTK_CHECK_VERSION(3,2,0)
3718 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3719 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3720#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003722#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723
3724#ifdef FEAT_GUI_GNOME
3725 if (using_gnome)
3726 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003727# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728 /* automagically restore menubar/toolbar placement */
3729 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3730# endif
3731 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3732 }
3733 else
3734#endif
3735 {
3736 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3737 gtk_widget_show(vbox);
3738 }
3739
3740#ifdef FEAT_MENU
3741 /*
3742 * Create the menubar and handle
3743 */
3744 gui.menubar = gtk_menu_bar_new();
3745 gtk_widget_set_name(gui.menubar, "vim-menubar");
3746
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003747 /* Avoid that GTK takes <F10> away from us. */
3748 {
3749 GtkSettings *gtk_settings;
3750
3751 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3752 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3753 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003754
3755
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756# ifdef FEAT_GUI_GNOME
3757 if (using_gnome)
3758 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 BonoboDockItem *dockitem;
3760
3761 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3762 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3763 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00003764 /* We don't want the menu to float. */
3765 bonobo_dock_item_set_behavior(dockitem,
3766 bonobo_dock_item_get_behavior(dockitem)
3767 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 }
3770 else
3771# endif /* FEAT_GUI_GNOME */
3772 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00003773 /* Always show the menubar, otherwise <F10> doesn't work. It may be
3774 * disabled in gui_init() later. */
3775 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3777 }
3778#endif /* FEAT_MENU */
3779
3780#ifdef FEAT_TOOLBAR
3781 /*
3782 * Create the toolbar and handle
3783 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01003785# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01003786 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003787 /* N.B. Since the default value of GtkToolbar::button-relief is
3788 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
3789# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 gtk_rc_parse_string(
3791 "style \"vim-toolbar-style\" {\n"
3792 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3793 "}\n"
3794 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003795# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 gui.toolbar = gtk_toolbar_new();
3797 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3799
3800# ifdef FEAT_GUI_GNOME
3801 if (using_gnome)
3802 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 BonoboDockItem *dockitem;
3804
3805 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3806 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3807 GNOME_APP_TOOLBAR_NAME);
3808 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003809 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00003810 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003811 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003812 bonobo_dock_item_get_behavior(dockitem)
3813 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 }
3816 else
3817# endif /* FEAT_GUI_GNOME */
3818 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3820 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3821 gtk_widget_show(gui.toolbar);
3822 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3823 }
3824#endif /* FEAT_TOOLBAR */
3825
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003826#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003827 /*
3828 * Use a Notebook for the tab pages labels. The labels are hidden by
3829 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003830 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003831 gui.tabline = gtk_notebook_new();
3832 gtk_widget_show(gui.tabline);
3833 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3834 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3835 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003836 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003837# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003838 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003839# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003840
Bram Moolenaar98921892016-02-23 17:14:37 +01003841# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003842 tabline_tooltip = gtk_tooltips_new();
3843 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003844# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003845
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003846 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003847 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003848
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003849 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003850# if GTK_CHECK_VERSION(3,2,0)
3851 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3852 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3853# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003854 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003855# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003856 gtk_widget_show(page);
3857 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3858 label = gtk_label_new("-Empty-");
3859 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003860 event_box = gtk_event_box_new();
3861 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003862 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003863# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003864 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003865# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003866 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003867 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003868# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003869 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003870# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003871 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003872
Bram Moolenaar98921892016-02-23 17:14:37 +01003873 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3874 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003875# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003876 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3877 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003878# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003879
3880 /* Create a popup menu for the tab line and connect it. */
3881 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003882 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3883 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01003884#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003885
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003887 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003888#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003890#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891
3892 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaara859f042016-11-17 19:11:55 +01003893#if GTK_CHECK_VERSION(3,22,2)
3894 gtk_widget_set_name(gui.drawarea, "vim-gui-drawarea");
3895#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003896#if GTK_CHECK_VERSION(3,0,0)
3897 gui.surface = NULL;
3898 gui.by_signal = FALSE;
3899#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900
3901 /* Determine which events we will filter. */
3902 gtk_widget_set_events(gui.drawarea,
3903 GDK_EXPOSURE_MASK |
3904 GDK_ENTER_NOTIFY_MASK |
3905 GDK_LEAVE_NOTIFY_MASK |
3906 GDK_BUTTON_PRESS_MASK |
3907 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 GDK_KEY_PRESS_MASK |
3910 GDK_KEY_RELEASE_MASK |
3911 GDK_POINTER_MOTION_MASK |
3912 GDK_POINTER_MOTION_HINT_MASK);
3913
3914 gtk_widget_show(gui.drawarea);
3915 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
3916 gtk_widget_show(gui.formwin);
3917 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3918
3919 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
3920 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003921 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3922 : G_OBJECT(gui.drawarea),
3923 "key-press-event",
3924 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003925#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 /* Also forward key release events for the benefit of GTK+ 2 input
3927 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
3928 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3929 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003930 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 G_CALLBACK(&key_release_event), NULL);
3932#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003933 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3934 G_CALLBACK(drawarea_realize_cb), NULL);
3935 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3936 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003937#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003938 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3939 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003940#endif
3941#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003942 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3943 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003944#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003945 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3946 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003947#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948
Bram Moolenaar98921892016-02-23 17:14:37 +01003949#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01003951#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02003953#if !defined(USE_GNOME_SESSION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3955 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3956#endif
3957
3958 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003959 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01003960 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961
3962 /*
3963 * Set clipboard specific atoms
3964 */
3965 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3968 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3969
3970 /*
3971 * Start out by adding the configured border width into the border offset.
3972 */
3973 gui.border_offset = gui.border_width;
3974
Bram Moolenaar98921892016-02-23 17:14:37 +01003975#if GTK_CHECK_VERSION(3,0,0)
3976 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
3977 G_CALLBACK(draw_event), NULL);
3978#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3980 GTK_SIGNAL_FUNC(visibility_event), NULL);
3981 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3982 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003983#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984
3985 /*
3986 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3987 * Only needed for some window managers.
3988 */
3989 if (vim_strchr(p_go, GO_POINTER) != NULL)
3990 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003991 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
3992 G_CALLBACK(leave_notify_event), NULL);
3993 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
3994 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 }
3996
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003997 /* Real windows can get focus ... GtkPlug, being a mere container can't,
3998 * only its widgets. Arguably, this could be common code and we not use
3999 * the window focus at all, but let's be safe.
4000 */
4001 if (gtk_socket_id == 0)
4002 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004003 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4004 G_CALLBACK(focus_out_event), NULL);
4005 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4006 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004007 }
4008 else
4009 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004010 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4011 G_CALLBACK(focus_out_event), NULL);
4012 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4013 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004014#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004015 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4016 G_CALLBACK(focus_out_event), NULL);
4017 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4018 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004019#endif /* FEAT_GUI_TABLINE */
4020 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021
Bram Moolenaar98921892016-02-23 17:14:37 +01004022 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4023 G_CALLBACK(motion_notify_event), NULL);
4024 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4025 G_CALLBACK(button_press_event), NULL);
4026 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4027 G_CALLBACK(button_release_event), NULL);
4028 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4029 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030
4031 /*
4032 * Add selection handler functions.
4033 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004034 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4035 G_CALLBACK(selection_clear_event), NULL);
4036 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4037 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038
Bram Moolenaara76638f2010-06-05 12:49:46 +02004039 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040
Bram Moolenaar98921892016-02-23 17:14:37 +01004041 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4042 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043
4044 /* Pretend we don't have input focus, we will get an event if we do. */
4045 gui.in_focus = FALSE;
4046
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02004047 // Handle changes to the "Xft/DPI" setting.
4048 {
4049 GtkSettings *gtk_settings =
4050 gtk_settings_get_for_screen(gdk_screen_get_default());
4051
4052 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
4053 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
4054 }
4055
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 return OK;
4057}
4058
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004059#if defined(USE_GNOME_SESSION) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060/*
4061 * This is called from gui_start() after a fork() has been done.
4062 * We have to tell the session manager our new PID.
4063 */
4064 void
4065gui_mch_forked(void)
4066{
4067 if (using_gnome)
4068 {
4069 GnomeClient *client;
4070
4071 client = gnome_master_client();
4072
4073 if (client != NULL)
4074 gnome_client_set_process_id(client, getpid());
4075 }
4076}
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02004077#endif // USE_GNOME_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078
Bram Moolenaar98921892016-02-23 17:14:37 +01004079#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004080 static GdkRGBA
4081color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004082{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004083 GdkRGBA rgba;
4084 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4085 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4086 rgba.blue = ((color & 0xff)) / 255.0;
4087 rgba.alpha = 1.0;
4088 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004089}
4090
4091 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004092set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004093{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004094 const GdkRGBA rgba = color_to_rgba(color);
4095 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004096}
4097#endif /* GTK_CHECK_VERSION(3,0,0) */
4098
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099/*
4100 * Called when the foreground or background color has been changed.
4101 * This used to change the graphics contexts directly but we are
4102 * currently manipulating them where desired.
4103 */
4104 void
4105gui_mch_new_colors(void)
4106{
Bram Moolenaar98921892016-02-23 17:14:37 +01004107 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02004109#if !GTK_CHECK_VERSION(3,22,2)
4110 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
4111#endif
4112
Bram Moolenaara859f042016-11-17 19:11:55 +01004113#if GTK_CHECK_VERSION(3,22,2)
4114 GtkStyleContext * const context
4115 = gtk_widget_get_style_context(gui.drawarea);
4116 GtkCssProvider * const provider = gtk_css_provider_new();
4117 gchar * const css = g_strdup_printf(
4118 "widget#vim-gui-drawarea {\n"
4119 " background-color: #%.2lx%.2lx%.2lx;\n"
4120 "}\n",
4121 (gui.back_pixel >> 16) & 0xff,
4122 (gui.back_pixel >> 8) & 0xff,
4123 gui.back_pixel & 0xff);
4124
4125 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4126 gtk_style_context_add_provider(context,
4127 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4128
4129 g_free(css);
4130 g_object_unref(provider);
4131#elif GTK_CHECK_VERSION(3,4,0) /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar36edf062016-07-21 22:10:12 +02004132 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004133
Bram Moolenaar36edf062016-07-21 22:10:12 +02004134 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004135 {
4136 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004137 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004138 if (pat != NULL)
4139 {
4140 gdk_window_set_background_pattern(da_win, pat);
4141 cairo_pattern_destroy(pat);
4142 }
4143 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004144 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004145 }
4146#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 GdkColor color = { 0, 0, 0, 0 };
4148
4149 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004150 gdk_window_set_background(da_win, &color);
Bram Moolenaara859f042016-11-17 19:11:55 +01004151#endif /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152 }
4153}
4154
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155/*
4156 * This signal informs us about the need to rearrange our sub-widgets.
4157 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004159form_configure_event(GtkWidget *widget UNUSED,
4160 GdkEventConfigure *event,
4161 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004163 int usable_height = event->height;
4164
Bram Moolenaar182707a2016-11-21 20:55:58 +01004165#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01004166 /* As of 3.22.2, GdkWindows have started distributing configure events to
4167 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4168 *
4169 * As can be seen from the implementation of move_native_children() and
4170 * configure_native_child() in gdkwindow.c, those functions actually
4171 * propagate configure events to every child, failing to distinguish
4172 * "native" one from non-native one.
4173 *
4174 * Naturally, configure events propagated to here like that are fallacious
4175 * and, as a matter of fact, they trigger a geometric collapse of
4176 * gui.formwin.
4177 *
4178 * To filter out such fallacious events, check if the given event is the
4179 * one that was sent out to the right place. Ignore it if not.
4180 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01004181 /* Follow-up
4182 * After a few weeks later, the GdkWindow change mentioned above was
4183 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4184 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01004185 if (event->window != gtk_widget_get_window(gui.formwin))
4186 return TRUE;
4187#endif
4188
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004189 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4190 * no. of char-heights), so we have to manually sanitise them.
4191 * Widths seem to sort themselves out, don't ask me why.
4192 */
4193 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004194 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004195
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004197 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 gtk_form_thaw(GTK_FORM(gui.formwin));
4199
4200 return TRUE;
4201}
4202
4203/*
4204 * Function called when window already closed.
4205 * We can't do much more here than to trying to preserve what had been done,
4206 * since the window is already inevitably going away.
4207 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004208 static void
4209mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210{
4211 /* Don't write messages to the GUI anymore */
4212 full_screen = FALSE;
4213
4214 gui.mainwin = NULL;
4215 gui.drawarea = NULL;
4216
4217 if (!exiting) /* only do anything if the destroy was unexpected */
4218 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004219 vim_strncpy(IObuff,
4220 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4221 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 preserve_exit();
4223 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004224#ifdef USE_GRESOURCE
4225 gui_gtk_unregister_resource();
4226#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227}
4228
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004229
4230/*
4231 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4232 * hints (and thus the required size from -geom), but that after that we
4233 * put the hints back to normal (the actual minimum size) so we may
4234 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004235 * plug's window 'min hints to set *its* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004236 * only way we have of making ourselves bigger (by set lines/columns).
4237 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004238 * second after the final attempt to reset the real minimum hints (done by
4239 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004240 * We'll not let the default hints be set while this timer's active.
4241 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004242 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004243check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004244{
4245 if (init_window_hints_state == 1)
4246 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004247 /* Safe to use normal hints now */
4248 init_window_hints_state = 0;
4249 update_window_manager_hints(0, 0);
4250 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004251 }
4252
4253 /* Keep on trying */
4254 init_window_hints_state = 1;
4255 return TRUE;
4256}
4257
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258/*
4259 * Open the GUI window which was created by a call to gui_mch_init().
4260 */
4261 int
4262gui_mch_open(void)
4263{
4264 guicolor_T fg_pixel = INVALCOLOR;
4265 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004266 guint pixel_width;
4267 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 /*
4270 * Allow setting a window role on the command line, or invent one
4271 * if none was specified. This is mainly useful for GNOME session
4272 * support; allowing the WM to restore window placement.
4273 */
4274 if (role_argument != NULL)
4275 {
4276 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4277 }
4278 else
4279 {
4280 char *role;
4281
4282 /* Invent a unique-enough ID string for the role */
4283 role = g_strdup_printf("vim-%u-%u-%u",
4284 (unsigned)mch_get_pid(),
4285 (unsigned)g_random_int(),
4286 (unsigned)time(NULL));
4287
4288 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4289 g_free(role);
4290 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291
4292 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294
4295 /* Determine user specified geometry, if present. */
4296 if (gui.geom != NULL)
4297 {
4298 int mask;
4299 unsigned int w, h;
4300 int x = 0;
4301 int y = 0;
4302
4303 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4304
4305 if (mask & WidthValue)
4306 Columns = w;
4307 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004308 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004309 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004310 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004312 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004313 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004314
4315 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4316 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4317
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004318 pixel_width += get_menu_tool_width();
4319 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004320
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004322 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004323 int ww, hh;
4324 gui_mch_get_screen_dimensions(&ww, &hh);
4325 hh += p_ghr + get_menu_tool_height();
4326 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004327 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004328 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004329 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004330 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004332 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004333 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004334
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004335 /* From now until everyone's stopped trying to set the window hints
4336 * to their correct minimum values, stop them being set as we need
4337 * them to remain at our required size for the parent GtkSocket to
4338 * give us the right initial size.
4339 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004340 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004341 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004342 update_window_manager_hints(pixel_width, pixel_height);
4343 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004344 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004345 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 }
4347
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004348 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4349 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004350 /* For GTK2 changing the size of the form widget doesn't cause window
4351 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004352 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004353 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004354 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355
4356 if (foreground_argument != NULL)
4357 fg_pixel = gui_get_color((char_u *)foreground_argument);
4358 if (fg_pixel == INVALCOLOR)
4359 fg_pixel = gui_get_color((char_u *)"Black");
4360
4361 if (background_argument != NULL)
4362 bg_pixel = gui_get_color((char_u *)background_argument);
4363 if (bg_pixel == INVALCOLOR)
4364 bg_pixel = gui_get_color((char_u *)"White");
4365
4366 if (found_reverse_arg)
4367 {
4368 gui.def_norm_pixel = bg_pixel;
4369 gui.def_back_pixel = fg_pixel;
4370 }
4371 else
4372 {
4373 gui.def_norm_pixel = fg_pixel;
4374 gui.def_back_pixel = bg_pixel;
4375 }
4376
4377 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4378 * in a vimrc file) */
4379 set_normal_colors();
4380
4381 /* Check that none of the colors are the same as the background color */
4382 gui_check_colors();
4383
4384 /* Get the colors for the highlight groups (gui_check_colors() might have
4385 * changed them). */
4386 highlight_gui_started(); /* re-init colors and fonts */
4387
Bram Moolenaar98921892016-02-23 17:14:37 +01004388 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4389 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390
4391#ifdef FEAT_HANGULIN
4392 hangul_keyboard_set();
4393#endif
4394
4395 /*
4396 * Notify the fixed area about the need to resize the contents of the
4397 * gui.formwin, which we use for random positioning of the included
4398 * components.
4399 *
4400 * We connect this signal deferred finally after anything is in place,
4401 * since this is intended to handle resizements coming from the window
4402 * manager upon us and should not interfere with what VIM is requesting
4403 * upon startup.
4404 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004405 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4406 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407
4408#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004409 /* Set up for receiving DND items. */
4410 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411
Bram Moolenaar98921892016-02-23 17:14:37 +01004412 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4413 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414#endif
4415
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004417 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 if (found_iconic_arg && gtk_socket_id == 0)
4419 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420
4421 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004422#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 unsigned long menu_handler = 0;
4424# ifdef FEAT_TOOLBAR
4425 unsigned long tool_handler = 0;
4426# endif
4427 /*
4428 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4429 * show when restoring the saved layout configuration. We can't just
4430 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4431 * a toplevel window and thus will be realized immediately. Instead,
4432 * connect signal handlers to hide the widgets just after they've been
4433 * marked visible, but before the main window is realized.
4434 */
4435 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4436 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4437 G_CALLBACK(&gtk_widget_hide),
4438 NULL);
4439# ifdef FEAT_TOOLBAR
4440 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4441 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4442 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4443 G_CALLBACK(&gtk_widget_hide),
4444 NULL);
4445# endif
4446#endif
4447 gtk_widget_show(gui.mainwin);
4448
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004449#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 if (menu_handler != 0)
4451 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4452# ifdef FEAT_TOOLBAR
4453 if (tool_handler != 0)
4454 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4455# endif
4456#endif
4457 }
4458
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 return OK;
4460}
4461
4462
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004464gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465{
4466 if (gui.mainwin != NULL)
4467 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468}
4469
4470/*
4471 * Get the position of the top left corner of the window.
4472 */
4473 int
4474gui_mch_get_winpos(int *x, int *y)
4475{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 return OK;
4478}
4479
4480/*
4481 * Set the position of the top left corner of the window to the given
4482 * coordinates.
4483 */
4484 void
4485gui_mch_set_winpos(int x, int y)
4486{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488}
4489
Bram Moolenaar98921892016-02-23 17:14:37 +01004490#if !GTK_CHECK_VERSION(3,0,0)
4491# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492static int resize_idle_installed = FALSE;
4493/*
4494 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4495 * the shell size doesn't exceed the window size, i.e. if the window manager
4496 * ignored our size request. Usually this happens if the window is maximized.
4497 *
4498 * FIXME: It'd be nice if we could find a little more orthodox solution.
4499 * See also the remark below in gui_mch_set_shellsize().
4500 *
4501 * DISABLED: When doing ":set lines+=1" this function would first invoke
4502 * gui_resize_shell() with the old size, then the normal callback would
4503 * report the new size through form_configure_event(). That caused the window
4504 * layout to be messed up.
4505 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 static gboolean
4507force_shell_resize_idle(gpointer data)
4508{
4509 if (gui.mainwin != NULL
4510 && GTK_WIDGET_REALIZED(gui.mainwin)
4511 && GTK_WIDGET_VISIBLE(gui.mainwin))
4512 {
4513 int width;
4514 int height;
4515
4516 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4517
4518 width -= get_menu_tool_width();
4519 height -= get_menu_tool_height();
4520
4521 gui_resize_shell(width, height);
4522 }
4523
4524 resize_idle_installed = FALSE;
4525 return FALSE; /* don't call me again */
4526}
Bram Moolenaar98921892016-02-23 17:14:37 +01004527# endif
4528#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529
Bram Moolenaar09736232009-09-23 16:14:49 +00004530/*
4531 * Return TRUE if the main window is maximized.
4532 */
4533 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004534gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004535{
Bram Moolenaar98921892016-02-23 17:14:37 +01004536 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4537 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4538 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004539}
4540
4541/*
4542 * Unmaximize the main window
4543 */
4544 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004545gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004546{
4547 if (gui.mainwin != NULL)
4548 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4549}
Bram Moolenaar09736232009-09-23 16:14:49 +00004550
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004552 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4553 * is set. Compute the new Rows and Columns. This is like resizing the
4554 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004555 */
4556 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004557gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004558{
4559 int w, h;
4560
4561 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4562 w -= get_menu_tool_width();
4563 h -= get_menu_tool_height();
4564 gui_resize_shell(w, h);
4565}
4566
4567/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 * Set the windows size.
4569 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 void
4571gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004572 int min_width UNUSED, int min_height UNUSED,
4573 int base_width UNUSED, int base_height UNUSED,
4574 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 /* give GTK+ a chance to put all widget's into place */
4577 gui_mch_update();
4578
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004579 /* this will cause the proper resizement to happen too */
4580 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004581 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004582
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004584 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 * main window instead. */
4586 width += get_menu_tool_width();
4587 height += get_menu_tool_height();
4588
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004589 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004590 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004591 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004592 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593
Bram Moolenaar98921892016-02-23 17:14:37 +01004594# if !GTK_CHECK_VERSION(3,0,0)
4595# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 if (!resize_idle_installed)
4597 {
4598 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4599 &force_shell_resize_idle, NULL, NULL);
4600 resize_idle_installed = TRUE;
4601 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004602# endif
4603# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 /*
4605 * Wait until all events are processed to prevent a crash because the
4606 * real size of the drawing area doesn't reflect Vim's internal ideas.
4607 *
4608 * This is a bit of a hack, since Vim is a terminal application with a GUI
4609 * on top, while the GUI expects to be the boss.
4610 */
4611 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612}
4613
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004614 void
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004615gui_gtk_get_screen_geom_of_win(
4616 GtkWidget *wid,
4617 int *screen_x,
4618 int *screen_y,
4619 int *width,
4620 int *height)
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004621{
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004622 GdkRectangle geometry;
4623 GdkWindow *win = gtk_widget_get_window(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004624#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar8696bba2017-09-09 23:00:56 +02004625 GdkDisplay *dpy = gtk_widget_get_display(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004626 GdkMonitor *monitor = gdk_display_get_monitor_at_window(dpy, win);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004627
4628 gdk_monitor_get_geometry(monitor, &geometry);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004629#else
4630 GdkScreen* screen;
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004631 int monitor;
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004632
Bram Moolenaar8696bba2017-09-09 23:00:56 +02004633 if (wid != NULL && gtk_widget_has_screen(wid))
4634 screen = gtk_widget_get_screen(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004635 else
4636 screen = gdk_screen_get_default();
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004637 monitor = gdk_screen_get_monitor_at_window(screen, win);
4638 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004639#endif
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004640 *screen_x = geometry.x;
4641 *screen_y = geometry.y;
4642 *width = geometry.width;
4643 *height = geometry.height;
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004644}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645
4646/*
4647 * The screen size is used to make sure the initial window doesn't get bigger
4648 * than the screen. This subtracts some room for menubar, toolbar and window
4649 * decorations.
4650 */
4651 void
4652gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4653{
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004654 int x, y;
4655
4656 gui_gtk_get_screen_geom_of_win(gui.mainwin, &x, &y, screen_w, screen_h);
Bram Moolenaara859f042016-11-17 19:11:55 +01004657
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02004658 /* Subtract 'guiheadroom' from the height to allow some room for the
4659 * window manager (task list and window title bar). */
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004660 *screen_h -= p_ghr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661
4662 /*
4663 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4664 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02004665 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 * This should be completely changed later.
4667 */
4668 *screen_w -= get_menu_tool_width();
4669 *screen_h -= get_menu_tool_height();
4670}
4671
4672#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004674gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676 if (title != NULL && output_conv.vc_type != CONV_NONE)
4677 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678
4679 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4680
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 if (output_conv.vc_type != CONV_NONE)
4682 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683}
4684#endif /* FEAT_TITLE */
4685
4686#if defined(FEAT_MENU) || defined(PROTO)
4687 void
4688gui_mch_enable_menu(int showit)
4689{
4690 GtkWidget *widget;
4691
4692# ifdef FEAT_GUI_GNOME
4693 if (using_gnome)
4694 widget = gui.menubar_h;
4695 else
4696# endif
4697 widget = gui.menubar;
4698
Bram Moolenaar18144c82006-04-12 21:52:12 +00004699 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004700 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701 {
4702 if (showit)
4703 gtk_widget_show(widget);
4704 else
4705 gtk_widget_hide(widget);
4706
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004707 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 }
4709}
4710#endif /* FEAT_MENU */
4711
4712#if defined(FEAT_TOOLBAR) || defined(PROTO)
4713 void
4714gui_mch_show_toolbar(int showit)
4715{
4716 GtkWidget *widget;
4717
4718 if (gui.toolbar == NULL)
4719 return;
4720
4721# ifdef FEAT_GUI_GNOME
4722 if (using_gnome)
4723 widget = gui.toolbar_h;
4724 else
4725# endif
4726 widget = gui.toolbar;
4727
4728 if (showit)
4729 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4730
Bram Moolenaar98921892016-02-23 17:14:37 +01004731 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 {
4733 if (showit)
4734 gtk_widget_show(widget);
4735 else
4736 gtk_widget_hide(widget);
4737
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004738 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 }
4740}
4741#endif /* FEAT_TOOLBAR */
4742
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743/*
4744 * Check if a given font is a CJK font. This is done in a very crude manner. It
4745 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4746 * font. Consequently, this function cannot be used as a general purpose check
4747 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4748 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4749 */
4750 static int
4751is_cjk_font(PangoFontDescription *font_desc)
4752{
4753 static const char * const cjk_langs[] =
4754 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4755
4756 PangoFont *font;
4757 unsigned i;
4758 int is_cjk = FALSE;
4759
4760 font = pango_context_load_font(gui.text_context, font_desc);
4761
4762 if (font == NULL)
4763 return FALSE;
4764
4765 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4766 {
4767 PangoCoverage *coverage;
4768 gunichar uc;
4769
4770 coverage = pango_font_get_coverage(
4771 font, pango_language_from_string(cjk_langs[i]));
4772
4773 if (coverage != NULL)
4774 {
4775 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4776 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4777 pango_coverage_unref(coverage);
4778 }
4779 }
4780
4781 g_object_unref(font);
4782
4783 return is_cjk;
4784}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785
Bram Moolenaar231334e2005-07-25 20:46:57 +00004786/*
4787 * Adjust gui.char_height (after 'linespace' was changed).
4788 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004790gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 PangoFontMetrics *metrics;
4793 int ascent;
4794 int descent;
4795
4796 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4797 pango_context_get_language(gui.text_context));
4798 ascent = pango_font_metrics_get_ascent(metrics);
4799 descent = pango_font_metrics_get_descent(metrics);
4800
4801 pango_font_metrics_unref(metrics);
4802
4803 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00004804 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00004805 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4807
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 /* A not-positive value of char_height may crash Vim. Only happens
4809 * if 'linespace' is negative (which does make sense sometimes). */
4810 gui.char_ascent = MAX(gui.char_ascent, 0);
4811 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4812
4813 return OK;
4814}
4815
Bram Moolenaar98921892016-02-23 17:14:37 +01004816#if GTK_CHECK_VERSION(3,0,0)
4817/* Callback function used in gui_mch_font_dialog() */
4818 static gboolean
4819font_filter(const PangoFontFamily *family,
4820 const PangoFontFace *face UNUSED,
4821 gpointer data UNUSED)
4822{
4823 return pango_font_family_is_monospace((PangoFontFamily *)family);
4824}
4825#endif
4826
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827/*
4828 * Put up a font dialog and return the selected font name in allocated memory.
4829 * "oldval" is the previous value. Return NULL when cancelled.
4830 * This should probably go into gui_gtk.c. Hmm.
4831 * FIXME:
4832 * The GTK2 font selection dialog has no filtering API. So we could either
4833 * a) implement our own (possibly copying the code from somewhere else) or
4834 * b) just live with it.
4835 */
4836 char_u *
4837gui_mch_font_dialog(char_u *oldval)
4838{
4839 GtkWidget *dialog;
4840 int response;
4841 char_u *fontname = NULL;
4842 char_u *oldname;
4843
Bram Moolenaar98921892016-02-23 17:14:37 +01004844#if GTK_CHECK_VERSION(3,2,0)
4845 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4846 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4847 NULL, NULL);
4848#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004850#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851
4852 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4853 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4854
4855 if (oldval != NULL && oldval[0] != NUL)
4856 {
4857 if (output_conv.vc_type != CONV_NONE)
4858 oldname = string_convert(&output_conv, oldval, NULL);
4859 else
4860 oldname = oldval;
4861
4862 /* Annoying bug in GTK (or Pango): if the font name does not include a
4863 * size, zero is used. Use default point size ten. */
4864 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4865 {
4866 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4867
4868 if (p != NULL)
4869 {
4870 STRCPY(p + STRLEN(p), " 10");
4871 if (oldname != oldval)
4872 vim_free(oldname);
4873 oldname = p;
4874 }
4875 }
4876
Bram Moolenaar98921892016-02-23 17:14:37 +01004877#if GTK_CHECK_VERSION(3,2,0)
4878 gtk_font_chooser_set_font(
4879 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4880#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 gtk_font_selection_dialog_set_font_name(
4882 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004883#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884
4885 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004886 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004888 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004889#if GTK_CHECK_VERSION(3,2,0)
4890 gtk_font_chooser_set_font(
4891 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4892#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004893 gtk_font_selection_dialog_set_font_name(
4894 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004895#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896
4897 response = gtk_dialog_run(GTK_DIALOG(dialog));
4898
4899 if (response == GTK_RESPONSE_OK)
4900 {
4901 char *name;
4902
Bram Moolenaar98921892016-02-23 17:14:37 +01004903#if GTK_CHECK_VERSION(3,2,0)
4904 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4905#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 name = gtk_font_selection_dialog_get_font_name(
4907 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004908#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 if (name != NULL)
4910 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004911 char_u *p;
4912
4913 /* Apparently some font names include a comma, need to escape
4914 * that, because in 'guifont' it separates names. */
4915 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004917 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004918 {
4919 fontname = string_convert(&input_conv, p, NULL);
4920 vim_free(p);
4921 }
4922 else
4923 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 }
4925 }
4926
4927 if (response != GTK_RESPONSE_NONE)
4928 gtk_widget_destroy(dialog);
4929
4930 return fontname;
4931}
4932
4933/*
4934 * Some monospace fonts don't support a bold weight, and fall back
4935 * silently to the regular weight. But this is no good since our text
4936 * drawing function can emulate bold by overstriking. So let's try
4937 * to detect whether bold weight is actually available and emulate it
4938 * otherwise.
4939 *
4940 * Note that we don't need to check for italic style since Xft can
4941 * emulate italic on its own, provided you have a proper fontconfig
4942 * setup. We wouldn't be able to emulate it in Vim anyway.
4943 */
4944 static void
4945get_styled_font_variants(void)
4946{
4947 PangoFontDescription *bold_font_desc;
4948 PangoFont *plain_font;
4949 PangoFont *bold_font;
4950
4951 gui.font_can_bold = FALSE;
4952
4953 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
4954
4955 if (plain_font == NULL)
4956 return;
4957
4958 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
4959 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
4960
4961 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
4962 /*
4963 * The comparison relies on the unique handle nature of a PangoFont*,
4964 * i.e. it's assumed that a different PangoFont* won't refer to the
4965 * same font. Seems to work, and failing here isn't critical anyway.
4966 */
4967 if (bold_font != NULL)
4968 {
4969 gui.font_can_bold = (bold_font != plain_font);
4970 g_object_unref(bold_font);
4971 }
4972
4973 pango_font_description_free(bold_font_desc);
4974 g_object_unref(plain_font);
4975}
4976
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977static PangoEngineShape *default_shape_engine = NULL;
4978
4979/*
4980 * Create a map from ASCII characters in the range [32,126] to glyphs
4981 * of the current font. This is used by gui_gtk2_draw_string() to skip
4982 * the itemize and shaping process for the most common case.
4983 */
4984 static void
4985ascii_glyph_table_init(void)
4986{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02004987 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 PangoAttrList *attr_list;
4989 GList *item_list;
4990 int i;
4991
4992 if (gui.ascii_glyphs != NULL)
4993 pango_glyph_string_free(gui.ascii_glyphs);
4994 if (gui.ascii_font != NULL)
4995 g_object_unref(gui.ascii_font);
4996
4997 gui.ascii_glyphs = NULL;
4998 gui.ascii_font = NULL;
4999
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005000 /* For safety, fill in question marks for the control characters.
5001 * Put a space between characters to avoid shaping. */
5002 for (i = 0; i < 128; ++i)
5003 {
5004 if (i >= 32 && i < 127)
5005 ascii_chars[2 * i] = i;
5006 else
5007 ascii_chars[2 * i] = '?';
5008 ascii_chars[2 * i + 1] = ' ';
5009 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010
5011 attr_list = pango_attr_list_new();
5012 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5013 0, sizeof(ascii_chars), attr_list, NULL);
5014
5015 if (item_list != NULL && item_list->next == NULL) /* play safe */
5016 {
5017 PangoItem *item;
5018 int width;
5019
5020 item = (PangoItem *)item_list->data;
5021 width = gui.char_width * PANGO_SCALE;
5022
5023 /* Remember the shape engine used for ASCII. */
5024 default_shape_engine = item->analysis.shape_engine;
5025
5026 gui.ascii_font = item->analysis.font;
5027 g_object_ref(gui.ascii_font);
5028
5029 gui.ascii_glyphs = pango_glyph_string_new();
5030
5031 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5032 &item->analysis, gui.ascii_glyphs);
5033
5034 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5035
5036 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5037 {
5038 PangoGlyphGeometry *geom;
5039
5040 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5041 geom->x_offset += MAX(0, width - geom->width) / 2;
5042 geom->width = width;
5043 }
5044 }
5045
5046 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5047 g_list_free(item_list);
5048 pango_attr_list_unref(attr_list);
5049}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050
5051/*
5052 * Initialize Vim to use the font or fontset with the given name.
5053 * Return FAIL if the font could not be loaded, OK otherwise.
5054 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005056gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 PangoFontDescription *font_desc;
5059 PangoLayout *layout;
5060 int width;
5061
5062 /* If font_name is NULL, this means to use the default, which should
5063 * be present on all proper Pango/fontconfig installations. */
5064 if (font_name == NULL)
5065 font_name = (char_u *)DEFAULT_FONT;
5066
5067 font_desc = gui_mch_get_font(font_name, FALSE);
5068
5069 if (font_desc == NULL)
5070 return FAIL;
5071
5072 gui_mch_free_font(gui.norm_font);
5073 gui.norm_font = font_desc;
5074
5075 pango_context_set_font_description(gui.text_context, font_desc);
5076
5077 layout = pango_layout_new(gui.text_context);
5078 pango_layout_set_text(layout, "MW", 2);
5079 pango_layout_get_size(layout, &width, NULL);
5080 /*
5081 * Set char_width to half the width obtained from pango_layout_get_size()
5082 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5083 * Pango to use the same width for both non-CJK characters (e.g. Latin
5084 * letters and numbers) and CJK characters. This results in 's p a c e d
5085 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5086 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5087 * width for CJK fonts.
5088 *
5089 * For related bugs, see:
5090 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5091 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5092 *
5093 * With this, for all four of the following cases, Vim works fine:
5094 * guifont=CJK_fixed_width_font
5095 * guifont=Non_CJK_fixed_font
5096 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5097 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5098 */
5099 if (is_cjk_font(gui.norm_font))
5100 {
5101 int cjk_width;
5102
5103 /* Measure the text extent of U+4E00 and U+4E8C */
5104 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5105 pango_layout_get_size(layout, &cjk_width, NULL);
5106
5107 if (width == cjk_width) /* Xft not patched */
5108 width /= 2;
5109 }
5110 g_object_unref(layout);
5111
5112 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5113
5114 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5115 if (gui.char_width <= 0)
5116 gui.char_width = 8;
5117
Bram Moolenaar231334e2005-07-25 20:46:57 +00005118 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119
5120 /* Set the fontname, which will be used for information purposes */
5121 hl_set_font_name(font_name);
5122
5123 get_styled_font_variants();
5124 ascii_glyph_table_init();
5125
5126 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5127 if (gui.wide_font != NULL
5128 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5129 {
5130 pango_font_description_free(gui.wide_font);
5131 gui.wide_font = NULL;
5132 }
5133
Bram Moolenaare161c792009-11-03 17:13:59 +00005134 if (gui_mch_maximized())
5135 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005136 /* Update lines and columns in accordance with the new font, keep the
5137 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005138 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005139 }
5140 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005141 {
5142 /* Preserve the logical dimensions of the screen. */
5143 update_window_manager_hints(0, 0);
5144 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145
5146 return OK;
5147}
5148
5149/*
5150 * Get a reference to the font "name".
5151 * Return zero for failure.
5152 */
5153 GuiFont
5154gui_mch_get_font(char_u *name, int report_error)
5155{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157
5158 /* can't do this when GUI is not running */
5159 if (!gui.in_use || name == NULL)
5160 return NULL;
5161
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162 if (output_conv.vc_type != CONV_NONE)
5163 {
5164 char_u *buf;
5165
5166 buf = string_convert(&output_conv, name, NULL);
5167 if (buf != NULL)
5168 {
5169 font = pango_font_description_from_string((const char *)buf);
5170 vim_free(buf);
5171 }
5172 else
5173 font = NULL;
5174 }
5175 else
5176 font = pango_font_description_from_string((const char *)name);
5177
5178 if (font != NULL)
5179 {
5180 PangoFont *real_font;
5181
5182 /* pango_context_load_font() bails out if no font size is set */
5183 if (pango_font_description_get_size(font) <= 0)
5184 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5185
5186 real_font = pango_context_load_font(gui.text_context, font);
5187
5188 if (real_font == NULL)
5189 {
5190 pango_font_description_free(font);
5191 font = NULL;
5192 }
5193 else
5194 g_object_unref(real_font);
5195 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196
5197 if (font == NULL)
5198 {
5199 if (report_error)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005200 semsg(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 return NULL;
5202 }
5203
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 return font;
5205}
5206
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005207#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005208/*
5209 * Return the name of font "font" in allocated memory.
5210 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005211 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005212gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005213{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005214 if (font != NOFONT)
5215 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005216 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005217
Bram Moolenaar89d40322006-08-29 15:30:07 +00005218 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005219 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005220 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005221
Bram Moolenaar89d40322006-08-29 15:30:07 +00005222 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005223 return s;
5224 }
5225 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005226 return NULL;
5227}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005228#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005229
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230/*
5231 * If a font is not going to be used, free its structure.
5232 */
5233 void
5234gui_mch_free_font(GuiFont font)
5235{
5236 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238}
5239
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005241 * Return the Pixel value (color) for the given color name.
5242 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243 * Return INVALCOLOR for error.
5244 */
5245 guicolor_T
5246gui_mch_get_color(char_u *name)
5247{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005248 guicolor_T color = INVALCOLOR;
5249
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250 if (!gui.in_use) /* can't do this when GUI not running */
Bram Moolenaar2e324952018-04-14 14:37:07 +02005251 return color;
5252
5253 if (name != NULL)
5254 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255
Bram Moolenaar98921892016-02-23 17:14:37 +01005256#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005257 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005258#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005259 if (color == INVALCOLOR)
5260 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005262 return gui_mch_get_rgb_color(
5263 (color & 0xff0000) >> 16,
5264 (color & 0xff00) >> 8,
5265 color & 0xff);
5266#endif
5267}
5268
5269/*
5270 * Return the Pixel value (color) for the given RGB values.
5271 * Return INVALCOLOR for error.
5272 */
5273 guicolor_T
5274gui_mch_get_rgb_color(int r, int g, int b)
5275{
5276#if GTK_CHECK_VERSION(3,0,0)
5277 return gui_get_rgb_color_cmn(r, g, b);
5278#else
5279 GdkColor gcolor;
5280 int ret;
5281
5282 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5283 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5284 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285
Bram Moolenaar36edf062016-07-21 22:10:12 +02005286 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5287 &gcolor, FALSE, TRUE);
5288
5289 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5290#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291}
5292
5293/*
5294 * Set the current text foreground color.
5295 */
5296 void
5297gui_mch_set_fg_color(guicolor_T color)
5298{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005299#if GTK_CHECK_VERSION(3,0,0)
5300 *gui.fgcolor = color_to_rgba(color);
5301#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304}
5305
5306/*
5307 * Set the current text background color.
5308 */
5309 void
5310gui_mch_set_bg_color(guicolor_T color)
5311{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005312#if GTK_CHECK_VERSION(3,0,0)
5313 *gui.bgcolor = color_to_rgba(color);
5314#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005316#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317}
5318
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005319/*
5320 * Set the current text special color.
5321 */
5322 void
5323gui_mch_set_sp_color(guicolor_T color)
5324{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005325#if GTK_CHECK_VERSION(3,0,0)
5326 *gui.spcolor = color_to_rgba(color);
5327#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005328 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005329#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005330}
5331
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332/*
5333 * Function-like convenience macro for the sake of efficiency.
5334 */
5335#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5336 G_STMT_START{ \
5337 PangoAttribute *tmp_attr_; \
5338 tmp_attr_ = (Attribute); \
5339 tmp_attr_->start_index = (Start); \
5340 tmp_attr_->end_index = (End); \
5341 pango_attr_list_insert((AttrList), tmp_attr_); \
5342 }G_STMT_END
5343
5344 static void
5345apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5346{
5347 char_u *start = NULL;
5348 char_u *p;
5349 int uc;
5350
5351 for (p = s; p < s + len; p += utf_byte2len(*p))
5352 {
5353 uc = utf_ptr2char(p);
5354
5355 if (start == NULL)
5356 {
5357 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5358 start = p;
5359 }
5360 else if (uc < 0x80 /* optimization shortcut */
5361 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5362 {
5363 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5364 attr_list, start - s, p - s);
5365 start = NULL;
5366 }
5367 }
5368
5369 if (start != NULL)
5370 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5371 attr_list, start - s, len);
5372}
5373
5374 static int
5375count_cluster_cells(char_u *s, PangoItem *item,
5376 PangoGlyphString* glyphs, int i,
5377 int *cluster_width,
5378 int *last_glyph_rbearing)
5379{
5380 char_u *p;
5381 int next; /* glyph start index of next cluster */
5382 int start, end; /* string segment of current cluster */
5383 int width; /* real cluster width in Pango units */
5384 int uc;
5385 int cellcount = 0;
5386
5387 width = glyphs->glyphs[i].geometry.width;
5388
5389 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5390 {
5391 if (glyphs->glyphs[next].attr.is_cluster_start)
5392 break;
5393 else if (glyphs->glyphs[next].geometry.width > width)
5394 width = glyphs->glyphs[next].geometry.width;
5395 }
5396
5397 start = item->offset + glyphs->log_clusters[i];
5398 end = item->offset + ((next < glyphs->num_glyphs) ?
5399 glyphs->log_clusters[next] : item->length);
5400
5401 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5402 {
5403 uc = utf_ptr2char(p);
5404 if (uc < 0x80)
5405 ++cellcount;
5406 else if (!utf_iscomposing(uc))
5407 cellcount += utf_char2cells(uc);
5408 }
5409
5410 if (last_glyph_rbearing != NULL
5411 && cellcount > 0 && next == glyphs->num_glyphs)
5412 {
5413 PangoRectangle ink_rect;
5414 /*
5415 * If a certain combining mark had to be taken from a non-monospace
5416 * font, we have to compensate manually by adapting x_offset according
5417 * to the ink extents of the previous glyph.
5418 */
5419 pango_font_get_glyph_extents(item->analysis.font,
5420 glyphs->glyphs[i].glyph,
5421 &ink_rect, NULL);
5422
5423 if (PANGO_RBEARING(ink_rect) > 0)
5424 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5425 }
5426
5427 if (cellcount > 0)
5428 *cluster_width = width;
5429
5430 return cellcount;
5431}
5432
5433/*
5434 * If there are only combining characters in the cluster, we cannot just
5435 * change the width of the previous glyph since there is none. Therefore
5436 * some guesswork is needed.
5437 *
5438 * If ink_rect.x is negative Pango apparently has taken care of the composing
5439 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5440 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005441 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 *
5443 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5444 * the position of the previous glyph. Apparently this happens only with old
5445 * X fonts which don't provide the special combining information needed by
5446 * Pango.
5447 */
5448 static void
5449setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5450 int last_cellcount, int last_cluster_width,
5451 int last_glyph_rbearing)
5452{
5453 PangoRectangle ink_rect;
5454 PangoRectangle logical_rect;
5455 int width;
5456
5457 width = last_cellcount * gui.char_width * PANGO_SCALE;
5458 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5459 glyph->geometry.width = 0;
5460
5461 pango_font_get_glyph_extents(item->analysis.font,
5462 glyph->glyph,
5463 &ink_rect, &logical_rect);
5464 if (ink_rect.x < 0)
5465 {
5466 glyph->geometry.x_offset += last_glyph_rbearing;
5467 glyph->geometry.y_offset = logical_rect.height
5468 - (gui.char_height - p_linespace) * PANGO_SCALE;
5469 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005470 else
5471 /* If the accent width is smaller than the cluster width, position it
5472 * in the middle. */
5473 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474}
5475
Bram Moolenaar98921892016-02-23 17:14:37 +01005476#if GTK_CHECK_VERSION(3,0,0)
5477 static void
5478draw_glyph_string(int row, int col, int num_cells, int flags,
5479 PangoFont *font, PangoGlyphString *glyphs,
5480 cairo_t *cr)
5481#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 static void
5483draw_glyph_string(int row, int col, int num_cells, int flags,
5484 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005485#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486{
5487 if (!(flags & DRAW_TRANSP))
5488 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005489#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005490 cairo_set_source_rgba(cr,
5491 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5492 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005493 cairo_rectangle(cr,
5494 FILL_X(col), FILL_Y(row),
5495 num_cells * gui.char_width, gui.char_height);
5496 cairo_fill(cr);
5497#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5499
5500 gdk_draw_rectangle(gui.drawarea->window,
5501 gui.text_gc,
5502 TRUE,
5503 FILL_X(col),
5504 FILL_Y(row),
5505 num_cells * gui.char_width,
5506 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005507#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 }
5509
Bram Moolenaar98921892016-02-23 17:14:37 +01005510#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005511 cairo_set_source_rgba(cr,
5512 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5513 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005514 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5515 pango_cairo_show_glyph_string(cr, font, glyphs);
5516#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5518
5519 gdk_draw_glyphs(gui.drawarea->window,
5520 gui.text_gc,
5521 font,
5522 TEXT_X(col),
5523 TEXT_Y(row),
5524 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005525#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526
5527 /* redraw the contents with an offset of 1 to emulate bold */
5528 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005529#if GTK_CHECK_VERSION(3,0,0)
5530 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005531 cairo_set_source_rgba(cr,
5532 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5533 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005534 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5535 pango_cairo_show_glyph_string(cr, font, glyphs);
5536 }
5537#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 gdk_draw_glyphs(gui.drawarea->window,
5539 gui.text_gc,
5540 font,
5541 TEXT_X(col) + 1,
5542 TEXT_Y(row),
5543 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005544#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545}
5546
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005547/*
5548 * Draw underline and undercurl at the bottom of the character cell.
5549 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005550#if GTK_CHECK_VERSION(3,0,0)
5551 static void
5552draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5553#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005554 static void
5555draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005556#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005557{
5558 int i;
5559 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005560 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005561 int y = FILL_Y(row + 1) - 1;
5562
5563 /* Undercurl: draw curl at the bottom of the character cell. */
5564 if (flags & DRAW_UNDERC)
5565 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005566#if GTK_CHECK_VERSION(3,0,0)
5567 cairo_set_line_width(cr, 1.0);
5568 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005569 cairo_set_source_rgba(cr,
5570 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5571 gui.spcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005572 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5573 {
5574 offset = val[i % 8];
5575 cairo_line_to(cr, i, y - offset + 0.5);
5576 }
5577 cairo_stroke(cr);
5578#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005579 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5580 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5581 {
5582 offset = val[i % 8];
5583 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5584 }
5585 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005586#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005587 }
5588
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005589 /* Draw a strikethrough line */
5590 if (flags & DRAW_STRIKE)
5591 {
5592#if GTK_CHECK_VERSION(3,0,0)
5593 cairo_set_line_width(cr, 1.0);
5594 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5595 cairo_set_source_rgba(cr,
5596 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5597 gui.spcolor->alpha);
5598 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5599 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5600 cairo_stroke(cr);
5601#else
5602 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5603 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5604 FILL_X(col), y + 1 - gui.char_height/2,
5605 FILL_X(col + cells), y + 1 - gui.char_height/2);
5606 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5607#endif
5608 }
5609
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005610 /* Underline: draw a line at the bottom of the character cell. */
5611 if (flags & DRAW_UNDERL)
5612 {
5613 /* When p_linespace is 0, overwrite the bottom row of pixels.
5614 * Otherwise put the line just below the character. */
5615 if (p_linespace > 1)
5616 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005617#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005618 cairo_set_line_width(cr, 1.0);
5619 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5620 cairo_set_source_rgba(cr,
5621 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5622 gui.fgcolor->alpha);
5623 cairo_move_to(cr, FILL_X(col), y + 0.5);
5624 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5625 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005626#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005627 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5628 FILL_X(col), y,
5629 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005630#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005631 }
5632}
5633
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634 int
5635gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5636{
5637 GdkRectangle area; /* area for clip mask */
5638 PangoGlyphString *glyphs; /* glyphs of current item */
5639 int column_offset = 0; /* column offset in cells */
5640 int i;
5641 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5642 char_u *new_conv_buf;
5643 int convlen;
5644 char_u *sp, *bp;
5645 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005646#if GTK_CHECK_VERSION(3,0,0)
5647 cairo_t *cr;
5648#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649
Bram Moolenaar98921892016-02-23 17:14:37 +01005650 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651 return len;
5652
5653 if (output_conv.vc_type != CONV_NONE)
5654 {
5655 /*
5656 * Convert characters from 'encoding' to 'termencoding', which is set
5657 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5658 * prohibits changing this to something else than UTF-8 if the GUI is
5659 * in use.
5660 */
5661 convlen = len;
5662 conv_buf = string_convert(&output_conv, s, &convlen);
5663 g_return_val_if_fail(conv_buf != NULL, len);
5664
5665 /* Correct for differences in char width: some chars are
5666 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5667 * compensate for that. */
5668 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5669 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005670 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5672 {
5673 new_conv_buf = alloc(convlen + 2);
5674 if (new_conv_buf == NULL)
5675 return len;
5676 plen += bp - conv_buf;
5677 mch_memmove(new_conv_buf, conv_buf, plen);
5678 new_conv_buf[plen] = ' ';
5679 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5680 convlen - plen + 1);
5681 vim_free(conv_buf);
5682 conv_buf = new_conv_buf;
5683 ++convlen;
5684 bp = conv_buf + plen;
5685 plen = 1;
5686 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005687 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 bp += plen;
5689 }
5690 s = conv_buf;
5691 len = convlen;
5692 }
5693
5694 /*
5695 * Restrict all drawing to the current screen line in order to prevent
5696 * fuzzy font lookups from messing up the screen.
5697 */
5698 area.x = gui.border_offset;
5699 area.y = FILL_Y(row);
5700 area.width = gui.num_cols * gui.char_width;
5701 area.height = gui.char_height;
5702
Bram Moolenaar98921892016-02-23 17:14:37 +01005703#if GTK_CHECK_VERSION(3,0,0)
5704 cr = cairo_create(gui.surface);
5705 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5706 cairo_clip(cr);
5707#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5709 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005710#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711
5712 glyphs = pango_glyph_string_new();
5713
5714 /*
5715 * Optimization hack: If possible, skip the itemize and shaping process
5716 * for pure ASCII strings. This optimization is particularly effective
5717 * because Vim draws space characters to clear parts of the screen.
5718 */
5719 if (!(flags & DRAW_ITALIC)
5720 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5721 && gui.ascii_glyphs != NULL)
5722 {
5723 char_u *p;
5724
5725 for (p = s; p < s + len; ++p)
5726 if (*p & 0x80)
5727 goto not_ascii;
5728
5729 pango_glyph_string_set_size(glyphs, len);
5730
5731 for (i = 0; i < len; ++i)
5732 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005733 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 glyphs->log_clusters[i] = i;
5735 }
5736
Bram Moolenaar98921892016-02-23 17:14:37 +01005737#if GTK_CHECK_VERSION(3,0,0)
5738 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5739#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005741#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005742
5743 column_offset = len;
5744 }
5745 else
5746not_ascii:
5747 {
5748 PangoAttrList *attr_list;
5749 GList *item_list;
5750 int cluster_width;
5751 int last_glyph_rbearing;
5752 int cells = 0; /* cells occupied by current cluster */
5753
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005754 /* Safety check: pango crashes when invoked with invalid utf-8
5755 * characters. */
5756 if (!utf_valid_string(s, s + len))
5757 {
5758 column_offset = len;
5759 goto skipitall;
5760 }
5761
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 /* original width of the current cluster */
5763 cluster_width = PANGO_SCALE * gui.char_width;
5764
5765 /* right bearing of the last non-composing glyph */
5766 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5767
5768 attr_list = pango_attr_list_new();
5769
5770 /* If 'guifontwide' is set then use that for double-width characters.
5771 * Otherwise just go with 'guifont' and let Pango do its thing. */
5772 if (gui.wide_font != NULL)
5773 apply_wide_font_attr(s, len, attr_list);
5774
5775 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5776 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5777 attr_list, 0, len);
5778 if (flags & DRAW_ITALIC)
5779 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5780 attr_list, 0, len);
5781 /*
5782 * Break the text into segments with consistent directional level
5783 * and shaping engine. Pure Latin text needs only a single segment,
5784 * so there's no need to worry about the loop's efficiency. Better
5785 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5786 */
5787 item_list = pango_itemize(gui.text_context,
5788 (const char *)s, 0, len, attr_list, NULL);
5789
5790 while (item_list != NULL)
5791 {
5792 PangoItem *item;
5793 int item_cells = 0; /* item length in cells */
5794
5795 item = (PangoItem *)item_list->data;
5796 item_list = g_list_delete_link(item_list, item_list);
5797 /*
5798 * Increment the bidirectional embedding level by 1 if it is not
5799 * even. An odd number means the output will be RTL, but we don't
5800 * want that since Vim handles right-to-left text on its own. It
5801 * would probably be sufficient to just set level = 0, but you can
5802 * never know :)
5803 *
5804 * Unfortunately we can't take advantage of Pango's ability to
5805 * render both LTR and RTL at the same time. In order to support
5806 * that, Vim's main screen engine would have to make use of Pango
5807 * functionality.
5808 */
5809 item->analysis.level = (item->analysis.level + 1) & (~1U);
5810
5811 /* HACK: Overrule the shape engine, we don't want shaping to be
5812 * done, because drawing the cursor would change the display. */
5813 item->analysis.shape_engine = default_shape_engine;
5814
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005815#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02005816 pango_shape_full((const char *)s + item->offset, item->length,
5817 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005818#else
5819 pango_shape((const char *)s + item->offset, item->length,
5820 &item->analysis, glyphs);
5821#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822 /*
5823 * Fixed-width hack: iterate over the array and assign a fixed
5824 * width to each glyph, thus overriding the choice made by the
5825 * shaping engine. We use utf_char2cells() to determine the
5826 * number of cells needed.
5827 *
5828 * Also perform all kind of dark magic to get composing
5829 * characters right (and pretty too of course).
5830 */
5831 for (i = 0; i < glyphs->num_glyphs; ++i)
5832 {
5833 PangoGlyphInfo *glyph;
5834
5835 glyph = &glyphs->glyphs[i];
5836
5837 if (glyph->attr.is_cluster_start)
5838 {
5839 int cellcount;
5840
5841 cellcount = count_cluster_cells(
5842 s, item, glyphs, i, &cluster_width,
5843 (item_list != NULL) ? &last_glyph_rbearing : NULL);
5844
5845 if (cellcount > 0)
5846 {
5847 int width;
5848
5849 width = cellcount * gui.char_width * PANGO_SCALE;
5850 glyph->geometry.x_offset +=
5851 MAX(0, width - cluster_width) / 2;
5852 glyph->geometry.width = width;
5853 }
5854 else
5855 {
5856 /* If there are only combining characters in the
5857 * cluster, we cannot just change the width of the
5858 * previous glyph since there is none. Therefore
5859 * some guesswork is needed. */
5860 setup_zero_width_cluster(item, glyph, cells,
5861 cluster_width,
5862 last_glyph_rbearing);
5863 }
5864
5865 item_cells += cellcount;
5866 cells = cellcount;
5867 }
5868 else if (i > 0)
5869 {
5870 int width;
5871
5872 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005873 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02005874 * In some circumstances Pango uses a positive x_offset,
5875 * then use the width of the previous glyph for this one
5876 * and set the previous width to zero.
5877 * Otherwise we get a negative x_offset, Pango has already
5878 * positioned the combining char, keep the widths as they
5879 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005880 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02005881 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005882 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02005883 {
5884 glyphs->glyphs[i].geometry.width =
5885 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005886 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02005887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 width = cells * gui.char_width * PANGO_SCALE;
5889 glyph->geometry.x_offset +=
5890 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 }
5892 else /* i == 0 "cannot happen" */
5893 {
5894 glyph->geometry.width = 0;
5895 }
5896 }
5897
5898 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01005899#if GTK_CHECK_VERSION(3,0,0)
5900 draw_glyph_string(row, col + column_offset, item_cells,
5901 flags, item->analysis.font, glyphs,
5902 cr);
5903#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 draw_glyph_string(row, col + column_offset, item_cells,
5905 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005906#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907
5908 pango_item_free(item);
5909
5910 column_offset += item_cells;
5911 }
5912
5913 pango_attr_list_unref(attr_list);
5914 }
5915
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005916skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005917 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01005918#if GTK_CHECK_VERSION(3,0,0)
5919 draw_under(flags, row, col, column_offset, cr);
5920#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005921 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01005922#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923
5924 pango_glyph_string_free(glyphs);
5925 vim_free(conv_buf);
5926
Bram Moolenaar98921892016-02-23 17:14:37 +01005927#if GTK_CHECK_VERSION(3,0,0)
5928 cairo_destroy(cr);
5929 if (!gui.by_signal)
5930 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
5931 &area, FALSE);
5932#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005934#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935
5936 return column_offset;
5937}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938
5939/*
5940 * Return OK if the key with the termcap name "name" is supported.
5941 */
5942 int
5943gui_mch_haskey(char_u *name)
5944{
5945 int i;
5946
5947 for (i = 0; special_keys[i].key_sym != 0; i++)
5948 if (name[0] == special_keys[i].code0
5949 && name[1] == special_keys[i].code1)
5950 return OK;
5951 return FAIL;
5952}
5953
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005954#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955/*
5956 * Return the text window-id and display. Only required for X-based GUI's
5957 */
5958 int
5959gui_get_x11_windis(Window *win, Display **dis)
5960{
Bram Moolenaar98921892016-02-23 17:14:37 +01005961 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005963 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
5964 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 return OK;
5966 }
5967
5968 *dis = NULL;
5969 *win = 0;
5970 return FAIL;
5971}
5972#endif
5973
5974#if defined(FEAT_CLIENTSERVER) \
5975 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
5976
5977 Display *
5978gui_mch_get_display(void)
5979{
Bram Moolenaar98921892016-02-23 17:14:37 +01005980 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
5981 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982 else
5983 return NULL;
5984}
5985#endif
5986
5987 void
5988gui_mch_beep(void)
5989{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 GdkDisplay *display;
5991
Bram Moolenaar98921892016-02-23 17:14:37 +01005992 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993 display = gtk_widget_get_display(gui.mainwin);
5994 else
5995 display = gdk_display_get_default();
5996
5997 if (display != NULL)
5998 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999}
6000
6001 void
6002gui_mch_flash(int msec)
6003{
Bram Moolenaar98921892016-02-23 17:14:37 +01006004#if GTK_CHECK_VERSION(3,0,0)
6005 /* TODO Replace GdkGC with Cairo */
6006 (void)msec;
6007#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006008 GdkGCValues values;
6009 GdkGC *invert_gc;
6010
6011 if (gui.drawarea->window == NULL)
6012 return;
6013
6014 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6015 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6016 values.function = GDK_XOR;
6017 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6018 &values,
6019 GDK_GC_FOREGROUND |
6020 GDK_GC_BACKGROUND |
6021 GDK_GC_FUNCTION);
6022 gdk_gc_set_exposures(invert_gc,
6023 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6024 /*
6025 * Do a visual beep by changing back and forth in some undetermined way,
6026 * the foreground and background colors. This is due to the fact that
6027 * there can't be really any prediction about the effects of XOR on
6028 * arbitrary X11 servers. However this seems to be enough for what we
6029 * intend it to do.
6030 */
6031 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6032 TRUE,
6033 0, 0,
6034 FILL_X((int)Columns) + gui.border_offset,
6035 FILL_Y((int)Rows) + gui.border_offset);
6036
6037 gui_mch_flush();
6038 ui_delay((long)msec, TRUE); /* wait so many msec */
6039
6040 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6041 TRUE,
6042 0, 0,
6043 FILL_X((int)Columns) + gui.border_offset,
6044 FILL_Y((int)Rows) + gui.border_offset);
6045
6046 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006047#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048}
6049
6050/*
6051 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6052 */
6053 void
6054gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6055{
Bram Moolenaar98921892016-02-23 17:14:37 +01006056#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006057 const GdkRectangle rect = {
6058 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6059 };
6060 cairo_t * const cr = cairo_create(gui.surface);
6061
Bram Moolenaar36edf062016-07-21 22:10:12 +02006062 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006063# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6064 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6065# else
6066 /* Give an implementation for older cairo versions if necessary. */
6067# endif
6068 gdk_cairo_rectangle(cr, &rect);
6069 cairo_fill(cr);
6070
6071 cairo_destroy(cr);
6072
6073 if (!gui.by_signal)
6074 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6075 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006076#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077 GdkGCValues values;
6078 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006079
6080 if (gui.drawarea->window == NULL)
6081 return;
6082
Bram Moolenaar89d40322006-08-29 15:30:07 +00006083 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6084 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085 values.function = GDK_XOR;
6086 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6087 &values,
6088 GDK_GC_FOREGROUND |
6089 GDK_GC_BACKGROUND |
6090 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006091 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6092 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006093 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6094 TRUE,
6095 FILL_X(c), FILL_Y(r),
6096 (nc) * gui.char_width, (nr) * gui.char_height);
6097 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006098#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099}
6100
6101/*
6102 * Iconify the GUI window.
6103 */
6104 void
6105gui_mch_iconify(void)
6106{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006108}
6109
6110#if defined(FEAT_EVAL) || defined(PROTO)
6111/*
6112 * Bring the Vim window to the foreground.
6113 */
6114 void
6115gui_mch_set_foreground(void)
6116{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118}
6119#endif
6120
6121/*
6122 * Draw a cursor without focus.
6123 */
6124 void
6125gui_mch_draw_hollow_cursor(guicolor_T color)
6126{
6127 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006128#if GTK_CHECK_VERSION(3,0,0)
6129 cairo_t *cr;
6130#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131
Bram Moolenaar98921892016-02-23 17:14:37 +01006132 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133 return;
6134
Bram Moolenaar98921892016-02-23 17:14:37 +01006135#if GTK_CHECK_VERSION(3,0,0)
6136 cr = cairo_create(gui.surface);
6137#endif
6138
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139 gui_mch_set_fg_color(color);
6140
Bram Moolenaar98921892016-02-23 17:14:37 +01006141#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006142 cairo_set_source_rgba(cr,
6143 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6144 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006145#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006147#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148 if (mb_lefthalve(gui.row, gui.col))
6149 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006150#if GTK_CHECK_VERSION(3,0,0)
6151 cairo_set_line_width(cr, 1.0);
6152 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6153 cairo_rectangle(cr,
6154 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6155 i * gui.char_width - 1, gui.char_height - 1);
6156 cairo_stroke(cr);
6157 cairo_destroy(cr);
6158#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6160 FALSE,
6161 FILL_X(gui.col), FILL_Y(gui.row),
6162 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006163#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164}
6165
6166/*
6167 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6168 * color "color".
6169 */
6170 void
6171gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6172{
Bram Moolenaar98921892016-02-23 17:14:37 +01006173 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174 return;
6175
6176 gui_mch_set_fg_color(color);
6177
Bram Moolenaar98921892016-02-23 17:14:37 +01006178#if GTK_CHECK_VERSION(3,0,0)
6179 {
6180 cairo_t *cr;
6181
6182 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006183 cairo_set_source_rgba(cr,
6184 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6185 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006186 cairo_rectangle(cr,
6187# ifdef FEAT_RIGHTLEFT
6188 /* vertical line should be on the right of current point */
6189 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6190# endif
6191 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6192 w, h);
6193 cairo_fill(cr);
6194 cairo_destroy(cr);
6195 }
6196#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6198 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6199 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006200# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006201 /* vertical line should be on the right of current point */
6202 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006203# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204 FILL_X(gui.col),
6205 FILL_Y(gui.row) + gui.char_height - h,
6206 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006207#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208}
6209
6210
6211/*
6212 * Catch up with any queued X11 events. This may put keyboard input into the
6213 * input buffer, call resize call-backs, trigger timers etc. If there is
6214 * nothing in the X11 event queue (& no timers pending), then we return
6215 * immediately.
6216 */
6217 void
6218gui_mch_update(void)
6219{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006220 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6221 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222}
6223
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006224 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225input_timer_cb(gpointer data)
6226{
6227 int *timed_out = (int *) data;
6228
Bram Moolenaar49325942007-05-10 19:19:59 +00006229 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230 *timed_out = TRUE;
6231
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232 return FALSE; /* don't happen again */
6233}
6234
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006235#ifdef FEAT_JOB_CHANNEL
6236 static timeout_cb_type
6237channel_poll_cb(gpointer data UNUSED)
6238{
6239 /* Using an event handler for a channel that may be disconnected does
6240 * not work, it hangs. Instead poll for messages. */
6241 channel_handle_events(TRUE);
6242 parse_queued_messages();
6243
6244 return TRUE; /* repeat */
6245}
6246#endif
6247
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248/*
6249 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6250 * from the keyboard.
6251 * wtime == -1 Wait forever.
6252 * wtime == 0 This should never happen.
6253 * wtime > 0 Wait wtime milliseconds for a character.
6254 * Returns OK if a character was found to be available within the given time,
6255 * or FAIL otherwise.
6256 */
6257 int
6258gui_mch_wait_for_chars(long wtime)
6259{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006260 int focus;
6261 guint timer;
6262 static int timed_out;
6263 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006264#ifdef FEAT_JOB_CHANNEL
6265 guint channel_timer = 0;
6266#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267
6268 timed_out = FALSE;
6269
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006270 // This timeout makes sure that we will return if no characters arrived in
6271 // time. If "wtime" is zero just use one.
6272 if (wtime >= 0)
Bram Moolenaar34a58742019-02-03 15:28:28 +01006273 timer = timeout_add(wtime == 0 ? 1L : wtime,
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006274 input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275 else
6276 timer = 0;
6277
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006278#ifdef FEAT_JOB_CHANNEL
6279 /* If there is a channel with the keep_open flag we need to poll for input
6280 * on them. */
6281 if (channel_any_keep_open())
6282 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6283#endif
6284
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 focus = gui.in_focus;
6286
6287 do
6288 {
6289 /* Stop or start blinking when focus changes */
6290 if (gui.in_focus != focus)
6291 {
6292 if (gui.in_focus)
6293 gui_mch_start_blink();
6294 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006295 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296 focus = gui.in_focus;
6297 }
6298
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006299#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006300# ifdef FEAT_TIMERS
6301 did_add_timer = FALSE;
6302# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006303 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006304# ifdef FEAT_TIMERS
6305 if (did_add_timer)
6306 /* Need to recompute the waiting time. */
6307 goto theend;
6308# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006309#endif
6310
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311 /*
6312 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006313 * Skip this if input is available anyway (can happen in rare
6314 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006316 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006317 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318
6319 /* Got char, return immediately */
6320 if (input_available())
6321 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006322 retval = OK;
6323 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324 }
6325 } while (wtime < 0 || !timed_out);
6326
6327 /*
6328 * Flush all eventually pending (drawing) events.
6329 */
6330 gui_mch_update();
6331
Bram Moolenaar4231da42016-06-02 14:30:04 +02006332theend:
6333 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006334 timeout_remove(timer);
6335#ifdef FEAT_JOB_CHANNEL
6336 if (channel_timer != 0)
6337 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006338#endif
6339
6340 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341}
6342
6343
6344/****************************************************************************
6345 * Output drawing routines.
6346 ****************************************************************************/
6347
6348
6349/* Flush any output to the screen */
6350 void
6351gui_mch_flush(void)
6352{
Bram Moolenaar98921892016-02-23 17:14:37 +01006353 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006354#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006355 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006356#else
6357 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359}
6360
6361/*
6362 * Clear a rectangular region of the screen from text pos (row1, col1) to
6363 * (row2, col2) inclusive.
6364 */
6365 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006366gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006368
6369 int col1 = check_col(col1arg);
6370 int col2 = check_col(col2arg);
6371 int row1 = check_row(row1arg);
6372 int row2 = check_row(row2arg);
6373
Bram Moolenaar98921892016-02-23 17:14:37 +01006374#if GTK_CHECK_VERSION(3,0,0)
6375 if (gtk_widget_get_window(gui.drawarea) == NULL)
6376 return;
6377#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006378 GdkColor color;
6379
6380 if (gui.drawarea->window == NULL)
6381 return;
6382
6383 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006384#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385
Bram Moolenaar98921892016-02-23 17:14:37 +01006386#if GTK_CHECK_VERSION(3,0,0)
6387 {
6388 /* Add one pixel to the far right column in case a double-stroked
6389 * bold glyph may sit there. */
6390 const GdkRectangle rect = {
6391 FILL_X(col1), FILL_Y(row1),
6392 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6393 (row2 - row1 + 1) * gui.char_height
6394 };
6395 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6396 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006397# if GTK_CHECK_VERSION(3,22,2)
6398 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6399# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006400 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6401 if (pat != NULL)
6402 cairo_set_source(cr, pat);
6403 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006404 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006405# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006406 gdk_cairo_rectangle(cr, &rect);
6407 cairo_fill(cr);
6408 cairo_destroy(cr);
6409
6410 if (!gui.by_signal)
6411 gdk_window_invalidate_rect(win, &rect, FALSE);
6412 }
6413#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006414 gdk_gc_set_foreground(gui.text_gc, &color);
6415
6416 /* Clear one extra pixel at the far right, for when bold characters have
6417 * spilled over to the window border. */
6418 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6419 FILL_X(col1), FILL_Y(row1),
6420 (col2 - col1 + 1) * gui.char_width
6421 + (col2 == Columns - 1),
6422 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006423#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424}
6425
Bram Moolenaar98921892016-02-23 17:14:37 +01006426#if GTK_CHECK_VERSION(3,0,0)
6427 static void
6428gui_gtk_window_clear(GdkWindow *win)
6429{
6430 const GdkRectangle rect = {
6431 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6432 };
6433 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006434# if GTK_CHECK_VERSION(3,22,2)
6435 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6436# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006437 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6438 if (pat != NULL)
6439 cairo_set_source(cr, pat);
6440 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006441 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006442# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006443 gdk_cairo_rectangle(cr, &rect);
6444 cairo_fill(cr);
6445 cairo_destroy(cr);
6446
6447 if (!gui.by_signal)
6448 gdk_window_invalidate_rect(win, &rect, FALSE);
6449}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006450#else
6451# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006452#endif
6453
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454 void
6455gui_mch_clear_all(void)
6456{
Bram Moolenaar98921892016-02-23 17:14:37 +01006457 if (gtk_widget_get_window(gui.drawarea) != NULL)
6458 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459}
6460
Bram Moolenaar98921892016-02-23 17:14:37 +01006461#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462/*
6463 * Redraw any text revealed by scrolling up/down.
6464 */
6465 static void
6466check_copy_area(void)
6467{
6468 GdkEvent *event;
6469 int expose_count;
6470
6471 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6472 return;
6473
6474 /* Avoid redrawing the cursor while scrolling or it'll end up where
6475 * we don't want it to be. I'm not sure if it's correct to call
6476 * gui_dont_update_cursor() at this point but it works as a quick
6477 * fix for now. */
Bram Moolenaar107abd22016-08-12 14:08:25 +02006478 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479
6480 do
6481 {
6482 /* Wait to check whether the scroll worked or not. */
6483 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6484
6485 if (event == NULL)
6486 break; /* received NoExpose event */
6487
6488 gui_redraw(event->expose.area.x, event->expose.area.y,
6489 event->expose.area.width, event->expose.area.height);
6490
6491 expose_count = event->expose.count;
6492 gdk_event_free(event);
6493 }
6494 while (expose_count > 0); /* more events follow */
6495
6496 gui_can_update_cursor();
6497}
Bram Moolenaar98921892016-02-23 17:14:37 +01006498#endif /* !GTK_CHECK_VERSION(3,0,0) */
6499
6500#if GTK_CHECK_VERSION(3,0,0)
6501 static void
6502gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6503 int src_x, int src_y,
6504 int width, int height)
6505{
6506 cairo_t * const cr = cairo_create(gui.surface);
6507
6508 cairo_rectangle(cr, dest_x, dest_y, width, height);
6509 cairo_clip(cr);
6510 cairo_push_group(cr);
6511 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6512 cairo_paint(cr);
6513 cairo_pop_group_to_source(cr);
6514 cairo_paint(cr);
6515
6516 cairo_destroy(cr);
6517}
6518#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519
6520/*
6521 * Delete the given number of lines from the given row, scrolling up any
6522 * text further down within the scroll region.
6523 */
6524 void
6525gui_mch_delete_lines(int row, int num_lines)
6526{
Bram Moolenaar98921892016-02-23 17:14:37 +01006527#if GTK_CHECK_VERSION(3,0,0)
6528 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6529 const int nrows = gui.scroll_region_bot - row + 1;
6530 const int src_nrows = nrows - num_lines;
6531
6532 gui_gtk_surface_copy_rect(
6533 FILL_X(gui.scroll_region_left), FILL_Y(row),
6534 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6535 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6536 gui_clear_block(
6537 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6538 gui.scroll_region_bot, gui.scroll_region_right);
6539 gui_gtk3_redraw(
6540 FILL_X(gui.scroll_region_left), FILL_Y(row),
6541 gui.char_width * ncols + 1, gui.char_height * nrows);
6542 if (!gui.by_signal)
6543 gtk_widget_queue_draw_area(gui.drawarea,
6544 FILL_X(gui.scroll_region_left), FILL_Y(row),
6545 gui.char_width * ncols + 1, gui.char_height * nrows);
6546#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006547 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6548 return; /* Can't see the window */
6549
6550 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6551 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6552
6553 /* copy one extra pixel, for when bold has spilled over */
6554 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6555 FILL_X(gui.scroll_region_left), FILL_Y(row),
6556 gui.drawarea->window,
6557 FILL_X(gui.scroll_region_left),
6558 FILL_Y(row + num_lines),
6559 gui.char_width * (gui.scroll_region_right
6560 - gui.scroll_region_left + 1) + 1,
6561 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6562
6563 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6564 gui.scroll_region_left,
6565 gui.scroll_region_bot, gui.scroll_region_right);
6566 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006567#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006568}
6569
6570/*
6571 * Insert the given number of lines before the given row, scrolling down any
6572 * following text within the scroll region.
6573 */
6574 void
6575gui_mch_insert_lines(int row, int num_lines)
6576{
Bram Moolenaar98921892016-02-23 17:14:37 +01006577#if GTK_CHECK_VERSION(3,0,0)
6578 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6579 const int nrows = gui.scroll_region_bot - row + 1;
6580 const int src_nrows = nrows - num_lines;
6581
6582 gui_gtk_surface_copy_rect(
6583 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6584 FILL_X(gui.scroll_region_left), FILL_Y(row),
6585 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6586 gui_mch_clear_block(
6587 row, gui.scroll_region_left,
6588 row + num_lines - 1, gui.scroll_region_right);
6589 gui_gtk3_redraw(
6590 FILL_X(gui.scroll_region_left), FILL_Y(row),
6591 gui.char_width * ncols + 1, gui.char_height * nrows);
6592 if (!gui.by_signal)
6593 gtk_widget_queue_draw_area(gui.drawarea,
6594 FILL_X(gui.scroll_region_left), FILL_Y(row),
6595 gui.char_width * ncols + 1, gui.char_height * nrows);
6596#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6598 return; /* Can't see the window */
6599
6600 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6601 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6602
6603 /* copy one extra pixel, for when bold has spilled over */
6604 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6605 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6606 gui.drawarea->window,
6607 FILL_X(gui.scroll_region_left), FILL_Y(row),
6608 gui.char_width * (gui.scroll_region_right
6609 - gui.scroll_region_left + 1) + 1,
6610 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6611
6612 gui_clear_block(row, gui.scroll_region_left,
6613 row + num_lines - 1, gui.scroll_region_right);
6614 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006615#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006616}
6617
6618/*
6619 * X Selection stuff, for cutting and pasting text to other windows.
6620 */
6621 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006622clip_mch_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006623{
6624 GdkAtom target;
6625 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006626 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627
6628 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6629 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006630 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6631 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632 received_selection = RS_NONE;
6633 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6634
6635 gtk_selection_convert(gui.drawarea,
6636 cbd->gtk_sel_atom, target,
6637 (guint32)GDK_CURRENT_TIME);
6638
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006639 /* Hack: Wait up to three seconds for the selection. A hang was
6640 * noticed here when using the netrw plugin combined with ":gui"
6641 * during the FocusGained event. */
6642 start = time(NULL);
6643 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006644 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006645
6646 if (received_selection != RS_FAIL)
6647 return;
6648 }
6649
6650 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006651 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6652 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006653}
6654
6655/*
6656 * Disown the selection.
6657 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006658 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006659clip_mch_lose_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01006661 if (!in_selection_clear_event)
6662 {
6663 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6664 gui_mch_update();
6665 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666}
6667
6668/*
6669 * Own the selection and return OK if it worked.
6670 */
6671 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006672clip_mch_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006673{
6674 int success;
6675
6676 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006677 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006678 gui_mch_update();
6679 return (success) ? OK : FAIL;
6680}
6681
6682/*
6683 * Send the current selection to the clipboard. Do nothing for X because we
6684 * will fill in the selection only when requested by another app.
6685 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006687clip_mch_set_selection(Clipboard_T *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006688{
6689}
6690
Bram Moolenaar113e1072019-01-20 15:30:40 +01006691#if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006692 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02006693clip_gtk_owner_exists(Clipboard_T *cbd)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006694{
6695 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6696}
Bram Moolenaar113e1072019-01-20 15:30:40 +01006697#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006698
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699
6700#if defined(FEAT_MENU) || defined(PROTO)
6701/*
6702 * Make a menu item appear either active or not active (grey or not grey).
6703 */
6704 void
6705gui_mch_menu_grey(vimmenu_T *menu, int grey)
6706{
6707 if (menu->id == NULL)
6708 return;
6709
6710 if (menu_is_separator(menu->name))
6711 grey = TRUE;
6712
6713 gui_mch_menu_hidden(menu, FALSE);
6714 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01006715 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716 {
6717 gtk_widget_set_sensitive(menu->id, !grey);
6718 gui_mch_update();
6719 }
6720}
6721
6722/*
6723 * Make menu item hidden or not hidden.
6724 */
6725 void
6726gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6727{
6728 if (menu->id == 0)
6729 return;
6730
6731 if (hidden)
6732 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006733 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734 {
6735 gtk_widget_hide(menu->id);
6736 gui_mch_update();
6737 }
6738 }
6739 else
6740 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006741 if (!gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006742 {
6743 gtk_widget_show(menu->id);
6744 gui_mch_update();
6745 }
6746 }
6747}
6748
6749/*
6750 * This is called after setting all the menus to grey/hidden or not.
6751 */
6752 void
6753gui_mch_draw_menubar(void)
6754{
6755 /* just make sure that the visual changes get effect immediately */
6756 gui_mch_update();
6757}
6758#endif /* FEAT_MENU */
6759
6760/*
6761 * Scrollbar stuff.
6762 */
6763 void
6764gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6765{
6766 if (sb->id == NULL)
6767 return;
6768
Bram Moolenaar98921892016-02-23 17:14:37 +01006769 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006770 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006771}
6772
6773
6774/*
6775 * Return the RGB value of a pixel as long.
6776 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006777 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006778gui_mch_get_rgb(guicolor_T pixel)
6779{
Bram Moolenaar98921892016-02-23 17:14:37 +01006780#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006781 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006782#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006783 GdkColor color;
6784
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6786 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006787
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006788 return (guicolor_T)(
6789 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006790 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006791 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02006792#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006793}
6794
6795/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006796 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006797 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006798 void
6799gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006800{
Bram Moolenaar98921892016-02-23 17:14:37 +01006801 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802}
6803
6804 void
6805gui_mch_setmouse(int x, int y)
6806{
6807 /* Sorry for the Xlib call, but we can't avoid it, since there is no
6808 * internal GDK mechanism present to accomplish this. (and for good
6809 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01006810 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
6811 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
6812 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006813}
6814
6815
6816#ifdef FEAT_MOUSESHAPE
6817/* The last set mouse pointer shape is remembered, to be used when it goes
6818 * from hidden to not hidden. */
6819static int last_shape = 0;
6820#endif
6821
6822/*
6823 * Use the blank mouse pointer or not.
6824 *
6825 * hide: TRUE = use blank ptr, FALSE = use parent ptr
6826 */
6827 void
6828gui_mch_mousehide(int hide)
6829{
6830 if (gui.pointer_hidden != hide)
6831 {
6832 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01006833 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006834 {
6835 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01006836 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6837 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838 else
6839#ifdef FEAT_MOUSESHAPE
6840 mch_set_mouse_shape(last_shape);
6841#else
Bram Moolenaar25328e32018-09-11 21:30:09 +02006842 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006843#endif
6844 }
6845 }
6846}
6847
6848#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
6849
6850/* Table for shape IDs. Keep in sync with the mshape_names[] table in
6851 * misc2.c! */
6852static const int mshape_ids[] =
6853{
6854 GDK_LEFT_PTR, /* arrow */
6855 GDK_CURSOR_IS_PIXMAP, /* blank */
6856 GDK_XTERM, /* beam */
6857 GDK_SB_V_DOUBLE_ARROW, /* updown */
6858 GDK_SIZING, /* udsizing */
6859 GDK_SB_H_DOUBLE_ARROW, /* leftright */
6860 GDK_SIZING, /* lrsizing */
6861 GDK_WATCH, /* busy */
6862 GDK_X_CURSOR, /* no */
6863 GDK_CROSSHAIR, /* crosshair */
6864 GDK_HAND1, /* hand1 */
6865 GDK_HAND2, /* hand2 */
6866 GDK_PENCIL, /* pencil */
6867 GDK_QUESTION_ARROW, /* question */
6868 GDK_RIGHT_PTR, /* right-arrow */
6869 GDK_CENTER_PTR, /* up-arrow */
6870 GDK_LEFT_PTR /* last one */
6871};
6872
6873 void
6874mch_set_mouse_shape(int shape)
6875{
6876 int id;
6877 GdkCursor *c;
6878
Bram Moolenaar98921892016-02-23 17:14:37 +01006879 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006880 return;
6881
6882 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01006883 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6884 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885 else
6886 {
6887 if (shape >= MSHAPE_NUMBERED)
6888 {
6889 id = shape - MSHAPE_NUMBERED;
6890 if (id >= GDK_LAST_CURSOR)
6891 id = GDK_LEFT_PTR;
6892 else
6893 id &= ~1; /* they are always even (why?) */
6894 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006895 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006896 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00006897 else
6898 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00006900 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01006901 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01006902# if GTK_CHECK_VERSION(3,0,0)
6903 g_object_unref(G_OBJECT(c));
6904# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006906# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907 }
6908 if (shape != MSHAPE_HIDE)
6909 last_shape = shape;
6910}
6911#endif /* FEAT_MOUSESHAPE */
6912
6913
6914#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6915/*
6916 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
6917 * scaled down if the current font is not big enough, or scaled up if the image
6918 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
6919 * will be cut off if the current font is not big enough, or centered if it's
6920 * too small.
6921 */
6922# define SIGN_WIDTH (2 * gui.char_width)
6923# define SIGN_HEIGHT (gui.char_height)
6924# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
6925
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926 void
6927gui_mch_drawsign(int row, int col, int typenr)
6928{
6929 GdkPixbuf *sign;
6930
6931 sign = (GdkPixbuf *)sign_get_image(typenr);
6932
Bram Moolenaar98921892016-02-23 17:14:37 +01006933 if (sign != NULL && gui.drawarea != NULL
6934 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935 {
6936 int width;
6937 int height;
6938 int xoffset;
6939 int yoffset;
6940 int need_scale;
6941
6942 width = gdk_pixbuf_get_width(sign);
6943 height = gdk_pixbuf_get_height(sign);
6944 /*
6945 * Decide whether we need to scale. Allow one pixel of border
6946 * width to be cut off, in order to avoid excessive scaling for
6947 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006948 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006949 */
6950 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006951 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952 || (width < 3 * SIGN_WIDTH / 4
6953 && height < 3 * SIGN_HEIGHT / 4));
6954 if (need_scale)
6955 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006956 double aspect;
6957 int w = width;
6958 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959
6960 /* Keep the original aspect ratio */
6961 aspect = (double)height / (double)width;
6962 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
6963 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006964 if (((double)(MAX(height, SIGN_HEIGHT)) /
6965 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
6966 {
6967 /* Change the aspect ratio by at most 15% to fill the
Bram Moolenaarbdace832019-03-02 10:13:42 +01006968 * available space completely. */
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006969 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
6970 height = MIN(height, SIGN_HEIGHT);
6971 }
6972 else
6973 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006975 if (w == width && h == height)
6976 {
6977 /* no change in dimensions; don't decrease reference counter
6978 * (below) */
6979 need_scale = FALSE;
6980 }
6981 else
6982 {
6983 /* This doesn't seem to be worth caching, and doing so would
6984 * complicate the code quite a bit. */
6985 sign = gdk_pixbuf_scale_simple(sign, width, height,
6986 GDK_INTERP_BILINEAR);
6987 if (sign == NULL)
6988 return; /* out of memory */
6989 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006990 }
6991
6992 /* The origin is the upper-left corner of the pixmap. Therefore
6993 * these offset may become negative if the pixmap is smaller than
6994 * the 2x1 cells reserved for the sign icon. */
6995 xoffset = (width - SIGN_WIDTH) / 2;
6996 yoffset = (height - SIGN_HEIGHT) / 2;
6997
Bram Moolenaar98921892016-02-23 17:14:37 +01006998# if GTK_CHECK_VERSION(3,0,0)
6999 {
7000 cairo_t *cr;
7001 cairo_surface_t *bg_surf;
7002 cairo_t *bg_cr;
7003 cairo_surface_t *sign_surf;
7004 cairo_t *sign_cr;
7005
7006 cr = cairo_create(gui.surface);
7007
7008 bg_surf = cairo_surface_create_similar(gui.surface,
7009 cairo_surface_get_content(gui.surface),
7010 SIGN_WIDTH, SIGN_HEIGHT);
7011 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007012 cairo_set_source_rgba(bg_cr,
7013 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7014 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007015 cairo_paint(bg_cr);
7016
7017 sign_surf = cairo_surface_create_similar(gui.surface,
7018 cairo_surface_get_content(gui.surface),
7019 SIGN_WIDTH, SIGN_HEIGHT);
7020 sign_cr = cairo_create(sign_surf);
7021 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7022 cairo_paint(sign_cr);
7023
7024 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7025 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7026 cairo_paint(sign_cr);
7027
7028 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7029 cairo_paint(cr);
7030
7031 cairo_destroy(sign_cr);
7032 cairo_surface_destroy(sign_surf);
7033 cairo_destroy(bg_cr);
7034 cairo_surface_destroy(bg_surf);
7035 cairo_destroy(cr);
7036
7037 if (!gui.by_signal)
7038 gtk_widget_queue_draw_area(gui.drawarea,
7039 FILL_X(col), FILL_Y(col), width, height);
7040
7041 }
7042# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7044
7045 gdk_draw_rectangle(gui.drawarea->window,
7046 gui.text_gc,
7047 TRUE,
7048 FILL_X(col),
7049 FILL_Y(row),
7050 SIGN_WIDTH,
7051 SIGN_HEIGHT);
7052
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053 gdk_pixbuf_render_to_drawable_alpha(sign,
7054 gui.drawarea->window,
7055 MAX(0, xoffset),
7056 MAX(0, yoffset),
7057 FILL_X(col) - MIN(0, xoffset),
7058 FILL_Y(row) - MIN(0, yoffset),
7059 MIN(width, SIGN_WIDTH),
7060 MIN(height, SIGN_HEIGHT),
7061 GDK_PIXBUF_ALPHA_BILEVEL,
7062 127,
7063 GDK_RGB_DITHER_NORMAL,
7064 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007065# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066 if (need_scale)
7067 g_object_unref(sign);
7068 }
7069}
7070
7071 void *
7072gui_mch_register_sign(char_u *signfile)
7073{
7074 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7075 {
7076 GdkPixbuf *sign;
7077 GError *error = NULL;
7078 char_u *message;
7079
7080 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7081
7082 if (error == NULL)
7083 return sign;
7084
7085 message = (char_u *)error->message;
7086
7087 if (message != NULL && input_conv.vc_type != CONV_NONE)
7088 message = string_convert(&input_conv, message, NULL);
7089
7090 if (message != NULL)
7091 {
7092 /* The error message is already translated and will be more
7093 * descriptive than anything we could possibly do ourselves. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007094 semsg("E255: %s", message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095
7096 if (input_conv.vc_type != CONV_NONE)
7097 vim_free(message);
7098 }
7099 g_error_free(error);
7100 }
7101
7102 return NULL;
7103}
7104
7105 void
7106gui_mch_destroy_sign(void *sign)
7107{
7108 if (sign != NULL)
7109 g_object_unref(sign);
7110}
7111
Bram Moolenaar071d4272004-06-13 20:20:40 +00007112#endif /* FEAT_SIGN_ICONS */