blob: 3a5c2c68dec2701d9698f2d731f0cccd14a81529 [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>
89# ifdef WIN3264
90# 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 Moolenaar071d4272004-06-13 20:20:40 +0000162#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
163/*
164 * Atoms used to communicate save-yourself from the X11 session manager. There
165 * is no need to move them into the GUI struct, since they should be constant.
166 */
167static GdkAtom wm_protocols_atom = GDK_NONE;
168static GdkAtom save_yourself_atom = GDK_NONE;
169#endif
170
171/*
172 * Atoms used to control/reference X11 selections.
173 */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000174static GdkAtom html_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175static GdkAtom utf8_string_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178
179/*
180 * Keycodes recognized by vim.
181 * NOTE: when changing this, the table in gui_x11.c probably needs the same
182 * change!
183 */
184static struct special_key
185{
186 guint key_sym;
187 char_u code0;
188 char_u code1;
189}
190const special_keys[] =
191{
192 {GDK_Up, 'k', 'u'},
193 {GDK_Down, 'k', 'd'},
194 {GDK_Left, 'k', 'l'},
195 {GDK_Right, 'k', 'r'},
196 {GDK_F1, 'k', '1'},
197 {GDK_F2, 'k', '2'},
198 {GDK_F3, 'k', '3'},
199 {GDK_F4, 'k', '4'},
200 {GDK_F5, 'k', '5'},
201 {GDK_F6, 'k', '6'},
202 {GDK_F7, 'k', '7'},
203 {GDK_F8, 'k', '8'},
204 {GDK_F9, 'k', '9'},
205 {GDK_F10, 'k', ';'},
206 {GDK_F11, 'F', '1'},
207 {GDK_F12, 'F', '2'},
208 {GDK_F13, 'F', '3'},
209 {GDK_F14, 'F', '4'},
210 {GDK_F15, 'F', '5'},
211 {GDK_F16, 'F', '6'},
212 {GDK_F17, 'F', '7'},
213 {GDK_F18, 'F', '8'},
214 {GDK_F19, 'F', '9'},
215 {GDK_F20, 'F', 'A'},
216 {GDK_F21, 'F', 'B'},
217 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */
218 {GDK_F22, 'F', 'C'},
219 {GDK_F23, 'F', 'D'},
220 {GDK_F24, 'F', 'E'},
221 {GDK_F25, 'F', 'F'},
222 {GDK_F26, 'F', 'G'},
223 {GDK_F27, 'F', 'H'},
224 {GDK_F28, 'F', 'I'},
225 {GDK_F29, 'F', 'J'},
226 {GDK_F30, 'F', 'K'},
227 {GDK_F31, 'F', 'L'},
228 {GDK_F32, 'F', 'M'},
229 {GDK_F33, 'F', 'N'},
230 {GDK_F34, 'F', 'O'},
231 {GDK_F35, 'F', 'P'},
232#ifdef SunXK_F36
233 {SunXK_F36, 'F', 'Q'},
234 {SunXK_F37, 'F', 'R'},
235#endif
236 {GDK_Help, '%', '1'},
237 {GDK_Undo, '&', '8'},
238 {GDK_BackSpace, 'k', 'b'},
239 {GDK_Insert, 'k', 'I'},
240 {GDK_Delete, 'k', 'D'},
241 {GDK_3270_BackTab, 'k', 'B'},
242 {GDK_Clear, 'k', 'C'},
243 {GDK_Home, 'k', 'h'},
244 {GDK_End, '@', '7'},
245 {GDK_Prior, 'k', 'P'},
246 {GDK_Next, 'k', 'N'},
247 {GDK_Print, '%', '9'},
248 /* Keypad keys: */
249 {GDK_KP_Left, 'k', 'l'},
250 {GDK_KP_Right, 'k', 'r'},
251 {GDK_KP_Up, 'k', 'u'},
252 {GDK_KP_Down, 'k', 'd'},
253 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
254 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
255 {GDK_KP_Home, 'K', '1'},
256 {GDK_KP_End, 'K', '4'},
257 {GDK_KP_Prior, 'K', '3'}, /* page up */
258 {GDK_KP_Next, 'K', '5'}, /* page down */
259
260 {GDK_KP_Add, 'K', '6'},
261 {GDK_KP_Subtract, 'K', '7'},
262 {GDK_KP_Divide, 'K', '8'},
263 {GDK_KP_Multiply, 'K', '9'},
264 {GDK_KP_Enter, 'K', 'A'},
265 {GDK_KP_Decimal, 'K', 'B'},
266
267 {GDK_KP_0, 'K', 'C'},
268 {GDK_KP_1, 'K', 'D'},
269 {GDK_KP_2, 'K', 'E'},
270 {GDK_KP_3, 'K', 'F'},
271 {GDK_KP_4, 'K', 'G'},
272 {GDK_KP_5, 'K', 'H'},
273 {GDK_KP_6, 'K', 'I'},
274 {GDK_KP_7, 'K', 'J'},
275 {GDK_KP_8, 'K', 'K'},
276 {GDK_KP_9, 'K', 'L'},
277
278 /* End of list marker: */
279 {0, 0, 0}
280};
281
282/*
283 * Flags for command line options table below.
284 */
285#define ARG_FONT 1
286#define ARG_GEOMETRY 2
287#define ARG_REVERSE 3
288#define ARG_NOREVERSE 4
289#define ARG_BACKGROUND 5
290#define ARG_FOREGROUND 6
291#define ARG_ICONIC 7
292#define ARG_ROLE 8
293#define ARG_NETBEANS 9
294#define ARG_XRM 10 /* ignored */
295#define ARG_MENUFONT 11 /* ignored */
296#define ARG_INDEX_MASK 0x00ff
297#define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */
298#define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */
299#define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */
300#define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */
301#define ARG_KEEP 0x1000 /* don't remove argument from argv[] */
302
303/*
304 * This table holds all the X GUI command line options allowed. This includes
305 * the standard ones so that we can skip them when Vim is started without the
306 * GUI (but the GUI might start up later).
307 *
308 * When changing this, also update doc/gui_x11.txt and the usage message!!!
309 */
310typedef struct
311{
312 const char *name;
313 unsigned int flags;
314}
315cmdline_option_T;
316
317static const cmdline_option_T cmdline_options[] =
318{
319 /* We handle these options ourselves */
320 {"-fn", ARG_FONT|ARG_HAS_VALUE},
321 {"-font", ARG_FONT|ARG_HAS_VALUE},
322 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE},
323 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE},
324 {"-rv", ARG_REVERSE},
325 {"-reverse", ARG_REVERSE},
326 {"+rv", ARG_NOREVERSE},
327 {"+reverse", ARG_NOREVERSE},
328 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE},
329 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE},
330 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE},
331 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE},
332 {"-iconic", ARG_ICONIC},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333 {"--role", ARG_ROLE|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334#ifdef FEAT_NETBEANS_INTG
335 {"-nb", ARG_NETBEANS}, /* non-standard value format */
336 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */
337 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
338 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
339#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 /* Arguments handled by GTK (and GNOME) internally. */
341 {"--g-fatal-warnings", ARG_FOR_GTK},
342 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
343 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
344 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
345 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
346 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE},
347 {"--sync", ARG_FOR_GTK},
348 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
349 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
350 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE},
352 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE},
353 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354#ifdef FEAT_GUI_GNOME
355 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE},
356 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE},
357 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE},
358 {"--sm-disable", ARG_FOR_GTK},
359 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE},
360 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE},
361 {"--oaf-private", ARG_FOR_GTK},
362 {"--enable-sound", ARG_FOR_GTK},
363 {"--disable-sound", ARG_FOR_GTK},
364 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE},
365 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI},
366 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP},
367 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI},
368# if 0 /* conflicts with Vim's own --version argument */
369 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI},
370# endif
371 {"--disable-crash-dialog", ARG_FOR_GTK},
372#endif
373 {NULL, 0}
374};
375
376static int gui_argc = 0;
377static char **gui_argv = NULL;
378
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379static const char *role_argument = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
381static const char *restart_command = NULL;
Bram Moolenaar9085f802009-06-03 14:20:21 +0000382static char *abs_restart_command = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383#endif
384static int found_iconic_arg = FALSE;
385
386#ifdef FEAT_GUI_GNOME
387/*
388 * Can't use Gnome if --socketid given
389 */
390static int using_gnome = 0;
391#else
392# define using_gnome 0
393#endif
394
395/*
396 * Parse the GUI related command-line arguments. Any arguments used are
397 * deleted from argv, and *argc is decremented accordingly. This is called
398 * when vim is started, whether or not the GUI has been started.
399 */
400 void
401gui_mch_prepare(int *argc, char **argv)
402{
403 const cmdline_option_T *option;
404 int i = 0;
405 int len = 0;
406
407#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
408 /*
409 * Determine the command used to invoke Vim, to be passed as restart
410 * command to the session manager. If argv[0] contains any directory
411 * components try building an absolute path, otherwise leave it as is.
412 */
413 restart_command = argv[0];
414
415 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
416 {
417 char_u buf[MAXPATHL];
418
419 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000420 {
421 abs_restart_command = (char *)vim_strsave(buf);
422 restart_command = abs_restart_command;
423 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 }
425#endif
426
427 /*
428 * Move all the entries in argv which are relevant to GTK+ and GNOME
429 * into gui_argv. Freed later in gui_mch_init().
430 */
431 gui_argc = 0;
432 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *)));
433
434 g_return_if_fail(gui_argv != NULL);
435
436 gui_argv[gui_argc++] = argv[i++];
437
438 while (i < *argc)
439 {
440 /* Don't waste CPU cycles on non-option arguments. */
441 if (argv[i][0] != '-' && argv[i][0] != '+')
442 {
443 ++i;
444 continue;
445 }
446
447 /* Look for argv[i] in cmdline_options[] table. */
448 for (option = &cmdline_options[0]; option->name != NULL; ++option)
449 {
450 len = strlen(option->name);
451
452 if (strncmp(argv[i], option->name, len) == 0)
453 {
454 if (argv[i][len] == '\0')
455 break;
456 /* allow --foo=bar style */
457 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
458 break;
459#ifdef FEAT_NETBEANS_INTG
460 /* darn, -nb has non-standard syntax */
461 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
462 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
463 break;
464#endif
465 }
466 else if ((option->flags & ARG_COMPAT_LONG)
467 && strcmp(argv[i], option->name + 1) == 0)
468 {
469 /* Replace the standard X arguments "-name" and "-display"
470 * with their GNU-style long option counterparts. */
471 argv[i] = (char *)option->name;
472 break;
473 }
474 }
475 if (option->name == NULL) /* no match */
476 {
477 ++i;
478 continue;
479 }
480
481 if (option->flags & ARG_FOR_GTK)
482 {
483 /* Move the argument into gui_argv, which
484 * will later be passed to gtk_init_check() */
485 gui_argv[gui_argc++] = argv[i];
486 }
487 else
488 {
489 char *value = NULL;
490
491 /* Extract the option's value if there is one.
492 * Accept both "--foo bar" and "--foo=bar" style. */
493 if (option->flags & ARG_HAS_VALUE)
494 {
495 if (argv[i][len] == '=')
496 value = &argv[i][len + 1];
497 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
498 value = argv[i + 1];
499 }
500
501 /* Check for options handled by Vim itself */
502 switch (option->flags & ARG_INDEX_MASK)
503 {
504 case ARG_REVERSE:
505 found_reverse_arg = TRUE;
506 break;
507 case ARG_NOREVERSE:
508 found_reverse_arg = FALSE;
509 break;
510 case ARG_FONT:
511 font_argument = value;
512 break;
513 case ARG_GEOMETRY:
514 if (value != NULL)
515 gui.geom = vim_strsave((char_u *)value);
516 break;
517 case ARG_BACKGROUND:
518 background_argument = value;
519 break;
520 case ARG_FOREGROUND:
521 foreground_argument = value;
522 break;
523 case ARG_ICONIC:
524 found_iconic_arg = TRUE;
525 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 case ARG_ROLE:
527 role_argument = value; /* used later in gui_mch_open() */
528 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529#ifdef FEAT_NETBEANS_INTG
530 case ARG_NETBEANS:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 gui.dofork = FALSE; /* don't fork() when starting GUI */
532 netbeansArg = argv[i];
533 break;
534#endif
535 default:
536 break;
537 }
538 }
539
540 /* These arguments make gnome_program_init() print a message and exit.
Bram Moolenaar717e1962016-08-10 21:28:44 +0200541 * Must start the GUI for this, otherwise ":gui" will exit later!
542 * Only when the GUI can start. */
543 if ((option->flags & ARG_NEEDS_GUI)
544 && gui_mch_early_init_check(FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 gui.starting = TRUE;
546
547 if (option->flags & ARG_KEEP)
548 ++i;
549 else
550 {
551 /* Remove the flag from the argument vector. */
552 if (--*argc > i)
553 {
554 int n_strip = 1;
555
556 /* Move the argument's value as well, if there is one. */
557 if ((option->flags & ARG_HAS_VALUE)
558 && argv[i][len] != '='
559 && strcmp(argv[i + 1], "--") != 0)
560 {
561 ++n_strip;
562 --*argc;
563 if (option->flags & ARG_FOR_GTK)
564 gui_argv[gui_argc++] = argv[i + 1];
565 }
566
567 if (*argc > i)
568 mch_memmove(&argv[i], &argv[i + n_strip],
569 (*argc - i) * sizeof(char *));
570 }
571 argv[*argc] = NULL;
572 }
573 }
574
575 gui_argv[gui_argc] = NULL;
576}
577
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000578#if defined(EXITFREE) || defined(PROTO)
579 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100580gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000581{
582 vim_free(gui_argv);
Bram Moolenaar9085f802009-06-03 14:20:21 +0000583#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
584 vim_free(abs_restart_command);
585#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000586}
587#endif
588
Bram Moolenaar98921892016-02-23 17:14:37 +0100589#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590/*
591 * This should be maybe completely removed.
592 * Doesn't seem possible, since check_copy_area() relies on
593 * this information. --danielk
594 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000596visibility_event(GtkWidget *widget UNUSED,
597 GdkEventVisibility *event,
598 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599{
600 gui.visibility = event->state;
601 /*
602 * When we do an gdk_window_copy_area(), and the window is partially
603 * obscured, we want to receive an event to tell us whether it worked
604 * or not.
605 */
606 if (gui.text_gc != NULL)
607 gdk_gc_set_exposures(gui.text_gc,
608 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
609 return FALSE;
610}
Bram Moolenaar98921892016-02-23 17:14:37 +0100611#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612
613/*
614 * Redraw the corresponding portions of the screen.
615 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100616#if GTK_CHECK_VERSION(3,0,0)
617static gboolean is_key_pressed = FALSE;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100618static gboolean blink_mode = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100619
620static gboolean gui_gtk_is_blink_on(void);
Bram Moolenaar98921892016-02-23 17:14:37 +0100621static void gui_gtk_window_clear(GdkWindow *win);
622
623 static void
624gui_gtk3_redraw(int x, int y, int width, int height)
625{
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100626 /* Range checks are left to gui_redraw_block() */
Bram Moolenaar98921892016-02-23 17:14:37 +0100627 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
628 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
629 GUI_MON_NOCLEAR);
630}
631
632 static void
633gui_gtk3_update_cursor(cairo_t *cr)
634{
635 if (gui.row == gui.cursor_row)
636 {
637 gui.by_signal = TRUE;
Bram Moolenaar4fc563b2016-03-12 12:40:58 +0100638 if (State & CMDLINE)
639 gui_update_cursor(TRUE, FALSE);
640 else
641 gui_update_cursor(TRUE, TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +0100642 gui.by_signal = FALSE;
643 cairo_paint(cr);
644 }
645}
646
647 static gboolean
648gui_gtk3_should_draw_cursor(void)
649{
650 unsigned int cond = 0;
651 cond |= gui_gtk_is_blink_on();
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100652 if (gui.cursor_col >= gui.col)
653 cond |= is_key_pressed;
Bram Moolenaar98921892016-02-23 17:14:37 +0100654 cond |= gui.in_focus == FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100655 return cond;
656}
657
658 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200659draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100660 cairo_t *cr,
661 gpointer user_data UNUSED)
662{
663 /* Skip this when the GUI isn't set up yet, will redraw later. */
664 if (gui.starting)
665 return FALSE;
666
667 out_flush(); /* make sure all output has been processed */
668 /* for GTK+ 3, may induce other draw events. */
669
670 cairo_set_source_surface(cr, gui.surface, 0, 0);
671
672 /* Draw the window without the cursor. */
673 gui.by_signal = TRUE;
674 {
675 cairo_rectangle_list_t *list = NULL;
676
Bram Moolenaar98921892016-02-23 17:14:37 +0100677 list = cairo_copy_clip_rectangle_list(cr);
678 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
679 {
680 int i;
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100681
682 /* First clear all the blocks and then redraw them. Just in case
683 * some blocks overlap. */
Bram Moolenaar98921892016-02-23 17:14:37 +0100684 for (i = 0; i < list->num_rectangles; i++)
685 {
686 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200687
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100688 gui_mch_clear_block(Y_2_ROW((int)rect.y), 0,
689 Y_2_ROW((int)(rect.y + rect.height)) - 1, Columns - 1);
690 }
691
692 for (i = 0; i < list->num_rectangles; i++)
693 {
694 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200695
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100696 if (blink_mode)
697 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
698 else
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100699 {
700 if (get_real_state() & VISUAL)
701 gui_gtk3_redraw(rect.x, rect.y,
702 rect.width, rect.height);
703 else
704 gui_redraw(rect.x, rect.y, rect.width, rect.height);
705 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100706 }
707 }
708 cairo_rectangle_list_destroy(list);
709
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100710 if (get_real_state() & VISUAL)
711 {
712 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col)
713 gui_update_cursor(TRUE, TRUE);
714 }
715
Bram Moolenaar98921892016-02-23 17:14:37 +0100716 cairo_paint(cr);
717 }
718 gui.by_signal = FALSE;
719
720 /* Add the cursor to the window if necessary.*/
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100721 if (gui_gtk3_should_draw_cursor() && blink_mode)
Bram Moolenaar98921892016-02-23 17:14:37 +0100722 gui_gtk3_update_cursor(cr);
723
724 return FALSE;
725}
726#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000728expose_event(GtkWidget *widget UNUSED,
729 GdkEventExpose *event,
730 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731{
732 /* Skip this when the GUI isn't set up yet, will redraw later. */
733 if (gui.starting)
734 return FALSE;
735
736 out_flush(); /* make sure all output has been processed */
737 gui_redraw(event->area.x, event->area.y,
738 event->area.width, event->area.height);
739
740 /* Clear the border areas if needed */
741 if (event->area.x < FILL_X(0))
742 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
743 if (event->area.y < FILL_Y(0))
744 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
745 if (event->area.x > FILL_X(Columns))
746 gdk_window_clear_area(gui.drawarea->window,
747 FILL_X((int)Columns), 0, 0, 0);
748 if (event->area.y > FILL_Y(Rows))
749 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
750
751 return FALSE;
752}
Bram Moolenaar98921892016-02-23 17:14:37 +0100753#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
755#ifdef FEAT_CLIENTSERVER
756/*
757 * Handle changes to the "Comm" property
758 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000760property_event(GtkWidget *widget,
761 GdkEventProperty *event,
762 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763{
764 if (event->type == GDK_PROPERTY_NOTIFY
765 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100766 && GDK_WINDOW_XID(event->window) == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 && GET_X_ATOM(event->atom) == commProperty)
768 {
769 XEvent xev;
770
771 /* Translate to XLib */
772 xev.xproperty.type = PropertyNotify;
773 xev.xproperty.atom = commProperty;
774 xev.xproperty.window = commWindow;
775 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100776 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
777 &xev, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 }
779 return FALSE;
780}
Bram Moolenaar98921892016-02-23 17:14:37 +0100781#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +0200783/*
784 * Handle changes to the "Xft/DPI" setting
785 */
786 static void
787gtk_settings_xft_dpi_changed_cb(GtkSettings *gtk_settings UNUSED,
788 GParamSpec *pspec UNUSED,
789 gpointer data UNUSED)
790{
791 // Create a new PangoContext for this screen, and initialize it
792 // with the current font if necessary.
793 if (gui.text_context != NULL)
794 g_object_unref(gui.text_context);
795
796 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
797 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
798
799 if (gui.norm_font != NULL)
800 {
801 // force default font
802 gui_mch_init_font(*p_guifont == NUL ? NULL : p_guifont, FALSE);
803 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
804 }
805}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200807typedef gboolean timeout_cb_type;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200808
809/*
810 * Start a timer that will invoke the specified callback.
811 * Returns the ID of the timer.
812 */
813 static guint
814timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp)
815{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200816 return g_timeout_add((guint)time, (GSourceFunc)callback, flagp);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200817}
818
819 static void
820timeout_remove(guint timer)
821{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200822 g_source_remove(timer);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200823}
824
825
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826/****************************************************************************
827 * Focus handlers:
828 */
829
830
831/*
832 * This is a simple state machine:
833 * BLINK_NONE not blinking at all
834 * BLINK_OFF blinking, cursor is not shown
835 * BLINK_ON blinking, cursor is shown
836 */
837
838#define BLINK_NONE 0
839#define BLINK_OFF 1
840#define BLINK_ON 2
841
842static int blink_state = BLINK_NONE;
843static long_u blink_waittime = 700;
844static long_u blink_ontime = 400;
845static long_u blink_offtime = 250;
846static guint blink_timer = 0;
847
Bram Moolenaar98921892016-02-23 17:14:37 +0100848#if GTK_CHECK_VERSION(3,0,0)
849 static gboolean
850gui_gtk_is_blink_on(void)
851{
852 return blink_state == BLINK_ON;
853}
Bram Moolenaar98921892016-02-23 17:14:37 +0100854#endif
855
Bram Moolenaar703a8042016-06-04 16:24:32 +0200856 int
857gui_mch_is_blinking(void)
858{
859 return blink_state != BLINK_NONE;
860}
861
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200862 int
863gui_mch_is_blink_off(void)
864{
865 return blink_state == BLINK_OFF;
866}
867
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 void
869gui_mch_set_blinking(long waittime, long on, long off)
870{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100871#if GTK_CHECK_VERSION(3,0,0)
872 if (waittime == 0 || on == 0 || off == 0)
873 {
874 blink_mode = FALSE;
875
876 blink_waittime = 700;
877 blink_ontime = 400;
878 blink_offtime = 250;
879 }
880 else
881 {
882 blink_mode = TRUE;
883
884 blink_waittime = waittime;
885 blink_ontime = on;
886 blink_offtime = off;
887 }
888#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 blink_waittime = waittime;
890 blink_ontime = on;
891 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100892#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893}
894
895/*
896 * Stop the cursor blinking. Show the cursor if it wasn't shown.
897 */
898 void
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100899gui_mch_stop_blink(int may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900{
901 if (blink_timer)
902 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200903 timeout_remove(blink_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 blink_timer = 0;
905 }
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100906 if (blink_state == BLINK_OFF && may_call_gui_update_cursor)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200907 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200909 gui_mch_flush();
910 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 blink_state = BLINK_NONE;
912}
913
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200914 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000915blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916{
917 if (blink_state == BLINK_ON)
918 {
919 gui_undraw_cursor();
920 blink_state = BLINK_OFF;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200921 blink_timer = timeout_add(blink_offtime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 }
923 else
924 {
925 gui_update_cursor(TRUE, FALSE);
926 blink_state = BLINK_ON;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200927 blink_timer = timeout_add(blink_ontime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 }
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200929 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930
931 return FALSE; /* don't happen again */
932}
933
934/*
935 * Start the cursor blinking. If it was already blinking, this restarts the
936 * waiting time and shows the cursor.
937 */
938 void
939gui_mch_start_blink(void)
940{
941 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200942 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200943 timeout_remove(blink_timer);
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200944 blink_timer = 0;
945 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 /* Only switch blinking on if none of the times is zero */
947 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
948 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200949 blink_timer = timeout_add(blink_waittime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 blink_state = BLINK_ON;
951 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200952 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 }
954}
955
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000957enter_notify_event(GtkWidget *widget UNUSED,
958 GdkEventCrossing *event UNUSED,
959 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960{
961 if (blink_state == BLINK_NONE)
962 gui_mch_start_blink();
963
964 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100965 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 gtk_widget_grab_focus(gui.drawarea);
967
968 return FALSE;
969}
970
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000972leave_notify_event(GtkWidget *widget UNUSED,
973 GdkEventCrossing *event UNUSED,
974 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975{
976 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100977 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978
979 return FALSE;
980}
981
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000983focus_in_event(GtkWidget *widget,
984 GdkEventFocus *event UNUSED,
985 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986{
987 gui_focus_change(TRUE);
988
989 if (blink_state == BLINK_NONE)
990 gui_mch_start_blink();
991
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000992 /* make sure keyboard input goes to the draw area (if this is focus for a
993 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000994 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000995 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996
997 return TRUE;
998}
999
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001001focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001002 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001003 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004{
1005 gui_focus_change(FALSE);
1006
1007 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001008 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009
1010 return TRUE;
1011}
1012
1013
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014/*
1015 * Translate a GDK key value to UTF-8 independently of the current locale.
1016 * The output is written to string, which must have room for at least 6 bytes
1017 * plus the NUL terminator. Returns the length in bytes.
1018 *
1019 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
1020 * of GdkEventKey::string instead. But event->string is evil; see here why:
1021 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1022 */
1023 static int
1024keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
1025{
1026 int len;
1027 guint32 uc;
1028
1029 uc = gdk_keyval_to_unicode(keyval);
1030 if (uc != 0)
1031 {
1032 /* Check for CTRL-foo */
1033 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
1034 {
1035 /* These mappings look arbitrary at the first glance, but in fact
1036 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
1037 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
1038 * more sense and is consistent with usual terminal behaviour). */
1039 if (uc >= '@')
1040 string[0] = uc & 0x1F;
1041 else if (uc == '2')
1042 string[0] = NUL;
1043 else if (uc >= '3' && uc <= '7')
1044 string[0] = uc ^ 0x28;
1045 else if (uc == '8')
1046 string[0] = BS;
1047 else if (uc == '?')
1048 string[0] = DEL;
1049 else
1050 string[0] = uc;
1051 len = 1;
1052 }
1053 else
1054 {
1055 /* Translate a normal key to UTF-8. This doesn't work for dead
1056 * keys of course, you _have_ to use an input method for that. */
1057 len = utf_char2bytes((int)uc, string);
1058 }
1059 }
1060 else
1061 {
1062 /* Translate keys which are represented by ASCII control codes in Vim.
1063 * There are only a few of those; most control keys are translated to
1064 * special terminal-like control sequences. */
1065 len = 1;
1066 switch (keyval)
1067 {
1068 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1069 string[0] = TAB;
1070 break;
1071 case GDK_Linefeed:
1072 string[0] = NL;
1073 break;
1074 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1075 string[0] = CAR;
1076 break;
1077 case GDK_Escape:
1078 string[0] = ESC;
1079 break;
1080 default:
1081 len = 0;
1082 break;
1083 }
1084 }
1085 string[len] = NUL;
1086
1087 return len;
1088}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001090 static int
1091modifiers_gdk2vim(guint state)
1092{
1093 int modifiers = 0;
1094
1095 if (state & GDK_SHIFT_MASK)
1096 modifiers |= MOD_MASK_SHIFT;
1097 if (state & GDK_CONTROL_MASK)
1098 modifiers |= MOD_MASK_CTRL;
1099 if (state & GDK_MOD1_MASK)
1100 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001101#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001102 if (state & GDK_SUPER_MASK)
1103 modifiers |= MOD_MASK_META;
1104#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001105 if (state & GDK_MOD4_MASK)
1106 modifiers |= MOD_MASK_META;
1107
1108 return modifiers;
1109}
1110
1111 static int
1112modifiers_gdk2mouse(guint state)
1113{
1114 int modifiers = 0;
1115
1116 if (state & GDK_SHIFT_MASK)
1117 modifiers |= MOUSE_SHIFT;
1118 if (state & GDK_CONTROL_MASK)
1119 modifiers |= MOUSE_CTRL;
1120 if (state & GDK_MOD1_MASK)
1121 modifiers |= MOUSE_ALT;
1122
1123 return modifiers;
1124}
1125
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126/*
1127 * Main keyboard handler:
1128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001130key_press_event(GtkWidget *widget UNUSED,
1131 GdkEventKey *event,
1132 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001134 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1136 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 guint key_sym;
1138 int len;
1139 int i;
1140 int modifiers;
1141 int key;
1142 guint state;
1143 char_u *s, *d;
1144
Bram Moolenaar98921892016-02-23 17:14:37 +01001145#if GTK_CHECK_VERSION(3,0,0)
1146 is_key_pressed = TRUE;
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001147 gui_mch_stop_blink(TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001148#endif
1149
Bram Moolenaar20892c12011-06-26 04:49:00 +02001150 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 key_sym = event->keyval;
1152 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153
1154#ifdef FEAT_XIM
1155 if (xim_queue_key_press_event(event, TRUE))
1156 return TRUE;
1157#endif
1158
1159#ifdef FEAT_HANGULIN
1160 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1161 {
1162 hangul_input_state_toggle();
1163 return TRUE;
1164 }
1165#endif
1166
1167#ifdef SunXK_F36
1168 /*
1169 * These keys have bogus lookup strings, and trapping them here is
1170 * easier than trying to XRebindKeysym() on them with every possible
1171 * combination of modifiers.
1172 */
1173 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1174 len = 0;
1175 else
1176#endif
1177 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 len = keyval_to_string(key_sym, state, string2);
1179
1180 /* Careful: convert_input() doesn't handle the NUL character.
1181 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1182 if (len > 1 && input_conv.vc_type != CONV_NONE)
1183 len = convert_input(string2, len, sizeof(string2));
1184
1185 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 d = string;
1187 for (i = 0; i < len; ++i)
1188 {
1189 *d++ = s[i];
1190 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1191 {
1192 /* Turn CSI into K_CSI. */
1193 *d++ = KS_EXTRA;
1194 *d++ = (int)KE_CSI;
1195 }
1196 }
1197 len = d - string;
1198 }
1199
1200 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1201 if (key_sym == GDK_ISO_Left_Tab)
1202 {
1203 key_sym = GDK_Tab;
1204 state |= GDK_SHIFT_MASK;
1205 }
1206
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207#ifdef FEAT_MENU
1208 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1209 * is a menu shortcut, we ignore everything with the ALT modifier. */
1210 if ((state & GDK_MOD1_MASK)
1211 && gui.menu_is_active
1212 && (*p_wak == 'y'
1213 || (*p_wak == 'm'
1214 && len == 1
1215 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 /* For GTK2 we return false to signify that we haven't handled the
1217 * keypress, so that gtk will handle the mnemonic or accelerator. */
1218 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219#endif
1220
1221 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1222 * that already has the 8th bit set.
1223 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1224 * Don't do this for double-byte encodings, it turns the char into a lead
1225 * byte. */
1226 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001227 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001228#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001229 || (state & GDK_SUPER_MASK)
1230#endif
1231 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1233 && (string[0] & 0x80) == 0
1234 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 )
1237 {
1238 string[0] |= 0x80;
1239 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 if (enc_utf8) /* convert to utf-8 */
1241 {
1242 string[1] = string[0] & 0xbf;
1243 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1244 if (string[1] == CSI)
1245 {
1246 string[2] = KS_EXTRA;
1247 string[3] = (int)KE_CSI;
1248 len = 4;
1249 }
1250 else
1251 len = 2;
1252 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 }
1254
1255 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1256 * value) to detect backspace, delete and keypad keys. */
1257 if (len == 0 || len == 1)
1258 {
1259 for (i = 0; special_keys[i].key_sym != 0; i++)
1260 {
1261 if (special_keys[i].key_sym == key_sym)
1262 {
1263 string[0] = CSI;
1264 string[1] = special_keys[i].code0;
1265 string[2] = special_keys[i].code1;
1266 len = -3;
1267 break;
1268 }
1269 }
1270 }
1271
1272 if (len == 0) /* Unrecognized key */
1273 return TRUE;
1274
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 /* Special keys (and a few others) may have modifiers. Also when using a
1276 * double-byte encoding (can't set the 8th bit). */
1277 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1278 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1279 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1280 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001281 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001282#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001283 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001285 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001287 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288
1289 /*
1290 * For some keys a shift modifier is translated into another key
1291 * code.
1292 */
1293 if (len == -3)
1294 key = TO_SPECIAL(string[1], string[2]);
1295 else
1296 key = string[0];
1297
1298 key = simplify_key(key, &modifiers);
1299 if (key == CSI)
1300 key = K_CSI;
1301 if (IS_SPECIAL(key))
1302 {
1303 string[0] = CSI;
1304 string[1] = K_SECOND(key);
1305 string[2] = K_THIRD(key);
1306 len = 3;
1307 }
1308 else
1309 {
1310 string[0] = key;
1311 len = 1;
1312 }
1313
1314 if (modifiers != 0)
1315 {
1316 string2[0] = CSI;
1317 string2[1] = KS_MODIFIER;
1318 string2[2] = modifiers;
1319 add_to_input_buf(string2, 3);
1320 }
1321 }
1322
1323 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1324 || (string[0] == intr_char && intr_char != Ctrl_C)))
1325 {
1326 trash_input_buf();
1327 got_int = TRUE;
1328 }
1329
1330 add_to_input_buf(string, len);
1331
1332 /* blank out the pointer if necessary */
1333 if (p_mh)
1334 gui_mch_mousehide(TRUE);
1335
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 return TRUE;
1337}
1338
Bram Moolenaar98921892016-02-23 17:14:37 +01001339#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001341key_release_event(GtkWidget *widget UNUSED,
1342 GdkEventKey *event,
1343 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344{
Bram Moolenaar98921892016-02-23 17:14:37 +01001345# if GTK_CHECK_VERSION(3,0,0)
1346 is_key_pressed = FALSE;
1347 gui_mch_start_blink();
1348# endif
1349# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001350 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 /*
1352 * GTK+ 2 input methods may do fancy stuff on key release events too.
1353 * With the default IM for instance, you can enter any UCS code point
1354 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1355 */
1356 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001357# else
1358 return TRUE;
1359# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360}
1361#endif
1362
1363
1364/****************************************************************************
1365 * Selection handlers:
1366 */
1367
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001368/* Remember when clip_lose_selection was called from here, we must not call
1369 * gtk_selection_owner_set() then. */
1370static int in_selection_clear_event = FALSE;
1371
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001373selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001375 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001377 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 if (event->selection == clip_plus.gtk_sel_atom)
1379 clip_lose_selection(&clip_plus);
1380 else
1381 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001382 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 return TRUE;
1385}
1386
1387#define RS_NONE 0 /* selection_received_cb() not called yet */
1388#define RS_OK 1 /* selection_received_cb() called and OK */
1389#define RS_FAIL 2 /* selection_received_cb() called and failed */
1390static int received_selection = RS_NONE;
1391
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001393selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001395 guint time_ UNUSED,
1396 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397{
1398 VimClipboard *cbd;
1399 char_u *text;
1400 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001403 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404
Bram Moolenaar98921892016-02-23 17:14:37 +01001405 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 cbd = &clip_plus;
1407 else
1408 cbd = &clip_star;
1409
Bram Moolenaar98921892016-02-23 17:14:37 +01001410 text = (char_u *)gtk_selection_data_get_data(data);
1411 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412
1413 if (text == NULL || len <= 0)
1414 {
1415 received_selection = RS_FAIL;
1416 /* clip_free_selection(cbd); ??? */
1417
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 return;
1419 }
1420
Bram Moolenaar98921892016-02-23 17:14:37 +01001421 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 {
1423 motion_type = *text++;
1424 --len;
1425 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001426 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 {
1428 char_u *enc;
1429 vimconv_T conv;
1430
1431 motion_type = *text++;
1432 --len;
1433
1434 enc = text;
1435 text += STRLEN(text) + 1;
1436 len -= text - enc;
1437
1438 /* If the encoding of the text is different from 'encoding', attempt
1439 * converting it. */
1440 conv.vc_type = CONV_NONE;
1441 convert_setup(&conv, enc, p_enc);
1442 if (conv.vc_type != CONV_NONE)
1443 {
1444 tmpbuf = string_convert(&conv, text, &len);
1445 if (tmpbuf != NULL)
1446 text = tmpbuf;
1447 convert_setup(&conv, NULL, NULL);
1448 }
1449 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 /* gtk_selection_data_get_text() handles all the nasty details
1452 * and targets and encodings etc. This rocks so hard. */
1453 else
1454 {
1455 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1456 if (tmpbuf_utf8 != NULL)
1457 {
1458 len = STRLEN(tmpbuf_utf8);
1459 if (input_conv.vc_type != CONV_NONE)
1460 {
1461 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1462 if (tmpbuf != NULL)
1463 text = tmpbuf;
1464 }
1465 else
1466 text = tmpbuf_utf8;
1467 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001468 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1469 {
1470 vimconv_T conv;
1471
1472 /* UTF-16, we get this for HTML */
1473 conv.vc_type = CONV_NONE;
1474 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1475
1476 if (conv.vc_type != CONV_NONE)
1477 {
1478 text += 2;
1479 len -= 2;
1480 tmpbuf = string_convert(&conv, text, &len);
1481 convert_setup(&conv, NULL, NULL);
1482 }
1483 if (tmpbuf != NULL)
1484 text = tmpbuf;
1485 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001488 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001489 while (len > 0 && text[len - 1] == NUL)
1490 --len;
1491
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 clip_yank_selection(motion_type, text, (long)len, cbd);
1493 received_selection = RS_OK;
1494 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496}
1497
1498/*
1499 * Prepare our selection data for passing it to the external selection
1500 * client.
1501 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001503selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 GtkSelectionData *selection_data,
1505 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001506 guint time_ UNUSED,
1507 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508{
1509 char_u *string;
1510 char_u *tmpbuf;
1511 long_u tmplen;
1512 int length;
1513 int motion_type;
1514 GdkAtom type;
1515 VimClipboard *cbd;
1516
Bram Moolenaar98921892016-02-23 17:14:37 +01001517 if (gtk_selection_data_get_selection(selection_data)
1518 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 cbd = &clip_plus;
1520 else
1521 cbd = &clip_star;
1522
1523 if (!cbd->owned)
1524 return; /* Shouldn't ever happen */
1525
1526 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001527 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 && info != (guint)TARGET_UTF8_STRING
1529 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 && info != (guint)TARGET_VIM
1531 && info != (guint)TARGET_COMPOUND_TEXT
1532 && info != (guint)TARGET_TEXT)
1533 return;
1534
1535 /* get the selection from the '*'/'+' register */
1536 clip_get_selection(cbd);
1537
1538 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1539 if (motion_type < 0 || string == NULL)
1540 return;
1541 /* Due to int arguments we can't handle more than G_MAXINT. Also
1542 * reserve one extra byte for NUL or the motion type; just in case.
1543 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1544 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1545
1546 if (info == (guint)TARGET_VIM)
1547 {
1548 tmpbuf = alloc((unsigned)length + 1);
1549 if (tmpbuf != NULL)
1550 {
1551 tmpbuf[0] = motion_type;
1552 mch_memmove(tmpbuf + 1, string, (size_t)length);
1553 }
1554 /* For our own format, the first byte contains the motion type */
1555 ++length;
1556 vim_free(string);
1557 string = tmpbuf;
1558 type = vim_atom;
1559 }
1560
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001561 else if (info == (guint)TARGET_HTML)
1562 {
1563 vimconv_T conv;
1564
1565 /* Since we get utf-16, we probably should set it as well. */
1566 conv.vc_type = CONV_NONE;
1567 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1568 if (conv.vc_type != CONV_NONE)
1569 {
1570 tmpbuf = string_convert(&conv, string, &length);
1571 convert_setup(&conv, NULL, NULL);
1572 vim_free(string);
1573 string = tmpbuf;
1574 }
1575
1576 /* Prepend the BOM: "fffe" */
1577 if (string != NULL)
1578 {
1579 tmpbuf = alloc(length + 2);
1580 tmpbuf[0] = 0xff;
1581 tmpbuf[1] = 0xfe;
1582 mch_memmove(tmpbuf + 2, string, (size_t)length);
1583 vim_free(string);
1584 string = tmpbuf;
1585 length += 2;
1586
Bram Moolenaar98921892016-02-23 17:14:37 +01001587#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001588 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001589 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001590 selection_data->type = selection_data->target;
1591 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001592#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001593 gtk_selection_data_set(selection_data, html_atom, 16,
1594 string, length);
1595 vim_free(string);
1596 }
1597 return;
1598 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 else if (info == (guint)TARGET_VIMENC)
1600 {
1601 int l = STRLEN(p_enc);
1602
1603 /* contents: motion_type 'encoding' NUL text */
1604 tmpbuf = alloc((unsigned)length + l + 2);
1605 if (tmpbuf != NULL)
1606 {
1607 tmpbuf[0] = motion_type;
1608 STRCPY(tmpbuf + 1, p_enc);
1609 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
1610 }
1611 length += l + 2;
1612 vim_free(string);
1613 string = tmpbuf;
1614 type = vimenc_atom;
1615 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 /* gtk_selection_data_set_text() handles everything for us. This is
1618 * so easy and simple and cool, it'd be insane not to use it. */
1619 else
1620 {
1621 if (output_conv.vc_type != CONV_NONE)
1622 {
1623 tmpbuf = string_convert(&output_conv, string, &length);
1624 vim_free(string);
1625 if (tmpbuf == NULL)
1626 return;
1627 string = tmpbuf;
1628 }
1629 /* Validate the string to avoid runtime warnings */
1630 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1631 {
1632 gtk_selection_data_set_text(selection_data,
1633 (const char *)string, length);
1634 }
1635 vim_free(string);
1636 return;
1637 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638
1639 if (string != NULL)
1640 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001641#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001642 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001643 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 selection_data->type = selection_data->target;
1645 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001646#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 gtk_selection_data_set(selection_data, type, 8, string, length);
1648 vim_free(string);
1649 }
1650}
1651
1652/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001653 * Check if the GUI can be started. Called before gvimrc is sourced and
1654 * before fork().
1655 * Return OK or FAIL.
1656 */
1657 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001658gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001659{
1660 char_u *p;
1661
1662 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1663 p = mch_getenv((char_u *)"DISPLAY");
1664 if (p == NULL || *p == NUL)
1665 {
1666 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001667 if (give_message)
1668 EMSG(_((char *)e_opendisp));
Bram Moolenaar29695702012-05-18 17:03:18 +02001669 return FAIL;
1670 }
1671 return OK;
1672}
1673
1674/*
1675 * Check if the GUI can be started. Called before gvimrc is sourced but after
1676 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 * Return OK or FAIL.
1678 */
1679 int
1680gui_mch_init_check(void)
1681{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001682#ifdef USE_GRESOURCE
1683 static int res_registered = FALSE;
1684
1685 if (!res_registered)
1686 {
1687 /* Call this function in the GUI process; otherwise, the resources
1688 * won't be available. Don't call it twice. */
1689 res_registered = TRUE;
1690 gui_gtk_register_resource();
1691 }
1692#endif
1693
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001694#if GTK_CHECK_VERSION(3,10,0)
1695 /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1696 * support for other backends such as Wayland. */
1697 gdk_set_allowed_backends ("x11");
1698#endif
1699
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700#ifdef FEAT_GUI_GNOME
1701 if (gtk_socket_id == 0)
1702 using_gnome = 1;
1703#endif
1704
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001705 /* This defaults to argv[0], but we want it to match the name of the
1706 * shipped gvim.desktop so that Vim's windows can be associated with this
1707 * file. */
1708 g_set_prgname("gvim");
1709
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1711 if (!gtk_init_check(&gui_argc, &gui_argv))
1712 {
1713 gui.dying = TRUE;
Bram Moolenaarc93e7912008-07-08 10:46:08 +00001714 EMSG(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 return FAIL;
1716 }
1717
1718 return OK;
1719}
1720
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721/****************************************************************************
1722 * Mouse handling callbacks
1723 */
1724
1725
1726static guint mouse_click_timer = 0;
1727static int mouse_timed_out = TRUE;
1728
1729/*
1730 * Timer used to recognize multiple clicks of the mouse button
1731 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001732 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733mouse_click_timer_cb(gpointer data)
1734{
1735 /* we don't use this information currently */
1736 int *timed_out = (int *) data;
1737
1738 *timed_out = TRUE;
1739 return FALSE; /* don't happen again */
1740}
1741
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001742static guint motion_repeat_timer = 0;
1743static int motion_repeat_offset = FALSE;
1744static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745
1746 static void
1747process_motion_notify(int x, int y, GdkModifierType state)
1748{
1749 int button;
1750 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001751 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752
1753 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1754 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1755 GDK_BUTTON5_MASK))
1756 ? MOUSE_DRAG : ' ';
1757
1758 /* If our pointer is currently hidden, then we should show it. */
1759 gui_mch_mousehide(FALSE);
1760
1761 /* Just moving the rodent above the drawing area without any button
1762 * being pressed. */
1763 if (button != MOUSE_DRAG)
1764 {
1765 gui_mouse_moved(x, y);
1766 return;
1767 }
1768
1769 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001770 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771
Bram Moolenaar49325942007-05-10 19:19:59 +00001772 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1774
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 /*
1776 * Auto repeat timer handling.
1777 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001778 gtk_widget_get_allocation(gui.drawarea, &allocation);
1779
1780 if (x < 0 || y < 0
1781 || x >= allocation.width
1782 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 {
1784
1785 int dx;
1786 int dy;
1787 int offshoot;
1788 int delay = 10;
1789
1790 /* Calculate the maximal distance of the cursor from the drawing area.
1791 * (offshoot can't become negative here!).
1792 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001793 dx = x < 0 ? -x : x - allocation.width;
1794 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795
1796 offshoot = dx > dy ? dx : dy;
1797
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001798 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 * distance of 127 pixels from the main window.
1800 *
1801 * One could think endlessly about the most ergonomic variant here.
1802 * For example it could make sense to calculate the distance from the
1803 * drags start instead...
1804 *
1805 * Maybe a parabolic interpolation would suite us better here too...
1806 */
1807 if (offshoot > 127)
1808 {
1809 /* 5 appears to be somehow near to my perceptual limits :-). */
1810 delay = 5;
1811 }
1812 else
1813 {
1814 delay = (130 * (127 - offshoot)) / 127 + 5;
1815 }
1816
1817 /* shoot again */
1818 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001819 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1820 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 }
1822}
1823
Bram Moolenaar98921892016-02-23 17:14:37 +01001824#if GTK_CHECK_VERSION(3,0,0)
1825 static GdkDevice *
1826gui_gtk_get_pointer_device(GtkWidget *widget)
1827{
1828 GdkWindow * const win = gtk_widget_get_window(widget);
1829 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001830# if GTK_CHECK_VERSION(3,20,0)
1831 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1832 return gdk_seat_get_pointer(seat);
1833# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001834 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1835 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001836# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001837}
1838
1839 static GdkWindow *
1840gui_gtk_get_pointer(GtkWidget *widget,
1841 gint *x,
1842 gint *y,
1843 GdkModifierType *state)
1844{
1845 GdkWindow * const win = gtk_widget_get_window(widget);
1846 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1847 return gdk_window_get_device_position(win, dev , x, y, state);
1848}
1849
Bram Moolenaar2369c152016-03-04 23:08:25 +01001850# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001851 static GdkWindow *
1852gui_gtk_window_at_position(GtkWidget *widget,
1853 gint *x,
1854 gint *y)
1855{
1856 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1857 return gdk_device_get_window_at_position(dev, x, y);
1858}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001859# endif
Bram Moolenaar664323e2018-09-18 22:30:07 +02001860#else /* !GTK_CHECK_VERSION(3,0,0) */
1861# define gui_gtk_get_pointer(wid, x, y, s) \
1862 gdk_window_get_pointer((wid)->window, x, y, s)
1863# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001864#endif
1865
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866/*
1867 * Timer used to recognize multiple clicks of the mouse button.
1868 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001869 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001870motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871{
1872 int x;
1873 int y;
1874 GdkModifierType state;
1875
Bram Moolenaar98921892016-02-23 17:14:37 +01001876 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877
1878 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1879 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1880 GDK_BUTTON5_MASK)))
1881 {
1882 motion_repeat_timer = 0;
1883 return FALSE;
1884 }
1885
1886 /* If there already is a mouse click in the input buffer, wait another
1887 * time (otherwise we would create a backlog of clicks) */
1888 if (vim_used_in_input_buf() > 10)
1889 return TRUE;
1890
1891 motion_repeat_timer = 0;
1892
1893 /*
1894 * Fake a motion event.
1895 * Trick: Pretend the mouse moved to the next character on every other
1896 * event, otherwise drag events will be discarded, because they are still
1897 * in the same character.
1898 */
1899 if (motion_repeat_offset)
1900 x += gui.char_width;
1901
1902 motion_repeat_offset = !motion_repeat_offset;
1903 process_motion_notify(x, y, state);
1904
1905 /* Don't happen again. We will get reinstalled in the synthetic event
1906 * if needed -- thus repeating should still work. */
1907 return FALSE;
1908}
1909
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001911motion_notify_event(GtkWidget *widget,
1912 GdkEventMotion *event,
1913 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914{
1915 if (event->is_hint)
1916 {
1917 int x;
1918 int y;
1919 GdkModifierType state;
1920
Bram Moolenaar98921892016-02-23 17:14:37 +01001921 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 process_motion_notify(x, y, state);
1923 }
1924 else
1925 {
1926 process_motion_notify((int)event->x, (int)event->y,
1927 (GdkModifierType)event->state);
1928 }
1929
1930 return TRUE; /* handled */
1931}
1932
1933
1934/*
1935 * Mouse button handling. Note please that we are capturing multiple click's
1936 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1937 * This is due to the way the generic VIM code is recognizing multiple clicks.
1938 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001940button_press_event(GtkWidget *widget,
1941 GdkEventButton *event,
1942 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943{
1944 int button;
1945 int repeated_click = FALSE;
1946 int x, y;
1947 int_u vim_modifiers;
1948
Bram Moolenaar20892c12011-06-26 04:49:00 +02001949 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001950
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01001952 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 gtk_widget_grab_focus(widget);
1954
1955 /*
1956 * Don't let additional events about multiple clicks send by GTK to us
1957 * after the initial button press event confuse us.
1958 */
1959 if (event->type != GDK_BUTTON_PRESS)
1960 return FALSE;
1961
1962 x = event->x;
1963 y = event->y;
1964
1965 /* Handle multiple clicks */
1966 if (!mouse_timed_out && mouse_click_timer)
1967 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001968 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 mouse_click_timer = 0;
1970 repeated_click = TRUE;
1971 }
1972
1973 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001974 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1975 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976
1977 switch (event->button)
1978 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001979 /* Keep in sync with gui_x11.c.
1980 * Buttons 4-7 are handled in scroll_event() */
1981 case 1: button = MOUSE_LEFT; break;
1982 case 2: button = MOUSE_MIDDLE; break;
1983 case 3: button = MOUSE_RIGHT; break;
1984 case 8: button = MOUSE_X1; break;
1985 case 9: button = MOUSE_X2; break;
1986 default:
1987 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 }
1989
1990#ifdef FEAT_XIM
1991 /* cancel any preediting */
1992 if (im_is_preediting())
1993 xim_reset();
1994#endif
1995
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001996 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997
1998 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999
2000 return TRUE;
2001}
2002
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002004 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002007scroll_event(GtkWidget *widget,
2008 GdkEventScroll *event,
2009 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010{
2011 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002012 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013
Bram Moolenaar98921892016-02-23 17:14:37 +01002014 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 gtk_widget_grab_focus(widget);
2016
2017 switch (event->direction)
2018 {
2019 case GDK_SCROLL_UP:
2020 button = MOUSE_4;
2021 break;
2022 case GDK_SCROLL_DOWN:
2023 button = MOUSE_5;
2024 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002025 case GDK_SCROLL_LEFT:
2026 button = MOUSE_7;
2027 break;
2028 case GDK_SCROLL_RIGHT:
2029 button = MOUSE_6;
2030 break;
2031 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 return FALSE;
2033 }
2034
2035# ifdef FEAT_XIM
2036 /* cancel any preediting */
2037 if (im_is_preediting())
2038 xim_reset();
2039# endif
2040
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002041 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042
2043 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2044 FALSE, vim_modifiers);
2045
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 return TRUE;
2047}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048
2049
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002051button_release_event(GtkWidget *widget UNUSED,
2052 GdkEventButton *event,
2053 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054{
2055 int x, y;
2056 int_u vim_modifiers;
2057
Bram Moolenaar20892c12011-06-26 04:49:00 +02002058 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002059
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 /* Remove any motion "machine gun" timers used for automatic further
2061 extension of allocation areas if outside of the applications window
2062 area .*/
2063 if (motion_repeat_timer)
2064 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002065 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 motion_repeat_timer = 0;
2067 }
2068
2069 x = event->x;
2070 y = event->y;
2071
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002072 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073
2074 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075
2076 return TRUE;
2077}
2078
2079
2080#ifdef FEAT_DND
2081/****************************************************************************
2082 * Drag aNd Drop support handlers.
2083 */
2084
2085/*
2086 * Count how many items there may be and separate them with a NUL.
2087 * Apparently the items are separated with \r\n. This is not documented,
2088 * thus be careful not to go past the end. Also allow separation with
2089 * NUL characters.
2090 */
2091 static int
2092count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2093{
2094 int i;
2095 char_u *p = out;
2096 int count = 0;
2097
2098 for (i = 0; i < len; ++i)
2099 {
2100 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2101 {
2102 if (p > out && p[-1] != NUL)
2103 {
2104 ++count;
2105 *p++ = NUL;
2106 }
2107 }
2108 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2109 {
2110 *p++ = hexhex2nr(raw + i + 1);
2111 i += 2;
2112 }
2113 else
2114 *p++ = raw[i];
2115 }
2116 if (p > out && p[-1] != NUL)
2117 {
2118 *p = NUL; /* last item didn't have \r or \n */
2119 ++count;
2120 }
2121 return count;
2122}
2123
2124/*
2125 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2126 * this process, URI which protocol is not "file:" are removed. Return
2127 * length of array (less than "max").
2128 */
2129 static int
2130filter_uri_list(char_u **outlist, int max, char_u *src)
2131{
2132 int i, j;
2133
2134 for (i = j = 0; i < max; ++i)
2135 {
2136 outlist[i] = NULL;
2137 if (STRNCMP(src, "file:", 5) == 0)
2138 {
2139 src += 5;
2140 if (STRNCMP(src, "//localhost", 11) == 0)
2141 src += 11;
2142 while (src[0] == '/' && src[1] == '/')
2143 ++src;
2144 outlist[j++] = vim_strsave(src);
2145 }
2146 src += STRLEN(src) + 1;
2147 }
2148 return j;
2149}
2150
2151 static char_u **
2152parse_uri_list(int *count, char_u *data, int len)
2153{
2154 int n = 0;
2155 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002156 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157
2158 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2159 {
2160 n = count_and_decode_uri_list(tmp, data, len);
2161 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2162 n = filter_uri_list(array, n, tmp);
2163 }
2164 vim_free(tmp);
2165 *count = n;
2166 return array;
2167}
2168
2169 static void
2170drag_handle_uri_list(GdkDragContext *context,
2171 GtkSelectionData *data,
2172 guint time_,
2173 GdkModifierType state,
2174 gint x,
2175 gint y)
2176{
2177 char_u **fnames;
2178 int nfiles = 0;
2179
Bram Moolenaar98921892016-02-23 17:14:37 +01002180 fnames = parse_uri_list(&nfiles,
2181 (char_u *)gtk_selection_data_get_data(data),
2182 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183
2184 if (fnames != NULL && nfiles > 0)
2185 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002186 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187
2188 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2189
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002190 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191
2192 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2193 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002194 else
2195 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196}
2197
2198 static void
2199drag_handle_text(GdkDragContext *context,
2200 GtkSelectionData *data,
2201 guint time_,
2202 GdkModifierType state)
2203{
2204 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2205 char_u *text;
2206 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208
Bram Moolenaar98921892016-02-23 17:14:37 +01002209 text = (char_u *)gtk_selection_data_get_data(data);
2210 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211
Bram Moolenaar98921892016-02-23 17:14:37 +01002212 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 if (input_conv.vc_type != CONV_NONE)
2215 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 if (tmpbuf != NULL)
2217 text = tmpbuf;
2218 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219
2220 dnd_yank_drag_data(text, (long)len);
2221 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002224 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225
2226 if (dropkey[2] != 0)
2227 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2228 else
2229 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230}
2231
2232/*
2233 * DND receiver.
2234 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 static void
2236drag_data_received_cb(GtkWidget *widget,
2237 GdkDragContext *context,
2238 gint x,
2239 gint y,
2240 GtkSelectionData *data,
2241 guint info,
2242 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002243 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244{
2245 GdkModifierType state;
2246
2247 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002248 const guchar * const data_data = gtk_selection_data_get_data(data);
2249 const gint data_length = gtk_selection_data_get_length(data);
2250 const gint data_format = gtk_selection_data_get_format(data);
2251
2252 if (data_data == NULL
2253 || data_length <= 0
2254 || data_format != 8
2255 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 {
2257 gtk_drag_finish(context, FALSE, FALSE, time_);
2258 return;
2259 }
2260
2261 /* Get the current modifier state for proper distinguishment between
2262 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002263 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264
2265 /* Not sure about the role of "text/plain" here... */
2266 if (info == (guint)TARGET_TEXT_URI_LIST)
2267 drag_handle_uri_list(context, data, time_, state, x, y);
2268 else
2269 drag_handle_text(context, data, time_, state);
2270
2271}
2272#endif /* FEAT_DND */
2273
2274
2275#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2276/*
2277 * GnomeClient interact callback. Check for unsaved buffers that cannot
2278 * be abandoned and pop up a dialog asking the user for confirmation if
2279 * necessary.
2280 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002282sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002284 GnomeDialogType type UNUSED,
2285 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286{
2287 cmdmod_T save_cmdmod;
2288 gboolean shutdown_cancelled;
2289
2290 save_cmdmod = cmdmod;
2291
2292# ifdef FEAT_BROWSE
2293 cmdmod.browse = TRUE;
2294# endif
2295# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2296 cmdmod.confirm = TRUE;
2297# endif
2298 /*
2299 * If there are changed buffers, present the user with
2300 * a dialog if possible, otherwise give an error message.
2301 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002302 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303
2304 exiting = FALSE;
2305 cmdmod = save_cmdmod;
2306 setcursor(); /* position the cursor */
2307 out_flush();
2308 /*
2309 * If the user hit the [Cancel] button the whole shutdown
2310 * will be cancelled. Wow, quite powerful feature (:
2311 */
2312 gnome_interaction_key_return(key, shutdown_cancelled);
2313}
2314
2315/*
2316 * Generate a script that can be used to restore the current editing session.
2317 * Save the value of v:this_session before running :mksession in order to make
2318 * automagic session save fully transparent. Return TRUE on success.
2319 */
2320 static int
2321write_session_file(char_u *filename)
2322{
2323 char_u *escaped_filename;
2324 char *mksession_cmdline;
2325 unsigned int save_ssop_flags;
2326 int failed;
2327
2328 /*
2329 * Build an ex command line to create a script that restores the current
2330 * session if executed. Escape the filename to avoid nasty surprises.
2331 */
2332 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2333 if (escaped_filename == NULL)
2334 return FALSE;
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002335 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2336 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 vim_free(escaped_filename);
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002338
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 /*
2340 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2341 * unpredictable effects when the session is saved automatically. Also,
2342 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2343 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2344 * enormously large if the GNOME session feature is used regularly.
2345 */
2346 save_ssop_flags = ssop_flags;
2347 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002348 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349
2350 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2351 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2352 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
Bram Moolenaar485db9b2005-01-31 19:23:41 +00002353 do_unlet((char_u *)"Save_VV_this_session", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354
2355 ssop_flags = save_ssop_flags;
2356 g_free(mksession_cmdline);
Bram Moolenaar24dc2302014-05-13 20:19:58 +02002357
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 /*
2359 * Reopen the file and append a command to restore v:this_session,
2360 * as if this save never happened. This is to avoid conflicts with
2361 * the user's own sessions. FIXME: It's probably less hackish to add
2362 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2363 */
2364 if (!failed)
2365 {
2366 FILE *fd;
2367
2368 fd = open_exfile(filename, TRUE, APPENDBIN);
2369
2370 failed = (fd == NULL
2371 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2372 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2373
2374 if (fd != NULL && fclose(fd) != 0)
2375 failed = TRUE;
2376
2377 if (failed)
2378 mch_remove(filename);
2379 }
2380
2381 return !failed;
2382}
2383
2384/*
2385 * "save_yourself" signal handler. Initiate an interaction to ask the user
2386 * for confirmation if necessary. Save the current editing session and tell
2387 * the session manager how to restart Vim.
2388 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 static gboolean
2390sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002391 gint phase UNUSED,
2392 GnomeSaveStyle save_style UNUSED,
2393 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002395 gboolean fast UNUSED,
2396 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397{
2398 static const char suffix[] = "-session.vim";
2399 char *session_file;
2400 unsigned int len;
2401 gboolean success;
2402
2403 /* Always request an interaction if possible. check_changed_any()
2404 * won't actually show a dialog unless any buffers have been modified.
2405 * There doesn't seem to be an obvious way to check that without
2406 * automatically firing the dialog. Anyway, it works just fine. */
2407 if (interact_style == GNOME_INTERACT_ANY)
2408 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2409 &sm_client_check_changed_any,
2410 NULL);
2411 out_flush();
2412 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2413
2414 /* The path is unique for each session save. We do neither know nor care
2415 * which session script will actually be used later. This decision is in
2416 * the domain of the session manager. */
2417 session_file = gnome_config_get_real_path(
2418 gnome_client_get_config_prefix(client));
2419 len = strlen(session_file);
2420
2421 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2422 --len; /* get rid of the superfluous trailing '/' */
2423
2424 session_file = g_renew(char, session_file, len + sizeof(suffix));
2425 memcpy(session_file + len, suffix, sizeof(suffix));
2426
2427 success = write_session_file((char_u *)session_file);
2428
2429 if (success)
2430 {
2431 const char *argv[8];
2432 int i;
2433
2434 /* Tell the session manager how to wipe out the stored session data.
2435 * This isn't as dangerous as it looks, don't worry :) session_file
2436 * is a unique absolute filename. Usually it'll be something like
2437 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2438 i = 0;
2439 argv[i++] = "rm";
2440 argv[i++] = session_file;
2441 argv[i] = NULL;
2442
2443 gnome_client_set_discard_command(client, i, (char **)argv);
2444
2445 /* Tell the session manager how to restore the just saved session.
2446 * This is easily done thanks to Vim's -S option. Pass the -f flag
2447 * since there's no need to fork -- it might even cause confusion.
2448 * Also pass the window role to give the WM something to match on.
2449 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2450 i = 0;
2451 argv[i++] = restart_command;
2452 argv[i++] = "-f";
2453 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 argv[i++] = "--role";
2455 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 argv[i++] = "-S";
2457 argv[i++] = session_file;
2458 argv[i] = NULL;
2459
2460 gnome_client_set_restart_command(client, i, (char **)argv);
2461 gnome_client_set_clone_command(client, 0, NULL);
2462 }
2463
2464 g_free(session_file);
2465
2466 return success;
2467}
2468
2469/*
2470 * Called when the session manager wants us to die. There isn't much to save
2471 * here since "save_yourself" has been emitted before (unless serious trouble
2472 * is happening).
2473 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002475sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476{
2477 /* Don't write messages to the GUI anymore */
2478 full_screen = FALSE;
2479
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002480 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002481 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002482 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 preserve_exit();
2484}
2485
2486/*
2487 * Connect our signal handlers to be notified on session save and shutdown.
2488 */
2489 static void
2490setup_save_yourself(void)
2491{
2492 GnomeClient *client;
2493
2494 client = gnome_master_client();
2495
2496 if (client != NULL)
2497 {
2498 /* Must use the deprecated gtk_signal_connect() for compatibility
2499 * with GNOME 1. Arrgh, zombies! */
2500 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2501 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2502 gtk_signal_connect(GTK_OBJECT(client), "die",
2503 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2504 }
2505}
2506
2507#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2508
2509# ifdef USE_XSMP
2510/*
2511 * GTK tells us that XSMP needs attention
2512 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002514local_xsmp_handle_requests(
2515 GIOChannel *source UNUSED,
2516 GIOCondition condition,
2517 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518{
2519 if (condition == G_IO_IN)
2520 {
2521 /* Do stuff; maybe close connection */
2522 if (xsmp_handle_requests() == FAIL)
2523 g_io_channel_unref((GIOChannel *)data);
2524 return TRUE;
2525 }
2526 /* Error */
2527 g_io_channel_unref((GIOChannel *)data);
2528 xsmp_close();
2529 return TRUE;
2530}
2531# endif /* USE_XSMP */
2532
2533/*
2534 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2535 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2536 */
2537 static void
2538setup_save_yourself(void)
2539{
2540 Atom *existing_atoms = NULL;
2541 int count = 0;
2542
Bram Moolenaar98921892016-02-23 17:14:37 +01002543# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 if (xsmp_icefd != -1)
2545 {
2546 /*
2547 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2548 * set up GTK IO monitor
2549 */
2550 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2551
2552 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2553 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002554 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 }
2556 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002557# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 {
2559 /* Fall back to old method */
2560
2561 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002562 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2563
2564 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2565 GDK_WINDOW_XID(mainwin_win),
2566 &existing_atoms, &count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 {
2568 Atom *new_atoms;
2569 Atom save_yourself_xatom;
2570 int i;
2571
2572 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2573
2574 /* check if WM_SAVE_YOURSELF isn't there yet */
2575 for (i = 0; i < count; ++i)
2576 if (existing_atoms[i] == save_yourself_xatom)
2577 break;
2578
2579 if (i == count)
2580 {
2581 /* allocate an Atoms array which is one item longer */
2582 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2583 * sizeof(Atom)));
2584 if (new_atoms != NULL)
2585 {
2586 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2587 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002588 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2589 GDK_WINDOW_XID(mainwin_win),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 new_atoms, count + 1);
2591 vim_free(new_atoms);
2592 }
2593 }
2594 XFree(existing_atoms);
2595 }
2596 }
2597}
2598
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599/*
2600 * Installing a global event filter seems to be the only way to catch
2601 * client messages of type WM_PROTOCOLS without overriding GDK's own
2602 * client message event filter. Well, that's still better than trying
2603 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 *
2605 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2606 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2607 * I have the nasty feeling modern session managers just don't send this
2608 * deprecated message anymore. Addition: confirmed by several people.
2609 *
2610 * The GNOME session support is much cooler anyway. Unlike this ugly
2611 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2612 * it should work with KDE as well.
2613 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002615global_event_filter(GdkXEvent *xev,
2616 GdkEvent *event UNUSED,
2617 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618{
2619 XEvent *xevent = (XEvent *)xev;
2620
2621 if (xevent != NULL
2622 && xevent->type == ClientMessage
2623 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002624 && (long_u)xevent->xclient.data.l[0]
2625 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 {
2627 out_flush();
2628 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2629 /*
2630 * Set the window's WM_COMMAND property, to let the window manager
2631 * know we are done saving ourselves. We don't want to be
2632 * restarted, thus set argv to NULL.
2633 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002634 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2635 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 NULL, 0);
2637 return GDK_FILTER_REMOVE;
2638 }
2639
2640 return GDK_FILTER_CONTINUE;
2641}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2643
2644
2645/*
2646 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2647 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002649mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002650{
2651/* If you get an error message here, you still need to unpack the runtime
2652 * archive! */
2653#ifdef magick
2654# undef magick
2655#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 /* A bit hackish, but avoids casting later and allows optimization */
2657# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658#define magick vim32x32
2659#include "../runtime/vim32x32.xpm"
2660#undef magick
2661#define magick vim16x16
2662#include "../runtime/vim16x16.xpm"
2663#undef magick
2664#define magick vim48x48
2665#include "../runtime/vim48x48.xpm"
2666#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668
Bram Moolenaar98921892016-02-23 17:14:37 +01002669 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002670
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 /* When started with "--echo-wid" argument, write window ID on stdout. */
2672 if (echo_wid_arg)
2673 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002674 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 fflush(stdout);
2676 }
2677
2678 if (vim_strchr(p_go, GO_ICON) != NULL)
2679 {
2680 /*
2681 * Add an icon to the main window. For fun and convenience of the user.
2682 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 GList *icons = NULL;
2684
2685 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2686 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2687 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2688
2689 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2690
2691 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2692 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 }
2694
2695#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2696 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698#endif
2699 /* Setup to indicate to the window manager that we want to catch the
2700 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2701 * manager instead. */
2702#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2703 if (using_gnome)
2704#endif
2705 setup_save_yourself();
2706
2707#ifdef FEAT_CLIENTSERVER
2708 if (serverName == NULL && serverDelayedStartName != NULL)
2709 {
2710 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002711 commWindow = GDK_WINDOW_XID(mainwin_win);
2712
2713 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2714 serverDelayedStartName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 }
2716 else
2717 {
2718 /*
2719 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2720 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002721 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002723 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2724 GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 }
2726 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002727 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2728 G_CALLBACK(property_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729#endif
2730}
2731
2732 static GdkCursor *
2733create_blank_pointer(void)
2734{
2735 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002736#if GTK_CHECK_VERSION(3,0,0)
2737 GdkPixbuf *blank_mask;
2738#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002740#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002742#if GTK_CHECK_VERSION(3,0,0)
2743 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2744#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 GdkColor color = { 0, 0, 0, 0 };
2746 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002749#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002750 {
2751 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2752 GdkScreen * const scrn = gdk_window_get_screen(win);
2753 root_window = gdk_screen_get_root_window(scrn);
2754 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002755#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756 root_window = gtk_widget_get_root_window(gui.mainwin);
2757#endif
2758
2759 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2760 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002761#if GTK_CHECK_VERSION(3,0,0)
2762 {
2763 cairo_surface_t *surf;
2764 cairo_t *cr;
2765
2766 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2767 cr = cairo_create(surf);
2768
Bram Moolenaar36edf062016-07-21 22:10:12 +02002769 cairo_set_source_rgba(cr,
2770 color.red,
2771 color.green,
2772 color.blue,
2773 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002774 cairo_rectangle(cr, 0, 0, 1, 1);
2775 cairo_fill(cr);
2776 cairo_destroy(cr);
2777
2778 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2779 cairo_surface_destroy(surf);
2780
2781 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2782 blank_mask, 0, 0);
2783 g_object_unref(blank_mask);
2784 }
2785#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2787 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2788 &color, &color, 0, 0);
2789 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002790#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791
2792 return cursor;
2793}
2794
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 static void
2796mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002797 GdkScreen *previous_screen UNUSED,
2798 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799{
2800 if (!gtk_widget_has_screen(widget))
2801 return;
2802
2803 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002804 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 */
2806 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002807#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002808 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002809#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002811#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812
2813 gui.blank_pointer = create_blank_pointer();
2814
Bram Moolenaar98921892016-02-23 17:14:37 +01002815 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2816 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2817 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818
2819 /*
2820 * Create a new PangoContext for this screen, and initialize it
2821 * with the current font if necessary.
2822 */
2823 if (gui.text_context != NULL)
2824 g_object_unref(gui.text_context);
2825
2826 gui.text_context = gtk_widget_create_pango_context(widget);
2827 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2828
2829 if (gui.norm_font != NULL)
2830 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002831 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002832 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 }
2834}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835
2836/*
2837 * After the drawing area comes up, we calculate all colors and create the
2838 * dummy blank cursor.
2839 *
2840 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2841 * fact that the main VIM engine doesn't take them into account anywhere.
2842 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002844drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845{
2846 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002847 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848
2849#ifdef FEAT_XIM
2850 xim_init();
2851#endif
2852 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002853#if GTK_CHECK_VERSION(3,0,0)
2854 gui.surface = gdk_window_create_similar_surface(
2855 gtk_widget_get_window(widget),
2856 CAIRO_CONTENT_COLOR_ALPHA,
2857 gtk_widget_get_allocated_width(widget),
2858 gtk_widget_get_allocated_height(widget));
2859#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002861#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862
2863 gui.blank_pointer = create_blank_pointer();
2864 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002865 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866
2867 /* get the actual size of the scrollbars, if they are realized */
2868 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2869 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2870 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2871 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002872 gtk_widget_get_allocation(sbar, &allocation);
2873 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2874 gui.scrollbar_width = allocation.width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875
2876 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002877 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2878 gui.scrollbar_height = allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879}
2880
2881/*
2882 * Properly clean up on shutdown.
2883 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002885drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886{
2887 /* Don't write messages to the GUI anymore */
2888 full_screen = FALSE;
2889
2890#ifdef FEAT_XIM
2891 im_shutdown();
2892#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 if (gui.ascii_glyphs != NULL)
2894 {
2895 pango_glyph_string_free(gui.ascii_glyphs);
2896 gui.ascii_glyphs = NULL;
2897 }
2898 if (gui.ascii_font != NULL)
2899 {
2900 g_object_unref(gui.ascii_font);
2901 gui.ascii_font = NULL;
2902 }
2903 g_object_unref(gui.text_context);
2904 gui.text_context = NULL;
2905
Bram Moolenaar98921892016-02-23 17:14:37 +01002906#if GTK_CHECK_VERSION(3,0,0)
2907 if (gui.surface != NULL)
2908 {
2909 cairo_surface_destroy(gui.surface);
2910 gui.surface = NULL;
2911 }
2912#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 g_object_unref(gui.text_gc);
2914 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002915#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916
Bram Moolenaar98921892016-02-23 17:14:37 +01002917#if GTK_CHECK_VERSION(3,0,0)
2918 g_object_unref(G_OBJECT(gui.blank_pointer));
2919#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002921#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923}
2924
Bram Moolenaara859f042016-11-17 19:11:55 +01002925#if GTK_CHECK_VERSION(3,22,2)
2926 static void
2927drawarea_style_updated_cb(GtkWidget *widget UNUSED,
2928 gpointer data UNUSED)
2929#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002931drawarea_style_set_cb(GtkWidget *widget UNUSED,
2932 GtkStyle *previous_style UNUSED,
2933 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01002934#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935{
2936 gui_mch_new_colors();
2937}
2938
Bram Moolenaar98921892016-02-23 17:14:37 +01002939#if GTK_CHECK_VERSION(3,0,0)
2940 static gboolean
2941drawarea_configure_event_cb(GtkWidget *widget,
2942 GdkEventConfigure *event,
2943 gpointer data UNUSED)
2944{
2945 static int cur_width = 0;
2946 static int cur_height = 0;
2947
2948 g_return_val_if_fail(event
2949 && event->width >= 1 && event->height >= 1, TRUE);
2950
Bram Moolenaar182707a2016-11-21 20:55:58 +01002951# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01002952 /* As of 3.22.2, GdkWindows have started distributing configure events to
2953 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
2954 *
2955 * As can be seen from the implementation of move_native_children() and
2956 * configure_native_child() in gdkwindow.c, those functions actually
2957 * propagate configure events to every child, failing to distinguish
2958 * "native" one from non-native one.
2959 *
2960 * Naturally, configure events propagated to here like that are fallacious
2961 * and, as a matter of fact, they trigger a geometric collapse of
2962 * gui.drawarea in fullscreen and miximized modes.
2963 *
2964 * To filter out such nuisance events, we are making use of the fact that
2965 * the field send_event of such GdkEventConfigures is set to FALSE in
2966 * configure_native_child().
2967 *
2968 * Obviously, this is a terrible hack making GVim depend on GTK's
2969 * implementation details. Therefore, watch out any relevant internal
2970 * changes happening in GTK in the feature (sigh).
2971 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01002972 /* Follow-up
2973 * After a few weeks later, the GdkWindow change mentioned above was
2974 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
2975 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01002976 if (event->send_event == FALSE)
2977 return TRUE;
2978# endif
2979
Bram Moolenaar98921892016-02-23 17:14:37 +01002980 if (event->width == cur_width && event->height == cur_height)
2981 return TRUE;
2982
2983 cur_width = event->width;
2984 cur_height = event->height;
2985
2986 if (gui.surface != NULL)
2987 cairo_surface_destroy(gui.surface);
2988
2989 gui.surface = gdk_window_create_similar_surface(
2990 gtk_widget_get_window(widget),
2991 CAIRO_CONTENT_COLOR_ALPHA,
2992 event->width, event->height);
2993
2994 gtk_widget_queue_draw(widget);
2995
2996 return TRUE;
2997}
2998#endif
2999
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000/*
3001 * Callback routine for the "delete_event" signal on the toplevel window.
3002 * Tries to vim gracefully, or refuses to exit with changed buffers.
3003 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003005delete_event_cb(GtkWidget *widget UNUSED,
3006 GdkEventAny *event UNUSED,
3007 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008{
3009 gui_shell_closed();
3010 return TRUE;
3011}
3012
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003013#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
3014 static int
3015get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
3016{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003017# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003018 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
3019
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003020 if (using_gnome && widget != NULL)
3021 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003022 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003023 BonoboDockItem *dockitem;
3024
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003025 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003026 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
3027 {
3028 /* Only menu & toolbar are dock items. Could tabline be?
3029 * Seem to be only the 2 defined in GNOME */
3030 widget = parent;
3031 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003032
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003033 if (dockitem == NULL || dockitem->is_floating)
3034 return 0;
3035 item_orientation = bonobo_dock_item_get_orientation(dockitem);
3036 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003037 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003038# else
3039# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01003040# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003041
Bram Moolenaar98921892016-02-23 17:14:37 +01003042 if (widget != NULL
3043 && item_orientation == orientation
3044 && gtk_widget_get_realized(widget)
3045 && gtk_widget_get_visible(widget))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003046 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02003047# if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME)
Bram Moolenaar98921892016-02-23 17:14:37 +01003048 GtkAllocation allocation;
3049
3050 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003051 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01003052# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003053 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3054 return widget->allocation.height;
3055 else
3056 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003057# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003058 }
3059 return 0;
3060}
3061#endif
3062
3063 static int
3064get_menu_tool_width(void)
3065{
3066 int width = 0;
3067
3068#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3069# ifdef FEAT_MENU
3070 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3071# endif
3072# ifdef FEAT_TOOLBAR
3073 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3074# endif
3075# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003076 if (gui.tabline != NULL)
3077 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003078# endif
3079#endif
3080
3081 return width;
3082}
3083
3084 static int
3085get_menu_tool_height(void)
3086{
3087 int height = 0;
3088
3089#ifdef FEAT_MENU
3090 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3091#endif
3092#ifdef FEAT_TOOLBAR
3093 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3094#endif
3095#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003096 if (gui.tabline != NULL)
3097 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003098#endif
3099
3100 return height;
3101}
3102
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003103/* This controls whether we can set the real window hints at
3104 * start-up when in a GtkPlug.
3105 * 0 = normal processing (default)
3106 * 1 = init. hints set, no-one's tried to reset since last check
3107 * 2 = init. hints set, attempt made to change hints
3108 */
3109static int init_window_hints_state = 0;
3110
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003111 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003112update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003113{
3114 static int old_width = 0;
3115 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003116 static int old_min_width = 0;
3117 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003118 static int old_char_width = 0;
3119 static int old_char_height = 0;
3120
3121 int width;
3122 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003123 int min_width;
3124 int min_height;
3125
3126 /* At start-up, don't try to set the hints until the initial
3127 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003128 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003129 */
3130 if (!(force_width && force_height) && init_window_hints_state > 0)
3131 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003132 /* Don't do it! */
3133 init_window_hints_state = 2;
3134 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003135 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003136
3137 /* This also needs to be done when the main window isn't there yet,
3138 * otherwise the hints don't work. */
3139 width = gui_get_base_width();
3140 height = gui_get_base_height();
3141# ifdef FEAT_MENU
3142 height += tabline_height() * gui.char_height;
3143# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003144 width += get_menu_tool_width();
3145 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003146
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003147 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003148 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003149 * 'set columns=' or init. -geom) we briefly set the min. to the size
3150 * we wish to be instead of the legitimate minimum so that we actually
3151 * resize correctly.
3152 */
3153 if (force_width && force_height)
3154 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003155 min_width = force_width;
3156 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003157 }
3158 else
3159 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003160 min_width = width + MIN_COLUMNS * gui.char_width;
3161 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003162 }
3163
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003164 /* Avoid an expose event when the size didn't change. */
3165 if (width != old_width
3166 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003167 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003168 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003169 || gui.char_width != old_char_width
3170 || gui.char_height != old_char_height)
3171 {
3172 GdkGeometry geometry;
3173 GdkWindowHints geometry_mask;
3174
3175 geometry.width_inc = gui.char_width;
3176 geometry.height_inc = gui.char_height;
3177 geometry.base_width = width;
3178 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003179 geometry.min_width = min_width;
3180 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003181 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3182 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003183 /* Using gui.formwin as geometry widget doesn't work as expected
3184 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3185 * in Vim confuse GTK+. */
3186 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3187 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003188 old_width = width;
3189 old_height = height;
3190 old_min_width = min_width;
3191 old_min_height = min_height;
3192 old_char_width = gui.char_width;
3193 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003194 }
3195}
3196
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197#ifdef FEAT_TOOLBAR
3198
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199/*
3200 * This extra effort wouldn't be necessary if we only used stock icons in the
3201 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3202 * shouldn't be treated differently, thus we do need this.
3203 */
3204 static void
3205icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3206{
3207 if (GTK_IS_IMAGE(widget))
3208 {
3209 GtkImage *image = (GtkImage *)widget;
3210
Bram Moolenaar98921892016-02-23 17:14:37 +01003211# if GTK_CHECK_VERSION(3,10,0)
3212 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3213 {
3214 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3215 const gchar *icon_name;
3216
3217 gtk_image_get_icon_name(image, &icon_name, NULL);
3218
3219 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3220 }
3221# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 /* User-defined icons are stored in a GtkIconSet */
3223 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3224 {
3225 GtkIconSet *icon_set;
3226 GtkIconSize icon_size;
3227
3228 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3229 icon_size = (GtkIconSize)(long)user_data;
3230
3231 gtk_icon_set_ref(icon_set);
3232 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3233 gtk_icon_set_unref(icon_set);
3234 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003235# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236 }
3237 else if (GTK_IS_CONTAINER(widget))
3238 {
3239 gtk_container_foreach((GtkContainer *)widget,
3240 &icon_size_changed_foreach,
3241 user_data);
3242 }
3243}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244
3245 static void
3246set_toolbar_style(GtkToolbar *toolbar)
3247{
3248 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249 GtkIconSize size;
3250 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3253 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3254 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003255 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3257 style = GTK_TOOLBAR_BOTH;
3258 else if (toolbar_flags & TOOLBAR_TEXT)
3259 style = GTK_TOOLBAR_TEXT;
3260 else
3261 style = GTK_TOOLBAR_ICONS;
3262
3263 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003264# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003266# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 switch (tbis_flags)
3269 {
3270 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3271 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3272 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3273 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003274 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3275 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 default: size = GTK_ICON_SIZE_INVALID; break;
3277 }
3278 oldsize = gtk_toolbar_get_icon_size(toolbar);
3279
3280 if (size == GTK_ICON_SIZE_INVALID)
3281 {
3282 /* Let global user preferences decide the icon size. */
3283 gtk_toolbar_unset_icon_size(toolbar);
3284 size = gtk_toolbar_get_icon_size(toolbar);
3285 }
3286 if (size != oldsize)
3287 {
3288 gtk_container_foreach(GTK_CONTAINER(toolbar),
3289 &icon_size_changed_foreach,
3290 GINT_TO_POINTER((int)size));
3291 }
3292 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293}
3294
3295#endif /* FEAT_TOOLBAR */
3296
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003297#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3298static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003299static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003300# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003301static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003302# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003303static int clicked_page; /* page clicked in tab line */
3304
3305/*
3306 * Handle selecting an item in the tab line popup menu.
3307 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003308 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003309tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003310{
Bram Moolenaara5621492006-02-25 21:55:24 +00003311 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003312 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003313}
3314
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003315 static void
3316add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3317{
3318 GtkWidget *item;
3319 char_u *utf_text;
3320
3321 utf_text = CONVERT_TO_UTF8(text);
3322 item = gtk_menu_item_new_with_label((const char *)utf_text);
3323 gtk_widget_show(item);
3324 CONVERT_TO_UTF8_FREE(utf_text);
3325
3326 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003327 g_signal_connect(G_OBJECT(item), "activate",
3328 G_CALLBACK(tabline_menu_handler),
3329 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003330}
3331
Bram Moolenaara5621492006-02-25 21:55:24 +00003332/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003333 * Create a menu for the tab line.
3334 */
3335 static GtkWidget *
3336create_tabline_menu(void)
3337{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003338 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003339
3340 menu = gtk_menu_new();
Bram Moolenaar7098ee52015-06-09 19:14:24 +02003341 if (first_tabpage->tp_next != NULL)
3342 add_tabline_menu_item(menu, (char_u *)_("Close tab"),
3343 TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003344 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3345 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003346
3347 return menu;
3348}
3349
3350 static gboolean
3351on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3352{
3353 /* Was this button press event ? */
3354 if (event->type == GDK_BUTTON_PRESS)
3355 {
3356 GdkEventButton *bevent = (GdkEventButton *)event;
3357 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003358 int y = bevent->y;
3359 GtkWidget *tabwidget;
3360 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003361
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003362 /* When ignoring events return TRUE so that the selected page doesn't
3363 * change. */
3364 if (hold_gui_events
3365# ifdef FEAT_CMDWIN
3366 || cmdwin_type != 0
3367# endif
3368 )
3369 return TRUE;
3370
Bram Moolenaar98921892016-02-23 17:14:37 +01003371 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003372
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003373 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003374 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3375 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003376
3377 /* If the event was generated for 3rd button popup the menu. */
3378 if (bevent->button == 3)
3379 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003380# if GTK_CHECK_VERSION(3,22,2)
3381 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3382# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003383 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3384 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003385# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003386 /* We handled the event. */
3387 return TRUE;
3388 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003389 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003390 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003391 if (clicked_page == 0)
3392 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003393 /* Click after all tabs moves to next tab page. When "x" is
3394 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003395 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003396 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003397 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003398 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003399
Bram Moolenaara5621492006-02-25 21:55:24 +00003400 /* We didn't handle the event. */
3401 return FALSE;
3402}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003403
3404/*
3405 * Handle selecting one of the tabs.
3406 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003407 static void
3408on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003409 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003410 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003411 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003412 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003413{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003414 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003415 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003416}
3417
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003418# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003419/*
3420 * Handle reordering the tabs (using D&D).
3421 */
3422 static void
3423on_tab_reordered(
3424 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003425 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003426 gint idx,
3427 gpointer data UNUSED)
3428{
3429 if (!ignore_tabline_evt)
3430 {
3431 if ((tabpage_index(curtab) - 1) < idx)
3432 tabpage_move(idx + 1);
3433 else
3434 tabpage_move(idx);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003435 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003436}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003437# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003438
3439/*
3440 * Show or hide the tabline.
3441 */
3442 void
3443gui_mch_show_tabline(int showit)
3444{
3445 if (gui.tabline == NULL)
3446 return;
3447
3448 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3449 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003450 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003451 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003452 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003453 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003454 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003455 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003456
3457 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003458}
3459
3460/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003461 * Return TRUE when tabline is displayed.
3462 */
3463 int
3464gui_mch_showing_tabline(void)
3465{
3466 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003467 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003468}
3469
3470/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003471 * Update the labels of the tabline.
3472 */
3473 void
3474gui_mch_update_tabline(void)
3475{
3476 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003477 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003478 GtkWidget *label;
3479 tabpage_T *tp;
3480 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003481 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003482 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003483 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003484
3485 if (gui.tabline == NULL)
3486 return;
3487
3488 ignore_tabline_evt = TRUE;
3489
3490 /* Add a label for each tab page. They all contain the same text area. */
3491 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3492 {
3493 if (tp == curtab)
3494 curtabidx = nr;
3495
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003496 tab_num = nr + 1;
3497
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003498 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3499 if (page == NULL)
3500 {
3501 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003502# if GTK_CHECK_VERSION(3,2,0)
3503 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3504 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3505# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003506 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003507# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003508 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003509 event_box = gtk_event_box_new();
3510 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003511 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003512# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003513 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003514# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003515 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003516 gtk_widget_show(label);
3517 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3518 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003519 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003520 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003521# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003522 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3523 page,
3524 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003525# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003526 }
3527
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003528 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003529 g_object_set_data(G_OBJECT(event_box), "tab_num",
3530 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003531 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003532 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003533 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003534 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003535 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003536
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003537 get_tabline_label(tp, TRUE);
3538 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003539# if GTK_CHECK_VERSION(3,0,0)
3540 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3541# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003542 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3543 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003544# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003545 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003546 }
3547
3548 /* Remove any old labels. */
3549 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3550 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3551
Bram Moolenaar98921892016-02-23 17:14:37 +01003552 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3553 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003554
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003555 /* Make sure everything is in place before drawing text. */
3556 gui_mch_update();
3557
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003558 ignore_tabline_evt = FALSE;
3559}
3560
3561/*
3562 * Set the current tab to "nr". First tab is 1.
3563 */
3564 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003565gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003566{
3567 if (gui.tabline == NULL)
3568 return;
3569
3570 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003571 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3572 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003573 ignore_tabline_evt = FALSE;
3574}
3575
3576#endif /* FEAT_GUI_TABLINE */
3577
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003579 * Add selection targets for PRIMARY and CLIPBOARD selections.
3580 */
3581 void
3582gui_gtk_set_selection_targets(void)
3583{
3584 int i, j = 0;
3585 int n_targets = N_SELECTION_TARGETS;
3586 GtkTargetEntry targets[N_SELECTION_TARGETS];
3587
3588 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3589 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003590 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003591 * return something, instead of trying another target. Therefore only
3592 * offer TARGET_HTML when it works. */
3593 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3594 n_targets--;
3595 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003596 targets[j++] = selection_targets[i];
3597 }
3598
3599 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3600 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3601 gtk_selection_add_targets(gui.drawarea,
3602 (GdkAtom)GDK_SELECTION_PRIMARY,
3603 targets, n_targets);
3604 gtk_selection_add_targets(gui.drawarea,
3605 (GdkAtom)clip_plus.gtk_sel_atom,
3606 targets, n_targets);
3607}
3608
3609/*
3610 * Set up for receiving DND items.
3611 */
3612 void
3613gui_gtk_set_dnd_targets(void)
3614{
3615 int i, j = 0;
3616 int n_targets = N_DND_TARGETS;
3617 GtkTargetEntry targets[N_DND_TARGETS];
3618
3619 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3620 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003621 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003622 n_targets--;
3623 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003624 targets[j++] = dnd_targets[i];
3625 }
3626
3627 gtk_drag_dest_unset(gui.drawarea);
3628 gtk_drag_dest_set(gui.drawarea,
3629 GTK_DEST_DEFAULT_ALL,
3630 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003631 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003632}
3633
3634/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3636 * Returns OK for success, FAIL when the GUI can't be started.
3637 */
3638 int
3639gui_mch_init(void)
3640{
3641 GtkWidget *vbox;
3642
3643#ifdef FEAT_GUI_GNOME
3644 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3645 * exits on failure, but that's a non-issue because we already called
3646 * gtk_init_check() in gui_mch_init_check(). */
3647 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003648 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3650 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003651# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003652 {
3653 char *p = setlocale(LC_NUMERIC, NULL);
3654
3655 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3656 * init may change it. */
3657 if (p == NULL || strcmp(p, "C") != 0)
3658 setlocale(LC_NUMERIC, "C");
3659 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003660# endif
3661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003663 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003665#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666 /* Set the human-readable application name */
3667 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003668#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 /*
3670 * Force UTF-8 output no matter what the value of 'encoding' is.
3671 * did_set_string_option() in option.c prohibits changing 'termencoding'
3672 * to something else than UTF-8 if the GUI is in use.
3673 */
3674 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3675
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003676#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003678#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3680 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003681#if !GTK_CHECK_VERSION(3,0,0)
3682# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003684# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685#endif
3686
3687 /* Initialize values */
3688 gui.border_width = 2;
3689 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3690 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003691#if GTK_CHECK_VERSION(3,0,0)
3692 gui.fgcolor = g_new(GdkRGBA, 1);
3693 gui.bgcolor = g_new(GdkRGBA, 1);
3694 gui.spcolor = g_new(GdkRGBA, 1);
3695#else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003696 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003698 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003700 /* LINTED: avoid warning: conversion to 'unsigned long' */
3701 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003702#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703
3704 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003705 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707
3708 /* Set default foreground and background colors. */
3709 gui.norm_pixel = gui.def_norm_pixel;
3710 gui.back_pixel = gui.def_back_pixel;
3711
3712 if (gtk_socket_id != 0)
3713 {
3714 GtkWidget *plug;
3715
3716 /* Use GtkSocket from another app. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3718 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003719 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 {
3721 gui.mainwin = plug;
3722 }
3723 else
3724 {
3725 g_warning("Connection to GTK+ socket (ID %u) failed",
3726 (unsigned int)gtk_socket_id);
3727 /* Pretend we never wanted it if it failed (get own window) */
3728 gtk_socket_id = 0;
3729 }
3730 }
3731
3732 if (gtk_socket_id == 0)
3733 {
3734#ifdef FEAT_GUI_GNOME
3735 if (using_gnome)
3736 {
3737 gui.mainwin = gnome_app_new("Vim", NULL);
3738# ifdef USE_XSMP
3739 /* Use the GNOME save-yourself functionality now. */
3740 xsmp_close();
3741# endif
3742 }
3743 else
3744#endif
3745 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3746 }
3747
3748 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3749
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 /* Create the PangoContext used for drawing all text. */
3751 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3752 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753
Bram Moolenaar98921892016-02-23 17:14:37 +01003754 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3756
Bram Moolenaar98921892016-02-23 17:14:37 +01003757 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3758 G_CALLBACK(&delete_event_cb), NULL);
3759
3760 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3761 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003762
3763 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003765
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 gui.accel_group = gtk_accel_group_new();
3767 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003769 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003770#if GTK_CHECK_VERSION(3,2,0)
3771 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3772 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3773#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776
3777#ifdef FEAT_GUI_GNOME
3778 if (using_gnome)
3779 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003780# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 /* automagically restore menubar/toolbar placement */
3782 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3783# endif
3784 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3785 }
3786 else
3787#endif
3788 {
3789 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3790 gtk_widget_show(vbox);
3791 }
3792
3793#ifdef FEAT_MENU
3794 /*
3795 * Create the menubar and handle
3796 */
3797 gui.menubar = gtk_menu_bar_new();
3798 gtk_widget_set_name(gui.menubar, "vim-menubar");
3799
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003800 /* Avoid that GTK takes <F10> away from us. */
3801 {
3802 GtkSettings *gtk_settings;
3803
3804 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3805 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3806 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003807
3808
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809# ifdef FEAT_GUI_GNOME
3810 if (using_gnome)
3811 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 BonoboDockItem *dockitem;
3813
3814 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3815 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3816 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00003817 /* We don't want the menu to float. */
3818 bonobo_dock_item_set_behavior(dockitem,
3819 bonobo_dock_item_get_behavior(dockitem)
3820 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 }
3823 else
3824# endif /* FEAT_GUI_GNOME */
3825 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00003826 /* Always show the menubar, otherwise <F10> doesn't work. It may be
3827 * disabled in gui_init() later. */
3828 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3830 }
3831#endif /* FEAT_MENU */
3832
3833#ifdef FEAT_TOOLBAR
3834 /*
3835 * Create the toolbar and handle
3836 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01003838# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01003839 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003840 /* N.B. Since the default value of GtkToolbar::button-relief is
3841 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
3842# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843 gtk_rc_parse_string(
3844 "style \"vim-toolbar-style\" {\n"
3845 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3846 "}\n"
3847 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003848# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 gui.toolbar = gtk_toolbar_new();
3850 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3852
3853# ifdef FEAT_GUI_GNOME
3854 if (using_gnome)
3855 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 BonoboDockItem *dockitem;
3857
3858 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3859 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3860 GNOME_APP_TOOLBAR_NAME);
3861 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003862 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00003863 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003864 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003865 bonobo_dock_item_get_behavior(dockitem)
3866 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 }
3869 else
3870# endif /* FEAT_GUI_GNOME */
3871 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3873 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3874 gtk_widget_show(gui.toolbar);
3875 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3876 }
3877#endif /* FEAT_TOOLBAR */
3878
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003879#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003880 /*
3881 * Use a Notebook for the tab pages labels. The labels are hidden by
3882 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003883 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003884 gui.tabline = gtk_notebook_new();
3885 gtk_widget_show(gui.tabline);
3886 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3887 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3888 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003889 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003890# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003891 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003892# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003893
Bram Moolenaar98921892016-02-23 17:14:37 +01003894# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003895 tabline_tooltip = gtk_tooltips_new();
3896 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003897# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003898
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003899 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003900 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003901
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003902 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003903# if GTK_CHECK_VERSION(3,2,0)
3904 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3905 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3906# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003907 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003908# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003909 gtk_widget_show(page);
3910 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3911 label = gtk_label_new("-Empty-");
3912 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003913 event_box = gtk_event_box_new();
3914 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003915 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003916# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003917 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003918# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003919 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003920 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003921# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003922 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003923# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003924 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003925
Bram Moolenaar98921892016-02-23 17:14:37 +01003926 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3927 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003928# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003929 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3930 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003931# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003932
3933 /* Create a popup menu for the tab line and connect it. */
3934 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003935 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3936 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01003937#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003938
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003940 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003941#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944
3945 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaara859f042016-11-17 19:11:55 +01003946#if GTK_CHECK_VERSION(3,22,2)
3947 gtk_widget_set_name(gui.drawarea, "vim-gui-drawarea");
3948#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003949#if GTK_CHECK_VERSION(3,0,0)
3950 gui.surface = NULL;
3951 gui.by_signal = FALSE;
3952#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953
3954 /* Determine which events we will filter. */
3955 gtk_widget_set_events(gui.drawarea,
3956 GDK_EXPOSURE_MASK |
3957 GDK_ENTER_NOTIFY_MASK |
3958 GDK_LEAVE_NOTIFY_MASK |
3959 GDK_BUTTON_PRESS_MASK |
3960 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 GDK_KEY_PRESS_MASK |
3963 GDK_KEY_RELEASE_MASK |
3964 GDK_POINTER_MOTION_MASK |
3965 GDK_POINTER_MOTION_HINT_MASK);
3966
3967 gtk_widget_show(gui.drawarea);
3968 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
3969 gtk_widget_show(gui.formwin);
3970 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3971
3972 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
3973 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003974 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3975 : G_OBJECT(gui.drawarea),
3976 "key-press-event",
3977 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003978#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 /* Also forward key release events for the benefit of GTK+ 2 input
3980 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
3981 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3982 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003983 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 G_CALLBACK(&key_release_event), NULL);
3985#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003986 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3987 G_CALLBACK(drawarea_realize_cb), NULL);
3988 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3989 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003990#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003991 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3992 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003993#endif
3994#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003995 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3996 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003997#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003998 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3999 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004000#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001
Bram Moolenaar98921892016-02-23 17:14:37 +01004002#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01004004#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005
4006#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
4007 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
4008 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
4009#endif
4010
4011 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004012 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01004013 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014
4015 /*
4016 * Set clipboard specific atoms
4017 */
4018 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
4021 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
4022
4023 /*
4024 * Start out by adding the configured border width into the border offset.
4025 */
4026 gui.border_offset = gui.border_width;
4027
Bram Moolenaar98921892016-02-23 17:14:37 +01004028#if GTK_CHECK_VERSION(3,0,0)
4029 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
4030 G_CALLBACK(draw_event), NULL);
4031#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
4033 GTK_SIGNAL_FUNC(visibility_event), NULL);
4034 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
4035 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004036#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037
4038 /*
4039 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
4040 * Only needed for some window managers.
4041 */
4042 if (vim_strchr(p_go, GO_POINTER) != NULL)
4043 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004044 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4045 G_CALLBACK(leave_notify_event), NULL);
4046 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4047 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 }
4049
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004050 /* Real windows can get focus ... GtkPlug, being a mere container can't,
4051 * only its widgets. Arguably, this could be common code and we not use
4052 * the window focus at all, but let's be safe.
4053 */
4054 if (gtk_socket_id == 0)
4055 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004056 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4057 G_CALLBACK(focus_out_event), NULL);
4058 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4059 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004060 }
4061 else
4062 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004063 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4064 G_CALLBACK(focus_out_event), NULL);
4065 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4066 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004067#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004068 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4069 G_CALLBACK(focus_out_event), NULL);
4070 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4071 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004072#endif /* FEAT_GUI_TABLINE */
4073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074
Bram Moolenaar98921892016-02-23 17:14:37 +01004075 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4076 G_CALLBACK(motion_notify_event), NULL);
4077 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4078 G_CALLBACK(button_press_event), NULL);
4079 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4080 G_CALLBACK(button_release_event), NULL);
4081 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4082 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083
4084 /*
4085 * Add selection handler functions.
4086 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004087 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4088 G_CALLBACK(selection_clear_event), NULL);
4089 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4090 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091
Bram Moolenaara76638f2010-06-05 12:49:46 +02004092 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093
Bram Moolenaar98921892016-02-23 17:14:37 +01004094 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4095 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096
4097 /* Pretend we don't have input focus, we will get an event if we do. */
4098 gui.in_focus = FALSE;
4099
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02004100 // Handle changes to the "Xft/DPI" setting.
4101 {
4102 GtkSettings *gtk_settings =
4103 gtk_settings_get_for_screen(gdk_screen_get_default());
4104
4105 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
4106 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
4107 }
4108
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 return OK;
4110}
4111
4112#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4113/*
4114 * This is called from gui_start() after a fork() has been done.
4115 * We have to tell the session manager our new PID.
4116 */
4117 void
4118gui_mch_forked(void)
4119{
4120 if (using_gnome)
4121 {
4122 GnomeClient *client;
4123
4124 client = gnome_master_client();
4125
4126 if (client != NULL)
4127 gnome_client_set_process_id(client, getpid());
4128 }
4129}
4130#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4131
Bram Moolenaar98921892016-02-23 17:14:37 +01004132#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004133 static GdkRGBA
4134color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004135{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004136 GdkRGBA rgba;
4137 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4138 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4139 rgba.blue = ((color & 0xff)) / 255.0;
4140 rgba.alpha = 1.0;
4141 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004142}
4143
4144 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004145set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004146{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004147 const GdkRGBA rgba = color_to_rgba(color);
4148 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004149}
4150#endif /* GTK_CHECK_VERSION(3,0,0) */
4151
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152/*
4153 * Called when the foreground or background color has been changed.
4154 * This used to change the graphics contexts directly but we are
4155 * currently manipulating them where desired.
4156 */
4157 void
4158gui_mch_new_colors(void)
4159{
Bram Moolenaar98921892016-02-23 17:14:37 +01004160 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02004162#if !GTK_CHECK_VERSION(3,22,2)
4163 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
4164#endif
4165
Bram Moolenaara859f042016-11-17 19:11:55 +01004166#if GTK_CHECK_VERSION(3,22,2)
4167 GtkStyleContext * const context
4168 = gtk_widget_get_style_context(gui.drawarea);
4169 GtkCssProvider * const provider = gtk_css_provider_new();
4170 gchar * const css = g_strdup_printf(
4171 "widget#vim-gui-drawarea {\n"
4172 " background-color: #%.2lx%.2lx%.2lx;\n"
4173 "}\n",
4174 (gui.back_pixel >> 16) & 0xff,
4175 (gui.back_pixel >> 8) & 0xff,
4176 gui.back_pixel & 0xff);
4177
4178 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4179 gtk_style_context_add_provider(context,
4180 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4181
4182 g_free(css);
4183 g_object_unref(provider);
4184#elif GTK_CHECK_VERSION(3,4,0) /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar36edf062016-07-21 22:10:12 +02004185 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004186
Bram Moolenaar36edf062016-07-21 22:10:12 +02004187 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004188 {
4189 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004190 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004191 if (pat != NULL)
4192 {
4193 gdk_window_set_background_pattern(da_win, pat);
4194 cairo_pattern_destroy(pat);
4195 }
4196 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004197 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004198 }
4199#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200 GdkColor color = { 0, 0, 0, 0 };
4201
4202 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004203 gdk_window_set_background(da_win, &color);
Bram Moolenaara859f042016-11-17 19:11:55 +01004204#endif /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 }
4206}
4207
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208/*
4209 * This signal informs us about the need to rearrange our sub-widgets.
4210 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004212form_configure_event(GtkWidget *widget UNUSED,
4213 GdkEventConfigure *event,
4214 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004216 int usable_height = event->height;
4217
Bram Moolenaar182707a2016-11-21 20:55:58 +01004218#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01004219 /* As of 3.22.2, GdkWindows have started distributing configure events to
4220 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4221 *
4222 * As can be seen from the implementation of move_native_children() and
4223 * configure_native_child() in gdkwindow.c, those functions actually
4224 * propagate configure events to every child, failing to distinguish
4225 * "native" one from non-native one.
4226 *
4227 * Naturally, configure events propagated to here like that are fallacious
4228 * and, as a matter of fact, they trigger a geometric collapse of
4229 * gui.formwin.
4230 *
4231 * To filter out such fallacious events, check if the given event is the
4232 * one that was sent out to the right place. Ignore it if not.
4233 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01004234 /* Follow-up
4235 * After a few weeks later, the GdkWindow change mentioned above was
4236 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4237 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01004238 if (event->window != gtk_widget_get_window(gui.formwin))
4239 return TRUE;
4240#endif
4241
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004242 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4243 * no. of char-heights), so we have to manually sanitise them.
4244 * Widths seem to sort themselves out, don't ask me why.
4245 */
4246 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004247 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004248
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004250 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 gtk_form_thaw(GTK_FORM(gui.formwin));
4252
4253 return TRUE;
4254}
4255
4256/*
4257 * Function called when window already closed.
4258 * We can't do much more here than to trying to preserve what had been done,
4259 * since the window is already inevitably going away.
4260 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004261 static void
4262mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263{
4264 /* Don't write messages to the GUI anymore */
4265 full_screen = FALSE;
4266
4267 gui.mainwin = NULL;
4268 gui.drawarea = NULL;
4269
4270 if (!exiting) /* only do anything if the destroy was unexpected */
4271 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004272 vim_strncpy(IObuff,
4273 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4274 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 preserve_exit();
4276 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004277#ifdef USE_GRESOURCE
4278 gui_gtk_unregister_resource();
4279#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280}
4281
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004282
4283/*
4284 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4285 * hints (and thus the required size from -geom), but that after that we
4286 * put the hints back to normal (the actual minimum size) so we may
4287 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaar49325942007-05-10 19:19:59 +00004288 * plug's window 'min hints to set *it's* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004289 * only way we have of making ourselves bigger (by set lines/columns).
4290 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004291 * second after the final attempt to reset the real minimum hints (done by
4292 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004293 * We'll not let the default hints be set while this timer's active.
4294 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004295 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004296check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004297{
4298 if (init_window_hints_state == 1)
4299 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004300 /* Safe to use normal hints now */
4301 init_window_hints_state = 0;
4302 update_window_manager_hints(0, 0);
4303 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004304 }
4305
4306 /* Keep on trying */
4307 init_window_hints_state = 1;
4308 return TRUE;
4309}
4310
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311/*
4312 * Open the GUI window which was created by a call to gui_mch_init().
4313 */
4314 int
4315gui_mch_open(void)
4316{
4317 guicolor_T fg_pixel = INVALCOLOR;
4318 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004319 guint pixel_width;
4320 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 /*
4323 * Allow setting a window role on the command line, or invent one
4324 * if none was specified. This is mainly useful for GNOME session
4325 * support; allowing the WM to restore window placement.
4326 */
4327 if (role_argument != NULL)
4328 {
4329 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4330 }
4331 else
4332 {
4333 char *role;
4334
4335 /* Invent a unique-enough ID string for the role */
4336 role = g_strdup_printf("vim-%u-%u-%u",
4337 (unsigned)mch_get_pid(),
4338 (unsigned)g_random_int(),
4339 (unsigned)time(NULL));
4340
4341 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4342 g_free(role);
4343 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344
4345 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347
4348 /* Determine user specified geometry, if present. */
4349 if (gui.geom != NULL)
4350 {
4351 int mask;
4352 unsigned int w, h;
4353 int x = 0;
4354 int y = 0;
4355
4356 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4357
4358 if (mask & WidthValue)
4359 Columns = w;
4360 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004361 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004362 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004363 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004365 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004366 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004367
4368 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4369 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4370
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004371 pixel_width += get_menu_tool_width();
4372 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004373
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004375 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004376 int ww, hh;
4377 gui_mch_get_screen_dimensions(&ww, &hh);
4378 hh += p_ghr + get_menu_tool_height();
4379 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004380 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004381 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004382 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004383 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004385 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004386 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004387
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004388 /* From now until everyone's stopped trying to set the window hints
4389 * to their correct minimum values, stop them being set as we need
4390 * them to remain at our required size for the parent GtkSocket to
4391 * give us the right initial size.
4392 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004393 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004394 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004395 update_window_manager_hints(pixel_width, pixel_height);
4396 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004397 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004398 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 }
4400
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004401 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4402 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004403 /* For GTK2 changing the size of the form widget doesn't cause window
4404 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004405 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004406 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004407 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408
4409 if (foreground_argument != NULL)
4410 fg_pixel = gui_get_color((char_u *)foreground_argument);
4411 if (fg_pixel == INVALCOLOR)
4412 fg_pixel = gui_get_color((char_u *)"Black");
4413
4414 if (background_argument != NULL)
4415 bg_pixel = gui_get_color((char_u *)background_argument);
4416 if (bg_pixel == INVALCOLOR)
4417 bg_pixel = gui_get_color((char_u *)"White");
4418
4419 if (found_reverse_arg)
4420 {
4421 gui.def_norm_pixel = bg_pixel;
4422 gui.def_back_pixel = fg_pixel;
4423 }
4424 else
4425 {
4426 gui.def_norm_pixel = fg_pixel;
4427 gui.def_back_pixel = bg_pixel;
4428 }
4429
4430 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4431 * in a vimrc file) */
4432 set_normal_colors();
4433
4434 /* Check that none of the colors are the same as the background color */
4435 gui_check_colors();
4436
4437 /* Get the colors for the highlight groups (gui_check_colors() might have
4438 * changed them). */
4439 highlight_gui_started(); /* re-init colors and fonts */
4440
Bram Moolenaar98921892016-02-23 17:14:37 +01004441 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4442 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443
4444#ifdef FEAT_HANGULIN
4445 hangul_keyboard_set();
4446#endif
4447
4448 /*
4449 * Notify the fixed area about the need to resize the contents of the
4450 * gui.formwin, which we use for random positioning of the included
4451 * components.
4452 *
4453 * We connect this signal deferred finally after anything is in place,
4454 * since this is intended to handle resizements coming from the window
4455 * manager upon us and should not interfere with what VIM is requesting
4456 * upon startup.
4457 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004458 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4459 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460
4461#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004462 /* Set up for receiving DND items. */
4463 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464
Bram Moolenaar98921892016-02-23 17:14:37 +01004465 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4466 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467#endif
4468
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004470 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 if (found_iconic_arg && gtk_socket_id == 0)
4472 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473
4474 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004475#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476 unsigned long menu_handler = 0;
4477# ifdef FEAT_TOOLBAR
4478 unsigned long tool_handler = 0;
4479# endif
4480 /*
4481 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4482 * show when restoring the saved layout configuration. We can't just
4483 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4484 * a toplevel window and thus will be realized immediately. Instead,
4485 * connect signal handlers to hide the widgets just after they've been
4486 * marked visible, but before the main window is realized.
4487 */
4488 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4489 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4490 G_CALLBACK(&gtk_widget_hide),
4491 NULL);
4492# ifdef FEAT_TOOLBAR
4493 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4494 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4495 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4496 G_CALLBACK(&gtk_widget_hide),
4497 NULL);
4498# endif
4499#endif
4500 gtk_widget_show(gui.mainwin);
4501
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004502#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 if (menu_handler != 0)
4504 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4505# ifdef FEAT_TOOLBAR
4506 if (tool_handler != 0)
4507 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4508# endif
4509#endif
4510 }
4511
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 return OK;
4513}
4514
4515
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004517gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518{
4519 if (gui.mainwin != NULL)
4520 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521}
4522
4523/*
4524 * Get the position of the top left corner of the window.
4525 */
4526 int
4527gui_mch_get_winpos(int *x, int *y)
4528{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 return OK;
4531}
4532
4533/*
4534 * Set the position of the top left corner of the window to the given
4535 * coordinates.
4536 */
4537 void
4538gui_mch_set_winpos(int x, int y)
4539{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541}
4542
Bram Moolenaar98921892016-02-23 17:14:37 +01004543#if !GTK_CHECK_VERSION(3,0,0)
4544# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545static int resize_idle_installed = FALSE;
4546/*
4547 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4548 * the shell size doesn't exceed the window size, i.e. if the window manager
4549 * ignored our size request. Usually this happens if the window is maximized.
4550 *
4551 * FIXME: It'd be nice if we could find a little more orthodox solution.
4552 * See also the remark below in gui_mch_set_shellsize().
4553 *
4554 * DISABLED: When doing ":set lines+=1" this function would first invoke
4555 * gui_resize_shell() with the old size, then the normal callback would
4556 * report the new size through form_configure_event(). That caused the window
4557 * layout to be messed up.
4558 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 static gboolean
4560force_shell_resize_idle(gpointer data)
4561{
4562 if (gui.mainwin != NULL
4563 && GTK_WIDGET_REALIZED(gui.mainwin)
4564 && GTK_WIDGET_VISIBLE(gui.mainwin))
4565 {
4566 int width;
4567 int height;
4568
4569 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4570
4571 width -= get_menu_tool_width();
4572 height -= get_menu_tool_height();
4573
4574 gui_resize_shell(width, height);
4575 }
4576
4577 resize_idle_installed = FALSE;
4578 return FALSE; /* don't call me again */
4579}
Bram Moolenaar98921892016-02-23 17:14:37 +01004580# endif
4581#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582
Bram Moolenaar09736232009-09-23 16:14:49 +00004583/*
4584 * Return TRUE if the main window is maximized.
4585 */
4586 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004587gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004588{
Bram Moolenaar98921892016-02-23 17:14:37 +01004589 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4590 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4591 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004592}
4593
4594/*
4595 * Unmaximize the main window
4596 */
4597 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004598gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004599{
4600 if (gui.mainwin != NULL)
4601 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4602}
Bram Moolenaar09736232009-09-23 16:14:49 +00004603
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004605 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4606 * is set. Compute the new Rows and Columns. This is like resizing the
4607 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004608 */
4609 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004610gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004611{
4612 int w, h;
4613
4614 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4615 w -= get_menu_tool_width();
4616 h -= get_menu_tool_height();
4617 gui_resize_shell(w, h);
4618}
4619
4620/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 * Set the windows size.
4622 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 void
4624gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004625 int min_width UNUSED, int min_height UNUSED,
4626 int base_width UNUSED, int base_height UNUSED,
4627 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 /* give GTK+ a chance to put all widget's into place */
4630 gui_mch_update();
4631
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004632 /* this will cause the proper resizement to happen too */
4633 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004634 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004635
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004637 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638 * main window instead. */
4639 width += get_menu_tool_width();
4640 height += get_menu_tool_height();
4641
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004642 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004643 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004644 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004645 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646
Bram Moolenaar98921892016-02-23 17:14:37 +01004647# if !GTK_CHECK_VERSION(3,0,0)
4648# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 if (!resize_idle_installed)
4650 {
4651 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4652 &force_shell_resize_idle, NULL, NULL);
4653 resize_idle_installed = TRUE;
4654 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004655# endif
4656# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 /*
4658 * Wait until all events are processed to prevent a crash because the
4659 * real size of the drawing area doesn't reflect Vim's internal ideas.
4660 *
4661 * This is a bit of a hack, since Vim is a terminal application with a GUI
4662 * on top, while the GUI expects to be the boss.
4663 */
4664 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665}
4666
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004667 void
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004668gui_gtk_get_screen_geom_of_win(
4669 GtkWidget *wid,
4670 int *screen_x,
4671 int *screen_y,
4672 int *width,
4673 int *height)
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004674{
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004675 GdkRectangle geometry;
4676 GdkWindow *win = gtk_widget_get_window(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004677#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar8696bba2017-09-09 23:00:56 +02004678 GdkDisplay *dpy = gtk_widget_get_display(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004679 GdkMonitor *monitor = gdk_display_get_monitor_at_window(dpy, win);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004680
4681 gdk_monitor_get_geometry(monitor, &geometry);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004682#else
4683 GdkScreen* screen;
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004684 int monitor;
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004685
Bram Moolenaar8696bba2017-09-09 23:00:56 +02004686 if (wid != NULL && gtk_widget_has_screen(wid))
4687 screen = gtk_widget_get_screen(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004688 else
4689 screen = gdk_screen_get_default();
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004690 monitor = gdk_screen_get_monitor_at_window(screen, win);
4691 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004692#endif
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004693 *screen_x = geometry.x;
4694 *screen_y = geometry.y;
4695 *width = geometry.width;
4696 *height = geometry.height;
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004697}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698
4699/*
4700 * The screen size is used to make sure the initial window doesn't get bigger
4701 * than the screen. This subtracts some room for menubar, toolbar and window
4702 * decorations.
4703 */
4704 void
4705gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4706{
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004707 int x, y;
4708
4709 gui_gtk_get_screen_geom_of_win(gui.mainwin, &x, &y, screen_w, screen_h);
Bram Moolenaara859f042016-11-17 19:11:55 +01004710
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02004711 /* Subtract 'guiheadroom' from the height to allow some room for the
4712 * window manager (task list and window title bar). */
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004713 *screen_h -= p_ghr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714
4715 /*
4716 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4717 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02004718 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 * This should be completely changed later.
4720 */
4721 *screen_w -= get_menu_tool_width();
4722 *screen_h -= get_menu_tool_height();
4723}
4724
4725#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004727gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 if (title != NULL && output_conv.vc_type != CONV_NONE)
4730 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731
4732 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4733
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 if (output_conv.vc_type != CONV_NONE)
4735 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736}
4737#endif /* FEAT_TITLE */
4738
4739#if defined(FEAT_MENU) || defined(PROTO)
4740 void
4741gui_mch_enable_menu(int showit)
4742{
4743 GtkWidget *widget;
4744
4745# ifdef FEAT_GUI_GNOME
4746 if (using_gnome)
4747 widget = gui.menubar_h;
4748 else
4749# endif
4750 widget = gui.menubar;
4751
Bram Moolenaar18144c82006-04-12 21:52:12 +00004752 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004753 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 {
4755 if (showit)
4756 gtk_widget_show(widget);
4757 else
4758 gtk_widget_hide(widget);
4759
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004760 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 }
4762}
4763#endif /* FEAT_MENU */
4764
4765#if defined(FEAT_TOOLBAR) || defined(PROTO)
4766 void
4767gui_mch_show_toolbar(int showit)
4768{
4769 GtkWidget *widget;
4770
4771 if (gui.toolbar == NULL)
4772 return;
4773
4774# ifdef FEAT_GUI_GNOME
4775 if (using_gnome)
4776 widget = gui.toolbar_h;
4777 else
4778# endif
4779 widget = gui.toolbar;
4780
4781 if (showit)
4782 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4783
Bram Moolenaar98921892016-02-23 17:14:37 +01004784 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 {
4786 if (showit)
4787 gtk_widget_show(widget);
4788 else
4789 gtk_widget_hide(widget);
4790
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004791 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 }
4793}
4794#endif /* FEAT_TOOLBAR */
4795
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796/*
4797 * Check if a given font is a CJK font. This is done in a very crude manner. It
4798 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4799 * font. Consequently, this function cannot be used as a general purpose check
4800 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4801 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4802 */
4803 static int
4804is_cjk_font(PangoFontDescription *font_desc)
4805{
4806 static const char * const cjk_langs[] =
4807 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4808
4809 PangoFont *font;
4810 unsigned i;
4811 int is_cjk = FALSE;
4812
4813 font = pango_context_load_font(gui.text_context, font_desc);
4814
4815 if (font == NULL)
4816 return FALSE;
4817
4818 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4819 {
4820 PangoCoverage *coverage;
4821 gunichar uc;
4822
4823 coverage = pango_font_get_coverage(
4824 font, pango_language_from_string(cjk_langs[i]));
4825
4826 if (coverage != NULL)
4827 {
4828 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4829 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4830 pango_coverage_unref(coverage);
4831 }
4832 }
4833
4834 g_object_unref(font);
4835
4836 return is_cjk;
4837}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838
Bram Moolenaar231334e2005-07-25 20:46:57 +00004839/*
4840 * Adjust gui.char_height (after 'linespace' was changed).
4841 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004843gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 PangoFontMetrics *metrics;
4846 int ascent;
4847 int descent;
4848
4849 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4850 pango_context_get_language(gui.text_context));
4851 ascent = pango_font_metrics_get_ascent(metrics);
4852 descent = pango_font_metrics_get_descent(metrics);
4853
4854 pango_font_metrics_unref(metrics);
4855
4856 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00004857 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00004858 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4860
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 /* A not-positive value of char_height may crash Vim. Only happens
4862 * if 'linespace' is negative (which does make sense sometimes). */
4863 gui.char_ascent = MAX(gui.char_ascent, 0);
4864 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4865
4866 return OK;
4867}
4868
Bram Moolenaar98921892016-02-23 17:14:37 +01004869#if GTK_CHECK_VERSION(3,0,0)
4870/* Callback function used in gui_mch_font_dialog() */
4871 static gboolean
4872font_filter(const PangoFontFamily *family,
4873 const PangoFontFace *face UNUSED,
4874 gpointer data UNUSED)
4875{
4876 return pango_font_family_is_monospace((PangoFontFamily *)family);
4877}
4878#endif
4879
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880/*
4881 * Put up a font dialog and return the selected font name in allocated memory.
4882 * "oldval" is the previous value. Return NULL when cancelled.
4883 * This should probably go into gui_gtk.c. Hmm.
4884 * FIXME:
4885 * The GTK2 font selection dialog has no filtering API. So we could either
4886 * a) implement our own (possibly copying the code from somewhere else) or
4887 * b) just live with it.
4888 */
4889 char_u *
4890gui_mch_font_dialog(char_u *oldval)
4891{
4892 GtkWidget *dialog;
4893 int response;
4894 char_u *fontname = NULL;
4895 char_u *oldname;
4896
Bram Moolenaar98921892016-02-23 17:14:37 +01004897#if GTK_CHECK_VERSION(3,2,0)
4898 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4899 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4900 NULL, NULL);
4901#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004903#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904
4905 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4906 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4907
4908 if (oldval != NULL && oldval[0] != NUL)
4909 {
4910 if (output_conv.vc_type != CONV_NONE)
4911 oldname = string_convert(&output_conv, oldval, NULL);
4912 else
4913 oldname = oldval;
4914
4915 /* Annoying bug in GTK (or Pango): if the font name does not include a
4916 * size, zero is used. Use default point size ten. */
4917 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4918 {
4919 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4920
4921 if (p != NULL)
4922 {
4923 STRCPY(p + STRLEN(p), " 10");
4924 if (oldname != oldval)
4925 vim_free(oldname);
4926 oldname = p;
4927 }
4928 }
4929
Bram Moolenaar98921892016-02-23 17:14:37 +01004930#if GTK_CHECK_VERSION(3,2,0)
4931 gtk_font_chooser_set_font(
4932 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4933#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 gtk_font_selection_dialog_set_font_name(
4935 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004936#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937
4938 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004939 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004941 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004942#if GTK_CHECK_VERSION(3,2,0)
4943 gtk_font_chooser_set_font(
4944 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4945#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004946 gtk_font_selection_dialog_set_font_name(
4947 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004948#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949
4950 response = gtk_dialog_run(GTK_DIALOG(dialog));
4951
4952 if (response == GTK_RESPONSE_OK)
4953 {
4954 char *name;
4955
Bram Moolenaar98921892016-02-23 17:14:37 +01004956#if GTK_CHECK_VERSION(3,2,0)
4957 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4958#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 name = gtk_font_selection_dialog_get_font_name(
4960 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004961#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 if (name != NULL)
4963 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004964 char_u *p;
4965
4966 /* Apparently some font names include a comma, need to escape
4967 * that, because in 'guifont' it separates names. */
4968 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004970 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004971 {
4972 fontname = string_convert(&input_conv, p, NULL);
4973 vim_free(p);
4974 }
4975 else
4976 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 }
4978 }
4979
4980 if (response != GTK_RESPONSE_NONE)
4981 gtk_widget_destroy(dialog);
4982
4983 return fontname;
4984}
4985
4986/*
4987 * Some monospace fonts don't support a bold weight, and fall back
4988 * silently to the regular weight. But this is no good since our text
4989 * drawing function can emulate bold by overstriking. So let's try
4990 * to detect whether bold weight is actually available and emulate it
4991 * otherwise.
4992 *
4993 * Note that we don't need to check for italic style since Xft can
4994 * emulate italic on its own, provided you have a proper fontconfig
4995 * setup. We wouldn't be able to emulate it in Vim anyway.
4996 */
4997 static void
4998get_styled_font_variants(void)
4999{
5000 PangoFontDescription *bold_font_desc;
5001 PangoFont *plain_font;
5002 PangoFont *bold_font;
5003
5004 gui.font_can_bold = FALSE;
5005
5006 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5007
5008 if (plain_font == NULL)
5009 return;
5010
5011 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5012 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5013
5014 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5015 /*
5016 * The comparison relies on the unique handle nature of a PangoFont*,
5017 * i.e. it's assumed that a different PangoFont* won't refer to the
5018 * same font. Seems to work, and failing here isn't critical anyway.
5019 */
5020 if (bold_font != NULL)
5021 {
5022 gui.font_can_bold = (bold_font != plain_font);
5023 g_object_unref(bold_font);
5024 }
5025
5026 pango_font_description_free(bold_font_desc);
5027 g_object_unref(plain_font);
5028}
5029
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030static PangoEngineShape *default_shape_engine = NULL;
5031
5032/*
5033 * Create a map from ASCII characters in the range [32,126] to glyphs
5034 * of the current font. This is used by gui_gtk2_draw_string() to skip
5035 * the itemize and shaping process for the most common case.
5036 */
5037 static void
5038ascii_glyph_table_init(void)
5039{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005040 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 PangoAttrList *attr_list;
5042 GList *item_list;
5043 int i;
5044
5045 if (gui.ascii_glyphs != NULL)
5046 pango_glyph_string_free(gui.ascii_glyphs);
5047 if (gui.ascii_font != NULL)
5048 g_object_unref(gui.ascii_font);
5049
5050 gui.ascii_glyphs = NULL;
5051 gui.ascii_font = NULL;
5052
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005053 /* For safety, fill in question marks for the control characters.
5054 * Put a space between characters to avoid shaping. */
5055 for (i = 0; i < 128; ++i)
5056 {
5057 if (i >= 32 && i < 127)
5058 ascii_chars[2 * i] = i;
5059 else
5060 ascii_chars[2 * i] = '?';
5061 ascii_chars[2 * i + 1] = ' ';
5062 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063
5064 attr_list = pango_attr_list_new();
5065 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5066 0, sizeof(ascii_chars), attr_list, NULL);
5067
5068 if (item_list != NULL && item_list->next == NULL) /* play safe */
5069 {
5070 PangoItem *item;
5071 int width;
5072
5073 item = (PangoItem *)item_list->data;
5074 width = gui.char_width * PANGO_SCALE;
5075
5076 /* Remember the shape engine used for ASCII. */
5077 default_shape_engine = item->analysis.shape_engine;
5078
5079 gui.ascii_font = item->analysis.font;
5080 g_object_ref(gui.ascii_font);
5081
5082 gui.ascii_glyphs = pango_glyph_string_new();
5083
5084 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5085 &item->analysis, gui.ascii_glyphs);
5086
5087 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5088
5089 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5090 {
5091 PangoGlyphGeometry *geom;
5092
5093 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5094 geom->x_offset += MAX(0, width - geom->width) / 2;
5095 geom->width = width;
5096 }
5097 }
5098
5099 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5100 g_list_free(item_list);
5101 pango_attr_list_unref(attr_list);
5102}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103
5104/*
5105 * Initialize Vim to use the font or fontset with the given name.
5106 * Return FAIL if the font could not be loaded, OK otherwise.
5107 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005109gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 PangoFontDescription *font_desc;
5112 PangoLayout *layout;
5113 int width;
5114
5115 /* If font_name is NULL, this means to use the default, which should
5116 * be present on all proper Pango/fontconfig installations. */
5117 if (font_name == NULL)
5118 font_name = (char_u *)DEFAULT_FONT;
5119
5120 font_desc = gui_mch_get_font(font_name, FALSE);
5121
5122 if (font_desc == NULL)
5123 return FAIL;
5124
5125 gui_mch_free_font(gui.norm_font);
5126 gui.norm_font = font_desc;
5127
5128 pango_context_set_font_description(gui.text_context, font_desc);
5129
5130 layout = pango_layout_new(gui.text_context);
5131 pango_layout_set_text(layout, "MW", 2);
5132 pango_layout_get_size(layout, &width, NULL);
5133 /*
5134 * Set char_width to half the width obtained from pango_layout_get_size()
5135 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5136 * Pango to use the same width for both non-CJK characters (e.g. Latin
5137 * letters and numbers) and CJK characters. This results in 's p a c e d
5138 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5139 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5140 * width for CJK fonts.
5141 *
5142 * For related bugs, see:
5143 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5144 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5145 *
5146 * With this, for all four of the following cases, Vim works fine:
5147 * guifont=CJK_fixed_width_font
5148 * guifont=Non_CJK_fixed_font
5149 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5150 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5151 */
5152 if (is_cjk_font(gui.norm_font))
5153 {
5154 int cjk_width;
5155
5156 /* Measure the text extent of U+4E00 and U+4E8C */
5157 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5158 pango_layout_get_size(layout, &cjk_width, NULL);
5159
5160 if (width == cjk_width) /* Xft not patched */
5161 width /= 2;
5162 }
5163 g_object_unref(layout);
5164
5165 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5166
5167 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5168 if (gui.char_width <= 0)
5169 gui.char_width = 8;
5170
Bram Moolenaar231334e2005-07-25 20:46:57 +00005171 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172
5173 /* Set the fontname, which will be used for information purposes */
5174 hl_set_font_name(font_name);
5175
5176 get_styled_font_variants();
5177 ascii_glyph_table_init();
5178
5179 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5180 if (gui.wide_font != NULL
5181 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5182 {
5183 pango_font_description_free(gui.wide_font);
5184 gui.wide_font = NULL;
5185 }
5186
Bram Moolenaare161c792009-11-03 17:13:59 +00005187 if (gui_mch_maximized())
5188 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005189 /* Update lines and columns in accordance with the new font, keep the
5190 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005191 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005192 }
5193 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005194 {
5195 /* Preserve the logical dimensions of the screen. */
5196 update_window_manager_hints(0, 0);
5197 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198
5199 return OK;
5200}
5201
5202/*
5203 * Get a reference to the font "name".
5204 * Return zero for failure.
5205 */
5206 GuiFont
5207gui_mch_get_font(char_u *name, int report_error)
5208{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210
5211 /* can't do this when GUI is not running */
5212 if (!gui.in_use || name == NULL)
5213 return NULL;
5214
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 if (output_conv.vc_type != CONV_NONE)
5216 {
5217 char_u *buf;
5218
5219 buf = string_convert(&output_conv, name, NULL);
5220 if (buf != NULL)
5221 {
5222 font = pango_font_description_from_string((const char *)buf);
5223 vim_free(buf);
5224 }
5225 else
5226 font = NULL;
5227 }
5228 else
5229 font = pango_font_description_from_string((const char *)name);
5230
5231 if (font != NULL)
5232 {
5233 PangoFont *real_font;
5234
5235 /* pango_context_load_font() bails out if no font size is set */
5236 if (pango_font_description_get_size(font) <= 0)
5237 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5238
5239 real_font = pango_context_load_font(gui.text_context, font);
5240
5241 if (real_font == NULL)
5242 {
5243 pango_font_description_free(font);
5244 font = NULL;
5245 }
5246 else
5247 g_object_unref(real_font);
5248 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249
5250 if (font == NULL)
5251 {
5252 if (report_error)
Bram Moolenaarc93e7912008-07-08 10:46:08 +00005253 EMSG2(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 return NULL;
5255 }
5256
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 return font;
5258}
5259
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005260#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005261/*
5262 * Return the name of font "font" in allocated memory.
5263 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005264 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005265gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005266{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005267 if (font != NOFONT)
5268 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005269 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005270
Bram Moolenaar89d40322006-08-29 15:30:07 +00005271 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005272 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005273 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005274
Bram Moolenaar89d40322006-08-29 15:30:07 +00005275 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005276 return s;
5277 }
5278 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005279 return NULL;
5280}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005281#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005282
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283/*
5284 * If a font is not going to be used, free its structure.
5285 */
5286 void
5287gui_mch_free_font(GuiFont font)
5288{
5289 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291}
5292
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005294 * Return the Pixel value (color) for the given color name.
5295 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 * Return INVALCOLOR for error.
5297 */
5298 guicolor_T
5299gui_mch_get_color(char_u *name)
5300{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005301 guicolor_T color = INVALCOLOR;
5302
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 if (!gui.in_use) /* can't do this when GUI not running */
Bram Moolenaar2e324952018-04-14 14:37:07 +02005304 return color;
5305
5306 if (name != NULL)
5307 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308
Bram Moolenaar98921892016-02-23 17:14:37 +01005309#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005310 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005311#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005312 if (color == INVALCOLOR)
5313 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005315 return gui_mch_get_rgb_color(
5316 (color & 0xff0000) >> 16,
5317 (color & 0xff00) >> 8,
5318 color & 0xff);
5319#endif
5320}
5321
5322/*
5323 * Return the Pixel value (color) for the given RGB values.
5324 * Return INVALCOLOR for error.
5325 */
5326 guicolor_T
5327gui_mch_get_rgb_color(int r, int g, int b)
5328{
5329#if GTK_CHECK_VERSION(3,0,0)
5330 return gui_get_rgb_color_cmn(r, g, b);
5331#else
5332 GdkColor gcolor;
5333 int ret;
5334
5335 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5336 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5337 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338
Bram Moolenaar36edf062016-07-21 22:10:12 +02005339 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5340 &gcolor, FALSE, TRUE);
5341
5342 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344}
5345
5346/*
5347 * Set the current text foreground color.
5348 */
5349 void
5350gui_mch_set_fg_color(guicolor_T color)
5351{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005352#if GTK_CHECK_VERSION(3,0,0)
5353 *gui.fgcolor = color_to_rgba(color);
5354#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005356#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357}
5358
5359/*
5360 * Set the current text background color.
5361 */
5362 void
5363gui_mch_set_bg_color(guicolor_T color)
5364{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005365#if GTK_CHECK_VERSION(3,0,0)
5366 *gui.bgcolor = color_to_rgba(color);
5367#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005369#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370}
5371
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005372/*
5373 * Set the current text special color.
5374 */
5375 void
5376gui_mch_set_sp_color(guicolor_T color)
5377{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005378#if GTK_CHECK_VERSION(3,0,0)
5379 *gui.spcolor = color_to_rgba(color);
5380#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005381 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005382#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005383}
5384
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385/*
5386 * Function-like convenience macro for the sake of efficiency.
5387 */
5388#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5389 G_STMT_START{ \
5390 PangoAttribute *tmp_attr_; \
5391 tmp_attr_ = (Attribute); \
5392 tmp_attr_->start_index = (Start); \
5393 tmp_attr_->end_index = (End); \
5394 pango_attr_list_insert((AttrList), tmp_attr_); \
5395 }G_STMT_END
5396
5397 static void
5398apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5399{
5400 char_u *start = NULL;
5401 char_u *p;
5402 int uc;
5403
5404 for (p = s; p < s + len; p += utf_byte2len(*p))
5405 {
5406 uc = utf_ptr2char(p);
5407
5408 if (start == NULL)
5409 {
5410 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5411 start = p;
5412 }
5413 else if (uc < 0x80 /* optimization shortcut */
5414 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5415 {
5416 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5417 attr_list, start - s, p - s);
5418 start = NULL;
5419 }
5420 }
5421
5422 if (start != NULL)
5423 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5424 attr_list, start - s, len);
5425}
5426
5427 static int
5428count_cluster_cells(char_u *s, PangoItem *item,
5429 PangoGlyphString* glyphs, int i,
5430 int *cluster_width,
5431 int *last_glyph_rbearing)
5432{
5433 char_u *p;
5434 int next; /* glyph start index of next cluster */
5435 int start, end; /* string segment of current cluster */
5436 int width; /* real cluster width in Pango units */
5437 int uc;
5438 int cellcount = 0;
5439
5440 width = glyphs->glyphs[i].geometry.width;
5441
5442 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5443 {
5444 if (glyphs->glyphs[next].attr.is_cluster_start)
5445 break;
5446 else if (glyphs->glyphs[next].geometry.width > width)
5447 width = glyphs->glyphs[next].geometry.width;
5448 }
5449
5450 start = item->offset + glyphs->log_clusters[i];
5451 end = item->offset + ((next < glyphs->num_glyphs) ?
5452 glyphs->log_clusters[next] : item->length);
5453
5454 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5455 {
5456 uc = utf_ptr2char(p);
5457 if (uc < 0x80)
5458 ++cellcount;
5459 else if (!utf_iscomposing(uc))
5460 cellcount += utf_char2cells(uc);
5461 }
5462
5463 if (last_glyph_rbearing != NULL
5464 && cellcount > 0 && next == glyphs->num_glyphs)
5465 {
5466 PangoRectangle ink_rect;
5467 /*
5468 * If a certain combining mark had to be taken from a non-monospace
5469 * font, we have to compensate manually by adapting x_offset according
5470 * to the ink extents of the previous glyph.
5471 */
5472 pango_font_get_glyph_extents(item->analysis.font,
5473 glyphs->glyphs[i].glyph,
5474 &ink_rect, NULL);
5475
5476 if (PANGO_RBEARING(ink_rect) > 0)
5477 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5478 }
5479
5480 if (cellcount > 0)
5481 *cluster_width = width;
5482
5483 return cellcount;
5484}
5485
5486/*
5487 * If there are only combining characters in the cluster, we cannot just
5488 * change the width of the previous glyph since there is none. Therefore
5489 * some guesswork is needed.
5490 *
5491 * If ink_rect.x is negative Pango apparently has taken care of the composing
5492 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5493 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005494 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 *
5496 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5497 * the position of the previous glyph. Apparently this happens only with old
5498 * X fonts which don't provide the special combining information needed by
5499 * Pango.
5500 */
5501 static void
5502setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5503 int last_cellcount, int last_cluster_width,
5504 int last_glyph_rbearing)
5505{
5506 PangoRectangle ink_rect;
5507 PangoRectangle logical_rect;
5508 int width;
5509
5510 width = last_cellcount * gui.char_width * PANGO_SCALE;
5511 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5512 glyph->geometry.width = 0;
5513
5514 pango_font_get_glyph_extents(item->analysis.font,
5515 glyph->glyph,
5516 &ink_rect, &logical_rect);
5517 if (ink_rect.x < 0)
5518 {
5519 glyph->geometry.x_offset += last_glyph_rbearing;
5520 glyph->geometry.y_offset = logical_rect.height
5521 - (gui.char_height - p_linespace) * PANGO_SCALE;
5522 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005523 else
5524 /* If the accent width is smaller than the cluster width, position it
5525 * in the middle. */
5526 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527}
5528
Bram Moolenaar98921892016-02-23 17:14:37 +01005529#if GTK_CHECK_VERSION(3,0,0)
5530 static void
5531draw_glyph_string(int row, int col, int num_cells, int flags,
5532 PangoFont *font, PangoGlyphString *glyphs,
5533 cairo_t *cr)
5534#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535 static void
5536draw_glyph_string(int row, int col, int num_cells, int flags,
5537 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005538#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539{
5540 if (!(flags & DRAW_TRANSP))
5541 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005542#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005543 cairo_set_source_rgba(cr,
5544 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5545 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005546 cairo_rectangle(cr,
5547 FILL_X(col), FILL_Y(row),
5548 num_cells * gui.char_width, gui.char_height);
5549 cairo_fill(cr);
5550#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5552
5553 gdk_draw_rectangle(gui.drawarea->window,
5554 gui.text_gc,
5555 TRUE,
5556 FILL_X(col),
5557 FILL_Y(row),
5558 num_cells * gui.char_width,
5559 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005560#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 }
5562
Bram Moolenaar98921892016-02-23 17:14:37 +01005563#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005564 cairo_set_source_rgba(cr,
5565 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5566 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005567 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5568 pango_cairo_show_glyph_string(cr, font, glyphs);
5569#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5571
5572 gdk_draw_glyphs(gui.drawarea->window,
5573 gui.text_gc,
5574 font,
5575 TEXT_X(col),
5576 TEXT_Y(row),
5577 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005578#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579
5580 /* redraw the contents with an offset of 1 to emulate bold */
5581 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005582#if GTK_CHECK_VERSION(3,0,0)
5583 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005584 cairo_set_source_rgba(cr,
5585 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5586 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005587 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5588 pango_cairo_show_glyph_string(cr, font, glyphs);
5589 }
5590#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 gdk_draw_glyphs(gui.drawarea->window,
5592 gui.text_gc,
5593 font,
5594 TEXT_X(col) + 1,
5595 TEXT_Y(row),
5596 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005597#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598}
5599
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005600/*
5601 * Draw underline and undercurl at the bottom of the character cell.
5602 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005603#if GTK_CHECK_VERSION(3,0,0)
5604 static void
5605draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5606#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005607 static void
5608draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005609#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005610{
5611 int i;
5612 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005613 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005614 int y = FILL_Y(row + 1) - 1;
5615
5616 /* Undercurl: draw curl at the bottom of the character cell. */
5617 if (flags & DRAW_UNDERC)
5618 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005619#if GTK_CHECK_VERSION(3,0,0)
5620 cairo_set_line_width(cr, 1.0);
5621 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005622 cairo_set_source_rgba(cr,
5623 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5624 gui.spcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005625 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5626 {
5627 offset = val[i % 8];
5628 cairo_line_to(cr, i, y - offset + 0.5);
5629 }
5630 cairo_stroke(cr);
5631#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005632 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5633 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5634 {
5635 offset = val[i % 8];
5636 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5637 }
5638 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005639#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005640 }
5641
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005642 /* Draw a strikethrough line */
5643 if (flags & DRAW_STRIKE)
5644 {
5645#if GTK_CHECK_VERSION(3,0,0)
5646 cairo_set_line_width(cr, 1.0);
5647 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5648 cairo_set_source_rgba(cr,
5649 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5650 gui.spcolor->alpha);
5651 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5652 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5653 cairo_stroke(cr);
5654#else
5655 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5656 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5657 FILL_X(col), y + 1 - gui.char_height/2,
5658 FILL_X(col + cells), y + 1 - gui.char_height/2);
5659 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5660#endif
5661 }
5662
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005663 /* Underline: draw a line at the bottom of the character cell. */
5664 if (flags & DRAW_UNDERL)
5665 {
5666 /* When p_linespace is 0, overwrite the bottom row of pixels.
5667 * Otherwise put the line just below the character. */
5668 if (p_linespace > 1)
5669 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005670#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005671 cairo_set_line_width(cr, 1.0);
5672 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5673 cairo_set_source_rgba(cr,
5674 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5675 gui.fgcolor->alpha);
5676 cairo_move_to(cr, FILL_X(col), y + 0.5);
5677 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5678 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005679#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005680 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5681 FILL_X(col), y,
5682 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005683#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005684 }
5685}
5686
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 int
5688gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5689{
5690 GdkRectangle area; /* area for clip mask */
5691 PangoGlyphString *glyphs; /* glyphs of current item */
5692 int column_offset = 0; /* column offset in cells */
5693 int i;
5694 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5695 char_u *new_conv_buf;
5696 int convlen;
5697 char_u *sp, *bp;
5698 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005699#if GTK_CHECK_VERSION(3,0,0)
5700 cairo_t *cr;
5701#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702
Bram Moolenaar98921892016-02-23 17:14:37 +01005703 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704 return len;
5705
5706 if (output_conv.vc_type != CONV_NONE)
5707 {
5708 /*
5709 * Convert characters from 'encoding' to 'termencoding', which is set
5710 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5711 * prohibits changing this to something else than UTF-8 if the GUI is
5712 * in use.
5713 */
5714 convlen = len;
5715 conv_buf = string_convert(&output_conv, s, &convlen);
5716 g_return_val_if_fail(conv_buf != NULL, len);
5717
5718 /* Correct for differences in char width: some chars are
5719 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5720 * compensate for that. */
5721 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5722 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005723 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5725 {
5726 new_conv_buf = alloc(convlen + 2);
5727 if (new_conv_buf == NULL)
5728 return len;
5729 plen += bp - conv_buf;
5730 mch_memmove(new_conv_buf, conv_buf, plen);
5731 new_conv_buf[plen] = ' ';
5732 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5733 convlen - plen + 1);
5734 vim_free(conv_buf);
5735 conv_buf = new_conv_buf;
5736 ++convlen;
5737 bp = conv_buf + plen;
5738 plen = 1;
5739 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005740 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 bp += plen;
5742 }
5743 s = conv_buf;
5744 len = convlen;
5745 }
5746
5747 /*
5748 * Restrict all drawing to the current screen line in order to prevent
5749 * fuzzy font lookups from messing up the screen.
5750 */
5751 area.x = gui.border_offset;
5752 area.y = FILL_Y(row);
5753 area.width = gui.num_cols * gui.char_width;
5754 area.height = gui.char_height;
5755
Bram Moolenaar98921892016-02-23 17:14:37 +01005756#if GTK_CHECK_VERSION(3,0,0)
5757 cr = cairo_create(gui.surface);
5758 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5759 cairo_clip(cr);
5760#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5762 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005763#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764
5765 glyphs = pango_glyph_string_new();
5766
5767 /*
5768 * Optimization hack: If possible, skip the itemize and shaping process
5769 * for pure ASCII strings. This optimization is particularly effective
5770 * because Vim draws space characters to clear parts of the screen.
5771 */
5772 if (!(flags & DRAW_ITALIC)
5773 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5774 && gui.ascii_glyphs != NULL)
5775 {
5776 char_u *p;
5777
5778 for (p = s; p < s + len; ++p)
5779 if (*p & 0x80)
5780 goto not_ascii;
5781
5782 pango_glyph_string_set_size(glyphs, len);
5783
5784 for (i = 0; i < len; ++i)
5785 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005786 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787 glyphs->log_clusters[i] = i;
5788 }
5789
Bram Moolenaar98921892016-02-23 17:14:37 +01005790#if GTK_CHECK_VERSION(3,0,0)
5791 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5792#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005794#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795
5796 column_offset = len;
5797 }
5798 else
5799not_ascii:
5800 {
5801 PangoAttrList *attr_list;
5802 GList *item_list;
5803 int cluster_width;
5804 int last_glyph_rbearing;
5805 int cells = 0; /* cells occupied by current cluster */
5806
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005807 /* Safety check: pango crashes when invoked with invalid utf-8
5808 * characters. */
5809 if (!utf_valid_string(s, s + len))
5810 {
5811 column_offset = len;
5812 goto skipitall;
5813 }
5814
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 /* original width of the current cluster */
5816 cluster_width = PANGO_SCALE * gui.char_width;
5817
5818 /* right bearing of the last non-composing glyph */
5819 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5820
5821 attr_list = pango_attr_list_new();
5822
5823 /* If 'guifontwide' is set then use that for double-width characters.
5824 * Otherwise just go with 'guifont' and let Pango do its thing. */
5825 if (gui.wide_font != NULL)
5826 apply_wide_font_attr(s, len, attr_list);
5827
5828 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5829 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5830 attr_list, 0, len);
5831 if (flags & DRAW_ITALIC)
5832 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5833 attr_list, 0, len);
5834 /*
5835 * Break the text into segments with consistent directional level
5836 * and shaping engine. Pure Latin text needs only a single segment,
5837 * so there's no need to worry about the loop's efficiency. Better
5838 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5839 */
5840 item_list = pango_itemize(gui.text_context,
5841 (const char *)s, 0, len, attr_list, NULL);
5842
5843 while (item_list != NULL)
5844 {
5845 PangoItem *item;
5846 int item_cells = 0; /* item length in cells */
5847
5848 item = (PangoItem *)item_list->data;
5849 item_list = g_list_delete_link(item_list, item_list);
5850 /*
5851 * Increment the bidirectional embedding level by 1 if it is not
5852 * even. An odd number means the output will be RTL, but we don't
5853 * want that since Vim handles right-to-left text on its own. It
5854 * would probably be sufficient to just set level = 0, but you can
5855 * never know :)
5856 *
5857 * Unfortunately we can't take advantage of Pango's ability to
5858 * render both LTR and RTL at the same time. In order to support
5859 * that, Vim's main screen engine would have to make use of Pango
5860 * functionality.
5861 */
5862 item->analysis.level = (item->analysis.level + 1) & (~1U);
5863
5864 /* HACK: Overrule the shape engine, we don't want shaping to be
5865 * done, because drawing the cursor would change the display. */
5866 item->analysis.shape_engine = default_shape_engine;
5867
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005868#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02005869 pango_shape_full((const char *)s + item->offset, item->length,
5870 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005871#else
5872 pango_shape((const char *)s + item->offset, item->length,
5873 &item->analysis, glyphs);
5874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875 /*
5876 * Fixed-width hack: iterate over the array and assign a fixed
5877 * width to each glyph, thus overriding the choice made by the
5878 * shaping engine. We use utf_char2cells() to determine the
5879 * number of cells needed.
5880 *
5881 * Also perform all kind of dark magic to get composing
5882 * characters right (and pretty too of course).
5883 */
5884 for (i = 0; i < glyphs->num_glyphs; ++i)
5885 {
5886 PangoGlyphInfo *glyph;
5887
5888 glyph = &glyphs->glyphs[i];
5889
5890 if (glyph->attr.is_cluster_start)
5891 {
5892 int cellcount;
5893
5894 cellcount = count_cluster_cells(
5895 s, item, glyphs, i, &cluster_width,
5896 (item_list != NULL) ? &last_glyph_rbearing : NULL);
5897
5898 if (cellcount > 0)
5899 {
5900 int width;
5901
5902 width = cellcount * gui.char_width * PANGO_SCALE;
5903 glyph->geometry.x_offset +=
5904 MAX(0, width - cluster_width) / 2;
5905 glyph->geometry.width = width;
5906 }
5907 else
5908 {
5909 /* If there are only combining characters in the
5910 * cluster, we cannot just change the width of the
5911 * previous glyph since there is none. Therefore
5912 * some guesswork is needed. */
5913 setup_zero_width_cluster(item, glyph, cells,
5914 cluster_width,
5915 last_glyph_rbearing);
5916 }
5917
5918 item_cells += cellcount;
5919 cells = cellcount;
5920 }
5921 else if (i > 0)
5922 {
5923 int width;
5924
5925 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005926 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02005927 * In some circumstances Pango uses a positive x_offset,
5928 * then use the width of the previous glyph for this one
5929 * and set the previous width to zero.
5930 * Otherwise we get a negative x_offset, Pango has already
5931 * positioned the combining char, keep the widths as they
5932 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005933 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02005934 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005935 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02005936 {
5937 glyphs->glyphs[i].geometry.width =
5938 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005939 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02005940 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941 width = cells * gui.char_width * PANGO_SCALE;
5942 glyph->geometry.x_offset +=
5943 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005944 }
5945 else /* i == 0 "cannot happen" */
5946 {
5947 glyph->geometry.width = 0;
5948 }
5949 }
5950
5951 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01005952#if GTK_CHECK_VERSION(3,0,0)
5953 draw_glyph_string(row, col + column_offset, item_cells,
5954 flags, item->analysis.font, glyphs,
5955 cr);
5956#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957 draw_glyph_string(row, col + column_offset, item_cells,
5958 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005959#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005960
5961 pango_item_free(item);
5962
5963 column_offset += item_cells;
5964 }
5965
5966 pango_attr_list_unref(attr_list);
5967 }
5968
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005969skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005970 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01005971#if GTK_CHECK_VERSION(3,0,0)
5972 draw_under(flags, row, col, column_offset, cr);
5973#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005974 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01005975#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976
5977 pango_glyph_string_free(glyphs);
5978 vim_free(conv_buf);
5979
Bram Moolenaar98921892016-02-23 17:14:37 +01005980#if GTK_CHECK_VERSION(3,0,0)
5981 cairo_destroy(cr);
5982 if (!gui.by_signal)
5983 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
5984 &area, FALSE);
5985#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988
5989 return column_offset;
5990}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991
5992/*
5993 * Return OK if the key with the termcap name "name" is supported.
5994 */
5995 int
5996gui_mch_haskey(char_u *name)
5997{
5998 int i;
5999
6000 for (i = 0; special_keys[i].key_sym != 0; i++)
6001 if (name[0] == special_keys[i].code0
6002 && name[1] == special_keys[i].code1)
6003 return OK;
6004 return FAIL;
6005}
6006
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006007#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006008/*
6009 * Return the text window-id and display. Only required for X-based GUI's
6010 */
6011 int
6012gui_get_x11_windis(Window *win, Display **dis)
6013{
Bram Moolenaar98921892016-02-23 17:14:37 +01006014 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006016 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6017 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018 return OK;
6019 }
6020
6021 *dis = NULL;
6022 *win = 0;
6023 return FAIL;
6024}
6025#endif
6026
6027#if defined(FEAT_CLIENTSERVER) \
6028 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6029
6030 Display *
6031gui_mch_get_display(void)
6032{
Bram Moolenaar98921892016-02-23 17:14:37 +01006033 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6034 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035 else
6036 return NULL;
6037}
6038#endif
6039
6040 void
6041gui_mch_beep(void)
6042{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 GdkDisplay *display;
6044
Bram Moolenaar98921892016-02-23 17:14:37 +01006045 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006046 display = gtk_widget_get_display(gui.mainwin);
6047 else
6048 display = gdk_display_get_default();
6049
6050 if (display != NULL)
6051 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052}
6053
6054 void
6055gui_mch_flash(int msec)
6056{
Bram Moolenaar98921892016-02-23 17:14:37 +01006057#if GTK_CHECK_VERSION(3,0,0)
6058 /* TODO Replace GdkGC with Cairo */
6059 (void)msec;
6060#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 GdkGCValues values;
6062 GdkGC *invert_gc;
6063
6064 if (gui.drawarea->window == NULL)
6065 return;
6066
6067 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6068 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6069 values.function = GDK_XOR;
6070 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6071 &values,
6072 GDK_GC_FOREGROUND |
6073 GDK_GC_BACKGROUND |
6074 GDK_GC_FUNCTION);
6075 gdk_gc_set_exposures(invert_gc,
6076 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6077 /*
6078 * Do a visual beep by changing back and forth in some undetermined way,
6079 * the foreground and background colors. This is due to the fact that
6080 * there can't be really any prediction about the effects of XOR on
6081 * arbitrary X11 servers. However this seems to be enough for what we
6082 * intend it to do.
6083 */
6084 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6085 TRUE,
6086 0, 0,
6087 FILL_X((int)Columns) + gui.border_offset,
6088 FILL_Y((int)Rows) + gui.border_offset);
6089
6090 gui_mch_flush();
6091 ui_delay((long)msec, TRUE); /* wait so many msec */
6092
6093 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6094 TRUE,
6095 0, 0,
6096 FILL_X((int)Columns) + gui.border_offset,
6097 FILL_Y((int)Rows) + gui.border_offset);
6098
6099 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006100#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101}
6102
6103/*
6104 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6105 */
6106 void
6107gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6108{
Bram Moolenaar98921892016-02-23 17:14:37 +01006109#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006110 const GdkRectangle rect = {
6111 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6112 };
6113 cairo_t * const cr = cairo_create(gui.surface);
6114
Bram Moolenaar36edf062016-07-21 22:10:12 +02006115 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006116# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6117 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6118# else
6119 /* Give an implementation for older cairo versions if necessary. */
6120# endif
6121 gdk_cairo_rectangle(cr, &rect);
6122 cairo_fill(cr);
6123
6124 cairo_destroy(cr);
6125
6126 if (!gui.by_signal)
6127 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6128 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006129#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006130 GdkGCValues values;
6131 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132
6133 if (gui.drawarea->window == NULL)
6134 return;
6135
Bram Moolenaar89d40322006-08-29 15:30:07 +00006136 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6137 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138 values.function = GDK_XOR;
6139 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6140 &values,
6141 GDK_GC_FOREGROUND |
6142 GDK_GC_BACKGROUND |
6143 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006144 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6145 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6147 TRUE,
6148 FILL_X(c), FILL_Y(r),
6149 (nc) * gui.char_width, (nr) * gui.char_height);
6150 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006151#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152}
6153
6154/*
6155 * Iconify the GUI window.
6156 */
6157 void
6158gui_mch_iconify(void)
6159{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161}
6162
6163#if defined(FEAT_EVAL) || defined(PROTO)
6164/*
6165 * Bring the Vim window to the foreground.
6166 */
6167 void
6168gui_mch_set_foreground(void)
6169{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171}
6172#endif
6173
6174/*
6175 * Draw a cursor without focus.
6176 */
6177 void
6178gui_mch_draw_hollow_cursor(guicolor_T color)
6179{
6180 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006181#if GTK_CHECK_VERSION(3,0,0)
6182 cairo_t *cr;
6183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184
Bram Moolenaar98921892016-02-23 17:14:37 +01006185 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186 return;
6187
Bram Moolenaar98921892016-02-23 17:14:37 +01006188#if GTK_CHECK_VERSION(3,0,0)
6189 cr = cairo_create(gui.surface);
6190#endif
6191
Bram Moolenaar071d4272004-06-13 20:20:40 +00006192 gui_mch_set_fg_color(color);
6193
Bram Moolenaar98921892016-02-23 17:14:37 +01006194#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006195 cairo_set_source_rgba(cr,
6196 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6197 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006198#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006200#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006201 if (mb_lefthalve(gui.row, gui.col))
6202 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006203#if GTK_CHECK_VERSION(3,0,0)
6204 cairo_set_line_width(cr, 1.0);
6205 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6206 cairo_rectangle(cr,
6207 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6208 i * gui.char_width - 1, gui.char_height - 1);
6209 cairo_stroke(cr);
6210 cairo_destroy(cr);
6211#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6213 FALSE,
6214 FILL_X(gui.col), FILL_Y(gui.row),
6215 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006216#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217}
6218
6219/*
6220 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6221 * color "color".
6222 */
6223 void
6224gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6225{
Bram Moolenaar98921892016-02-23 17:14:37 +01006226 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 return;
6228
6229 gui_mch_set_fg_color(color);
6230
Bram Moolenaar98921892016-02-23 17:14:37 +01006231#if GTK_CHECK_VERSION(3,0,0)
6232 {
6233 cairo_t *cr;
6234
6235 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006236 cairo_set_source_rgba(cr,
6237 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6238 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006239 cairo_rectangle(cr,
6240# ifdef FEAT_RIGHTLEFT
6241 /* vertical line should be on the right of current point */
6242 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6243# endif
6244 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6245 w, h);
6246 cairo_fill(cr);
6247 cairo_destroy(cr);
6248 }
6249#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6251 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6252 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006253# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254 /* vertical line should be on the right of current point */
6255 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006256# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 FILL_X(gui.col),
6258 FILL_Y(gui.row) + gui.char_height - h,
6259 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006260#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261}
6262
6263
6264/*
6265 * Catch up with any queued X11 events. This may put keyboard input into the
6266 * input buffer, call resize call-backs, trigger timers etc. If there is
6267 * nothing in the X11 event queue (& no timers pending), then we return
6268 * immediately.
6269 */
6270 void
6271gui_mch_update(void)
6272{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006273 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6274 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275}
6276
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006277 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278input_timer_cb(gpointer data)
6279{
6280 int *timed_out = (int *) data;
6281
Bram Moolenaar49325942007-05-10 19:19:59 +00006282 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283 *timed_out = TRUE;
6284
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 return FALSE; /* don't happen again */
6286}
6287
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006288#ifdef FEAT_JOB_CHANNEL
6289 static timeout_cb_type
6290channel_poll_cb(gpointer data UNUSED)
6291{
6292 /* Using an event handler for a channel that may be disconnected does
6293 * not work, it hangs. Instead poll for messages. */
6294 channel_handle_events(TRUE);
6295 parse_queued_messages();
6296
6297 return TRUE; /* repeat */
6298}
6299#endif
6300
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301/*
6302 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6303 * from the keyboard.
6304 * wtime == -1 Wait forever.
6305 * wtime == 0 This should never happen.
6306 * wtime > 0 Wait wtime milliseconds for a character.
6307 * Returns OK if a character was found to be available within the given time,
6308 * or FAIL otherwise.
6309 */
6310 int
6311gui_mch_wait_for_chars(long wtime)
6312{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006313 int focus;
6314 guint timer;
6315 static int timed_out;
6316 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006317#ifdef FEAT_JOB_CHANNEL
6318 guint channel_timer = 0;
6319#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006320
6321 timed_out = FALSE;
6322
6323 /* this timeout makes sure that we will return if no characters arrived in
6324 * time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006325 if (wtime > 0)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006326 timer = timeout_add(wtime, input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006327 else
6328 timer = 0;
6329
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006330#ifdef FEAT_JOB_CHANNEL
6331 /* If there is a channel with the keep_open flag we need to poll for input
6332 * on them. */
6333 if (channel_any_keep_open())
6334 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6335#endif
6336
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337 focus = gui.in_focus;
6338
6339 do
6340 {
6341 /* Stop or start blinking when focus changes */
6342 if (gui.in_focus != focus)
6343 {
6344 if (gui.in_focus)
6345 gui_mch_start_blink();
6346 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006347 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006348 focus = gui.in_focus;
6349 }
6350
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006351#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006352# ifdef FEAT_TIMERS
6353 did_add_timer = FALSE;
6354# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006355 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006356# ifdef FEAT_TIMERS
6357 if (did_add_timer)
6358 /* Need to recompute the waiting time. */
6359 goto theend;
6360# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006361#endif
6362
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363 /*
6364 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006365 * Skip this if input is available anyway (can happen in rare
6366 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006368 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006369 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370
6371 /* Got char, return immediately */
6372 if (input_available())
6373 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006374 retval = OK;
6375 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376 }
6377 } while (wtime < 0 || !timed_out);
6378
6379 /*
6380 * Flush all eventually pending (drawing) events.
6381 */
6382 gui_mch_update();
6383
Bram Moolenaar4231da42016-06-02 14:30:04 +02006384theend:
6385 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006386 timeout_remove(timer);
6387#ifdef FEAT_JOB_CHANNEL
6388 if (channel_timer != 0)
6389 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006390#endif
6391
6392 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006393}
6394
6395
6396/****************************************************************************
6397 * Output drawing routines.
6398 ****************************************************************************/
6399
6400
6401/* Flush any output to the screen */
6402 void
6403gui_mch_flush(void)
6404{
Bram Moolenaar98921892016-02-23 17:14:37 +01006405 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006406#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006407 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006408#else
6409 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6410#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006411}
6412
6413/*
6414 * Clear a rectangular region of the screen from text pos (row1, col1) to
6415 * (row2, col2) inclusive.
6416 */
6417 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006418gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006420
6421 int col1 = check_col(col1arg);
6422 int col2 = check_col(col2arg);
6423 int row1 = check_row(row1arg);
6424 int row2 = check_row(row2arg);
6425
Bram Moolenaar98921892016-02-23 17:14:37 +01006426#if GTK_CHECK_VERSION(3,0,0)
6427 if (gtk_widget_get_window(gui.drawarea) == NULL)
6428 return;
6429#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430 GdkColor color;
6431
6432 if (gui.drawarea->window == NULL)
6433 return;
6434
6435 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006436#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006437
Bram Moolenaar98921892016-02-23 17:14:37 +01006438#if GTK_CHECK_VERSION(3,0,0)
6439 {
6440 /* Add one pixel to the far right column in case a double-stroked
6441 * bold glyph may sit there. */
6442 const GdkRectangle rect = {
6443 FILL_X(col1), FILL_Y(row1),
6444 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6445 (row2 - row1 + 1) * gui.char_height
6446 };
6447 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6448 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006449# if GTK_CHECK_VERSION(3,22,2)
6450 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6451# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006452 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6453 if (pat != NULL)
6454 cairo_set_source(cr, pat);
6455 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006456 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006457# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006458 gdk_cairo_rectangle(cr, &rect);
6459 cairo_fill(cr);
6460 cairo_destroy(cr);
6461
6462 if (!gui.by_signal)
6463 gdk_window_invalidate_rect(win, &rect, FALSE);
6464 }
6465#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006466 gdk_gc_set_foreground(gui.text_gc, &color);
6467
6468 /* Clear one extra pixel at the far right, for when bold characters have
6469 * spilled over to the window border. */
6470 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6471 FILL_X(col1), FILL_Y(row1),
6472 (col2 - col1 + 1) * gui.char_width
6473 + (col2 == Columns - 1),
6474 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006475#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006476}
6477
Bram Moolenaar98921892016-02-23 17:14:37 +01006478#if GTK_CHECK_VERSION(3,0,0)
6479 static void
6480gui_gtk_window_clear(GdkWindow *win)
6481{
6482 const GdkRectangle rect = {
6483 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6484 };
6485 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006486# if GTK_CHECK_VERSION(3,22,2)
6487 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6488# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006489 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6490 if (pat != NULL)
6491 cairo_set_source(cr, pat);
6492 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006493 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006494# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006495 gdk_cairo_rectangle(cr, &rect);
6496 cairo_fill(cr);
6497 cairo_destroy(cr);
6498
6499 if (!gui.by_signal)
6500 gdk_window_invalidate_rect(win, &rect, FALSE);
6501}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006502#else
6503# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006504#endif
6505
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 void
6507gui_mch_clear_all(void)
6508{
Bram Moolenaar98921892016-02-23 17:14:37 +01006509 if (gtk_widget_get_window(gui.drawarea) != NULL)
6510 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006511}
6512
Bram Moolenaar98921892016-02-23 17:14:37 +01006513#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006514/*
6515 * Redraw any text revealed by scrolling up/down.
6516 */
6517 static void
6518check_copy_area(void)
6519{
6520 GdkEvent *event;
6521 int expose_count;
6522
6523 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6524 return;
6525
6526 /* Avoid redrawing the cursor while scrolling or it'll end up where
6527 * we don't want it to be. I'm not sure if it's correct to call
6528 * gui_dont_update_cursor() at this point but it works as a quick
6529 * fix for now. */
Bram Moolenaar107abd22016-08-12 14:08:25 +02006530 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006531
6532 do
6533 {
6534 /* Wait to check whether the scroll worked or not. */
6535 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6536
6537 if (event == NULL)
6538 break; /* received NoExpose event */
6539
6540 gui_redraw(event->expose.area.x, event->expose.area.y,
6541 event->expose.area.width, event->expose.area.height);
6542
6543 expose_count = event->expose.count;
6544 gdk_event_free(event);
6545 }
6546 while (expose_count > 0); /* more events follow */
6547
6548 gui_can_update_cursor();
6549}
Bram Moolenaar98921892016-02-23 17:14:37 +01006550#endif /* !GTK_CHECK_VERSION(3,0,0) */
6551
6552#if GTK_CHECK_VERSION(3,0,0)
6553 static void
6554gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6555 int src_x, int src_y,
6556 int width, int height)
6557{
6558 cairo_t * const cr = cairo_create(gui.surface);
6559
6560 cairo_rectangle(cr, dest_x, dest_y, width, height);
6561 cairo_clip(cr);
6562 cairo_push_group(cr);
6563 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6564 cairo_paint(cr);
6565 cairo_pop_group_to_source(cr);
6566 cairo_paint(cr);
6567
6568 cairo_destroy(cr);
6569}
6570#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571
6572/*
6573 * Delete the given number of lines from the given row, scrolling up any
6574 * text further down within the scroll region.
6575 */
6576 void
6577gui_mch_delete_lines(int row, int num_lines)
6578{
Bram Moolenaar98921892016-02-23 17:14:37 +01006579#if GTK_CHECK_VERSION(3,0,0)
6580 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6581 const int nrows = gui.scroll_region_bot - row + 1;
6582 const int src_nrows = nrows - num_lines;
6583
6584 gui_gtk_surface_copy_rect(
6585 FILL_X(gui.scroll_region_left), FILL_Y(row),
6586 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6587 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6588 gui_clear_block(
6589 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6590 gui.scroll_region_bot, gui.scroll_region_right);
6591 gui_gtk3_redraw(
6592 FILL_X(gui.scroll_region_left), FILL_Y(row),
6593 gui.char_width * ncols + 1, gui.char_height * nrows);
6594 if (!gui.by_signal)
6595 gtk_widget_queue_draw_area(gui.drawarea,
6596 FILL_X(gui.scroll_region_left), FILL_Y(row),
6597 gui.char_width * ncols + 1, gui.char_height * nrows);
6598#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6600 return; /* Can't see the window */
6601
6602 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6603 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6604
6605 /* copy one extra pixel, for when bold has spilled over */
6606 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6607 FILL_X(gui.scroll_region_left), FILL_Y(row),
6608 gui.drawarea->window,
6609 FILL_X(gui.scroll_region_left),
6610 FILL_Y(row + num_lines),
6611 gui.char_width * (gui.scroll_region_right
6612 - gui.scroll_region_left + 1) + 1,
6613 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6614
6615 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6616 gui.scroll_region_left,
6617 gui.scroll_region_bot, gui.scroll_region_right);
6618 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006619#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006620}
6621
6622/*
6623 * Insert the given number of lines before the given row, scrolling down any
6624 * following text within the scroll region.
6625 */
6626 void
6627gui_mch_insert_lines(int row, int num_lines)
6628{
Bram Moolenaar98921892016-02-23 17:14:37 +01006629#if GTK_CHECK_VERSION(3,0,0)
6630 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6631 const int nrows = gui.scroll_region_bot - row + 1;
6632 const int src_nrows = nrows - num_lines;
6633
6634 gui_gtk_surface_copy_rect(
6635 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6636 FILL_X(gui.scroll_region_left), FILL_Y(row),
6637 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6638 gui_mch_clear_block(
6639 row, gui.scroll_region_left,
6640 row + num_lines - 1, gui.scroll_region_right);
6641 gui_gtk3_redraw(
6642 FILL_X(gui.scroll_region_left), FILL_Y(row),
6643 gui.char_width * ncols + 1, gui.char_height * nrows);
6644 if (!gui.by_signal)
6645 gtk_widget_queue_draw_area(gui.drawarea,
6646 FILL_X(gui.scroll_region_left), FILL_Y(row),
6647 gui.char_width * ncols + 1, gui.char_height * nrows);
6648#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006649 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6650 return; /* Can't see the window */
6651
6652 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6653 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6654
6655 /* copy one extra pixel, for when bold has spilled over */
6656 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6657 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6658 gui.drawarea->window,
6659 FILL_X(gui.scroll_region_left), FILL_Y(row),
6660 gui.char_width * (gui.scroll_region_right
6661 - gui.scroll_region_left + 1) + 1,
6662 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6663
6664 gui_clear_block(row, gui.scroll_region_left,
6665 row + num_lines - 1, gui.scroll_region_right);
6666 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006667#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006668}
6669
6670/*
6671 * X Selection stuff, for cutting and pasting text to other windows.
6672 */
6673 void
6674clip_mch_request_selection(VimClipboard *cbd)
6675{
6676 GdkAtom target;
6677 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006678 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006679
6680 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6681 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006682 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6683 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006684 received_selection = RS_NONE;
6685 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6686
6687 gtk_selection_convert(gui.drawarea,
6688 cbd->gtk_sel_atom, target,
6689 (guint32)GDK_CURRENT_TIME);
6690
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006691 /* Hack: Wait up to three seconds for the selection. A hang was
6692 * noticed here when using the netrw plugin combined with ":gui"
6693 * during the FocusGained event. */
6694 start = time(NULL);
6695 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006696 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697
6698 if (received_selection != RS_FAIL)
6699 return;
6700 }
6701
6702 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006703 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6704 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006705}
6706
6707/*
6708 * Disown the selection.
6709 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006710 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006711clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01006713 if (!in_selection_clear_event)
6714 {
6715 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6716 gui_mch_update();
6717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718}
6719
6720/*
6721 * Own the selection and return OK if it worked.
6722 */
6723 int
6724clip_mch_own_selection(VimClipboard *cbd)
6725{
6726 int success;
6727
6728 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006729 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006730 gui_mch_update();
6731 return (success) ? OK : FAIL;
6732}
6733
6734/*
6735 * Send the current selection to the clipboard. Do nothing for X because we
6736 * will fill in the selection only when requested by another app.
6737 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006739clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740{
6741}
6742
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006743 int
6744clip_gtk_owner_exists(VimClipboard *cbd)
6745{
6746 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6747}
6748
Bram Moolenaar071d4272004-06-13 20:20:40 +00006749
6750#if defined(FEAT_MENU) || defined(PROTO)
6751/*
6752 * Make a menu item appear either active or not active (grey or not grey).
6753 */
6754 void
6755gui_mch_menu_grey(vimmenu_T *menu, int grey)
6756{
6757 if (menu->id == NULL)
6758 return;
6759
6760 if (menu_is_separator(menu->name))
6761 grey = TRUE;
6762
6763 gui_mch_menu_hidden(menu, FALSE);
6764 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01006765 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006766 {
6767 gtk_widget_set_sensitive(menu->id, !grey);
6768 gui_mch_update();
6769 }
6770}
6771
6772/*
6773 * Make menu item hidden or not hidden.
6774 */
6775 void
6776gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6777{
6778 if (menu->id == 0)
6779 return;
6780
6781 if (hidden)
6782 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006783 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006784 {
6785 gtk_widget_hide(menu->id);
6786 gui_mch_update();
6787 }
6788 }
6789 else
6790 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006791 if (!gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 {
6793 gtk_widget_show(menu->id);
6794 gui_mch_update();
6795 }
6796 }
6797}
6798
6799/*
6800 * This is called after setting all the menus to grey/hidden or not.
6801 */
6802 void
6803gui_mch_draw_menubar(void)
6804{
6805 /* just make sure that the visual changes get effect immediately */
6806 gui_mch_update();
6807}
6808#endif /* FEAT_MENU */
6809
6810/*
6811 * Scrollbar stuff.
6812 */
6813 void
6814gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6815{
6816 if (sb->id == NULL)
6817 return;
6818
Bram Moolenaar98921892016-02-23 17:14:37 +01006819 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006820 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821}
6822
6823
6824/*
6825 * Return the RGB value of a pixel as long.
6826 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006827 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006828gui_mch_get_rgb(guicolor_T pixel)
6829{
Bram Moolenaar98921892016-02-23 17:14:37 +01006830#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006831 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006832#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006833 GdkColor color;
6834
Bram Moolenaar071d4272004-06-13 20:20:40 +00006835 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6836 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006837
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006838 return (guicolor_T)(
6839 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006840 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006841 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02006842#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006843}
6844
6845/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006846 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006847 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006848 void
6849gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006850{
Bram Moolenaar98921892016-02-23 17:14:37 +01006851 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006852}
6853
6854 void
6855gui_mch_setmouse(int x, int y)
6856{
6857 /* Sorry for the Xlib call, but we can't avoid it, since there is no
6858 * internal GDK mechanism present to accomplish this. (and for good
6859 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01006860 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
6861 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
6862 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863}
6864
6865
6866#ifdef FEAT_MOUSESHAPE
6867/* The last set mouse pointer shape is remembered, to be used when it goes
6868 * from hidden to not hidden. */
6869static int last_shape = 0;
6870#endif
6871
6872/*
6873 * Use the blank mouse pointer or not.
6874 *
6875 * hide: TRUE = use blank ptr, FALSE = use parent ptr
6876 */
6877 void
6878gui_mch_mousehide(int hide)
6879{
6880 if (gui.pointer_hidden != hide)
6881 {
6882 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01006883 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884 {
6885 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01006886 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6887 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888 else
6889#ifdef FEAT_MOUSESHAPE
6890 mch_set_mouse_shape(last_shape);
6891#else
Bram Moolenaar25328e32018-09-11 21:30:09 +02006892 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006893#endif
6894 }
6895 }
6896}
6897
6898#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
6899
6900/* Table for shape IDs. Keep in sync with the mshape_names[] table in
6901 * misc2.c! */
6902static const int mshape_ids[] =
6903{
6904 GDK_LEFT_PTR, /* arrow */
6905 GDK_CURSOR_IS_PIXMAP, /* blank */
6906 GDK_XTERM, /* beam */
6907 GDK_SB_V_DOUBLE_ARROW, /* updown */
6908 GDK_SIZING, /* udsizing */
6909 GDK_SB_H_DOUBLE_ARROW, /* leftright */
6910 GDK_SIZING, /* lrsizing */
6911 GDK_WATCH, /* busy */
6912 GDK_X_CURSOR, /* no */
6913 GDK_CROSSHAIR, /* crosshair */
6914 GDK_HAND1, /* hand1 */
6915 GDK_HAND2, /* hand2 */
6916 GDK_PENCIL, /* pencil */
6917 GDK_QUESTION_ARROW, /* question */
6918 GDK_RIGHT_PTR, /* right-arrow */
6919 GDK_CENTER_PTR, /* up-arrow */
6920 GDK_LEFT_PTR /* last one */
6921};
6922
6923 void
6924mch_set_mouse_shape(int shape)
6925{
6926 int id;
6927 GdkCursor *c;
6928
Bram Moolenaar98921892016-02-23 17:14:37 +01006929 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 return;
6931
6932 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01006933 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6934 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935 else
6936 {
6937 if (shape >= MSHAPE_NUMBERED)
6938 {
6939 id = shape - MSHAPE_NUMBERED;
6940 if (id >= GDK_LAST_CURSOR)
6941 id = GDK_LEFT_PTR;
6942 else
6943 id &= ~1; /* they are always even (why?) */
6944 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006945 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006946 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00006947 else
6948 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006949 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00006950 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01006951 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01006952# if GTK_CHECK_VERSION(3,0,0)
6953 g_object_unref(G_OBJECT(c));
6954# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006955 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006956# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006957 }
6958 if (shape != MSHAPE_HIDE)
6959 last_shape = shape;
6960}
6961#endif /* FEAT_MOUSESHAPE */
6962
6963
6964#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6965/*
6966 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
6967 * scaled down if the current font is not big enough, or scaled up if the image
6968 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
6969 * will be cut off if the current font is not big enough, or centered if it's
6970 * too small.
6971 */
6972# define SIGN_WIDTH (2 * gui.char_width)
6973# define SIGN_HEIGHT (gui.char_height)
6974# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
6975
Bram Moolenaar071d4272004-06-13 20:20:40 +00006976 void
6977gui_mch_drawsign(int row, int col, int typenr)
6978{
6979 GdkPixbuf *sign;
6980
6981 sign = (GdkPixbuf *)sign_get_image(typenr);
6982
Bram Moolenaar98921892016-02-23 17:14:37 +01006983 if (sign != NULL && gui.drawarea != NULL
6984 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985 {
6986 int width;
6987 int height;
6988 int xoffset;
6989 int yoffset;
6990 int need_scale;
6991
6992 width = gdk_pixbuf_get_width(sign);
6993 height = gdk_pixbuf_get_height(sign);
6994 /*
6995 * Decide whether we need to scale. Allow one pixel of border
6996 * width to be cut off, in order to avoid excessive scaling for
6997 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006998 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999 */
7000 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007001 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002 || (width < 3 * SIGN_WIDTH / 4
7003 && height < 3 * SIGN_HEIGHT / 4));
7004 if (need_scale)
7005 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007006 double aspect;
7007 int w = width;
7008 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009
7010 /* Keep the original aspect ratio */
7011 aspect = (double)height / (double)width;
7012 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7013 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007014 if (((double)(MAX(height, SIGN_HEIGHT)) /
7015 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7016 {
7017 /* Change the aspect ratio by at most 15% to fill the
7018 * available space completly. */
7019 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7020 height = MIN(height, SIGN_HEIGHT);
7021 }
7022 else
7023 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007024
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007025 if (w == width && h == height)
7026 {
7027 /* no change in dimensions; don't decrease reference counter
7028 * (below) */
7029 need_scale = FALSE;
7030 }
7031 else
7032 {
7033 /* This doesn't seem to be worth caching, and doing so would
7034 * complicate the code quite a bit. */
7035 sign = gdk_pixbuf_scale_simple(sign, width, height,
7036 GDK_INTERP_BILINEAR);
7037 if (sign == NULL)
7038 return; /* out of memory */
7039 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040 }
7041
7042 /* The origin is the upper-left corner of the pixmap. Therefore
7043 * these offset may become negative if the pixmap is smaller than
7044 * the 2x1 cells reserved for the sign icon. */
7045 xoffset = (width - SIGN_WIDTH) / 2;
7046 yoffset = (height - SIGN_HEIGHT) / 2;
7047
Bram Moolenaar98921892016-02-23 17:14:37 +01007048# if GTK_CHECK_VERSION(3,0,0)
7049 {
7050 cairo_t *cr;
7051 cairo_surface_t *bg_surf;
7052 cairo_t *bg_cr;
7053 cairo_surface_t *sign_surf;
7054 cairo_t *sign_cr;
7055
7056 cr = cairo_create(gui.surface);
7057
7058 bg_surf = cairo_surface_create_similar(gui.surface,
7059 cairo_surface_get_content(gui.surface),
7060 SIGN_WIDTH, SIGN_HEIGHT);
7061 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007062 cairo_set_source_rgba(bg_cr,
7063 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7064 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007065 cairo_paint(bg_cr);
7066
7067 sign_surf = cairo_surface_create_similar(gui.surface,
7068 cairo_surface_get_content(gui.surface),
7069 SIGN_WIDTH, SIGN_HEIGHT);
7070 sign_cr = cairo_create(sign_surf);
7071 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7072 cairo_paint(sign_cr);
7073
7074 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7075 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7076 cairo_paint(sign_cr);
7077
7078 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7079 cairo_paint(cr);
7080
7081 cairo_destroy(sign_cr);
7082 cairo_surface_destroy(sign_surf);
7083 cairo_destroy(bg_cr);
7084 cairo_surface_destroy(bg_surf);
7085 cairo_destroy(cr);
7086
7087 if (!gui.by_signal)
7088 gtk_widget_queue_draw_area(gui.drawarea,
7089 FILL_X(col), FILL_Y(col), width, height);
7090
7091 }
7092# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7094
7095 gdk_draw_rectangle(gui.drawarea->window,
7096 gui.text_gc,
7097 TRUE,
7098 FILL_X(col),
7099 FILL_Y(row),
7100 SIGN_WIDTH,
7101 SIGN_HEIGHT);
7102
Bram Moolenaar071d4272004-06-13 20:20:40 +00007103 gdk_pixbuf_render_to_drawable_alpha(sign,
7104 gui.drawarea->window,
7105 MAX(0, xoffset),
7106 MAX(0, yoffset),
7107 FILL_X(col) - MIN(0, xoffset),
7108 FILL_Y(row) - MIN(0, yoffset),
7109 MIN(width, SIGN_WIDTH),
7110 MIN(height, SIGN_HEIGHT),
7111 GDK_PIXBUF_ALPHA_BILEVEL,
7112 127,
7113 GDK_RGB_DITHER_NORMAL,
7114 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007115# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 if (need_scale)
7117 g_object_unref(sign);
7118 }
7119}
7120
7121 void *
7122gui_mch_register_sign(char_u *signfile)
7123{
7124 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7125 {
7126 GdkPixbuf *sign;
7127 GError *error = NULL;
7128 char_u *message;
7129
7130 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7131
7132 if (error == NULL)
7133 return sign;
7134
7135 message = (char_u *)error->message;
7136
7137 if (message != NULL && input_conv.vc_type != CONV_NONE)
7138 message = string_convert(&input_conv, message, NULL);
7139
7140 if (message != NULL)
7141 {
7142 /* The error message is already translated and will be more
7143 * descriptive than anything we could possibly do ourselves. */
7144 EMSG2("E255: %s", message);
7145
7146 if (input_conv.vc_type != CONV_NONE)
7147 vim_free(message);
7148 }
7149 g_error_free(error);
7150 }
7151
7152 return NULL;
7153}
7154
7155 void
7156gui_mch_destroy_sign(void *sign)
7157{
7158 if (sign != NULL)
7159 g_object_unref(sign);
7160}
7161
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162#endif /* FEAT_SIGN_ICONS */