blob: 17ef6eabdc9f20488dbf273883ffacae741e5194 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * Porting to GTK+ was done by:
12 *
Bram Moolenaar0a56cb82005-01-04 21:45:14 +000013 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * With GREAT support and continuous encouragements by Andy Kahn and of
16 * course Bram Moolenaar!
17 *
18 * Support for GTK+ 2 was added by:
19 *
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
21 * Daniel Elstner <daniel.elstner@gmx.net>
Bram Moolenaar98921892016-02-23 17:14:37 +010022 *
23 * Support for GTK+ 3 was added by:
24 *
25 * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 */
27
28#include "vim.h"
Bram Moolenaar36e294c2015-12-29 18:55:46 +010029#ifdef USE_GRESOURCE
30#include "auto/gui_gtk_gresources.h"
31#endif
Bram Moolenaarc93e7912008-07-08 10:46:08 +000032
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_GUI_GNOME
34/* Gnome redefines _() and N_(). Grrr... */
35# ifdef _
36# undef _
37# endif
38# ifdef N_
39# undef N_
40# endif
41# ifdef textdomain
42# undef textdomain
43# endif
44# ifdef bindtextdomain
45# undef bindtextdomain
46# endif
Bram Moolenaara2dd9002007-05-14 17:38:30 +000047# ifdef bind_textdomain_codeset
48# undef bind_textdomain_codeset
Bram Moolenaar49325942007-05-10 19:19:59 +000049# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000050# if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
51# define ENABLE_NLS /* so the texts in the dialog boxes are translated */
52# endif
53# include <gnome.h>
54# include "version.h"
Bram Moolenaardb552d602006-03-23 22:59:57 +000055/* missing prototype in bonobo-dock-item.h */
56extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#endif
58
59#if !defined(FEAT_GUI_GTK) && defined(PROTO)
60/* When generating prototypes we don't want syntax errors. */
61# define GdkAtom int
62# define GdkEventExpose int
63# define GdkEventFocus int
64# define GdkEventVisibility int
65# define GdkEventProperty int
66# define GtkContainer int
67# define GtkTargetEntry int
68# define GtkType int
69# define GtkWidget int
70# define gint int
71# define gpointer int
72# define guint int
73# define GdkEventKey int
74# define GdkEventSelection int
75# define GtkSelectionData int
76# define GdkEventMotion int
77# define GdkEventButton int
78# define GdkDragContext int
79# define GdkEventConfigure int
80# define GdkEventClient int
81#else
Bram Moolenaar98921892016-02-23 17:14:37 +010082# if GTK_CHECK_VERSION(3,0,0)
83# include <gdk/gdkkeysyms-compat.h>
84# include <gtk/gtkx.h>
85# else
86# include <gdk/gdkkeysyms.h>
87# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000088# include <gdk/gdk.h>
Bram Moolenaar4f974752019-02-17 17:44:42 +010089# ifdef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +000090# include <gdk/gdkwin32.h>
91# else
92# include <gdk/gdkx.h>
93# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000094# include <gtk/gtk.h>
95# include "gui_gtk_f.h"
96#endif
97
98#ifdef HAVE_X11_SUNKEYSYM_H
99# include <X11/Sunkeysym.h>
100#endif
101
102/*
103 * Easy-to-use macro for multihead support.
104 */
Bram Moolenaarb463e8d2017-06-05 15:07:09 +0200105#define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106 gtk_widget_get_display(gui.mainwin), atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107
108/* Selection type distinguishers */
109enum
110{
111 TARGET_TYPE_NONE,
112 TARGET_UTF8_STRING,
113 TARGET_STRING,
114 TARGET_COMPOUND_TEXT,
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000115 TARGET_HTML,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 TARGET_TEXT,
117 TARGET_TEXT_URI_LIST,
118 TARGET_TEXT_PLAIN,
119 TARGET_VIM,
120 TARGET_VIMENC
121};
122
123/*
124 * Table of selection targets supported by Vim.
125 * Note: Order matters, preferred types should come first.
126 */
127static const GtkTargetEntry selection_targets[] =
128{
129 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
130 {VIM_ATOM_NAME, 0, TARGET_VIM},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000131 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
134 {"TEXT", 0, TARGET_TEXT},
135 {"STRING", 0, TARGET_STRING}
136};
137#define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
138
139#ifdef FEAT_DND
140/*
141 * Table of DnD targets supported by Vim.
142 * Note: Order matters, preferred types should come first.
143 */
144static const GtkTargetEntry dnd_targets[] =
145{
146 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000147 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149 {"STRING", 0, TARGET_STRING},
150 {"text/plain", 0, TARGET_TEXT_PLAIN}
151};
152# define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
153#endif
154
155
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156/*
157 * "Monospace" is a standard font alias that should be present
158 * on all proper Pango/fontconfig installations.
159 */
160# define DEFAULT_FONT "Monospace 10"
161
Bram 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;
Bram Moolenaar964b3742019-05-24 18:54:09 +0200432 gui_argv = (char **)alloc((*argc + 1) * sizeof(char *));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433
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 +0100621
622 static void
623gui_gtk3_redraw(int x, int y, int width, int height)
624{
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100625 /* Range checks are left to gui_redraw_block() */
Bram Moolenaar98921892016-02-23 17:14:37 +0100626 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
627 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
628 GUI_MON_NOCLEAR);
629}
630
631 static void
632gui_gtk3_update_cursor(cairo_t *cr)
633{
634 if (gui.row == gui.cursor_row)
635 {
636 gui.by_signal = TRUE;
Bram Moolenaar4fc563b2016-03-12 12:40:58 +0100637 if (State & CMDLINE)
638 gui_update_cursor(TRUE, FALSE);
639 else
640 gui_update_cursor(TRUE, TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +0100641 gui.by_signal = FALSE;
642 cairo_paint(cr);
643 }
644}
645
646 static gboolean
647gui_gtk3_should_draw_cursor(void)
648{
649 unsigned int cond = 0;
650 cond |= gui_gtk_is_blink_on();
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100651 if (gui.cursor_col >= gui.col)
652 cond |= is_key_pressed;
Bram Moolenaar98921892016-02-23 17:14:37 +0100653 cond |= gui.in_focus == FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100654 return cond;
655}
656
657 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200658draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100659 cairo_t *cr,
660 gpointer user_data UNUSED)
661{
662 /* Skip this when the GUI isn't set up yet, will redraw later. */
663 if (gui.starting)
664 return FALSE;
665
666 out_flush(); /* make sure all output has been processed */
667 /* for GTK+ 3, may induce other draw events. */
668
669 cairo_set_source_surface(cr, gui.surface, 0, 0);
670
671 /* Draw the window without the cursor. */
672 gui.by_signal = TRUE;
673 {
674 cairo_rectangle_list_t *list = NULL;
675
Bram Moolenaar98921892016-02-23 17:14:37 +0100676 list = cairo_copy_clip_rectangle_list(cr);
677 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
678 {
679 int i;
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100680
681 /* First clear all the blocks and then redraw them. Just in case
682 * some blocks overlap. */
Bram Moolenaar98921892016-02-23 17:14:37 +0100683 for (i = 0; i < list->num_rectangles; i++)
684 {
685 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200686
Bram Moolenaarfe344a92017-02-23 12:20:35 +0100687 gui_mch_clear_block(Y_2_ROW((int)rect.y), 0,
688 Y_2_ROW((int)(rect.y + rect.height)) - 1, Columns - 1);
689 }
690
691 for (i = 0; i < list->num_rectangles; i++)
692 {
693 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200694
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100695 if (blink_mode)
696 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
697 else
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100698 {
699 if (get_real_state() & VISUAL)
700 gui_gtk3_redraw(rect.x, rect.y,
701 rect.width, rect.height);
702 else
703 gui_redraw(rect.x, rect.y, rect.width, rect.height);
704 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100705 }
706 }
707 cairo_rectangle_list_destroy(list);
708
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100709 if (get_real_state() & VISUAL)
710 {
711 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col)
712 gui_update_cursor(TRUE, TRUE);
713 }
714
Bram Moolenaar98921892016-02-23 17:14:37 +0100715 cairo_paint(cr);
716 }
717 gui.by_signal = FALSE;
718
719 /* Add the cursor to the window if necessary.*/
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100720 if (gui_gtk3_should_draw_cursor() && blink_mode)
Bram Moolenaar98921892016-02-23 17:14:37 +0100721 gui_gtk3_update_cursor(cr);
722
723 return FALSE;
724}
725#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000727expose_event(GtkWidget *widget UNUSED,
728 GdkEventExpose *event,
729 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730{
731 /* Skip this when the GUI isn't set up yet, will redraw later. */
732 if (gui.starting)
733 return FALSE;
734
735 out_flush(); /* make sure all output has been processed */
736 gui_redraw(event->area.x, event->area.y,
737 event->area.width, event->area.height);
738
739 /* Clear the border areas if needed */
740 if (event->area.x < FILL_X(0))
741 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
742 if (event->area.y < FILL_Y(0))
743 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
744 if (event->area.x > FILL_X(Columns))
745 gdk_window_clear_area(gui.drawarea->window,
746 FILL_X((int)Columns), 0, 0, 0);
747 if (event->area.y > FILL_Y(Rows))
748 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
749
750 return FALSE;
751}
Bram Moolenaar98921892016-02-23 17:14:37 +0100752#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753
754#ifdef FEAT_CLIENTSERVER
755/*
756 * Handle changes to the "Comm" property
757 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000759property_event(GtkWidget *widget,
760 GdkEventProperty *event,
761 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762{
763 if (event->type == GDK_PROPERTY_NOTIFY
764 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100765 && GDK_WINDOW_XID(event->window) == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 && GET_X_ATOM(event->atom) == commProperty)
767 {
768 XEvent xev;
769
770 /* Translate to XLib */
771 xev.xproperty.type = PropertyNotify;
772 xev.xproperty.atom = commProperty;
773 xev.xproperty.window = commWindow;
774 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100775 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
776 &xev, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 }
778 return FALSE;
779}
Bram Moolenaar98921892016-02-23 17:14:37 +0100780#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +0200782/*
783 * Handle changes to the "Xft/DPI" setting
784 */
785 static void
786gtk_settings_xft_dpi_changed_cb(GtkSettings *gtk_settings UNUSED,
787 GParamSpec *pspec UNUSED,
788 gpointer data UNUSED)
789{
790 // Create a new PangoContext for this screen, and initialize it
791 // with the current font if necessary.
792 if (gui.text_context != NULL)
793 g_object_unref(gui.text_context);
794
795 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
796 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
797
798 if (gui.norm_font != NULL)
799 {
800 // force default font
801 gui_mch_init_font(*p_guifont == NUL ? NULL : p_guifont, FALSE);
802 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
803 }
804}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200806typedef gboolean timeout_cb_type;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200807
808/*
809 * Start a timer that will invoke the specified callback.
810 * Returns the ID of the timer.
811 */
812 static guint
813timeout_add(int time, timeout_cb_type (*callback)(gpointer), int *flagp)
814{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200815 return g_timeout_add((guint)time, (GSourceFunc)callback, flagp);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200816}
817
818 static void
819timeout_remove(guint timer)
820{
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200821 g_source_remove(timer);
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200822}
823
824
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825/****************************************************************************
826 * Focus handlers:
827 */
828
829
830/*
831 * This is a simple state machine:
832 * BLINK_NONE not blinking at all
833 * BLINK_OFF blinking, cursor is not shown
834 * BLINK_ON blinking, cursor is shown
835 */
836
837#define BLINK_NONE 0
838#define BLINK_OFF 1
839#define BLINK_ON 2
840
841static int blink_state = BLINK_NONE;
842static long_u blink_waittime = 700;
843static long_u blink_ontime = 400;
844static long_u blink_offtime = 250;
845static guint blink_timer = 0;
846
Bram Moolenaar98921892016-02-23 17:14:37 +0100847#if GTK_CHECK_VERSION(3,0,0)
848 static gboolean
849gui_gtk_is_blink_on(void)
850{
851 return blink_state == BLINK_ON;
852}
Bram Moolenaar98921892016-02-23 17:14:37 +0100853#endif
854
Bram Moolenaar703a8042016-06-04 16:24:32 +0200855 int
856gui_mch_is_blinking(void)
857{
858 return blink_state != BLINK_NONE;
859}
860
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200861 int
862gui_mch_is_blink_off(void)
863{
864 return blink_state == BLINK_OFF;
865}
866
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 void
868gui_mch_set_blinking(long waittime, long on, long off)
869{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100870#if GTK_CHECK_VERSION(3,0,0)
871 if (waittime == 0 || on == 0 || off == 0)
872 {
873 blink_mode = FALSE;
874
875 blink_waittime = 700;
876 blink_ontime = 400;
877 blink_offtime = 250;
878 }
879 else
880 {
881 blink_mode = TRUE;
882
883 blink_waittime = waittime;
884 blink_ontime = on;
885 blink_offtime = off;
886 }
887#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888 blink_waittime = waittime;
889 blink_ontime = on;
890 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100891#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892}
893
894/*
895 * Stop the cursor blinking. Show the cursor if it wasn't shown.
896 */
897 void
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100898gui_mch_stop_blink(int may_call_gui_update_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899{
900 if (blink_timer)
901 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200902 timeout_remove(blink_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 blink_timer = 0;
904 }
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100905 if (blink_state == BLINK_OFF && may_call_gui_update_cursor)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200906 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200908 gui_mch_flush();
909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 blink_state = BLINK_NONE;
911}
912
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200913 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000914blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915{
916 if (blink_state == BLINK_ON)
917 {
918 gui_undraw_cursor();
919 blink_state = BLINK_OFF;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200920 blink_timer = timeout_add(blink_offtime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 }
922 else
923 {
924 gui_update_cursor(TRUE, FALSE);
925 blink_state = BLINK_ON;
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200926 blink_timer = timeout_add(blink_ontime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 }
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200928 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929
930 return FALSE; /* don't happen again */
931}
932
933/*
934 * Start the cursor blinking. If it was already blinking, this restarts the
935 * waiting time and shows the cursor.
936 */
937 void
938gui_mch_start_blink(void)
939{
940 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200941 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200942 timeout_remove(blink_timer);
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200943 blink_timer = 0;
944 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945 /* Only switch blinking on if none of the times is zero */
946 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
947 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +0200948 blink_timer = timeout_add(blink_waittime, blink_cb, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 blink_state = BLINK_ON;
950 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200951 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 }
953}
954
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000956enter_notify_event(GtkWidget *widget UNUSED,
957 GdkEventCrossing *event UNUSED,
958 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959{
960 if (blink_state == BLINK_NONE)
961 gui_mch_start_blink();
962
963 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100964 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 gtk_widget_grab_focus(gui.drawarea);
966
967 return FALSE;
968}
969
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000971leave_notify_event(GtkWidget *widget UNUSED,
972 GdkEventCrossing *event UNUSED,
973 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974{
975 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +0100976 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977
978 return FALSE;
979}
980
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000982focus_in_event(GtkWidget *widget,
983 GdkEventFocus *event UNUSED,
984 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985{
986 gui_focus_change(TRUE);
987
988 if (blink_state == BLINK_NONE)
989 gui_mch_start_blink();
990
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000991 /* make sure keyboard input goes to the draw area (if this is focus for a
992 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000993 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000994 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995
996 return TRUE;
997}
998
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001000focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001001 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001002 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003{
1004 gui_focus_change(FALSE);
1005
1006 if (blink_state != BLINK_NONE)
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001007 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008
1009 return TRUE;
1010}
1011
1012
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013/*
1014 * Translate a GDK key value to UTF-8 independently of the current locale.
1015 * The output is written to string, which must have room for at least 6 bytes
1016 * plus the NUL terminator. Returns the length in bytes.
1017 *
1018 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
1019 * of GdkEventKey::string instead. But event->string is evil; see here why:
1020 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1021 */
1022 static int
1023keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
1024{
1025 int len;
1026 guint32 uc;
1027
1028 uc = gdk_keyval_to_unicode(keyval);
1029 if (uc != 0)
1030 {
1031 /* Check for CTRL-foo */
1032 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
1033 {
1034 /* These mappings look arbitrary at the first glance, but in fact
1035 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
1036 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
1037 * more sense and is consistent with usual terminal behaviour). */
1038 if (uc >= '@')
1039 string[0] = uc & 0x1F;
1040 else if (uc == '2')
1041 string[0] = NUL;
1042 else if (uc >= '3' && uc <= '7')
1043 string[0] = uc ^ 0x28;
1044 else if (uc == '8')
1045 string[0] = BS;
1046 else if (uc == '?')
1047 string[0] = DEL;
1048 else
1049 string[0] = uc;
1050 len = 1;
1051 }
1052 else
1053 {
1054 /* Translate a normal key to UTF-8. This doesn't work for dead
1055 * keys of course, you _have_ to use an input method for that. */
1056 len = utf_char2bytes((int)uc, string);
1057 }
1058 }
1059 else
1060 {
1061 /* Translate keys which are represented by ASCII control codes in Vim.
1062 * There are only a few of those; most control keys are translated to
1063 * special terminal-like control sequences. */
1064 len = 1;
1065 switch (keyval)
1066 {
1067 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1068 string[0] = TAB;
1069 break;
1070 case GDK_Linefeed:
1071 string[0] = NL;
1072 break;
1073 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1074 string[0] = CAR;
1075 break;
1076 case GDK_Escape:
1077 string[0] = ESC;
1078 break;
1079 default:
1080 len = 0;
1081 break;
1082 }
1083 }
1084 string[len] = NUL;
1085
1086 return len;
1087}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001089 static int
1090modifiers_gdk2vim(guint state)
1091{
1092 int modifiers = 0;
1093
1094 if (state & GDK_SHIFT_MASK)
1095 modifiers |= MOD_MASK_SHIFT;
1096 if (state & GDK_CONTROL_MASK)
1097 modifiers |= MOD_MASK_CTRL;
1098 if (state & GDK_MOD1_MASK)
1099 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001100#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001101 if (state & GDK_SUPER_MASK)
1102 modifiers |= MOD_MASK_META;
1103#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001104 if (state & GDK_MOD4_MASK)
1105 modifiers |= MOD_MASK_META;
1106
1107 return modifiers;
1108}
1109
1110 static int
1111modifiers_gdk2mouse(guint state)
1112{
1113 int modifiers = 0;
1114
1115 if (state & GDK_SHIFT_MASK)
1116 modifiers |= MOUSE_SHIFT;
1117 if (state & GDK_CONTROL_MASK)
1118 modifiers |= MOUSE_CTRL;
1119 if (state & GDK_MOD1_MASK)
1120 modifiers |= MOUSE_ALT;
1121
1122 return modifiers;
1123}
1124
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125/*
1126 * Main keyboard handler:
1127 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001129key_press_event(GtkWidget *widget UNUSED,
1130 GdkEventKey *event,
1131 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001133 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1135 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 guint key_sym;
1137 int len;
1138 int i;
1139 int modifiers;
1140 int key;
1141 guint state;
1142 char_u *s, *d;
1143
Bram Moolenaar98921892016-02-23 17:14:37 +01001144#if GTK_CHECK_VERSION(3,0,0)
1145 is_key_pressed = TRUE;
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01001146 gui_mch_stop_blink(TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001147#endif
1148
Bram Moolenaar20892c12011-06-26 04:49:00 +02001149 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 key_sym = event->keyval;
1151 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152
1153#ifdef FEAT_XIM
1154 if (xim_queue_key_press_event(event, TRUE))
1155 return TRUE;
1156#endif
1157
1158#ifdef FEAT_HANGULIN
1159 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1160 {
1161 hangul_input_state_toggle();
1162 return TRUE;
1163 }
1164#endif
1165
1166#ifdef SunXK_F36
1167 /*
1168 * These keys have bogus lookup strings, and trapping them here is
1169 * easier than trying to XRebindKeysym() on them with every possible
1170 * combination of modifiers.
1171 */
1172 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1173 len = 0;
1174 else
1175#endif
1176 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 len = keyval_to_string(key_sym, state, string2);
1178
1179 /* Careful: convert_input() doesn't handle the NUL character.
1180 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1181 if (len > 1 && input_conv.vc_type != CONV_NONE)
1182 len = convert_input(string2, len, sizeof(string2));
1183
1184 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 d = string;
1186 for (i = 0; i < len; ++i)
1187 {
1188 *d++ = s[i];
1189 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1190 {
1191 /* Turn CSI into K_CSI. */
1192 *d++ = KS_EXTRA;
1193 *d++ = (int)KE_CSI;
1194 }
1195 }
1196 len = d - string;
1197 }
1198
1199 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1200 if (key_sym == GDK_ISO_Left_Tab)
1201 {
1202 key_sym = GDK_Tab;
1203 state |= GDK_SHIFT_MASK;
1204 }
1205
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206#ifdef FEAT_MENU
1207 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1208 * is a menu shortcut, we ignore everything with the ALT modifier. */
1209 if ((state & GDK_MOD1_MASK)
1210 && gui.menu_is_active
1211 && (*p_wak == 'y'
1212 || (*p_wak == 'm'
1213 && len == 1
1214 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 /* For GTK2 we return false to signify that we haven't handled the
1216 * keypress, so that gtk will handle the mnemonic or accelerator. */
1217 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218#endif
1219
1220 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1221 * that already has the 8th bit set.
1222 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1223 * Don't do this for double-byte encodings, it turns the char into a lead
1224 * byte. */
1225 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001226 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001227#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001228 || (state & GDK_SUPER_MASK)
1229#endif
1230 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1232 && (string[0] & 0x80) == 0
1233 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 )
1236 {
1237 string[0] |= 0x80;
1238 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 if (enc_utf8) /* convert to utf-8 */
1240 {
1241 string[1] = string[0] & 0xbf;
1242 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1243 if (string[1] == CSI)
1244 {
1245 string[2] = KS_EXTRA;
1246 string[3] = (int)KE_CSI;
1247 len = 4;
1248 }
1249 else
1250 len = 2;
1251 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 }
1253
1254 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1255 * value) to detect backspace, delete and keypad keys. */
1256 if (len == 0 || len == 1)
1257 {
1258 for (i = 0; special_keys[i].key_sym != 0; i++)
1259 {
1260 if (special_keys[i].key_sym == key_sym)
1261 {
1262 string[0] = CSI;
1263 string[1] = special_keys[i].code0;
1264 string[2] = special_keys[i].code1;
1265 len = -3;
1266 break;
1267 }
1268 }
1269 }
1270
1271 if (len == 0) /* Unrecognized key */
1272 return TRUE;
1273
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 /* Special keys (and a few others) may have modifiers. Also when using a
1275 * double-byte encoding (can't set the 8th bit). */
1276 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1277 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1278 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1279 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001280 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001281#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001282 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001284 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001286 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287
1288 /*
1289 * For some keys a shift modifier is translated into another key
1290 * code.
1291 */
1292 if (len == -3)
1293 key = TO_SPECIAL(string[1], string[2]);
1294 else
1295 key = string[0];
1296
1297 key = simplify_key(key, &modifiers);
1298 if (key == CSI)
1299 key = K_CSI;
1300 if (IS_SPECIAL(key))
1301 {
1302 string[0] = CSI;
1303 string[1] = K_SECOND(key);
1304 string[2] = K_THIRD(key);
1305 len = 3;
1306 }
1307 else
1308 {
1309 string[0] = key;
1310 len = 1;
1311 }
1312
1313 if (modifiers != 0)
1314 {
1315 string2[0] = CSI;
1316 string2[1] = KS_MODIFIER;
1317 string2[2] = modifiers;
1318 add_to_input_buf(string2, 3);
1319 }
1320 }
1321
1322 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1323 || (string[0] == intr_char && intr_char != Ctrl_C)))
1324 {
1325 trash_input_buf();
1326 got_int = TRUE;
1327 }
1328
1329 add_to_input_buf(string, len);
1330
1331 /* blank out the pointer if necessary */
1332 if (p_mh)
1333 gui_mch_mousehide(TRUE);
1334
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 return TRUE;
1336}
1337
Bram Moolenaar98921892016-02-23 17:14:37 +01001338#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001340key_release_event(GtkWidget *widget UNUSED,
1341 GdkEventKey *event,
1342 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343{
Bram Moolenaar98921892016-02-23 17:14:37 +01001344# if GTK_CHECK_VERSION(3,0,0)
1345 is_key_pressed = FALSE;
1346 gui_mch_start_blink();
1347# endif
1348# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001349 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 /*
1351 * GTK+ 2 input methods may do fancy stuff on key release events too.
1352 * With the default IM for instance, you can enter any UCS code point
1353 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1354 */
1355 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001356# else
1357 return TRUE;
1358# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359}
1360#endif
1361
1362
1363/****************************************************************************
1364 * Selection handlers:
1365 */
1366
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001367/* Remember when clip_lose_selection was called from here, we must not call
1368 * gtk_selection_owner_set() then. */
1369static int in_selection_clear_event = FALSE;
1370
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001372selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001374 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001376 in_selection_clear_event = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 if (event->selection == clip_plus.gtk_sel_atom)
1378 clip_lose_selection(&clip_plus);
1379 else
1380 clip_lose_selection(&clip_star);
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01001381 in_selection_clear_event = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 return TRUE;
1384}
1385
1386#define RS_NONE 0 /* selection_received_cb() not called yet */
1387#define RS_OK 1 /* selection_received_cb() called and OK */
1388#define RS_FAIL 2 /* selection_received_cb() called and failed */
1389static int received_selection = RS_NONE;
1390
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001392selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001394 guint time_ UNUSED,
1395 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396{
1397 VimClipboard *cbd;
1398 char_u *text;
1399 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001402 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
Bram Moolenaar98921892016-02-23 17:14:37 +01001404 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 cbd = &clip_plus;
1406 else
1407 cbd = &clip_star;
1408
Bram Moolenaar98921892016-02-23 17:14:37 +01001409 text = (char_u *)gtk_selection_data_get_data(data);
1410 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411
1412 if (text == NULL || len <= 0)
1413 {
1414 received_selection = RS_FAIL;
1415 /* clip_free_selection(cbd); ??? */
1416
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 return;
1418 }
1419
Bram Moolenaar98921892016-02-23 17:14:37 +01001420 if (gtk_selection_data_get_data_type(data) == vim_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001421 {
1422 motion_type = *text++;
1423 --len;
1424 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001425 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426 {
1427 char_u *enc;
1428 vimconv_T conv;
1429
1430 motion_type = *text++;
1431 --len;
1432
1433 enc = text;
1434 text += STRLEN(text) + 1;
1435 len -= text - enc;
1436
1437 /* If the encoding of the text is different from 'encoding', attempt
1438 * converting it. */
1439 conv.vc_type = CONV_NONE;
1440 convert_setup(&conv, enc, p_enc);
1441 if (conv.vc_type != CONV_NONE)
1442 {
1443 tmpbuf = string_convert(&conv, text, &len);
1444 if (tmpbuf != NULL)
1445 text = tmpbuf;
1446 convert_setup(&conv, NULL, NULL);
1447 }
1448 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450 /* gtk_selection_data_get_text() handles all the nasty details
1451 * and targets and encodings etc. This rocks so hard. */
1452 else
1453 {
1454 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1455 if (tmpbuf_utf8 != NULL)
1456 {
1457 len = STRLEN(tmpbuf_utf8);
1458 if (input_conv.vc_type != CONV_NONE)
1459 {
1460 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1461 if (tmpbuf != NULL)
1462 text = tmpbuf;
1463 }
1464 else
1465 text = tmpbuf_utf8;
1466 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001467 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1468 {
1469 vimconv_T conv;
1470
1471 /* UTF-16, we get this for HTML */
1472 conv.vc_type = CONV_NONE;
1473 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1474
1475 if (conv.vc_type != CONV_NONE)
1476 {
1477 text += 2;
1478 len -= 2;
1479 tmpbuf = string_convert(&conv, text, &len);
1480 convert_setup(&conv, NULL, NULL);
1481 }
1482 if (tmpbuf != NULL)
1483 text = tmpbuf;
1484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001487 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001488 while (len > 0 && text[len - 1] == NUL)
1489 --len;
1490
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 clip_yank_selection(motion_type, text, (long)len, cbd);
1492 received_selection = RS_OK;
1493 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495}
1496
1497/*
1498 * Prepare our selection data for passing it to the external selection
1499 * client.
1500 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001502selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 GtkSelectionData *selection_data,
1504 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001505 guint time_ UNUSED,
1506 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507{
1508 char_u *string;
1509 char_u *tmpbuf;
1510 long_u tmplen;
1511 int length;
1512 int motion_type;
1513 GdkAtom type;
1514 VimClipboard *cbd;
1515
Bram Moolenaar98921892016-02-23 17:14:37 +01001516 if (gtk_selection_data_get_selection(selection_data)
1517 == clip_plus.gtk_sel_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 cbd = &clip_plus;
1519 else
1520 cbd = &clip_star;
1521
1522 if (!cbd->owned)
1523 return; /* Shouldn't ever happen */
1524
1525 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001526 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 && info != (guint)TARGET_UTF8_STRING
1528 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 && info != (guint)TARGET_VIM
1530 && info != (guint)TARGET_COMPOUND_TEXT
1531 && info != (guint)TARGET_TEXT)
1532 return;
1533
1534 /* get the selection from the '*'/'+' register */
1535 clip_get_selection(cbd);
1536
1537 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1538 if (motion_type < 0 || string == NULL)
1539 return;
1540 /* Due to int arguments we can't handle more than G_MAXINT. Also
1541 * reserve one extra byte for NUL or the motion type; just in case.
1542 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1543 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1544
1545 if (info == (guint)TARGET_VIM)
1546 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001547 tmpbuf = alloc(length + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 if (tmpbuf != NULL)
1549 {
1550 tmpbuf[0] = motion_type;
1551 mch_memmove(tmpbuf + 1, string, (size_t)length);
1552 }
1553 /* For our own format, the first byte contains the motion type */
1554 ++length;
1555 vim_free(string);
1556 string = tmpbuf;
1557 type = vim_atom;
1558 }
1559
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001560 else if (info == (guint)TARGET_HTML)
1561 {
1562 vimconv_T conv;
1563
1564 /* Since we get utf-16, we probably should set it as well. */
1565 conv.vc_type = CONV_NONE;
1566 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1567 if (conv.vc_type != CONV_NONE)
1568 {
1569 tmpbuf = string_convert(&conv, string, &length);
1570 convert_setup(&conv, NULL, NULL);
1571 vim_free(string);
1572 string = tmpbuf;
1573 }
1574
1575 /* Prepend the BOM: "fffe" */
1576 if (string != NULL)
1577 {
1578 tmpbuf = alloc(length + 2);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001579 if (tmpbuf != NULL)
1580 {
1581 tmpbuf[0] = 0xff;
1582 tmpbuf[1] = 0xfe;
1583 mch_memmove(tmpbuf + 2, string, (size_t)length);
1584 vim_free(string);
1585 string = tmpbuf;
1586 length += 2;
1587 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001588
Bram Moolenaar98921892016-02-23 17:14:37 +01001589#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001590 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001591 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001592 selection_data->type = selection_data->target;
1593 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001594#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001595 gtk_selection_data_set(selection_data, html_atom, 16,
1596 string, length);
1597 vim_free(string);
1598 }
1599 return;
1600 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 else if (info == (guint)TARGET_VIMENC)
1602 {
1603 int l = STRLEN(p_enc);
1604
1605 /* contents: motion_type 'encoding' NUL text */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001606 tmpbuf = alloc(length + l + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 if (tmpbuf != NULL)
1608 {
1609 tmpbuf[0] = motion_type;
1610 STRCPY(tmpbuf + 1, p_enc);
1611 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02001612 length += l + 2;
1613 vim_free(string);
1614 string = tmpbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 type = vimenc_atom;
1617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 /* gtk_selection_data_set_text() handles everything for us. This is
1620 * so easy and simple and cool, it'd be insane not to use it. */
1621 else
1622 {
1623 if (output_conv.vc_type != CONV_NONE)
1624 {
1625 tmpbuf = string_convert(&output_conv, string, &length);
1626 vim_free(string);
1627 if (tmpbuf == NULL)
1628 return;
1629 string = tmpbuf;
1630 }
1631 /* Validate the string to avoid runtime warnings */
1632 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1633 {
1634 gtk_selection_data_set_text(selection_data,
1635 (const char *)string, length);
1636 }
1637 vim_free(string);
1638 return;
1639 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640
1641 if (string != NULL)
1642 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001643#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001644 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001645 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 selection_data->type = selection_data->target;
1647 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001648#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 gtk_selection_data_set(selection_data, type, 8, string, length);
1650 vim_free(string);
1651 }
1652}
1653
1654/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001655 * Check if the GUI can be started. Called before gvimrc is sourced and
1656 * before fork().
1657 * Return OK or FAIL.
1658 */
1659 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001660gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001661{
1662 char_u *p;
1663
1664 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1665 p = mch_getenv((char_u *)"DISPLAY");
1666 if (p == NULL || *p == NUL)
1667 {
1668 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001669 if (give_message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001670 emsg(_((char *)e_opendisp));
Bram Moolenaar29695702012-05-18 17:03:18 +02001671 return FAIL;
1672 }
1673 return OK;
1674}
1675
1676/*
1677 * Check if the GUI can be started. Called before gvimrc is sourced but after
1678 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 * Return OK or FAIL.
1680 */
1681 int
1682gui_mch_init_check(void)
1683{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001684#ifdef USE_GRESOURCE
1685 static int res_registered = FALSE;
1686
1687 if (!res_registered)
1688 {
1689 /* Call this function in the GUI process; otherwise, the resources
1690 * won't be available. Don't call it twice. */
1691 res_registered = TRUE;
1692 gui_gtk_register_resource();
1693 }
1694#endif
1695
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001696#if GTK_CHECK_VERSION(3,10,0)
1697 /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1698 * support for other backends such as Wayland. */
1699 gdk_set_allowed_backends ("x11");
1700#endif
1701
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702#ifdef FEAT_GUI_GNOME
1703 if (gtk_socket_id == 0)
1704 using_gnome = 1;
1705#endif
1706
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001707 /* This defaults to argv[0], but we want it to match the name of the
1708 * shipped gvim.desktop so that Vim's windows can be associated with this
1709 * file. */
1710 g_set_prgname("gvim");
1711
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1713 if (!gtk_init_check(&gui_argc, &gui_argv))
1714 {
1715 gui.dying = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001716 emsg(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 return FAIL;
1718 }
1719
1720 return OK;
1721}
1722
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723/****************************************************************************
1724 * Mouse handling callbacks
1725 */
1726
1727
1728static guint mouse_click_timer = 0;
1729static int mouse_timed_out = TRUE;
1730
1731/*
1732 * Timer used to recognize multiple clicks of the mouse button
1733 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001734 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735mouse_click_timer_cb(gpointer data)
1736{
1737 /* we don't use this information currently */
1738 int *timed_out = (int *) data;
1739
1740 *timed_out = TRUE;
1741 return FALSE; /* don't happen again */
1742}
1743
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001744static guint motion_repeat_timer = 0;
1745static int motion_repeat_offset = FALSE;
1746static timeout_cb_type motion_repeat_timer_cb(gpointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747
1748 static void
1749process_motion_notify(int x, int y, GdkModifierType state)
1750{
1751 int button;
1752 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001753 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754
1755 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1756 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1757 GDK_BUTTON5_MASK))
1758 ? MOUSE_DRAG : ' ';
1759
1760 /* If our pointer is currently hidden, then we should show it. */
1761 gui_mch_mousehide(FALSE);
1762
1763 /* Just moving the rodent above the drawing area without any button
1764 * being pressed. */
1765 if (button != MOUSE_DRAG)
1766 {
1767 gui_mouse_moved(x, y);
1768 return;
1769 }
1770
1771 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001772 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773
Bram Moolenaar49325942007-05-10 19:19:59 +00001774 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1776
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 /*
1778 * Auto repeat timer handling.
1779 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001780 gtk_widget_get_allocation(gui.drawarea, &allocation);
1781
1782 if (x < 0 || y < 0
1783 || x >= allocation.width
1784 || y >= allocation.height)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 {
1786
1787 int dx;
1788 int dy;
1789 int offshoot;
1790 int delay = 10;
1791
1792 /* Calculate the maximal distance of the cursor from the drawing area.
1793 * (offshoot can't become negative here!).
1794 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001795 dx = x < 0 ? -x : x - allocation.width;
1796 dy = y < 0 ? -y : y - allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797
1798 offshoot = dx > dy ? dx : dy;
1799
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001800 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 * distance of 127 pixels from the main window.
1802 *
1803 * One could think endlessly about the most ergonomic variant here.
1804 * For example it could make sense to calculate the distance from the
1805 * drags start instead...
1806 *
1807 * Maybe a parabolic interpolation would suite us better here too...
1808 */
1809 if (offshoot > 127)
1810 {
1811 /* 5 appears to be somehow near to my perceptual limits :-). */
1812 delay = 5;
1813 }
1814 else
1815 {
1816 delay = (130 * (127 - offshoot)) / 127 + 5;
1817 }
1818
1819 /* shoot again */
1820 if (!motion_repeat_timer)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001821 motion_repeat_timer = timeout_add(delay, motion_repeat_timer_cb,
1822 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 }
1824}
1825
Bram Moolenaar98921892016-02-23 17:14:37 +01001826#if GTK_CHECK_VERSION(3,0,0)
1827 static GdkDevice *
1828gui_gtk_get_pointer_device(GtkWidget *widget)
1829{
1830 GdkWindow * const win = gtk_widget_get_window(widget);
1831 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001832# if GTK_CHECK_VERSION(3,20,0)
1833 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1834 return gdk_seat_get_pointer(seat);
1835# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001836 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1837 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001838# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001839}
1840
1841 static GdkWindow *
1842gui_gtk_get_pointer(GtkWidget *widget,
1843 gint *x,
1844 gint *y,
1845 GdkModifierType *state)
1846{
1847 GdkWindow * const win = gtk_widget_get_window(widget);
1848 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1849 return gdk_window_get_device_position(win, dev , x, y, state);
1850}
1851
Bram Moolenaar2369c152016-03-04 23:08:25 +01001852# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001853 static GdkWindow *
1854gui_gtk_window_at_position(GtkWidget *widget,
1855 gint *x,
1856 gint *y)
1857{
1858 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1859 return gdk_device_get_window_at_position(dev, x, y);
1860}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001861# endif
Bram Moolenaar664323e2018-09-18 22:30:07 +02001862#else /* !GTK_CHECK_VERSION(3,0,0) */
1863# define gui_gtk_get_pointer(wid, x, y, s) \
1864 gdk_window_get_pointer((wid)->window, x, y, s)
1865# define gui_gtk_window_at_position(wid, x, y) gdk_window_at_pointer(x, y)
Bram Moolenaar98921892016-02-23 17:14:37 +01001866#endif
1867
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868/*
1869 * Timer used to recognize multiple clicks of the mouse button.
1870 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001871 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001872motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873{
1874 int x;
1875 int y;
1876 GdkModifierType state;
1877
Bram Moolenaar98921892016-02-23 17:14:37 +01001878 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879
1880 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1881 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1882 GDK_BUTTON5_MASK)))
1883 {
1884 motion_repeat_timer = 0;
1885 return FALSE;
1886 }
1887
1888 /* If there already is a mouse click in the input buffer, wait another
1889 * time (otherwise we would create a backlog of clicks) */
1890 if (vim_used_in_input_buf() > 10)
1891 return TRUE;
1892
1893 motion_repeat_timer = 0;
1894
1895 /*
1896 * Fake a motion event.
1897 * Trick: Pretend the mouse moved to the next character on every other
1898 * event, otherwise drag events will be discarded, because they are still
1899 * in the same character.
1900 */
1901 if (motion_repeat_offset)
1902 x += gui.char_width;
1903
1904 motion_repeat_offset = !motion_repeat_offset;
1905 process_motion_notify(x, y, state);
1906
1907 /* Don't happen again. We will get reinstalled in the synthetic event
1908 * if needed -- thus repeating should still work. */
1909 return FALSE;
1910}
1911
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001913motion_notify_event(GtkWidget *widget,
1914 GdkEventMotion *event,
1915 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916{
1917 if (event->is_hint)
1918 {
1919 int x;
1920 int y;
1921 GdkModifierType state;
1922
Bram Moolenaar98921892016-02-23 17:14:37 +01001923 gui_gtk_get_pointer(widget, &x, &y, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 process_motion_notify(x, y, state);
1925 }
1926 else
1927 {
1928 process_motion_notify((int)event->x, (int)event->y,
1929 (GdkModifierType)event->state);
1930 }
1931
1932 return TRUE; /* handled */
1933}
1934
1935
1936/*
1937 * Mouse button handling. Note please that we are capturing multiple click's
1938 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1939 * This is due to the way the generic VIM code is recognizing multiple clicks.
1940 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001942button_press_event(GtkWidget *widget,
1943 GdkEventButton *event,
1944 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945{
1946 int button;
1947 int repeated_click = FALSE;
1948 int x, y;
1949 int_u vim_modifiers;
1950
Bram Moolenaar20892c12011-06-26 04:49:00 +02001951 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001952
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01001954 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 gtk_widget_grab_focus(widget);
1956
1957 /*
1958 * Don't let additional events about multiple clicks send by GTK to us
1959 * after the initial button press event confuse us.
1960 */
1961 if (event->type != GDK_BUTTON_PRESS)
1962 return FALSE;
1963
1964 x = event->x;
1965 y = event->y;
1966
1967 /* Handle multiple clicks */
1968 if (!mouse_timed_out && mouse_click_timer)
1969 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001970 timeout_remove(mouse_click_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 mouse_click_timer = 0;
1972 repeated_click = TRUE;
1973 }
1974
1975 mouse_timed_out = FALSE;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02001976 mouse_click_timer = timeout_add(p_mouset, mouse_click_timer_cb,
1977 &mouse_timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978
1979 switch (event->button)
1980 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01001981 /* Keep in sync with gui_x11.c.
1982 * Buttons 4-7 are handled in scroll_event() */
1983 case 1: button = MOUSE_LEFT; break;
1984 case 2: button = MOUSE_MIDDLE; break;
1985 case 3: button = MOUSE_RIGHT; break;
1986 case 8: button = MOUSE_X1; break;
1987 case 9: button = MOUSE_X2; break;
1988 default:
1989 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 }
1991
1992#ifdef FEAT_XIM
1993 /* cancel any preediting */
1994 if (im_is_preediting())
1995 xim_reset();
1996#endif
1997
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001998 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999
2000 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001
2002 return TRUE;
2003}
2004
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002006 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002009scroll_event(GtkWidget *widget,
2010 GdkEventScroll *event,
2011 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012{
2013 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002014 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015
Bram Moolenaar98921892016-02-23 17:14:37 +01002016 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 gtk_widget_grab_focus(widget);
2018
2019 switch (event->direction)
2020 {
2021 case GDK_SCROLL_UP:
2022 button = MOUSE_4;
2023 break;
2024 case GDK_SCROLL_DOWN:
2025 button = MOUSE_5;
2026 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002027 case GDK_SCROLL_LEFT:
2028 button = MOUSE_7;
2029 break;
2030 case GDK_SCROLL_RIGHT:
2031 button = MOUSE_6;
2032 break;
2033 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 return FALSE;
2035 }
2036
2037# ifdef FEAT_XIM
2038 /* cancel any preediting */
2039 if (im_is_preediting())
2040 xim_reset();
2041# endif
2042
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002043 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044
2045 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2046 FALSE, vim_modifiers);
2047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 return TRUE;
2049}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050
2051
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002053button_release_event(GtkWidget *widget UNUSED,
2054 GdkEventButton *event,
2055 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056{
2057 int x, y;
2058 int_u vim_modifiers;
2059
Bram Moolenaar20892c12011-06-26 04:49:00 +02002060 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002061
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 /* Remove any motion "machine gun" timers used for automatic further
2063 extension of allocation areas if outside of the applications window
2064 area .*/
2065 if (motion_repeat_timer)
2066 {
Bram Moolenaar4ab79682017-08-27 14:50:47 +02002067 timeout_remove(motion_repeat_timer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 motion_repeat_timer = 0;
2069 }
2070
2071 x = event->x;
2072 y = event->y;
2073
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002074 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075
2076 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077
2078 return TRUE;
2079}
2080
2081
2082#ifdef FEAT_DND
2083/****************************************************************************
2084 * Drag aNd Drop support handlers.
2085 */
2086
2087/*
2088 * Count how many items there may be and separate them with a NUL.
2089 * Apparently the items are separated with \r\n. This is not documented,
2090 * thus be careful not to go past the end. Also allow separation with
2091 * NUL characters.
2092 */
2093 static int
2094count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2095{
2096 int i;
2097 char_u *p = out;
2098 int count = 0;
2099
2100 for (i = 0; i < len; ++i)
2101 {
2102 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2103 {
2104 if (p > out && p[-1] != NUL)
2105 {
2106 ++count;
2107 *p++ = NUL;
2108 }
2109 }
2110 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2111 {
2112 *p++ = hexhex2nr(raw + i + 1);
2113 i += 2;
2114 }
2115 else
2116 *p++ = raw[i];
2117 }
2118 if (p > out && p[-1] != NUL)
2119 {
2120 *p = NUL; /* last item didn't have \r or \n */
2121 ++count;
2122 }
2123 return count;
2124}
2125
2126/*
2127 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2128 * this process, URI which protocol is not "file:" are removed. Return
2129 * length of array (less than "max").
2130 */
2131 static int
2132filter_uri_list(char_u **outlist, int max, char_u *src)
2133{
2134 int i, j;
2135
2136 for (i = j = 0; i < max; ++i)
2137 {
2138 outlist[i] = NULL;
2139 if (STRNCMP(src, "file:", 5) == 0)
2140 {
2141 src += 5;
2142 if (STRNCMP(src, "//localhost", 11) == 0)
2143 src += 11;
2144 while (src[0] == '/' && src[1] == '/')
2145 ++src;
2146 outlist[j++] = vim_strsave(src);
2147 }
2148 src += STRLEN(src) + 1;
2149 }
2150 return j;
2151}
2152
2153 static char_u **
2154parse_uri_list(int *count, char_u *data, int len)
2155{
2156 int n = 0;
2157 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002158 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159
2160 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2161 {
2162 n = count_and_decode_uri_list(tmp, data, len);
2163 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2164 n = filter_uri_list(array, n, tmp);
2165 }
2166 vim_free(tmp);
2167 *count = n;
2168 return array;
2169}
2170
2171 static void
2172drag_handle_uri_list(GdkDragContext *context,
2173 GtkSelectionData *data,
2174 guint time_,
2175 GdkModifierType state,
2176 gint x,
2177 gint y)
2178{
2179 char_u **fnames;
2180 int nfiles = 0;
2181
Bram Moolenaar98921892016-02-23 17:14:37 +01002182 fnames = parse_uri_list(&nfiles,
2183 (char_u *)gtk_selection_data_get_data(data),
2184 gtk_selection_data_get_length(data));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185
2186 if (fnames != NULL && nfiles > 0)
2187 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002188 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189
2190 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2191
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002192 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193
2194 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2195 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002196 else
2197 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198}
2199
2200 static void
2201drag_handle_text(GdkDragContext *context,
2202 GtkSelectionData *data,
2203 guint time_,
2204 GdkModifierType state)
2205{
2206 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2207 char_u *text;
2208 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210
Bram Moolenaar98921892016-02-23 17:14:37 +01002211 text = (char_u *)gtk_selection_data_get_data(data);
2212 len = gtk_selection_data_get_length(data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213
Bram Moolenaar98921892016-02-23 17:14:37 +01002214 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 if (input_conv.vc_type != CONV_NONE)
2217 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 if (tmpbuf != NULL)
2219 text = tmpbuf;
2220 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221
2222 dnd_yank_drag_data(text, (long)len);
2223 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002226 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227
2228 if (dropkey[2] != 0)
2229 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2230 else
2231 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232}
2233
2234/*
2235 * DND receiver.
2236 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 static void
2238drag_data_received_cb(GtkWidget *widget,
2239 GdkDragContext *context,
2240 gint x,
2241 gint y,
2242 GtkSelectionData *data,
2243 guint info,
2244 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002245 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246{
2247 GdkModifierType state;
2248
2249 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002250 const guchar * const data_data = gtk_selection_data_get_data(data);
2251 const gint data_length = gtk_selection_data_get_length(data);
2252 const gint data_format = gtk_selection_data_get_format(data);
2253
2254 if (data_data == NULL
2255 || data_length <= 0
2256 || data_format != 8
2257 || data_data[data_length] != '\0')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 {
2259 gtk_drag_finish(context, FALSE, FALSE, time_);
2260 return;
2261 }
2262
2263 /* Get the current modifier state for proper distinguishment between
2264 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002265 gui_gtk_get_pointer(widget, NULL, NULL, &state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266
2267 /* Not sure about the role of "text/plain" here... */
2268 if (info == (guint)TARGET_TEXT_URI_LIST)
2269 drag_handle_uri_list(context, data, time_, state, x, y);
2270 else
2271 drag_handle_text(context, data, time_, state);
2272
2273}
2274#endif /* FEAT_DND */
2275
2276
2277#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2278/*
2279 * GnomeClient interact callback. Check for unsaved buffers that cannot
2280 * be abandoned and pop up a dialog asking the user for confirmation if
2281 * necessary.
2282 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002284sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002286 GnomeDialogType type UNUSED,
2287 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288{
2289 cmdmod_T save_cmdmod;
2290 gboolean shutdown_cancelled;
2291
2292 save_cmdmod = cmdmod;
2293
2294# ifdef FEAT_BROWSE
2295 cmdmod.browse = TRUE;
2296# endif
2297# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2298 cmdmod.confirm = TRUE;
2299# endif
2300 /*
2301 * If there are changed buffers, present the user with
2302 * a dialog if possible, otherwise give an error message.
2303 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002304 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305
2306 exiting = FALSE;
2307 cmdmod = save_cmdmod;
2308 setcursor(); /* position the cursor */
2309 out_flush();
2310 /*
2311 * If the user hit the [Cancel] button the whole shutdown
2312 * will be cancelled. Wow, quite powerful feature (:
2313 */
2314 gnome_interaction_key_return(key, shutdown_cancelled);
2315}
2316
2317/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 * "save_yourself" signal handler. Initiate an interaction to ask the user
2319 * for confirmation if necessary. Save the current editing session and tell
2320 * the session manager how to restart Vim.
2321 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 static gboolean
2323sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002324 gint phase UNUSED,
2325 GnomeSaveStyle save_style UNUSED,
2326 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002328 gboolean fast UNUSED,
2329 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330{
2331 static const char suffix[] = "-session.vim";
2332 char *session_file;
2333 unsigned int len;
2334 gboolean success;
2335
2336 /* Always request an interaction if possible. check_changed_any()
2337 * won't actually show a dialog unless any buffers have been modified.
2338 * There doesn't seem to be an obvious way to check that without
2339 * automatically firing the dialog. Anyway, it works just fine. */
2340 if (interact_style == GNOME_INTERACT_ANY)
2341 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2342 &sm_client_check_changed_any,
2343 NULL);
2344 out_flush();
2345 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2346
2347 /* The path is unique for each session save. We do neither know nor care
2348 * which session script will actually be used later. This decision is in
2349 * the domain of the session manager. */
2350 session_file = gnome_config_get_real_path(
2351 gnome_client_get_config_prefix(client));
2352 len = strlen(session_file);
2353
2354 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2355 --len; /* get rid of the superfluous trailing '/' */
2356
2357 session_file = g_renew(char, session_file, len + sizeof(suffix));
2358 memcpy(session_file + len, suffix, sizeof(suffix));
2359
2360 success = write_session_file((char_u *)session_file);
2361
2362 if (success)
2363 {
2364 const char *argv[8];
2365 int i;
2366
2367 /* Tell the session manager how to wipe out the stored session data.
2368 * This isn't as dangerous as it looks, don't worry :) session_file
2369 * is a unique absolute filename. Usually it'll be something like
2370 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2371 i = 0;
2372 argv[i++] = "rm";
2373 argv[i++] = session_file;
2374 argv[i] = NULL;
2375
2376 gnome_client_set_discard_command(client, i, (char **)argv);
2377
2378 /* Tell the session manager how to restore the just saved session.
2379 * This is easily done thanks to Vim's -S option. Pass the -f flag
2380 * since there's no need to fork -- it might even cause confusion.
2381 * Also pass the window role to give the WM something to match on.
2382 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2383 i = 0;
2384 argv[i++] = restart_command;
2385 argv[i++] = "-f";
2386 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 argv[i++] = "--role";
2388 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 argv[i++] = "-S";
2390 argv[i++] = session_file;
2391 argv[i] = NULL;
2392
2393 gnome_client_set_restart_command(client, i, (char **)argv);
2394 gnome_client_set_clone_command(client, 0, NULL);
2395 }
2396
2397 g_free(session_file);
2398
2399 return success;
2400}
2401
2402/*
2403 * Called when the session manager wants us to die. There isn't much to save
2404 * here since "save_yourself" has been emitted before (unless serious trouble
2405 * is happening).
2406 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002408sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409{
2410 /* Don't write messages to the GUI anymore */
2411 full_screen = FALSE;
2412
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002413 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002414 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002415 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 preserve_exit();
2417}
2418
2419/*
2420 * Connect our signal handlers to be notified on session save and shutdown.
2421 */
2422 static void
2423setup_save_yourself(void)
2424{
2425 GnomeClient *client;
2426
2427 client = gnome_master_client();
2428
2429 if (client != NULL)
2430 {
2431 /* Must use the deprecated gtk_signal_connect() for compatibility
2432 * with GNOME 1. Arrgh, zombies! */
2433 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2434 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2435 gtk_signal_connect(GTK_OBJECT(client), "die",
2436 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2437 }
2438}
2439
2440#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2441
2442# ifdef USE_XSMP
2443/*
2444 * GTK tells us that XSMP needs attention
2445 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002447local_xsmp_handle_requests(
2448 GIOChannel *source UNUSED,
2449 GIOCondition condition,
2450 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451{
2452 if (condition == G_IO_IN)
2453 {
2454 /* Do stuff; maybe close connection */
2455 if (xsmp_handle_requests() == FAIL)
2456 g_io_channel_unref((GIOChannel *)data);
2457 return TRUE;
2458 }
2459 /* Error */
2460 g_io_channel_unref((GIOChannel *)data);
2461 xsmp_close();
2462 return TRUE;
2463}
2464# endif /* USE_XSMP */
2465
2466/*
2467 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2468 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2469 */
2470 static void
2471setup_save_yourself(void)
2472{
2473 Atom *existing_atoms = NULL;
2474 int count = 0;
2475
Bram Moolenaar98921892016-02-23 17:14:37 +01002476# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 if (xsmp_icefd != -1)
2478 {
2479 /*
2480 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2481 * set up GTK IO monitor
2482 */
2483 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2484
2485 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2486 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002487 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 }
2489 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002490# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 {
2492 /* Fall back to old method */
2493
2494 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002495 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2496
2497 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2498 GDK_WINDOW_XID(mainwin_win),
2499 &existing_atoms, &count))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 {
2501 Atom *new_atoms;
2502 Atom save_yourself_xatom;
2503 int i;
2504
2505 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2506
2507 /* check if WM_SAVE_YOURSELF isn't there yet */
2508 for (i = 0; i < count; ++i)
2509 if (existing_atoms[i] == save_yourself_xatom)
2510 break;
2511
2512 if (i == count)
2513 {
2514 /* allocate an Atoms array which is one item longer */
Bram Moolenaar964b3742019-05-24 18:54:09 +02002515 new_atoms = (Atom *)alloc((count + 1) * sizeof(Atom));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516 if (new_atoms != NULL)
2517 {
2518 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2519 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002520 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2521 GDK_WINDOW_XID(mainwin_win),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 new_atoms, count + 1);
2523 vim_free(new_atoms);
2524 }
2525 }
2526 XFree(existing_atoms);
2527 }
2528 }
2529}
2530
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531/*
2532 * Installing a global event filter seems to be the only way to catch
2533 * client messages of type WM_PROTOCOLS without overriding GDK's own
2534 * client message event filter. Well, that's still better than trying
2535 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 *
2537 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2538 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2539 * I have the nasty feeling modern session managers just don't send this
2540 * deprecated message anymore. Addition: confirmed by several people.
2541 *
2542 * The GNOME session support is much cooler anyway. Unlike this ugly
2543 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2544 * it should work with KDE as well.
2545 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002547global_event_filter(GdkXEvent *xev,
2548 GdkEvent *event UNUSED,
2549 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550{
2551 XEvent *xevent = (XEvent *)xev;
2552
2553 if (xevent != NULL
2554 && xevent->type == ClientMessage
2555 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002556 && (long_u)xevent->xclient.data.l[0]
2557 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 {
2559 out_flush();
2560 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2561 /*
2562 * Set the window's WM_COMMAND property, to let the window manager
2563 * know we are done saving ourselves. We don't want to be
2564 * restarted, thus set argv to NULL.
2565 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002566 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2567 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 NULL, 0);
2569 return GDK_FILTER_REMOVE;
2570 }
2571
2572 return GDK_FILTER_CONTINUE;
2573}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2575
2576
2577/*
2578 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2579 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002581mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582{
2583/* If you get an error message here, you still need to unpack the runtime
2584 * archive! */
2585#ifdef magick
2586# undef magick
2587#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 /* A bit hackish, but avoids casting later and allows optimization */
2589# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590#define magick vim32x32
2591#include "../runtime/vim32x32.xpm"
2592#undef magick
2593#define magick vim16x16
2594#include "../runtime/vim16x16.xpm"
2595#undef magick
2596#define magick vim48x48
2597#include "../runtime/vim48x48.xpm"
2598#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600
Bram Moolenaar98921892016-02-23 17:14:37 +01002601 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002602
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 /* When started with "--echo-wid" argument, write window ID on stdout. */
2604 if (echo_wid_arg)
2605 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002606 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 fflush(stdout);
2608 }
2609
2610 if (vim_strchr(p_go, GO_ICON) != NULL)
2611 {
2612 /*
2613 * Add an icon to the main window. For fun and convenience of the user.
2614 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 GList *icons = NULL;
2616
2617 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2618 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2619 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2620
2621 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2622
2623 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2624 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625 }
2626
2627#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2628 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630#endif
2631 /* Setup to indicate to the window manager that we want to catch the
2632 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2633 * manager instead. */
2634#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2635 if (using_gnome)
2636#endif
2637 setup_save_yourself();
2638
2639#ifdef FEAT_CLIENTSERVER
2640 if (serverName == NULL && serverDelayedStartName != NULL)
2641 {
2642 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002643 commWindow = GDK_WINDOW_XID(mainwin_win);
2644
2645 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2646 serverDelayedStartName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 }
2648 else
2649 {
2650 /*
2651 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2652 * have to change the "server" registration to that of the main window
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002653 * If we have not registered a name yet, remember the window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002655 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2656 GDK_WINDOW_XID(mainwin_win));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657 }
2658 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002659 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2660 G_CALLBACK(property_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661#endif
2662}
2663
2664 static GdkCursor *
2665create_blank_pointer(void)
2666{
2667 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002668#if GTK_CHECK_VERSION(3,0,0)
2669 GdkPixbuf *blank_mask;
2670#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002672#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002674#if GTK_CHECK_VERSION(3,0,0)
2675 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2676#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 GdkColor color = { 0, 0, 0, 0 };
2678 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002679#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002681#if GTK_CHECK_VERSION(3,12,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002682 {
2683 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2684 GdkScreen * const scrn = gdk_window_get_screen(win);
2685 root_window = gdk_screen_get_root_window(scrn);
2686 }
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002687#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 root_window = gtk_widget_get_root_window(gui.mainwin);
2689#endif
2690
2691 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2692 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002693#if GTK_CHECK_VERSION(3,0,0)
2694 {
2695 cairo_surface_t *surf;
2696 cairo_t *cr;
2697
2698 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2699 cr = cairo_create(surf);
2700
Bram Moolenaar36edf062016-07-21 22:10:12 +02002701 cairo_set_source_rgba(cr,
2702 color.red,
2703 color.green,
2704 color.blue,
2705 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002706 cairo_rectangle(cr, 0, 0, 1, 1);
2707 cairo_fill(cr);
2708 cairo_destroy(cr);
2709
2710 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2711 cairo_surface_destroy(surf);
2712
2713 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2714 blank_mask, 0, 0);
2715 g_object_unref(blank_mask);
2716 }
2717#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2719 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2720 &color, &color, 0, 0);
2721 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002722#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723
2724 return cursor;
2725}
2726
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 static void
2728mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002729 GdkScreen *previous_screen UNUSED,
2730 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731{
2732 if (!gtk_widget_has_screen(widget))
2733 return;
2734
2735 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002736 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 */
2738 if (gui.blank_pointer != NULL)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002739#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01002740 g_object_unref(G_OBJECT(gui.blank_pointer));
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002741#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02002743#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744
2745 gui.blank_pointer = create_blank_pointer();
2746
Bram Moolenaar98921892016-02-23 17:14:37 +01002747 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2748 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2749 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750
2751 /*
2752 * Create a new PangoContext for this screen, and initialize it
2753 * with the current font if necessary.
2754 */
2755 if (gui.text_context != NULL)
2756 g_object_unref(gui.text_context);
2757
2758 gui.text_context = gtk_widget_create_pango_context(widget);
2759 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2760
2761 if (gui.norm_font != NULL)
2762 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002763 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar8ac44152017-11-09 18:33:29 +01002764 gui_set_shellsize(TRUE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 }
2766}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767
2768/*
2769 * After the drawing area comes up, we calculate all colors and create the
2770 * dummy blank cursor.
2771 *
2772 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2773 * fact that the main VIM engine doesn't take them into account anywhere.
2774 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002776drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777{
2778 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002779 GtkAllocation allocation;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780
2781#ifdef FEAT_XIM
2782 xim_init();
2783#endif
2784 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002785#if GTK_CHECK_VERSION(3,0,0)
2786 gui.surface = gdk_window_create_similar_surface(
2787 gtk_widget_get_window(widget),
2788 CAIRO_CONTENT_COLOR_ALPHA,
2789 gtk_widget_get_allocated_width(widget),
2790 gtk_widget_get_allocated_height(widget));
2791#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01002793#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794
2795 gui.blank_pointer = create_blank_pointer();
2796 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01002797 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798
2799 /* get the actual size of the scrollbars, if they are realized */
2800 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
2801 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
2802 && firstwin->w_scrollbars[SBAR_RIGHT].id))
2803 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002804 gtk_widget_get_allocation(sbar, &allocation);
2805 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
2806 gui.scrollbar_width = allocation.width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807
2808 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01002809 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
2810 gui.scrollbar_height = allocation.height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811}
2812
2813/*
2814 * Properly clean up on shutdown.
2815 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002817drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818{
2819 /* Don't write messages to the GUI anymore */
2820 full_screen = FALSE;
2821
2822#ifdef FEAT_XIM
2823 im_shutdown();
2824#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 if (gui.ascii_glyphs != NULL)
2826 {
2827 pango_glyph_string_free(gui.ascii_glyphs);
2828 gui.ascii_glyphs = NULL;
2829 }
2830 if (gui.ascii_font != NULL)
2831 {
2832 g_object_unref(gui.ascii_font);
2833 gui.ascii_font = NULL;
2834 }
2835 g_object_unref(gui.text_context);
2836 gui.text_context = NULL;
2837
Bram Moolenaar98921892016-02-23 17:14:37 +01002838#if GTK_CHECK_VERSION(3,0,0)
2839 if (gui.surface != NULL)
2840 {
2841 cairo_surface_destroy(gui.surface);
2842 gui.surface = NULL;
2843 }
2844#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 g_object_unref(gui.text_gc);
2846 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848
Bram Moolenaar98921892016-02-23 17:14:37 +01002849#if GTK_CHECK_VERSION(3,0,0)
2850 g_object_unref(G_OBJECT(gui.blank_pointer));
2851#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002853#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855}
2856
Bram Moolenaara859f042016-11-17 19:11:55 +01002857#if GTK_CHECK_VERSION(3,22,2)
2858 static void
2859drawarea_style_updated_cb(GtkWidget *widget UNUSED,
2860 gpointer data UNUSED)
2861#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002863drawarea_style_set_cb(GtkWidget *widget UNUSED,
2864 GtkStyle *previous_style UNUSED,
2865 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01002866#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867{
2868 gui_mch_new_colors();
2869}
2870
Bram Moolenaar98921892016-02-23 17:14:37 +01002871#if GTK_CHECK_VERSION(3,0,0)
2872 static gboolean
2873drawarea_configure_event_cb(GtkWidget *widget,
2874 GdkEventConfigure *event,
2875 gpointer data UNUSED)
2876{
2877 static int cur_width = 0;
2878 static int cur_height = 0;
2879
2880 g_return_val_if_fail(event
2881 && event->width >= 1 && event->height >= 1, TRUE);
2882
Bram Moolenaar182707a2016-11-21 20:55:58 +01002883# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01002884 /* As of 3.22.2, GdkWindows have started distributing configure events to
2885 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
2886 *
2887 * As can be seen from the implementation of move_native_children() and
2888 * configure_native_child() in gdkwindow.c, those functions actually
2889 * propagate configure events to every child, failing to distinguish
2890 * "native" one from non-native one.
2891 *
2892 * Naturally, configure events propagated to here like that are fallacious
2893 * and, as a matter of fact, they trigger a geometric collapse of
2894 * gui.drawarea in fullscreen and miximized modes.
2895 *
2896 * To filter out such nuisance events, we are making use of the fact that
2897 * the field send_event of such GdkEventConfigures is set to FALSE in
2898 * configure_native_child().
2899 *
2900 * Obviously, this is a terrible hack making GVim depend on GTK's
2901 * implementation details. Therefore, watch out any relevant internal
2902 * changes happening in GTK in the feature (sigh).
2903 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01002904 /* Follow-up
2905 * After a few weeks later, the GdkWindow change mentioned above was
2906 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
2907 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01002908 if (event->send_event == FALSE)
2909 return TRUE;
2910# endif
2911
Bram Moolenaar98921892016-02-23 17:14:37 +01002912 if (event->width == cur_width && event->height == cur_height)
2913 return TRUE;
2914
2915 cur_width = event->width;
2916 cur_height = event->height;
2917
2918 if (gui.surface != NULL)
2919 cairo_surface_destroy(gui.surface);
2920
2921 gui.surface = gdk_window_create_similar_surface(
2922 gtk_widget_get_window(widget),
2923 CAIRO_CONTENT_COLOR_ALPHA,
2924 event->width, event->height);
2925
2926 gtk_widget_queue_draw(widget);
2927
2928 return TRUE;
2929}
2930#endif
2931
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932/*
2933 * Callback routine for the "delete_event" signal on the toplevel window.
2934 * Tries to vim gracefully, or refuses to exit with changed buffers.
2935 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002937delete_event_cb(GtkWidget *widget UNUSED,
2938 GdkEventAny *event UNUSED,
2939 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940{
2941 gui_shell_closed();
2942 return TRUE;
2943}
2944
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002945#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
2946 static int
2947get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
2948{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002949# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002950 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
2951
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002952 if (using_gnome && widget != NULL)
2953 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002954 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002955 BonoboDockItem *dockitem;
2956
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00002957 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002958 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
2959 {
2960 /* Only menu & toolbar are dock items. Could tabline be?
2961 * Seem to be only the 2 defined in GNOME */
2962 widget = parent;
2963 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002964
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002965 if (dockitem == NULL || dockitem->is_floating)
2966 return 0;
2967 item_orientation = bonobo_dock_item_get_orientation(dockitem);
2968 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002969 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002970# else
2971# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01002972# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002973
Bram Moolenaar98921892016-02-23 17:14:37 +01002974 if (widget != NULL
2975 && item_orientation == orientation
2976 && gtk_widget_get_realized(widget)
2977 && gtk_widget_get_visible(widget))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002978 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02002979# if GTK_CHECK_VERSION(3,0,0) || !defined(FEAT_GUI_GNOME)
Bram Moolenaar98921892016-02-23 17:14:37 +01002980 GtkAllocation allocation;
2981
2982 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01002983 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01002984# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002985 if (orientation == GTK_ORIENTATION_HORIZONTAL)
2986 return widget->allocation.height;
2987 else
2988 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01002989# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002990 }
2991 return 0;
2992}
2993#endif
2994
2995 static int
2996get_menu_tool_width(void)
2997{
2998 int width = 0;
2999
3000#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3001# ifdef FEAT_MENU
3002 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3003# endif
3004# ifdef FEAT_TOOLBAR
3005 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3006# endif
3007# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003008 if (gui.tabline != NULL)
3009 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003010# endif
3011#endif
3012
3013 return width;
3014}
3015
3016 static int
3017get_menu_tool_height(void)
3018{
3019 int height = 0;
3020
3021#ifdef FEAT_MENU
3022 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3023#endif
3024#ifdef FEAT_TOOLBAR
3025 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3026#endif
3027#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003028 if (gui.tabline != NULL)
3029 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003030#endif
3031
3032 return height;
3033}
3034
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003035/* This controls whether we can set the real window hints at
3036 * start-up when in a GtkPlug.
3037 * 0 = normal processing (default)
3038 * 1 = init. hints set, no-one's tried to reset since last check
3039 * 2 = init. hints set, attempt made to change hints
3040 */
3041static int init_window_hints_state = 0;
3042
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003043 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003044update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003045{
3046 static int old_width = 0;
3047 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003048 static int old_min_width = 0;
3049 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003050 static int old_char_width = 0;
3051 static int old_char_height = 0;
3052
3053 int width;
3054 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003055 int min_width;
3056 int min_height;
3057
3058 /* At start-up, don't try to set the hints until the initial
3059 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003060 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003061 */
3062 if (!(force_width && force_height) && init_window_hints_state > 0)
3063 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003064 /* Don't do it! */
3065 init_window_hints_state = 2;
3066 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003067 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003068
3069 /* This also needs to be done when the main window isn't there yet,
3070 * otherwise the hints don't work. */
3071 width = gui_get_base_width();
3072 height = gui_get_base_height();
3073# ifdef FEAT_MENU
3074 height += tabline_height() * gui.char_height;
3075# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003076 width += get_menu_tool_width();
3077 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003078
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003079 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003080 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003081 * 'set columns=' or init. -geom) we briefly set the min. to the size
3082 * we wish to be instead of the legitimate minimum so that we actually
3083 * resize correctly.
3084 */
3085 if (force_width && force_height)
3086 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003087 min_width = force_width;
3088 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003089 }
3090 else
3091 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003092 min_width = width + MIN_COLUMNS * gui.char_width;
3093 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003094 }
3095
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003096 /* Avoid an expose event when the size didn't change. */
3097 if (width != old_width
3098 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003099 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003100 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003101 || gui.char_width != old_char_width
3102 || gui.char_height != old_char_height)
3103 {
3104 GdkGeometry geometry;
3105 GdkWindowHints geometry_mask;
3106
3107 geometry.width_inc = gui.char_width;
3108 geometry.height_inc = gui.char_height;
3109 geometry.base_width = width;
3110 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003111 geometry.min_width = min_width;
3112 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003113 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3114 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003115 /* Using gui.formwin as geometry widget doesn't work as expected
3116 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3117 * in Vim confuse GTK+. */
3118 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3119 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003120 old_width = width;
3121 old_height = height;
3122 old_min_width = min_width;
3123 old_min_height = min_height;
3124 old_char_width = gui.char_width;
3125 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003126 }
3127}
3128
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129#ifdef FEAT_TOOLBAR
3130
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131/*
3132 * This extra effort wouldn't be necessary if we only used stock icons in the
3133 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3134 * shouldn't be treated differently, thus we do need this.
3135 */
3136 static void
3137icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3138{
3139 if (GTK_IS_IMAGE(widget))
3140 {
3141 GtkImage *image = (GtkImage *)widget;
3142
Bram Moolenaar98921892016-02-23 17:14:37 +01003143# if GTK_CHECK_VERSION(3,10,0)
3144 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3145 {
3146 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3147 const gchar *icon_name;
3148
3149 gtk_image_get_icon_name(image, &icon_name, NULL);
3150
3151 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3152 }
3153# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 /* User-defined icons are stored in a GtkIconSet */
3155 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3156 {
3157 GtkIconSet *icon_set;
3158 GtkIconSize icon_size;
3159
3160 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3161 icon_size = (GtkIconSize)(long)user_data;
3162
3163 gtk_icon_set_ref(icon_set);
3164 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3165 gtk_icon_set_unref(icon_set);
3166 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003167# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 }
3169 else if (GTK_IS_CONTAINER(widget))
3170 {
3171 gtk_container_foreach((GtkContainer *)widget,
3172 &icon_size_changed_foreach,
3173 user_data);
3174 }
3175}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176
3177 static void
3178set_toolbar_style(GtkToolbar *toolbar)
3179{
3180 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 GtkIconSize size;
3182 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3185 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3186 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003187 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3189 style = GTK_TOOLBAR_BOTH;
3190 else if (toolbar_flags & TOOLBAR_TEXT)
3191 style = GTK_TOOLBAR_TEXT;
3192 else
3193 style = GTK_TOOLBAR_ICONS;
3194
3195 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003196# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003198# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 switch (tbis_flags)
3201 {
3202 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3203 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3204 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3205 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003206 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3207 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 default: size = GTK_ICON_SIZE_INVALID; break;
3209 }
3210 oldsize = gtk_toolbar_get_icon_size(toolbar);
3211
3212 if (size == GTK_ICON_SIZE_INVALID)
3213 {
3214 /* Let global user preferences decide the icon size. */
3215 gtk_toolbar_unset_icon_size(toolbar);
3216 size = gtk_toolbar_get_icon_size(toolbar);
3217 }
3218 if (size != oldsize)
3219 {
3220 gtk_container_foreach(GTK_CONTAINER(toolbar),
3221 &icon_size_changed_foreach,
3222 GINT_TO_POINTER((int)size));
3223 }
3224 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225}
3226
3227#endif /* FEAT_TOOLBAR */
3228
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003229#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3230static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003231static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003232# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003233static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003234# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003235static int clicked_page; /* page clicked in tab line */
3236
3237/*
3238 * Handle selecting an item in the tab line popup menu.
3239 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003240 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003241tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003242{
Bram Moolenaara5621492006-02-25 21:55:24 +00003243 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003244 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003245}
3246
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003247 static void
3248add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3249{
3250 GtkWidget *item;
3251 char_u *utf_text;
3252
3253 utf_text = CONVERT_TO_UTF8(text);
3254 item = gtk_menu_item_new_with_label((const char *)utf_text);
3255 gtk_widget_show(item);
3256 CONVERT_TO_UTF8_FREE(utf_text);
3257
3258 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003259 g_signal_connect(G_OBJECT(item), "activate",
3260 G_CALLBACK(tabline_menu_handler),
3261 GINT_TO_POINTER(resp));
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003262}
3263
Bram Moolenaara5621492006-02-25 21:55:24 +00003264/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003265 * Create a menu for the tab line.
3266 */
3267 static GtkWidget *
3268create_tabline_menu(void)
3269{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003270 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003271
3272 menu = gtk_menu_new();
Bram Moolenaar29547192018-12-11 20:39:19 +01003273 add_tabline_menu_item(menu, (char_u *)_("Close tab"), TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003274 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3275 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003276
3277 return menu;
3278}
3279
3280 static gboolean
3281on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3282{
3283 /* Was this button press event ? */
3284 if (event->type == GDK_BUTTON_PRESS)
3285 {
3286 GdkEventButton *bevent = (GdkEventButton *)event;
3287 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003288 int y = bevent->y;
3289 GtkWidget *tabwidget;
3290 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003291
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003292 /* When ignoring events return TRUE so that the selected page doesn't
3293 * change. */
3294 if (hold_gui_events
3295# ifdef FEAT_CMDWIN
3296 || cmdwin_type != 0
3297# endif
3298 )
3299 return TRUE;
3300
Bram Moolenaar98921892016-02-23 17:14:37 +01003301 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003302
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003303 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003304 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3305 "tab_num"));
Bram Moolenaara5621492006-02-25 21:55:24 +00003306
3307 /* If the event was generated for 3rd button popup the menu. */
3308 if (bevent->button == 3)
3309 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003310# if GTK_CHECK_VERSION(3,22,2)
3311 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3312# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003313 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3314 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003315# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003316 /* We handled the event. */
3317 return TRUE;
3318 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003319 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003320 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003321 if (clicked_page == 0)
3322 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003323 /* Click after all tabs moves to next tab page. When "x" is
3324 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003325 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003326 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003327 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003328 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003329
Bram Moolenaara5621492006-02-25 21:55:24 +00003330 /* We didn't handle the event. */
3331 return FALSE;
3332}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003333
3334/*
3335 * Handle selecting one of the tabs.
3336 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003337 static void
3338on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003339 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003340 gpointer *page UNUSED,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003341 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003342 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003343{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003344 if (!ignore_tabline_evt)
Bram Moolenaara3f41662010-07-11 19:01:06 +02003345 send_tabline_event(idx + 1);
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003346}
3347
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003348# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003349/*
3350 * Handle reordering the tabs (using D&D).
3351 */
3352 static void
3353on_tab_reordered(
3354 GtkNotebook *notebook UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003355 gpointer *page UNUSED,
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003356 gint idx,
3357 gpointer data UNUSED)
3358{
3359 if (!ignore_tabline_evt)
3360 {
3361 if ((tabpage_index(curtab) - 1) < idx)
3362 tabpage_move(idx + 1);
3363 else
3364 tabpage_move(idx);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003365 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003366}
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003367# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003368
3369/*
3370 * Show or hide the tabline.
3371 */
3372 void
3373gui_mch_show_tabline(int showit)
3374{
3375 if (gui.tabline == NULL)
3376 return;
3377
3378 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3379 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003380 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003381 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003382 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003383 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003384 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003385 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003386
3387 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003388}
3389
3390/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003391 * Return TRUE when tabline is displayed.
3392 */
3393 int
3394gui_mch_showing_tabline(void)
3395{
3396 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003397 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003398}
3399
3400/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003401 * Update the labels of the tabline.
3402 */
3403 void
3404gui_mch_update_tabline(void)
3405{
3406 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003407 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003408 GtkWidget *label;
3409 tabpage_T *tp;
3410 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003411 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003412 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003413 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003414
3415 if (gui.tabline == NULL)
3416 return;
3417
3418 ignore_tabline_evt = TRUE;
3419
3420 /* Add a label for each tab page. They all contain the same text area. */
3421 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3422 {
3423 if (tp == curtab)
3424 curtabidx = nr;
3425
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003426 tab_num = nr + 1;
3427
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003428 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3429 if (page == NULL)
3430 {
3431 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003432# if GTK_CHECK_VERSION(3,2,0)
3433 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3434 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3435# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003436 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003437# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003438 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003439 event_box = gtk_event_box_new();
3440 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003441 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003442# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003443 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003444# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003445 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003446 gtk_widget_show(label);
3447 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3448 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003449 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003450 nr++);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003451# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003452 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline),
3453 page,
3454 TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003455# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003456 }
3457
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003458 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003459 g_object_set_data(G_OBJECT(event_box), "tab_num",
3460 GINT_TO_POINTER(tab_num));
Bram Moolenaar98921892016-02-23 17:14:37 +01003461 label = gtk_bin_get_child(GTK_BIN(event_box));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003462 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003463 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003464 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003465 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003466
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003467 get_tabline_label(tp, TRUE);
3468 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003469# if GTK_CHECK_VERSION(3,0,0)
3470 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3471# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003472 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3473 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003474# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003475 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003476 }
3477
3478 /* Remove any old labels. */
3479 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3480 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3481
Bram Moolenaar98921892016-02-23 17:14:37 +01003482 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3483 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003484
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003485 /* Make sure everything is in place before drawing text. */
3486 gui_mch_update();
3487
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003488 ignore_tabline_evt = FALSE;
3489}
3490
3491/*
3492 * Set the current tab to "nr". First tab is 1.
3493 */
3494 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003495gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003496{
3497 if (gui.tabline == NULL)
3498 return;
3499
3500 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003501 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3502 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003503 ignore_tabline_evt = FALSE;
3504}
3505
3506#endif /* FEAT_GUI_TABLINE */
3507
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003509 * Add selection targets for PRIMARY and CLIPBOARD selections.
3510 */
3511 void
3512gui_gtk_set_selection_targets(void)
3513{
3514 int i, j = 0;
3515 int n_targets = N_SELECTION_TARGETS;
3516 GtkTargetEntry targets[N_SELECTION_TARGETS];
3517
3518 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3519 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003520 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003521 * return something, instead of trying another target. Therefore only
3522 * offer TARGET_HTML when it works. */
3523 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3524 n_targets--;
3525 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003526 targets[j++] = selection_targets[i];
3527 }
3528
3529 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3530 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3531 gtk_selection_add_targets(gui.drawarea,
3532 (GdkAtom)GDK_SELECTION_PRIMARY,
3533 targets, n_targets);
3534 gtk_selection_add_targets(gui.drawarea,
3535 (GdkAtom)clip_plus.gtk_sel_atom,
3536 targets, n_targets);
3537}
3538
3539/*
3540 * Set up for receiving DND items.
3541 */
3542 void
3543gui_gtk_set_dnd_targets(void)
3544{
3545 int i, j = 0;
3546 int n_targets = N_DND_TARGETS;
3547 GtkTargetEntry targets[N_DND_TARGETS];
3548
3549 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3550 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003551 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003552 n_targets--;
3553 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003554 targets[j++] = dnd_targets[i];
3555 }
3556
3557 gtk_drag_dest_unset(gui.drawarea);
3558 gtk_drag_dest_set(gui.drawarea,
3559 GTK_DEST_DEFAULT_ALL,
3560 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003561 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003562}
3563
3564/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3566 * Returns OK for success, FAIL when the GUI can't be started.
3567 */
3568 int
3569gui_mch_init(void)
3570{
3571 GtkWidget *vbox;
3572
3573#ifdef FEAT_GUI_GNOME
3574 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3575 * exits on failure, but that's a non-issue because we already called
3576 * gtk_init_check() in gui_mch_init_check(). */
3577 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003578 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3580 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003581# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003582 {
3583 char *p = setlocale(LC_NUMERIC, NULL);
3584
3585 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3586 * init may change it. */
3587 if (p == NULL || strcmp(p, "C") != 0)
3588 setlocale(LC_NUMERIC, "C");
3589 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003590# endif
3591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592#endif
Bram Moolenaard23a8232018-02-10 18:45:26 +01003593 VIM_CLEAR(gui_argv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003595#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 /* Set the human-readable application name */
3597 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003598#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 /*
3600 * Force UTF-8 output no matter what the value of 'encoding' is.
3601 * did_set_string_option() in option.c prohibits changing 'termencoding'
3602 * to something else than UTF-8 if the GUI is in use.
3603 */
3604 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3605
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003606#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003608#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3610 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003611#if !GTK_CHECK_VERSION(3,0,0)
3612# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003614# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615#endif
3616
3617 /* Initialize values */
3618 gui.border_width = 2;
3619 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3620 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003621#if GTK_CHECK_VERSION(3,0,0)
3622 gui.fgcolor = g_new(GdkRGBA, 1);
3623 gui.bgcolor = g_new(GdkRGBA, 1);
3624 gui.spcolor = g_new(GdkRGBA, 1);
3625#else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003626 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003628 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003630 /* LINTED: avoid warning: conversion to 'unsigned long' */
3631 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003632#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633
3634 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003635 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637
3638 /* Set default foreground and background colors. */
3639 gui.norm_pixel = gui.def_norm_pixel;
3640 gui.back_pixel = gui.def_back_pixel;
3641
3642 if (gtk_socket_id != 0)
3643 {
3644 GtkWidget *plug;
3645
3646 /* Use GtkSocket from another app. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3648 gtk_socket_id);
Bram Moolenaar98921892016-02-23 17:14:37 +01003649 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 {
3651 gui.mainwin = plug;
3652 }
3653 else
3654 {
3655 g_warning("Connection to GTK+ socket (ID %u) failed",
3656 (unsigned int)gtk_socket_id);
3657 /* Pretend we never wanted it if it failed (get own window) */
3658 gtk_socket_id = 0;
3659 }
3660 }
3661
3662 if (gtk_socket_id == 0)
3663 {
3664#ifdef FEAT_GUI_GNOME
3665 if (using_gnome)
3666 {
3667 gui.mainwin = gnome_app_new("Vim", NULL);
3668# ifdef USE_XSMP
3669 /* Use the GNOME save-yourself functionality now. */
3670 xsmp_close();
3671# endif
3672 }
3673 else
3674#endif
3675 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3676 }
3677
3678 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3679
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 /* Create the PangoContext used for drawing all text. */
3681 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3682 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683
Bram Moolenaar98921892016-02-23 17:14:37 +01003684 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3686
Bram Moolenaar98921892016-02-23 17:14:37 +01003687 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3688 G_CALLBACK(&delete_event_cb), NULL);
3689
3690 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3691 G_CALLBACK(&mainwin_realize), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003692
3693 g_signal_connect(G_OBJECT(gui.mainwin), "screen-changed",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02003695
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 gui.accel_group = gtk_accel_group_new();
3697 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003699 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003700#if GTK_CHECK_VERSION(3,2,0)
3701 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3702 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3703#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003705#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706
3707#ifdef FEAT_GUI_GNOME
3708 if (using_gnome)
3709 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003710# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 /* automagically restore menubar/toolbar placement */
3712 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3713# endif
3714 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3715 }
3716 else
3717#endif
3718 {
3719 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3720 gtk_widget_show(vbox);
3721 }
3722
3723#ifdef FEAT_MENU
3724 /*
3725 * Create the menubar and handle
3726 */
3727 gui.menubar = gtk_menu_bar_new();
3728 gtk_widget_set_name(gui.menubar, "vim-menubar");
3729
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003730 /* Avoid that GTK takes <F10> away from us. */
3731 {
3732 GtkSettings *gtk_settings;
3733
3734 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3735 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3736 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003737
3738
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739# ifdef FEAT_GUI_GNOME
3740 if (using_gnome)
3741 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 BonoboDockItem *dockitem;
3743
3744 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3745 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3746 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00003747 /* We don't want the menu to float. */
3748 bonobo_dock_item_set_behavior(dockitem,
3749 bonobo_dock_item_get_behavior(dockitem)
3750 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 }
3753 else
3754# endif /* FEAT_GUI_GNOME */
3755 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00003756 /* Always show the menubar, otherwise <F10> doesn't work. It may be
3757 * disabled in gui_init() later. */
3758 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3760 }
3761#endif /* FEAT_MENU */
3762
3763#ifdef FEAT_TOOLBAR
3764 /*
3765 * Create the toolbar and handle
3766 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01003768# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01003769 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003770 /* N.B. Since the default value of GtkToolbar::button-relief is
3771 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
3772# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 gtk_rc_parse_string(
3774 "style \"vim-toolbar-style\" {\n"
3775 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
3776 "}\n"
3777 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01003778# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 gui.toolbar = gtk_toolbar_new();
3780 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
3782
3783# ifdef FEAT_GUI_GNOME
3784 if (using_gnome)
3785 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 BonoboDockItem *dockitem;
3787
3788 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
3789 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3790 GNOME_APP_TOOLBAR_NAME);
3791 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003792 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00003793 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00003794 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00003795 bonobo_dock_item_get_behavior(dockitem)
3796 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 }
3799 else
3800# endif /* FEAT_GUI_GNOME */
3801 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
3803 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
3804 gtk_widget_show(gui.toolbar);
3805 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
3806 }
3807#endif /* FEAT_TOOLBAR */
3808
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003809#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003810 /*
3811 * Use a Notebook for the tab pages labels. The labels are hidden by
3812 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003813 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003814 gui.tabline = gtk_notebook_new();
3815 gtk_widget_show(gui.tabline);
3816 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
3817 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
3818 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00003819 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003820# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00003821 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01003822# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003823
Bram Moolenaar98921892016-02-23 17:14:37 +01003824# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003825 tabline_tooltip = gtk_tooltips_new();
3826 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01003827# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003828
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003829 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003830 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003831
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003832 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003833# if GTK_CHECK_VERSION(3,2,0)
3834 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3835 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3836# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003837 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003838# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003839 gtk_widget_show(page);
3840 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
3841 label = gtk_label_new("-Empty-");
3842 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003843 event_box = gtk_event_box_new();
3844 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01003845 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
Bram Moolenaar98921892016-02-23 17:14:37 +01003846# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003847 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003848# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003849 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003850 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003851# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003852 gtk_notebook_set_tab_reorderable(GTK_NOTEBOOK(gui.tabline), page, TRUE);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003853# endif
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003854 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00003855
Bram Moolenaar98921892016-02-23 17:14:37 +01003856 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
3857 G_CALLBACK(on_select_tab), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003858# if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaarca05aa22017-10-22 15:36:14 +02003859 g_signal_connect(G_OBJECT(gui.tabline), "page-reordered",
3860 G_CALLBACK(on_tab_reordered), NULL);
Bram Moolenaar92cbf622018-09-19 22:40:03 +02003861# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003862
3863 /* Create a popup menu for the tab line and connect it. */
3864 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01003865 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
3866 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01003867#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003868
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01003870 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003871#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01003873#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874
3875 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaara859f042016-11-17 19:11:55 +01003876#if GTK_CHECK_VERSION(3,22,2)
3877 gtk_widget_set_name(gui.drawarea, "vim-gui-drawarea");
3878#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003879#if GTK_CHECK_VERSION(3,0,0)
3880 gui.surface = NULL;
3881 gui.by_signal = FALSE;
3882#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883
3884 /* Determine which events we will filter. */
3885 gtk_widget_set_events(gui.drawarea,
3886 GDK_EXPOSURE_MASK |
3887 GDK_ENTER_NOTIFY_MASK |
3888 GDK_LEAVE_NOTIFY_MASK |
3889 GDK_BUTTON_PRESS_MASK |
3890 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 GDK_KEY_PRESS_MASK |
3893 GDK_KEY_RELEASE_MASK |
3894 GDK_POINTER_MOTION_MASK |
3895 GDK_POINTER_MOTION_HINT_MASK);
3896
3897 gtk_widget_show(gui.drawarea);
3898 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
3899 gtk_widget_show(gui.formwin);
3900 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
3901
3902 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
3903 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003904 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3905 : G_OBJECT(gui.drawarea),
3906 "key-press-event",
3907 G_CALLBACK(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003908#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 /* Also forward key release events for the benefit of GTK+ 2 input
3910 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
3911 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
3912 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01003913 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 G_CALLBACK(&key_release_event), NULL);
3915#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003916 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
3917 G_CALLBACK(drawarea_realize_cb), NULL);
3918 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
3919 G_CALLBACK(drawarea_unrealize_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003920#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar98921892016-02-23 17:14:37 +01003921 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
3922 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003923#endif
3924#if GTK_CHECK_VERSION(3,22,2)
Bram Moolenaara859f042016-11-17 19:11:55 +01003925 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
3926 G_CALLBACK(&drawarea_style_updated_cb), NULL);
Bram Moolenaar664323e2018-09-18 22:30:07 +02003927#else
Bram Moolenaar98921892016-02-23 17:14:37 +01003928 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
3929 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003930#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931
Bram Moolenaar98921892016-02-23 17:14:37 +01003932#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01003934#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935
3936#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
3937 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
3938 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
3939#endif
3940
3941 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003942 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01003943 gtk_widget_set_can_focus(gui.drawarea, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944
3945 /*
3946 * Set clipboard specific atoms
3947 */
3948 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
3951 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
3952
3953 /*
3954 * Start out by adding the configured border width into the border offset.
3955 */
3956 gui.border_offset = gui.border_width;
3957
Bram Moolenaar98921892016-02-23 17:14:37 +01003958#if GTK_CHECK_VERSION(3,0,0)
3959 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
3960 G_CALLBACK(draw_event), NULL);
3961#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
3963 GTK_SIGNAL_FUNC(visibility_event), NULL);
3964 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
3965 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003966#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967
3968 /*
3969 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
3970 * Only needed for some window managers.
3971 */
3972 if (vim_strchr(p_go, GO_POINTER) != NULL)
3973 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003974 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
3975 G_CALLBACK(leave_notify_event), NULL);
3976 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
3977 G_CALLBACK(enter_notify_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 }
3979
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003980 /* Real windows can get focus ... GtkPlug, being a mere container can't,
3981 * only its widgets. Arguably, this could be common code and we not use
3982 * the window focus at all, but let's be safe.
3983 */
3984 if (gtk_socket_id == 0)
3985 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003986 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
3987 G_CALLBACK(focus_out_event), NULL);
3988 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
3989 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003990 }
3991 else
3992 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003993 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
3994 G_CALLBACK(focus_out_event), NULL);
3995 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
3996 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003997#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01003998 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
3999 G_CALLBACK(focus_out_event), NULL);
4000 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4001 G_CALLBACK(focus_in_event), NULL);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004002#endif /* FEAT_GUI_TABLINE */
4003 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004
Bram Moolenaar98921892016-02-23 17:14:37 +01004005 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4006 G_CALLBACK(motion_notify_event), NULL);
4007 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4008 G_CALLBACK(button_press_event), NULL);
4009 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4010 G_CALLBACK(button_release_event), NULL);
4011 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4012 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013
4014 /*
4015 * Add selection handler functions.
4016 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004017 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4018 G_CALLBACK(selection_clear_event), NULL);
4019 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4020 G_CALLBACK(selection_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021
Bram Moolenaara76638f2010-06-05 12:49:46 +02004022 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023
Bram Moolenaar98921892016-02-23 17:14:37 +01004024 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4025 G_CALLBACK(selection_get_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026
4027 /* Pretend we don't have input focus, we will get an event if we do. */
4028 gui.in_focus = FALSE;
4029
Bram Moolenaar7ebf4e12018-08-07 20:01:40 +02004030 // Handle changes to the "Xft/DPI" setting.
4031 {
4032 GtkSettings *gtk_settings =
4033 gtk_settings_get_for_screen(gdk_screen_get_default());
4034
4035 g_signal_connect(gtk_settings, "notify::gtk-xft-dpi",
4036 G_CALLBACK(gtk_settings_xft_dpi_changed_cb), NULL);
4037 }
4038
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 return OK;
4040}
4041
4042#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4043/*
4044 * This is called from gui_start() after a fork() has been done.
4045 * We have to tell the session manager our new PID.
4046 */
4047 void
4048gui_mch_forked(void)
4049{
4050 if (using_gnome)
4051 {
4052 GnomeClient *client;
4053
4054 client = gnome_master_client();
4055
4056 if (client != NULL)
4057 gnome_client_set_process_id(client, getpid());
4058 }
4059}
4060#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4061
Bram Moolenaar98921892016-02-23 17:14:37 +01004062#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004063 static GdkRGBA
4064color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004065{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004066 GdkRGBA rgba;
4067 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4068 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4069 rgba.blue = ((color & 0xff)) / 255.0;
4070 rgba.alpha = 1.0;
4071 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004072}
4073
4074 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004075set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004076{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004077 const GdkRGBA rgba = color_to_rgba(color);
4078 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004079}
4080#endif /* GTK_CHECK_VERSION(3,0,0) */
4081
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082/*
4083 * Called when the foreground or background color has been changed.
4084 * This used to change the graphics contexts directly but we are
4085 * currently manipulating them where desired.
4086 */
4087 void
4088gui_mch_new_colors(void)
4089{
Bram Moolenaar98921892016-02-23 17:14:37 +01004090 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 {
Bram Moolenaar664323e2018-09-18 22:30:07 +02004092#if !GTK_CHECK_VERSION(3,22,2)
4093 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
4094#endif
4095
Bram Moolenaara859f042016-11-17 19:11:55 +01004096#if GTK_CHECK_VERSION(3,22,2)
4097 GtkStyleContext * const context
4098 = gtk_widget_get_style_context(gui.drawarea);
4099 GtkCssProvider * const provider = gtk_css_provider_new();
4100 gchar * const css = g_strdup_printf(
4101 "widget#vim-gui-drawarea {\n"
4102 " background-color: #%.2lx%.2lx%.2lx;\n"
4103 "}\n",
4104 (gui.back_pixel >> 16) & 0xff,
4105 (gui.back_pixel >> 8) & 0xff,
4106 gui.back_pixel & 0xff);
4107
4108 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4109 gtk_style_context_add_provider(context,
4110 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4111
4112 g_free(css);
4113 g_object_unref(provider);
4114#elif GTK_CHECK_VERSION(3,4,0) /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar36edf062016-07-21 22:10:12 +02004115 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004116
Bram Moolenaar36edf062016-07-21 22:10:12 +02004117 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004118 {
4119 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004120 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004121 if (pat != NULL)
4122 {
4123 gdk_window_set_background_pattern(da_win, pat);
4124 cairo_pattern_destroy(pat);
4125 }
4126 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004127 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004128 }
4129#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 GdkColor color = { 0, 0, 0, 0 };
4131
4132 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004133 gdk_window_set_background(da_win, &color);
Bram Moolenaara859f042016-11-17 19:11:55 +01004134#endif /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 }
4136}
4137
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138/*
4139 * This signal informs us about the need to rearrange our sub-widgets.
4140 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004142form_configure_event(GtkWidget *widget UNUSED,
4143 GdkEventConfigure *event,
4144 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004146 int usable_height = event->height;
4147
Bram Moolenaar182707a2016-11-21 20:55:58 +01004148#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01004149 /* As of 3.22.2, GdkWindows have started distributing configure events to
4150 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4151 *
4152 * As can be seen from the implementation of move_native_children() and
4153 * configure_native_child() in gdkwindow.c, those functions actually
4154 * propagate configure events to every child, failing to distinguish
4155 * "native" one from non-native one.
4156 *
4157 * Naturally, configure events propagated to here like that are fallacious
4158 * and, as a matter of fact, they trigger a geometric collapse of
4159 * gui.formwin.
4160 *
4161 * To filter out such fallacious events, check if the given event is the
4162 * one that was sent out to the right place. Ignore it if not.
4163 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01004164 /* Follow-up
4165 * After a few weeks later, the GdkWindow change mentioned above was
4166 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4167 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01004168 if (event->window != gtk_widget_get_window(gui.formwin))
4169 return TRUE;
4170#endif
4171
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004172 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4173 * no. of char-heights), so we have to manually sanitise them.
4174 * Widths seem to sort themselves out, don't ask me why.
4175 */
4176 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004177 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004178
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004180 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 gtk_form_thaw(GTK_FORM(gui.formwin));
4182
4183 return TRUE;
4184}
4185
4186/*
4187 * Function called when window already closed.
4188 * We can't do much more here than to trying to preserve what had been done,
4189 * since the window is already inevitably going away.
4190 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004191 static void
4192mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193{
4194 /* Don't write messages to the GUI anymore */
4195 full_screen = FALSE;
4196
4197 gui.mainwin = NULL;
4198 gui.drawarea = NULL;
4199
4200 if (!exiting) /* only do anything if the destroy was unexpected */
4201 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004202 vim_strncpy(IObuff,
4203 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4204 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 preserve_exit();
4206 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004207#ifdef USE_GRESOURCE
4208 gui_gtk_unregister_resource();
4209#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210}
4211
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004212
4213/*
4214 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4215 * hints (and thus the required size from -geom), but that after that we
4216 * put the hints back to normal (the actual minimum size) so we may
4217 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004218 * plug's window 'min hints to set *its* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004219 * only way we have of making ourselves bigger (by set lines/columns).
4220 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004221 * second after the final attempt to reset the real minimum hints (done by
4222 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004223 * We'll not let the default hints be set while this timer's active.
4224 */
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004225 static timeout_cb_type
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004226check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004227{
4228 if (init_window_hints_state == 1)
4229 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004230 /* Safe to use normal hints now */
4231 init_window_hints_state = 0;
4232 update_window_manager_hints(0, 0);
4233 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004234 }
4235
4236 /* Keep on trying */
4237 init_window_hints_state = 1;
4238 return TRUE;
4239}
4240
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241/*
4242 * Open the GUI window which was created by a call to gui_mch_init().
4243 */
4244 int
4245gui_mch_open(void)
4246{
4247 guicolor_T fg_pixel = INVALCOLOR;
4248 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004249 guint pixel_width;
4250 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 /*
4253 * Allow setting a window role on the command line, or invent one
4254 * if none was specified. This is mainly useful for GNOME session
4255 * support; allowing the WM to restore window placement.
4256 */
4257 if (role_argument != NULL)
4258 {
4259 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4260 }
4261 else
4262 {
4263 char *role;
4264
4265 /* Invent a unique-enough ID string for the role */
4266 role = g_strdup_printf("vim-%u-%u-%u",
4267 (unsigned)mch_get_pid(),
4268 (unsigned)g_random_int(),
4269 (unsigned)time(NULL));
4270
4271 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4272 g_free(role);
4273 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274
4275 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277
4278 /* Determine user specified geometry, if present. */
4279 if (gui.geom != NULL)
4280 {
4281 int mask;
4282 unsigned int w, h;
4283 int x = 0;
4284 int y = 0;
4285
4286 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4287
4288 if (mask & WidthValue)
4289 Columns = w;
4290 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004291 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004292 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004293 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004295 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004296 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004297
4298 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4299 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4300
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004301 pixel_width += get_menu_tool_width();
4302 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004303
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004305 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004306 int ww, hh;
4307 gui_mch_get_screen_dimensions(&ww, &hh);
4308 hh += p_ghr + get_menu_tool_height();
4309 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004310 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004311 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004312 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004313 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004315 }
Bram Moolenaard23a8232018-02-10 18:45:26 +01004316 VIM_CLEAR(gui.geom);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004317
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004318 /* From now until everyone's stopped trying to set the window hints
4319 * to their correct minimum values, stop them being set as we need
4320 * them to remain at our required size for the parent GtkSocket to
4321 * give us the right initial size.
4322 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004323 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004324 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004325 update_window_manager_hints(pixel_width, pixel_height);
4326 init_window_hints_state = 1;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02004327 timeout_add(1000, check_startup_plug_hints, NULL);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004328 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 }
4330
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004331 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4332 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004333 /* For GTK2 changing the size of the form widget doesn't cause window
4334 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004335 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004336 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004337 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338
4339 if (foreground_argument != NULL)
4340 fg_pixel = gui_get_color((char_u *)foreground_argument);
4341 if (fg_pixel == INVALCOLOR)
4342 fg_pixel = gui_get_color((char_u *)"Black");
4343
4344 if (background_argument != NULL)
4345 bg_pixel = gui_get_color((char_u *)background_argument);
4346 if (bg_pixel == INVALCOLOR)
4347 bg_pixel = gui_get_color((char_u *)"White");
4348
4349 if (found_reverse_arg)
4350 {
4351 gui.def_norm_pixel = bg_pixel;
4352 gui.def_back_pixel = fg_pixel;
4353 }
4354 else
4355 {
4356 gui.def_norm_pixel = fg_pixel;
4357 gui.def_back_pixel = bg_pixel;
4358 }
4359
4360 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4361 * in a vimrc file) */
4362 set_normal_colors();
4363
4364 /* Check that none of the colors are the same as the background color */
4365 gui_check_colors();
4366
4367 /* Get the colors for the highlight groups (gui_check_colors() might have
4368 * changed them). */
4369 highlight_gui_started(); /* re-init colors and fonts */
4370
Bram Moolenaar98921892016-02-23 17:14:37 +01004371 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4372 G_CALLBACK(mainwin_destroy_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373
4374#ifdef FEAT_HANGULIN
4375 hangul_keyboard_set();
4376#endif
4377
4378 /*
4379 * Notify the fixed area about the need to resize the contents of the
4380 * gui.formwin, which we use for random positioning of the included
4381 * components.
4382 *
4383 * We connect this signal deferred finally after anything is in place,
4384 * since this is intended to handle resizements coming from the window
4385 * manager upon us and should not interfere with what VIM is requesting
4386 * upon startup.
4387 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004388 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4389 G_CALLBACK(form_configure_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390
4391#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004392 /* Set up for receiving DND items. */
4393 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394
Bram Moolenaar98921892016-02-23 17:14:37 +01004395 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4396 G_CALLBACK(drag_data_received_cb), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397#endif
4398
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004400 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 if (found_iconic_arg && gtk_socket_id == 0)
4402 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403
4404 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004405#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 unsigned long menu_handler = 0;
4407# ifdef FEAT_TOOLBAR
4408 unsigned long tool_handler = 0;
4409# endif
4410 /*
4411 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4412 * show when restoring the saved layout configuration. We can't just
4413 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4414 * a toplevel window and thus will be realized immediately. Instead,
4415 * connect signal handlers to hide the widgets just after they've been
4416 * marked visible, but before the main window is realized.
4417 */
4418 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4419 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4420 G_CALLBACK(&gtk_widget_hide),
4421 NULL);
4422# ifdef FEAT_TOOLBAR
4423 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4424 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4425 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4426 G_CALLBACK(&gtk_widget_hide),
4427 NULL);
4428# endif
4429#endif
4430 gtk_widget_show(gui.mainwin);
4431
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004432#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 if (menu_handler != 0)
4434 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4435# ifdef FEAT_TOOLBAR
4436 if (tool_handler != 0)
4437 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4438# endif
4439#endif
4440 }
4441
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 return OK;
4443}
4444
4445
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004447gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448{
4449 if (gui.mainwin != NULL)
4450 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451}
4452
4453/*
4454 * Get the position of the top left corner of the window.
4455 */
4456 int
4457gui_mch_get_winpos(int *x, int *y)
4458{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 return OK;
4461}
4462
4463/*
4464 * Set the position of the top left corner of the window to the given
4465 * coordinates.
4466 */
4467 void
4468gui_mch_set_winpos(int x, int y)
4469{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471}
4472
Bram Moolenaar98921892016-02-23 17:14:37 +01004473#if !GTK_CHECK_VERSION(3,0,0)
4474# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475static int resize_idle_installed = FALSE;
4476/*
4477 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4478 * the shell size doesn't exceed the window size, i.e. if the window manager
4479 * ignored our size request. Usually this happens if the window is maximized.
4480 *
4481 * FIXME: It'd be nice if we could find a little more orthodox solution.
4482 * See also the remark below in gui_mch_set_shellsize().
4483 *
4484 * DISABLED: When doing ":set lines+=1" this function would first invoke
4485 * gui_resize_shell() with the old size, then the normal callback would
4486 * report the new size through form_configure_event(). That caused the window
4487 * layout to be messed up.
4488 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 static gboolean
4490force_shell_resize_idle(gpointer data)
4491{
4492 if (gui.mainwin != NULL
4493 && GTK_WIDGET_REALIZED(gui.mainwin)
4494 && GTK_WIDGET_VISIBLE(gui.mainwin))
4495 {
4496 int width;
4497 int height;
4498
4499 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4500
4501 width -= get_menu_tool_width();
4502 height -= get_menu_tool_height();
4503
4504 gui_resize_shell(width, height);
4505 }
4506
4507 resize_idle_installed = FALSE;
4508 return FALSE; /* don't call me again */
4509}
Bram Moolenaar98921892016-02-23 17:14:37 +01004510# endif
4511#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512
Bram Moolenaar09736232009-09-23 16:14:49 +00004513/*
4514 * Return TRUE if the main window is maximized.
4515 */
4516 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004517gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004518{
Bram Moolenaar98921892016-02-23 17:14:37 +01004519 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4520 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4521 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar09736232009-09-23 16:14:49 +00004522}
4523
4524/*
4525 * Unmaximize the main window
4526 */
4527 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004528gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004529{
4530 if (gui.mainwin != NULL)
4531 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4532}
Bram Moolenaar09736232009-09-23 16:14:49 +00004533
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534/*
Bram Moolenaar8ac44152017-11-09 18:33:29 +01004535 * Called when the font changed while the window is maximized or GO_KEEPWINSIZE
4536 * is set. Compute the new Rows and Columns. This is like resizing the
4537 * window.
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004538 */
4539 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004540gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004541{
4542 int w, h;
4543
4544 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4545 w -= get_menu_tool_width();
4546 h -= get_menu_tool_height();
4547 gui_resize_shell(w, h);
4548}
4549
4550/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 * Set the windows size.
4552 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 void
4554gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004555 int min_width UNUSED, int min_height UNUSED,
4556 int base_width UNUSED, int base_height UNUSED,
4557 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 /* give GTK+ a chance to put all widget's into place */
4560 gui_mch_update();
4561
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004562 /* this will cause the proper resizement to happen too */
4563 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004564 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004565
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004567 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 * main window instead. */
4569 width += get_menu_tool_width();
4570 height += get_menu_tool_height();
4571
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004572 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004573 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004574 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004575 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576
Bram Moolenaar98921892016-02-23 17:14:37 +01004577# if !GTK_CHECK_VERSION(3,0,0)
4578# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 if (!resize_idle_installed)
4580 {
4581 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4582 &force_shell_resize_idle, NULL, NULL);
4583 resize_idle_installed = TRUE;
4584 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004585# endif
4586# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 /*
4588 * Wait until all events are processed to prevent a crash because the
4589 * real size of the drawing area doesn't reflect Vim's internal ideas.
4590 *
4591 * This is a bit of a hack, since Vim is a terminal application with a GUI
4592 * on top, while the GUI expects to be the boss.
4593 */
4594 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595}
4596
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004597 void
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004598gui_gtk_get_screen_geom_of_win(
4599 GtkWidget *wid,
4600 int *screen_x,
4601 int *screen_y,
4602 int *width,
4603 int *height)
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004604{
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004605 GdkRectangle geometry;
4606 GdkWindow *win = gtk_widget_get_window(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004607#if GTK_CHECK_VERSION(3,22,0)
Bram Moolenaar8696bba2017-09-09 23:00:56 +02004608 GdkDisplay *dpy = gtk_widget_get_display(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004609 GdkMonitor *monitor = gdk_display_get_monitor_at_window(dpy, win);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004610
4611 gdk_monitor_get_geometry(monitor, &geometry);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004612#else
4613 GdkScreen* screen;
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004614 int monitor;
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004615
Bram Moolenaar8696bba2017-09-09 23:00:56 +02004616 if (wid != NULL && gtk_widget_has_screen(wid))
4617 screen = gtk_widget_get_screen(wid);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004618 else
4619 screen = gdk_screen_get_default();
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004620 monitor = gdk_screen_get_monitor_at_window(screen, win);
4621 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004622#endif
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004623 *screen_x = geometry.x;
4624 *screen_y = geometry.y;
4625 *width = geometry.width;
4626 *height = geometry.height;
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004627}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628
4629/*
4630 * The screen size is used to make sure the initial window doesn't get bigger
4631 * than the screen. This subtracts some room for menubar, toolbar and window
4632 * decorations.
4633 */
4634 void
4635gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4636{
Bram Moolenaar3f6a16f2018-08-19 22:58:45 +02004637 int x, y;
4638
4639 gui_gtk_get_screen_geom_of_win(gui.mainwin, &x, &y, screen_w, screen_h);
Bram Moolenaara859f042016-11-17 19:11:55 +01004640
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02004641 /* Subtract 'guiheadroom' from the height to allow some room for the
4642 * window manager (task list and window title bar). */
Bram Moolenaar7be9b502017-09-09 18:45:26 +02004643 *screen_h -= p_ghr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644
4645 /*
4646 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4647 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02004648 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 * This should be completely changed later.
4650 */
4651 *screen_w -= get_menu_tool_width();
4652 *screen_h -= get_menu_tool_height();
4653}
4654
4655#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004657gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 if (title != NULL && output_conv.vc_type != CONV_NONE)
4660 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661
4662 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4663
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 if (output_conv.vc_type != CONV_NONE)
4665 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666}
4667#endif /* FEAT_TITLE */
4668
4669#if defined(FEAT_MENU) || defined(PROTO)
4670 void
4671gui_mch_enable_menu(int showit)
4672{
4673 GtkWidget *widget;
4674
4675# ifdef FEAT_GUI_GNOME
4676 if (using_gnome)
4677 widget = gui.menubar_h;
4678 else
4679# endif
4680 widget = gui.menubar;
4681
Bram Moolenaar18144c82006-04-12 21:52:12 +00004682 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004683 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 {
4685 if (showit)
4686 gtk_widget_show(widget);
4687 else
4688 gtk_widget_hide(widget);
4689
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004690 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 }
4692}
4693#endif /* FEAT_MENU */
4694
4695#if defined(FEAT_TOOLBAR) || defined(PROTO)
4696 void
4697gui_mch_show_toolbar(int showit)
4698{
4699 GtkWidget *widget;
4700
4701 if (gui.toolbar == NULL)
4702 return;
4703
4704# ifdef FEAT_GUI_GNOME
4705 if (using_gnome)
4706 widget = gui.toolbar_h;
4707 else
4708# endif
4709 widget = gui.toolbar;
4710
4711 if (showit)
4712 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4713
Bram Moolenaar98921892016-02-23 17:14:37 +01004714 if (!showit != !gtk_widget_get_visible(widget))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 {
4716 if (showit)
4717 gtk_widget_show(widget);
4718 else
4719 gtk_widget_hide(widget);
4720
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004721 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 }
4723}
4724#endif /* FEAT_TOOLBAR */
4725
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726/*
4727 * Check if a given font is a CJK font. This is done in a very crude manner. It
4728 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
4729 * font. Consequently, this function cannot be used as a general purpose check
4730 * for CJK-ness for which fontconfig APIs should be used. This is only used by
4731 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
4732 */
4733 static int
4734is_cjk_font(PangoFontDescription *font_desc)
4735{
4736 static const char * const cjk_langs[] =
4737 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
4738
4739 PangoFont *font;
4740 unsigned i;
4741 int is_cjk = FALSE;
4742
4743 font = pango_context_load_font(gui.text_context, font_desc);
4744
4745 if (font == NULL)
4746 return FALSE;
4747
4748 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
4749 {
4750 PangoCoverage *coverage;
4751 gunichar uc;
4752
4753 coverage = pango_font_get_coverage(
4754 font, pango_language_from_string(cjk_langs[i]));
4755
4756 if (coverage != NULL)
4757 {
4758 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
4759 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
4760 pango_coverage_unref(coverage);
4761 }
4762 }
4763
4764 g_object_unref(font);
4765
4766 return is_cjk;
4767}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768
Bram Moolenaar231334e2005-07-25 20:46:57 +00004769/*
4770 * Adjust gui.char_height (after 'linespace' was changed).
4771 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00004773gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 PangoFontMetrics *metrics;
4776 int ascent;
4777 int descent;
4778
4779 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
4780 pango_context_get_language(gui.text_context));
4781 ascent = pango_font_metrics_get_ascent(metrics);
4782 descent = pango_font_metrics_get_descent(metrics);
4783
4784 pango_font_metrics_unref(metrics);
4785
4786 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00004787 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00004788 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
4790
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 /* A not-positive value of char_height may crash Vim. Only happens
4792 * if 'linespace' is negative (which does make sense sometimes). */
4793 gui.char_ascent = MAX(gui.char_ascent, 0);
4794 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
4795
4796 return OK;
4797}
4798
Bram Moolenaar98921892016-02-23 17:14:37 +01004799#if GTK_CHECK_VERSION(3,0,0)
4800/* Callback function used in gui_mch_font_dialog() */
4801 static gboolean
4802font_filter(const PangoFontFamily *family,
4803 const PangoFontFace *face UNUSED,
4804 gpointer data UNUSED)
4805{
4806 return pango_font_family_is_monospace((PangoFontFamily *)family);
4807}
4808#endif
4809
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810/*
4811 * Put up a font dialog and return the selected font name in allocated memory.
4812 * "oldval" is the previous value. Return NULL when cancelled.
4813 * This should probably go into gui_gtk.c. Hmm.
4814 * FIXME:
4815 * The GTK2 font selection dialog has no filtering API. So we could either
4816 * a) implement our own (possibly copying the code from somewhere else) or
4817 * b) just live with it.
4818 */
4819 char_u *
4820gui_mch_font_dialog(char_u *oldval)
4821{
4822 GtkWidget *dialog;
4823 int response;
4824 char_u *fontname = NULL;
4825 char_u *oldname;
4826
Bram Moolenaar98921892016-02-23 17:14:37 +01004827#if GTK_CHECK_VERSION(3,2,0)
4828 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
4829 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
4830 NULL, NULL);
4831#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004833#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834
4835 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
4836 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
4837
4838 if (oldval != NULL && oldval[0] != NUL)
4839 {
4840 if (output_conv.vc_type != CONV_NONE)
4841 oldname = string_convert(&output_conv, oldval, NULL);
4842 else
4843 oldname = oldval;
4844
4845 /* Annoying bug in GTK (or Pango): if the font name does not include a
4846 * size, zero is used. Use default point size ten. */
4847 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
4848 {
4849 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
4850
4851 if (p != NULL)
4852 {
4853 STRCPY(p + STRLEN(p), " 10");
4854 if (oldname != oldval)
4855 vim_free(oldname);
4856 oldname = p;
4857 }
4858 }
4859
Bram Moolenaar98921892016-02-23 17:14:37 +01004860#if GTK_CHECK_VERSION(3,2,0)
4861 gtk_font_chooser_set_font(
4862 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
4863#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 gtk_font_selection_dialog_set_font_name(
4865 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01004866#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867
4868 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004869 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004871 else
Bram Moolenaar98921892016-02-23 17:14:37 +01004872#if GTK_CHECK_VERSION(3,2,0)
4873 gtk_font_chooser_set_font(
4874 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
4875#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00004876 gtk_font_selection_dialog_set_font_name(
4877 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01004878#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879
4880 response = gtk_dialog_run(GTK_DIALOG(dialog));
4881
4882 if (response == GTK_RESPONSE_OK)
4883 {
4884 char *name;
4885
Bram Moolenaar98921892016-02-23 17:14:37 +01004886#if GTK_CHECK_VERSION(3,2,0)
4887 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
4888#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889 name = gtk_font_selection_dialog_get_font_name(
4890 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01004891#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 if (name != NULL)
4893 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004894 char_u *p;
4895
4896 /* Apparently some font names include a comma, need to escape
4897 * that, because in 'guifont' it separates names. */
4898 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004900 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004901 {
4902 fontname = string_convert(&input_conv, p, NULL);
4903 vim_free(p);
4904 }
4905 else
4906 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 }
4908 }
4909
4910 if (response != GTK_RESPONSE_NONE)
4911 gtk_widget_destroy(dialog);
4912
4913 return fontname;
4914}
4915
4916/*
4917 * Some monospace fonts don't support a bold weight, and fall back
4918 * silently to the regular weight. But this is no good since our text
4919 * drawing function can emulate bold by overstriking. So let's try
4920 * to detect whether bold weight is actually available and emulate it
4921 * otherwise.
4922 *
4923 * Note that we don't need to check for italic style since Xft can
4924 * emulate italic on its own, provided you have a proper fontconfig
4925 * setup. We wouldn't be able to emulate it in Vim anyway.
4926 */
4927 static void
4928get_styled_font_variants(void)
4929{
4930 PangoFontDescription *bold_font_desc;
4931 PangoFont *plain_font;
4932 PangoFont *bold_font;
4933
4934 gui.font_can_bold = FALSE;
4935
4936 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
4937
4938 if (plain_font == NULL)
4939 return;
4940
4941 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
4942 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
4943
4944 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
4945 /*
4946 * The comparison relies on the unique handle nature of a PangoFont*,
4947 * i.e. it's assumed that a different PangoFont* won't refer to the
4948 * same font. Seems to work, and failing here isn't critical anyway.
4949 */
4950 if (bold_font != NULL)
4951 {
4952 gui.font_can_bold = (bold_font != plain_font);
4953 g_object_unref(bold_font);
4954 }
4955
4956 pango_font_description_free(bold_font_desc);
4957 g_object_unref(plain_font);
4958}
4959
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960static PangoEngineShape *default_shape_engine = NULL;
4961
4962/*
4963 * Create a map from ASCII characters in the range [32,126] to glyphs
4964 * of the current font. This is used by gui_gtk2_draw_string() to skip
4965 * the itemize and shaping process for the most common case.
4966 */
4967 static void
4968ascii_glyph_table_init(void)
4969{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02004970 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 PangoAttrList *attr_list;
4972 GList *item_list;
4973 int i;
4974
4975 if (gui.ascii_glyphs != NULL)
4976 pango_glyph_string_free(gui.ascii_glyphs);
4977 if (gui.ascii_font != NULL)
4978 g_object_unref(gui.ascii_font);
4979
4980 gui.ascii_glyphs = NULL;
4981 gui.ascii_font = NULL;
4982
Bram Moolenaar16350cb2016-08-14 20:27:34 +02004983 /* For safety, fill in question marks for the control characters.
4984 * Put a space between characters to avoid shaping. */
4985 for (i = 0; i < 128; ++i)
4986 {
4987 if (i >= 32 && i < 127)
4988 ascii_chars[2 * i] = i;
4989 else
4990 ascii_chars[2 * i] = '?';
4991 ascii_chars[2 * i + 1] = ' ';
4992 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993
4994 attr_list = pango_attr_list_new();
4995 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
4996 0, sizeof(ascii_chars), attr_list, NULL);
4997
4998 if (item_list != NULL && item_list->next == NULL) /* play safe */
4999 {
5000 PangoItem *item;
5001 int width;
5002
5003 item = (PangoItem *)item_list->data;
5004 width = gui.char_width * PANGO_SCALE;
5005
5006 /* Remember the shape engine used for ASCII. */
5007 default_shape_engine = item->analysis.shape_engine;
5008
5009 gui.ascii_font = item->analysis.font;
5010 g_object_ref(gui.ascii_font);
5011
5012 gui.ascii_glyphs = pango_glyph_string_new();
5013
5014 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5015 &item->analysis, gui.ascii_glyphs);
5016
5017 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5018
5019 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5020 {
5021 PangoGlyphGeometry *geom;
5022
5023 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5024 geom->x_offset += MAX(0, width - geom->width) / 2;
5025 geom->width = width;
5026 }
5027 }
5028
5029 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5030 g_list_free(item_list);
5031 pango_attr_list_unref(attr_list);
5032}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033
5034/*
5035 * Initialize Vim to use the font or fontset with the given name.
5036 * Return FAIL if the font could not be loaded, OK otherwise.
5037 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005039gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 PangoFontDescription *font_desc;
5042 PangoLayout *layout;
5043 int width;
5044
5045 /* If font_name is NULL, this means to use the default, which should
5046 * be present on all proper Pango/fontconfig installations. */
5047 if (font_name == NULL)
5048 font_name = (char_u *)DEFAULT_FONT;
5049
5050 font_desc = gui_mch_get_font(font_name, FALSE);
5051
5052 if (font_desc == NULL)
5053 return FAIL;
5054
5055 gui_mch_free_font(gui.norm_font);
5056 gui.norm_font = font_desc;
5057
5058 pango_context_set_font_description(gui.text_context, font_desc);
5059
5060 layout = pango_layout_new(gui.text_context);
5061 pango_layout_set_text(layout, "MW", 2);
5062 pango_layout_get_size(layout, &width, NULL);
5063 /*
5064 * Set char_width to half the width obtained from pango_layout_get_size()
5065 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5066 * Pango to use the same width for both non-CJK characters (e.g. Latin
5067 * letters and numbers) and CJK characters. This results in 's p a c e d
5068 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5069 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5070 * width for CJK fonts.
5071 *
5072 * For related bugs, see:
5073 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5074 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5075 *
5076 * With this, for all four of the following cases, Vim works fine:
5077 * guifont=CJK_fixed_width_font
5078 * guifont=Non_CJK_fixed_font
5079 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5080 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5081 */
5082 if (is_cjk_font(gui.norm_font))
5083 {
5084 int cjk_width;
5085
5086 /* Measure the text extent of U+4E00 and U+4E8C */
5087 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5088 pango_layout_get_size(layout, &cjk_width, NULL);
5089
5090 if (width == cjk_width) /* Xft not patched */
5091 width /= 2;
5092 }
5093 g_object_unref(layout);
5094
5095 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5096
5097 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5098 if (gui.char_width <= 0)
5099 gui.char_width = 8;
5100
Bram Moolenaar231334e2005-07-25 20:46:57 +00005101 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102
5103 /* Set the fontname, which will be used for information purposes */
5104 hl_set_font_name(font_name);
5105
5106 get_styled_font_variants();
5107 ascii_glyph_table_init();
5108
5109 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5110 if (gui.wide_font != NULL
5111 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5112 {
5113 pango_font_description_free(gui.wide_font);
5114 gui.wide_font = NULL;
5115 }
5116
Bram Moolenaare161c792009-11-03 17:13:59 +00005117 if (gui_mch_maximized())
5118 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005119 /* Update lines and columns in accordance with the new font, keep the
5120 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005121 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005122 }
5123 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005124 {
5125 /* Preserve the logical dimensions of the screen. */
5126 update_window_manager_hints(0, 0);
5127 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128
5129 return OK;
5130}
5131
5132/*
5133 * Get a reference to the font "name".
5134 * Return zero for failure.
5135 */
5136 GuiFont
5137gui_mch_get_font(char_u *name, int report_error)
5138{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140
5141 /* can't do this when GUI is not running */
5142 if (!gui.in_use || name == NULL)
5143 return NULL;
5144
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 if (output_conv.vc_type != CONV_NONE)
5146 {
5147 char_u *buf;
5148
5149 buf = string_convert(&output_conv, name, NULL);
5150 if (buf != NULL)
5151 {
5152 font = pango_font_description_from_string((const char *)buf);
5153 vim_free(buf);
5154 }
5155 else
5156 font = NULL;
5157 }
5158 else
5159 font = pango_font_description_from_string((const char *)name);
5160
5161 if (font != NULL)
5162 {
5163 PangoFont *real_font;
5164
5165 /* pango_context_load_font() bails out if no font size is set */
5166 if (pango_font_description_get_size(font) <= 0)
5167 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5168
5169 real_font = pango_context_load_font(gui.text_context, font);
5170
5171 if (real_font == NULL)
5172 {
5173 pango_font_description_free(font);
5174 font = NULL;
5175 }
5176 else
5177 g_object_unref(real_font);
5178 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179
5180 if (font == NULL)
5181 {
5182 if (report_error)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005183 semsg(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 return NULL;
5185 }
5186
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187 return font;
5188}
5189
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005190#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005191/*
5192 * Return the name of font "font" in allocated memory.
5193 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005194 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005195gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005196{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005197 if (font != NOFONT)
5198 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005199 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005200
Bram Moolenaar89d40322006-08-29 15:30:07 +00005201 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005202 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005203 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005204
Bram Moolenaar89d40322006-08-29 15:30:07 +00005205 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005206 return s;
5207 }
5208 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005209 return NULL;
5210}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005211#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005212
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213/*
5214 * If a font is not going to be used, free its structure.
5215 */
5216 void
5217gui_mch_free_font(GuiFont font)
5218{
5219 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221}
5222
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005224 * Return the Pixel value (color) for the given color name.
5225 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 * Return INVALCOLOR for error.
5227 */
5228 guicolor_T
5229gui_mch_get_color(char_u *name)
5230{
Bram Moolenaar2e324952018-04-14 14:37:07 +02005231 guicolor_T color = INVALCOLOR;
5232
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233 if (!gui.in_use) /* can't do this when GUI not running */
Bram Moolenaar2e324952018-04-14 14:37:07 +02005234 return color;
5235
5236 if (name != NULL)
5237 color = gui_get_color_cmn(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238
Bram Moolenaar98921892016-02-23 17:14:37 +01005239#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar2e324952018-04-14 14:37:07 +02005240 return color;
Bram Moolenaar98921892016-02-23 17:14:37 +01005241#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005242 if (color == INVALCOLOR)
5243 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244
Bram Moolenaar26af85d2017-07-23 16:45:10 +02005245 return gui_mch_get_rgb_color(
5246 (color & 0xff0000) >> 16,
5247 (color & 0xff00) >> 8,
5248 color & 0xff);
5249#endif
5250}
5251
5252/*
5253 * Return the Pixel value (color) for the given RGB values.
5254 * Return INVALCOLOR for error.
5255 */
5256 guicolor_T
5257gui_mch_get_rgb_color(int r, int g, int b)
5258{
5259#if GTK_CHECK_VERSION(3,0,0)
5260 return gui_get_rgb_color_cmn(r, g, b);
5261#else
5262 GdkColor gcolor;
5263 int ret;
5264
5265 gcolor.red = (guint16)(r / 255.0 * 65535 + 0.5);
5266 gcolor.green = (guint16)(g / 255.0 * 65535 + 0.5);
5267 gcolor.blue = (guint16)(b / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268
Bram Moolenaar36edf062016-07-21 22:10:12 +02005269 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5270 &gcolor, FALSE, TRUE);
5271
5272 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5273#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274}
5275
5276/*
5277 * Set the current text foreground color.
5278 */
5279 void
5280gui_mch_set_fg_color(guicolor_T color)
5281{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005282#if GTK_CHECK_VERSION(3,0,0)
5283 *gui.fgcolor = color_to_rgba(color);
5284#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005286#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287}
5288
5289/*
5290 * Set the current text background color.
5291 */
5292 void
5293gui_mch_set_bg_color(guicolor_T color)
5294{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005295#if GTK_CHECK_VERSION(3,0,0)
5296 *gui.bgcolor = color_to_rgba(color);
5297#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005299#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300}
5301
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005302/*
5303 * Set the current text special color.
5304 */
5305 void
5306gui_mch_set_sp_color(guicolor_T color)
5307{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005308#if GTK_CHECK_VERSION(3,0,0)
5309 *gui.spcolor = color_to_rgba(color);
5310#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005311 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005312#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005313}
5314
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315/*
5316 * Function-like convenience macro for the sake of efficiency.
5317 */
5318#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5319 G_STMT_START{ \
5320 PangoAttribute *tmp_attr_; \
5321 tmp_attr_ = (Attribute); \
5322 tmp_attr_->start_index = (Start); \
5323 tmp_attr_->end_index = (End); \
5324 pango_attr_list_insert((AttrList), tmp_attr_); \
5325 }G_STMT_END
5326
5327 static void
5328apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5329{
5330 char_u *start = NULL;
5331 char_u *p;
5332 int uc;
5333
5334 for (p = s; p < s + len; p += utf_byte2len(*p))
5335 {
5336 uc = utf_ptr2char(p);
5337
5338 if (start == NULL)
5339 {
5340 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5341 start = p;
5342 }
5343 else if (uc < 0x80 /* optimization shortcut */
5344 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5345 {
5346 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5347 attr_list, start - s, p - s);
5348 start = NULL;
5349 }
5350 }
5351
5352 if (start != NULL)
5353 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5354 attr_list, start - s, len);
5355}
5356
5357 static int
5358count_cluster_cells(char_u *s, PangoItem *item,
5359 PangoGlyphString* glyphs, int i,
5360 int *cluster_width,
5361 int *last_glyph_rbearing)
5362{
5363 char_u *p;
5364 int next; /* glyph start index of next cluster */
5365 int start, end; /* string segment of current cluster */
5366 int width; /* real cluster width in Pango units */
5367 int uc;
5368 int cellcount = 0;
5369
5370 width = glyphs->glyphs[i].geometry.width;
5371
5372 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5373 {
5374 if (glyphs->glyphs[next].attr.is_cluster_start)
5375 break;
5376 else if (glyphs->glyphs[next].geometry.width > width)
5377 width = glyphs->glyphs[next].geometry.width;
5378 }
5379
5380 start = item->offset + glyphs->log_clusters[i];
5381 end = item->offset + ((next < glyphs->num_glyphs) ?
5382 glyphs->log_clusters[next] : item->length);
5383
5384 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5385 {
5386 uc = utf_ptr2char(p);
5387 if (uc < 0x80)
5388 ++cellcount;
5389 else if (!utf_iscomposing(uc))
5390 cellcount += utf_char2cells(uc);
5391 }
5392
5393 if (last_glyph_rbearing != NULL
5394 && cellcount > 0 && next == glyphs->num_glyphs)
5395 {
5396 PangoRectangle ink_rect;
5397 /*
5398 * If a certain combining mark had to be taken from a non-monospace
5399 * font, we have to compensate manually by adapting x_offset according
5400 * to the ink extents of the previous glyph.
5401 */
5402 pango_font_get_glyph_extents(item->analysis.font,
5403 glyphs->glyphs[i].glyph,
5404 &ink_rect, NULL);
5405
5406 if (PANGO_RBEARING(ink_rect) > 0)
5407 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5408 }
5409
5410 if (cellcount > 0)
5411 *cluster_width = width;
5412
5413 return cellcount;
5414}
5415
5416/*
5417 * If there are only combining characters in the cluster, we cannot just
5418 * change the width of the previous glyph since there is none. Therefore
5419 * some guesswork is needed.
5420 *
5421 * If ink_rect.x is negative Pango apparently has taken care of the composing
5422 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5423 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005424 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 *
5426 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5427 * the position of the previous glyph. Apparently this happens only with old
5428 * X fonts which don't provide the special combining information needed by
5429 * Pango.
5430 */
5431 static void
5432setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5433 int last_cellcount, int last_cluster_width,
5434 int last_glyph_rbearing)
5435{
5436 PangoRectangle ink_rect;
5437 PangoRectangle logical_rect;
5438 int width;
5439
5440 width = last_cellcount * gui.char_width * PANGO_SCALE;
5441 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5442 glyph->geometry.width = 0;
5443
5444 pango_font_get_glyph_extents(item->analysis.font,
5445 glyph->glyph,
5446 &ink_rect, &logical_rect);
5447 if (ink_rect.x < 0)
5448 {
5449 glyph->geometry.x_offset += last_glyph_rbearing;
5450 glyph->geometry.y_offset = logical_rect.height
5451 - (gui.char_height - p_linespace) * PANGO_SCALE;
5452 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005453 else
5454 /* If the accent width is smaller than the cluster width, position it
5455 * in the middle. */
5456 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457}
5458
Bram Moolenaar98921892016-02-23 17:14:37 +01005459#if GTK_CHECK_VERSION(3,0,0)
5460 static void
5461draw_glyph_string(int row, int col, int num_cells, int flags,
5462 PangoFont *font, PangoGlyphString *glyphs,
5463 cairo_t *cr)
5464#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465 static void
5466draw_glyph_string(int row, int col, int num_cells, int flags,
5467 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005468#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469{
5470 if (!(flags & DRAW_TRANSP))
5471 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005472#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005473 cairo_set_source_rgba(cr,
5474 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5475 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005476 cairo_rectangle(cr,
5477 FILL_X(col), FILL_Y(row),
5478 num_cells * gui.char_width, gui.char_height);
5479 cairo_fill(cr);
5480#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5482
5483 gdk_draw_rectangle(gui.drawarea->window,
5484 gui.text_gc,
5485 TRUE,
5486 FILL_X(col),
5487 FILL_Y(row),
5488 num_cells * gui.char_width,
5489 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005490#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491 }
5492
Bram Moolenaar98921892016-02-23 17:14:37 +01005493#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005494 cairo_set_source_rgba(cr,
5495 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5496 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005497 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5498 pango_cairo_show_glyph_string(cr, font, glyphs);
5499#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5501
5502 gdk_draw_glyphs(gui.drawarea->window,
5503 gui.text_gc,
5504 font,
5505 TEXT_X(col),
5506 TEXT_Y(row),
5507 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005508#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509
5510 /* redraw the contents with an offset of 1 to emulate bold */
5511 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005512#if GTK_CHECK_VERSION(3,0,0)
5513 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005514 cairo_set_source_rgba(cr,
5515 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5516 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005517 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5518 pango_cairo_show_glyph_string(cr, font, glyphs);
5519 }
5520#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 gdk_draw_glyphs(gui.drawarea->window,
5522 gui.text_gc,
5523 font,
5524 TEXT_X(col) + 1,
5525 TEXT_Y(row),
5526 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005527#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528}
5529
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005530/*
5531 * Draw underline and undercurl at the bottom of the character cell.
5532 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005533#if GTK_CHECK_VERSION(3,0,0)
5534 static void
5535draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5536#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005537 static void
5538draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005539#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005540{
5541 int i;
5542 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005543 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005544 int y = FILL_Y(row + 1) - 1;
5545
5546 /* Undercurl: draw curl at the bottom of the character cell. */
5547 if (flags & DRAW_UNDERC)
5548 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005549#if GTK_CHECK_VERSION(3,0,0)
5550 cairo_set_line_width(cr, 1.0);
5551 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005552 cairo_set_source_rgba(cr,
5553 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5554 gui.spcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005555 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5556 {
5557 offset = val[i % 8];
5558 cairo_line_to(cr, i, y - offset + 0.5);
5559 }
5560 cairo_stroke(cr);
5561#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005562 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5563 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5564 {
5565 offset = val[i % 8];
5566 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5567 }
5568 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005569#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005570 }
5571
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005572 /* Draw a strikethrough line */
5573 if (flags & DRAW_STRIKE)
5574 {
5575#if GTK_CHECK_VERSION(3,0,0)
5576 cairo_set_line_width(cr, 1.0);
5577 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5578 cairo_set_source_rgba(cr,
5579 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5580 gui.spcolor->alpha);
5581 cairo_move_to(cr, FILL_X(col), y + 1 - gui.char_height/2 + 0.5);
5582 cairo_line_to(cr, FILL_X(col + cells), y + 1 - gui.char_height/2 + 0.5);
5583 cairo_stroke(cr);
5584#else
5585 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5586 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5587 FILL_X(col), y + 1 - gui.char_height/2,
5588 FILL_X(col + cells), y + 1 - gui.char_height/2);
5589 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5590#endif
5591 }
5592
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005593 /* Underline: draw a line at the bottom of the character cell. */
5594 if (flags & DRAW_UNDERL)
5595 {
5596 /* When p_linespace is 0, overwrite the bottom row of pixels.
5597 * Otherwise put the line just below the character. */
5598 if (p_linespace > 1)
5599 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005600#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaarcf4b00c2017-09-02 18:33:56 +02005601 cairo_set_line_width(cr, 1.0);
5602 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
5603 cairo_set_source_rgba(cr,
5604 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5605 gui.fgcolor->alpha);
5606 cairo_move_to(cr, FILL_X(col), y + 0.5);
5607 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5608 cairo_stroke(cr);
Bram Moolenaar98921892016-02-23 17:14:37 +01005609#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005610 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5611 FILL_X(col), y,
5612 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005613#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005614 }
5615}
5616
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 int
5618gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5619{
5620 GdkRectangle area; /* area for clip mask */
5621 PangoGlyphString *glyphs; /* glyphs of current item */
5622 int column_offset = 0; /* column offset in cells */
5623 int i;
5624 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5625 char_u *new_conv_buf;
5626 int convlen;
5627 char_u *sp, *bp;
5628 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005629#if GTK_CHECK_VERSION(3,0,0)
5630 cairo_t *cr;
5631#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632
Bram Moolenaar98921892016-02-23 17:14:37 +01005633 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634 return len;
5635
5636 if (output_conv.vc_type != CONV_NONE)
5637 {
5638 /*
5639 * Convert characters from 'encoding' to 'termencoding', which is set
5640 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5641 * prohibits changing this to something else than UTF-8 if the GUI is
5642 * in use.
5643 */
5644 convlen = len;
5645 conv_buf = string_convert(&output_conv, s, &convlen);
5646 g_return_val_if_fail(conv_buf != NULL, len);
5647
5648 /* Correct for differences in char width: some chars are
5649 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5650 * compensate for that. */
5651 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5652 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005653 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5655 {
5656 new_conv_buf = alloc(convlen + 2);
5657 if (new_conv_buf == NULL)
5658 return len;
5659 plen += bp - conv_buf;
5660 mch_memmove(new_conv_buf, conv_buf, plen);
5661 new_conv_buf[plen] = ' ';
5662 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5663 convlen - plen + 1);
5664 vim_free(conv_buf);
5665 conv_buf = new_conv_buf;
5666 ++convlen;
5667 bp = conv_buf + plen;
5668 plen = 1;
5669 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005670 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671 bp += plen;
5672 }
5673 s = conv_buf;
5674 len = convlen;
5675 }
5676
5677 /*
5678 * Restrict all drawing to the current screen line in order to prevent
5679 * fuzzy font lookups from messing up the screen.
5680 */
5681 area.x = gui.border_offset;
5682 area.y = FILL_Y(row);
5683 area.width = gui.num_cols * gui.char_width;
5684 area.height = gui.char_height;
5685
Bram Moolenaar98921892016-02-23 17:14:37 +01005686#if GTK_CHECK_VERSION(3,0,0)
5687 cr = cairo_create(gui.surface);
5688 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5689 cairo_clip(cr);
5690#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5692 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005693#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694
5695 glyphs = pango_glyph_string_new();
5696
5697 /*
5698 * Optimization hack: If possible, skip the itemize and shaping process
5699 * for pure ASCII strings. This optimization is particularly effective
5700 * because Vim draws space characters to clear parts of the screen.
5701 */
5702 if (!(flags & DRAW_ITALIC)
5703 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5704 && gui.ascii_glyphs != NULL)
5705 {
5706 char_u *p;
5707
5708 for (p = s; p < s + len; ++p)
5709 if (*p & 0x80)
5710 goto not_ascii;
5711
5712 pango_glyph_string_set_size(glyphs, len);
5713
5714 for (i = 0; i < len; ++i)
5715 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005716 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717 glyphs->log_clusters[i] = i;
5718 }
5719
Bram Moolenaar98921892016-02-23 17:14:37 +01005720#if GTK_CHECK_VERSION(3,0,0)
5721 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5722#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005724#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725
5726 column_offset = len;
5727 }
5728 else
5729not_ascii:
5730 {
5731 PangoAttrList *attr_list;
5732 GList *item_list;
5733 int cluster_width;
5734 int last_glyph_rbearing;
5735 int cells = 0; /* cells occupied by current cluster */
5736
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005737 /* Safety check: pango crashes when invoked with invalid utf-8
5738 * characters. */
5739 if (!utf_valid_string(s, s + len))
5740 {
5741 column_offset = len;
5742 goto skipitall;
5743 }
5744
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745 /* original width of the current cluster */
5746 cluster_width = PANGO_SCALE * gui.char_width;
5747
5748 /* right bearing of the last non-composing glyph */
5749 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5750
5751 attr_list = pango_attr_list_new();
5752
5753 /* If 'guifontwide' is set then use that for double-width characters.
5754 * Otherwise just go with 'guifont' and let Pango do its thing. */
5755 if (gui.wide_font != NULL)
5756 apply_wide_font_attr(s, len, attr_list);
5757
5758 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5759 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5760 attr_list, 0, len);
5761 if (flags & DRAW_ITALIC)
5762 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5763 attr_list, 0, len);
5764 /*
5765 * Break the text into segments with consistent directional level
5766 * and shaping engine. Pure Latin text needs only a single segment,
5767 * so there's no need to worry about the loop's efficiency. Better
5768 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
5769 */
5770 item_list = pango_itemize(gui.text_context,
5771 (const char *)s, 0, len, attr_list, NULL);
5772
5773 while (item_list != NULL)
5774 {
5775 PangoItem *item;
5776 int item_cells = 0; /* item length in cells */
5777
5778 item = (PangoItem *)item_list->data;
5779 item_list = g_list_delete_link(item_list, item_list);
5780 /*
5781 * Increment the bidirectional embedding level by 1 if it is not
5782 * even. An odd number means the output will be RTL, but we don't
5783 * want that since Vim handles right-to-left text on its own. It
5784 * would probably be sufficient to just set level = 0, but you can
5785 * never know :)
5786 *
5787 * Unfortunately we can't take advantage of Pango's ability to
5788 * render both LTR and RTL at the same time. In order to support
5789 * that, Vim's main screen engine would have to make use of Pango
5790 * functionality.
5791 */
5792 item->analysis.level = (item->analysis.level + 1) & (~1U);
5793
5794 /* HACK: Overrule the shape engine, we don't want shaping to be
5795 * done, because drawing the cursor would change the display. */
5796 item->analysis.shape_engine = default_shape_engine;
5797
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005798#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02005799 pango_shape_full((const char *)s + item->offset, item->length,
5800 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02005801#else
5802 pango_shape((const char *)s + item->offset, item->length,
5803 &item->analysis, glyphs);
5804#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 /*
5806 * Fixed-width hack: iterate over the array and assign a fixed
5807 * width to each glyph, thus overriding the choice made by the
5808 * shaping engine. We use utf_char2cells() to determine the
5809 * number of cells needed.
5810 *
5811 * Also perform all kind of dark magic to get composing
5812 * characters right (and pretty too of course).
5813 */
5814 for (i = 0; i < glyphs->num_glyphs; ++i)
5815 {
5816 PangoGlyphInfo *glyph;
5817
5818 glyph = &glyphs->glyphs[i];
5819
5820 if (glyph->attr.is_cluster_start)
5821 {
5822 int cellcount;
5823
5824 cellcount = count_cluster_cells(
5825 s, item, glyphs, i, &cluster_width,
5826 (item_list != NULL) ? &last_glyph_rbearing : NULL);
5827
5828 if (cellcount > 0)
5829 {
5830 int width;
5831
5832 width = cellcount * gui.char_width * PANGO_SCALE;
5833 glyph->geometry.x_offset +=
5834 MAX(0, width - cluster_width) / 2;
5835 glyph->geometry.width = width;
5836 }
5837 else
5838 {
5839 /* If there are only combining characters in the
5840 * cluster, we cannot just change the width of the
5841 * previous glyph since there is none. Therefore
5842 * some guesswork is needed. */
5843 setup_zero_width_cluster(item, glyph, cells,
5844 cluster_width,
5845 last_glyph_rbearing);
5846 }
5847
5848 item_cells += cellcount;
5849 cells = cellcount;
5850 }
5851 else if (i > 0)
5852 {
5853 int width;
5854
5855 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005856 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02005857 * In some circumstances Pango uses a positive x_offset,
5858 * then use the width of the previous glyph for this one
5859 * and set the previous width to zero.
5860 * Otherwise we get a negative x_offset, Pango has already
5861 * positioned the combining char, keep the widths as they
5862 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005863 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02005864 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005865 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02005866 {
5867 glyphs->glyphs[i].geometry.width =
5868 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005869 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02005870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871 width = cells * gui.char_width * PANGO_SCALE;
5872 glyph->geometry.x_offset +=
5873 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 }
5875 else /* i == 0 "cannot happen" */
5876 {
5877 glyph->geometry.width = 0;
5878 }
5879 }
5880
5881 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01005882#if GTK_CHECK_VERSION(3,0,0)
5883 draw_glyph_string(row, col + column_offset, item_cells,
5884 flags, item->analysis.font, glyphs,
5885 cr);
5886#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 draw_glyph_string(row, col + column_offset, item_cells,
5888 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005889#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890
5891 pango_item_free(item);
5892
5893 column_offset += item_cells;
5894 }
5895
5896 pango_attr_list_unref(attr_list);
5897 }
5898
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005899skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005900 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01005901#if GTK_CHECK_VERSION(3,0,0)
5902 draw_under(flags, row, col, column_offset, cr);
5903#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005904 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01005905#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906
5907 pango_glyph_string_free(glyphs);
5908 vim_free(conv_buf);
5909
Bram Moolenaar98921892016-02-23 17:14:37 +01005910#if GTK_CHECK_VERSION(3,0,0)
5911 cairo_destroy(cr);
5912 if (!gui.by_signal)
5913 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
5914 &area, FALSE);
5915#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918
5919 return column_offset;
5920}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921
5922/*
5923 * Return OK if the key with the termcap name "name" is supported.
5924 */
5925 int
5926gui_mch_haskey(char_u *name)
5927{
5928 int i;
5929
5930 for (i = 0; special_keys[i].key_sym != 0; i++)
5931 if (name[0] == special_keys[i].code0
5932 && name[1] == special_keys[i].code1)
5933 return OK;
5934 return FAIL;
5935}
5936
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005937#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938/*
5939 * Return the text window-id and display. Only required for X-based GUI's
5940 */
5941 int
5942gui_get_x11_windis(Window *win, Display **dis)
5943{
Bram Moolenaar98921892016-02-23 17:14:37 +01005944 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005946 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
5947 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948 return OK;
5949 }
5950
5951 *dis = NULL;
5952 *win = 0;
5953 return FAIL;
5954}
5955#endif
5956
5957#if defined(FEAT_CLIENTSERVER) \
5958 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
5959
5960 Display *
5961gui_mch_get_display(void)
5962{
Bram Moolenaar98921892016-02-23 17:14:37 +01005963 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
5964 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 else
5966 return NULL;
5967}
5968#endif
5969
5970 void
5971gui_mch_beep(void)
5972{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 GdkDisplay *display;
5974
Bram Moolenaar98921892016-02-23 17:14:37 +01005975 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 display = gtk_widget_get_display(gui.mainwin);
5977 else
5978 display = gdk_display_get_default();
5979
5980 if (display != NULL)
5981 gdk_display_beep(display);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982}
5983
5984 void
5985gui_mch_flash(int msec)
5986{
Bram Moolenaar98921892016-02-23 17:14:37 +01005987#if GTK_CHECK_VERSION(3,0,0)
5988 /* TODO Replace GdkGC with Cairo */
5989 (void)msec;
5990#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991 GdkGCValues values;
5992 GdkGC *invert_gc;
5993
5994 if (gui.drawarea->window == NULL)
5995 return;
5996
5997 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
5998 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
5999 values.function = GDK_XOR;
6000 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6001 &values,
6002 GDK_GC_FOREGROUND |
6003 GDK_GC_BACKGROUND |
6004 GDK_GC_FUNCTION);
6005 gdk_gc_set_exposures(invert_gc,
6006 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6007 /*
6008 * Do a visual beep by changing back and forth in some undetermined way,
6009 * the foreground and background colors. This is due to the fact that
6010 * there can't be really any prediction about the effects of XOR on
6011 * arbitrary X11 servers. However this seems to be enough for what we
6012 * intend it to do.
6013 */
6014 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6015 TRUE,
6016 0, 0,
6017 FILL_X((int)Columns) + gui.border_offset,
6018 FILL_Y((int)Rows) + gui.border_offset);
6019
6020 gui_mch_flush();
6021 ui_delay((long)msec, TRUE); /* wait so many msec */
6022
6023 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6024 TRUE,
6025 0, 0,
6026 FILL_X((int)Columns) + gui.border_offset,
6027 FILL_Y((int)Rows) + gui.border_offset);
6028
6029 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006030#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006031}
6032
6033/*
6034 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6035 */
6036 void
6037gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6038{
Bram Moolenaar98921892016-02-23 17:14:37 +01006039#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006040 const GdkRectangle rect = {
6041 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6042 };
6043 cairo_t * const cr = cairo_create(gui.surface);
6044
Bram Moolenaar36edf062016-07-21 22:10:12 +02006045 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006046# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6047 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6048# else
6049 /* Give an implementation for older cairo versions if necessary. */
6050# endif
6051 gdk_cairo_rectangle(cr, &rect);
6052 cairo_fill(cr);
6053
6054 cairo_destroy(cr);
6055
6056 if (!gui.by_signal)
6057 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6058 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006059#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006060 GdkGCValues values;
6061 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062
6063 if (gui.drawarea->window == NULL)
6064 return;
6065
Bram Moolenaar89d40322006-08-29 15:30:07 +00006066 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6067 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 values.function = GDK_XOR;
6069 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6070 &values,
6071 GDK_GC_FOREGROUND |
6072 GDK_GC_BACKGROUND |
6073 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006074 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6075 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006076 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6077 TRUE,
6078 FILL_X(c), FILL_Y(r),
6079 (nc) * gui.char_width, (nr) * gui.char_height);
6080 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006081#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082}
6083
6084/*
6085 * Iconify the GUI window.
6086 */
6087 void
6088gui_mch_iconify(void)
6089{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091}
6092
6093#if defined(FEAT_EVAL) || defined(PROTO)
6094/*
6095 * Bring the Vim window to the foreground.
6096 */
6097 void
6098gui_mch_set_foreground(void)
6099{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101}
6102#endif
6103
6104/*
6105 * Draw a cursor without focus.
6106 */
6107 void
6108gui_mch_draw_hollow_cursor(guicolor_T color)
6109{
6110 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006111#if GTK_CHECK_VERSION(3,0,0)
6112 cairo_t *cr;
6113#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114
Bram Moolenaar98921892016-02-23 17:14:37 +01006115 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 return;
6117
Bram Moolenaar98921892016-02-23 17:14:37 +01006118#if GTK_CHECK_VERSION(3,0,0)
6119 cr = cairo_create(gui.surface);
6120#endif
6121
Bram Moolenaar071d4272004-06-13 20:20:40 +00006122 gui_mch_set_fg_color(color);
6123
Bram Moolenaar98921892016-02-23 17:14:37 +01006124#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006125 cairo_set_source_rgba(cr,
6126 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6127 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006128#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006130#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131 if (mb_lefthalve(gui.row, gui.col))
6132 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006133#if GTK_CHECK_VERSION(3,0,0)
6134 cairo_set_line_width(cr, 1.0);
6135 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6136 cairo_rectangle(cr,
6137 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6138 i * gui.char_width - 1, gui.char_height - 1);
6139 cairo_stroke(cr);
6140 cairo_destroy(cr);
6141#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006142 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6143 FALSE,
6144 FILL_X(gui.col), FILL_Y(gui.row),
6145 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006146#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147}
6148
6149/*
6150 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6151 * color "color".
6152 */
6153 void
6154gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6155{
Bram Moolenaar98921892016-02-23 17:14:37 +01006156 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157 return;
6158
6159 gui_mch_set_fg_color(color);
6160
Bram Moolenaar98921892016-02-23 17:14:37 +01006161#if GTK_CHECK_VERSION(3,0,0)
6162 {
6163 cairo_t *cr;
6164
6165 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006166 cairo_set_source_rgba(cr,
6167 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6168 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006169 cairo_rectangle(cr,
6170# ifdef FEAT_RIGHTLEFT
6171 /* vertical line should be on the right of current point */
6172 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6173# endif
6174 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6175 w, h);
6176 cairo_fill(cr);
6177 cairo_destroy(cr);
6178 }
6179#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6181 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6182 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006183# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184 /* vertical line should be on the right of current point */
6185 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006186# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187 FILL_X(gui.col),
6188 FILL_Y(gui.row) + gui.char_height - h,
6189 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006190#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191}
6192
6193
6194/*
6195 * Catch up with any queued X11 events. This may put keyboard input into the
6196 * input buffer, call resize call-backs, trigger timers etc. If there is
6197 * nothing in the X11 event queue (& no timers pending), then we return
6198 * immediately.
6199 */
6200 void
6201gui_mch_update(void)
6202{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006203 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6204 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205}
6206
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006207 static timeout_cb_type
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208input_timer_cb(gpointer data)
6209{
6210 int *timed_out = (int *) data;
6211
Bram Moolenaar49325942007-05-10 19:19:59 +00006212 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213 *timed_out = TRUE;
6214
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 return FALSE; /* don't happen again */
6216}
6217
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006218#ifdef FEAT_JOB_CHANNEL
6219 static timeout_cb_type
6220channel_poll_cb(gpointer data UNUSED)
6221{
6222 /* Using an event handler for a channel that may be disconnected does
6223 * not work, it hangs. Instead poll for messages. */
6224 channel_handle_events(TRUE);
6225 parse_queued_messages();
6226
6227 return TRUE; /* repeat */
6228}
6229#endif
6230
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231/*
6232 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6233 * from the keyboard.
6234 * wtime == -1 Wait forever.
6235 * wtime == 0 This should never happen.
6236 * wtime > 0 Wait wtime milliseconds for a character.
6237 * Returns OK if a character was found to be available within the given time,
6238 * or FAIL otherwise.
6239 */
6240 int
6241gui_mch_wait_for_chars(long wtime)
6242{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006243 int focus;
6244 guint timer;
6245 static int timed_out;
6246 int retval = FAIL;
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006247#ifdef FEAT_JOB_CHANNEL
6248 guint channel_timer = 0;
6249#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250
6251 timed_out = FALSE;
6252
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006253 // This timeout makes sure that we will return if no characters arrived in
6254 // time. If "wtime" is zero just use one.
6255 if (wtime >= 0)
Bram Moolenaar34a58742019-02-03 15:28:28 +01006256 timer = timeout_add(wtime == 0 ? 1L : wtime,
Bram Moolenaar12dfc9e2019-01-28 22:32:58 +01006257 input_timer_cb, &timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258 else
6259 timer = 0;
6260
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006261#ifdef FEAT_JOB_CHANNEL
6262 /* If there is a channel with the keep_open flag we need to poll for input
6263 * on them. */
6264 if (channel_any_keep_open())
6265 channel_timer = timeout_add(20, channel_poll_cb, NULL);
6266#endif
6267
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268 focus = gui.in_focus;
6269
6270 do
6271 {
6272 /* Stop or start blinking when focus changes */
6273 if (gui.in_focus != focus)
6274 {
6275 if (gui.in_focus)
6276 gui_mch_start_blink();
6277 else
Bram Moolenaar1dd45fb2018-01-31 21:10:01 +01006278 gui_mch_stop_blink(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279 focus = gui.in_focus;
6280 }
6281
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006282#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006283# ifdef FEAT_TIMERS
6284 did_add_timer = FALSE;
6285# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006286 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006287# ifdef FEAT_TIMERS
6288 if (did_add_timer)
6289 /* Need to recompute the waiting time. */
6290 goto theend;
6291# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006292#endif
6293
Bram Moolenaar071d4272004-06-13 20:20:40 +00006294 /*
6295 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006296 * Skip this if input is available anyway (can happen in rare
6297 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006298 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006299 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006300 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301
6302 /* Got char, return immediately */
6303 if (input_available())
6304 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006305 retval = OK;
6306 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307 }
6308 } while (wtime < 0 || !timed_out);
6309
6310 /*
6311 * Flush all eventually pending (drawing) events.
6312 */
6313 gui_mch_update();
6314
Bram Moolenaar4231da42016-06-02 14:30:04 +02006315theend:
6316 if (timer != 0 && !timed_out)
Bram Moolenaar4ab79682017-08-27 14:50:47 +02006317 timeout_remove(timer);
6318#ifdef FEAT_JOB_CHANNEL
6319 if (channel_timer != 0)
6320 timeout_remove(channel_timer);
Bram Moolenaar4231da42016-06-02 14:30:04 +02006321#endif
6322
6323 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324}
6325
6326
6327/****************************************************************************
6328 * Output drawing routines.
6329 ****************************************************************************/
6330
6331
6332/* Flush any output to the screen */
6333 void
6334gui_mch_flush(void)
6335{
Bram Moolenaar98921892016-02-23 17:14:37 +01006336 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006337#if GTK_CHECK_VERSION(2,4,0)
Bram Moolenaarb463e8d2017-06-05 15:07:09 +02006338 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar92cbf622018-09-19 22:40:03 +02006339#else
6340 gdk_display_sync(gtk_widget_get_display(gui.mainwin));
6341#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342}
6343
6344/*
6345 * Clear a rectangular region of the screen from text pos (row1, col1) to
6346 * (row2, col2) inclusive.
6347 */
6348 void
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006349gui_mch_clear_block(int row1arg, int col1arg, int row2arg, int col2arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350{
Bram Moolenaarfe344a92017-02-23 12:20:35 +01006351
6352 int col1 = check_col(col1arg);
6353 int col2 = check_col(col2arg);
6354 int row1 = check_row(row1arg);
6355 int row2 = check_row(row2arg);
6356
Bram Moolenaar98921892016-02-23 17:14:37 +01006357#if GTK_CHECK_VERSION(3,0,0)
6358 if (gtk_widget_get_window(gui.drawarea) == NULL)
6359 return;
6360#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006361 GdkColor color;
6362
6363 if (gui.drawarea->window == NULL)
6364 return;
6365
6366 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006367#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368
Bram Moolenaar98921892016-02-23 17:14:37 +01006369#if GTK_CHECK_VERSION(3,0,0)
6370 {
6371 /* Add one pixel to the far right column in case a double-stroked
6372 * bold glyph may sit there. */
6373 const GdkRectangle rect = {
6374 FILL_X(col1), FILL_Y(row1),
6375 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6376 (row2 - row1 + 1) * gui.char_height
6377 };
6378 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6379 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006380# if GTK_CHECK_VERSION(3,22,2)
6381 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6382# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006383 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6384 if (pat != NULL)
6385 cairo_set_source(cr, pat);
6386 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006387 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006388# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006389 gdk_cairo_rectangle(cr, &rect);
6390 cairo_fill(cr);
6391 cairo_destroy(cr);
6392
6393 if (!gui.by_signal)
6394 gdk_window_invalidate_rect(win, &rect, FALSE);
6395 }
6396#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006397 gdk_gc_set_foreground(gui.text_gc, &color);
6398
6399 /* Clear one extra pixel at the far right, for when bold characters have
6400 * spilled over to the window border. */
6401 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6402 FILL_X(col1), FILL_Y(row1),
6403 (col2 - col1 + 1) * gui.char_width
6404 + (col2 == Columns - 1),
6405 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006406#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407}
6408
Bram Moolenaar98921892016-02-23 17:14:37 +01006409#if GTK_CHECK_VERSION(3,0,0)
6410 static void
6411gui_gtk_window_clear(GdkWindow *win)
6412{
6413 const GdkRectangle rect = {
6414 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6415 };
6416 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006417# if GTK_CHECK_VERSION(3,22,2)
6418 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6419# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006420 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6421 if (pat != NULL)
6422 cairo_set_source(cr, pat);
6423 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006424 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006425# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006426 gdk_cairo_rectangle(cr, &rect);
6427 cairo_fill(cr);
6428 cairo_destroy(cr);
6429
6430 if (!gui.by_signal)
6431 gdk_window_invalidate_rect(win, &rect, FALSE);
6432}
Bram Moolenaar25328e32018-09-11 21:30:09 +02006433#else
6434# define gui_gtk_window_clear(win) gdk_window_clear(win)
Bram Moolenaar98921892016-02-23 17:14:37 +01006435#endif
6436
Bram Moolenaar071d4272004-06-13 20:20:40 +00006437 void
6438gui_mch_clear_all(void)
6439{
Bram Moolenaar98921892016-02-23 17:14:37 +01006440 if (gtk_widget_get_window(gui.drawarea) != NULL)
6441 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442}
6443
Bram Moolenaar98921892016-02-23 17:14:37 +01006444#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445/*
6446 * Redraw any text revealed by scrolling up/down.
6447 */
6448 static void
6449check_copy_area(void)
6450{
6451 GdkEvent *event;
6452 int expose_count;
6453
6454 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6455 return;
6456
6457 /* Avoid redrawing the cursor while scrolling or it'll end up where
6458 * we don't want it to be. I'm not sure if it's correct to call
6459 * gui_dont_update_cursor() at this point but it works as a quick
6460 * fix for now. */
Bram Moolenaar107abd22016-08-12 14:08:25 +02006461 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462
6463 do
6464 {
6465 /* Wait to check whether the scroll worked or not. */
6466 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6467
6468 if (event == NULL)
6469 break; /* received NoExpose event */
6470
6471 gui_redraw(event->expose.area.x, event->expose.area.y,
6472 event->expose.area.width, event->expose.area.height);
6473
6474 expose_count = event->expose.count;
6475 gdk_event_free(event);
6476 }
6477 while (expose_count > 0); /* more events follow */
6478
6479 gui_can_update_cursor();
6480}
Bram Moolenaar98921892016-02-23 17:14:37 +01006481#endif /* !GTK_CHECK_VERSION(3,0,0) */
6482
6483#if GTK_CHECK_VERSION(3,0,0)
6484 static void
6485gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6486 int src_x, int src_y,
6487 int width, int height)
6488{
6489 cairo_t * const cr = cairo_create(gui.surface);
6490
6491 cairo_rectangle(cr, dest_x, dest_y, width, height);
6492 cairo_clip(cr);
6493 cairo_push_group(cr);
6494 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6495 cairo_paint(cr);
6496 cairo_pop_group_to_source(cr);
6497 cairo_paint(cr);
6498
6499 cairo_destroy(cr);
6500}
6501#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006502
6503/*
6504 * Delete the given number of lines from the given row, scrolling up any
6505 * text further down within the scroll region.
6506 */
6507 void
6508gui_mch_delete_lines(int row, int num_lines)
6509{
Bram Moolenaar98921892016-02-23 17:14:37 +01006510#if GTK_CHECK_VERSION(3,0,0)
6511 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6512 const int nrows = gui.scroll_region_bot - row + 1;
6513 const int src_nrows = nrows - num_lines;
6514
6515 gui_gtk_surface_copy_rect(
6516 FILL_X(gui.scroll_region_left), FILL_Y(row),
6517 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6518 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6519 gui_clear_block(
6520 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6521 gui.scroll_region_bot, gui.scroll_region_right);
6522 gui_gtk3_redraw(
6523 FILL_X(gui.scroll_region_left), FILL_Y(row),
6524 gui.char_width * ncols + 1, gui.char_height * nrows);
6525 if (!gui.by_signal)
6526 gtk_widget_queue_draw_area(gui.drawarea,
6527 FILL_X(gui.scroll_region_left), FILL_Y(row),
6528 gui.char_width * ncols + 1, gui.char_height * nrows);
6529#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6531 return; /* Can't see the window */
6532
6533 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6534 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6535
6536 /* copy one extra pixel, for when bold has spilled over */
6537 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6538 FILL_X(gui.scroll_region_left), FILL_Y(row),
6539 gui.drawarea->window,
6540 FILL_X(gui.scroll_region_left),
6541 FILL_Y(row + num_lines),
6542 gui.char_width * (gui.scroll_region_right
6543 - gui.scroll_region_left + 1) + 1,
6544 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6545
6546 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6547 gui.scroll_region_left,
6548 gui.scroll_region_bot, gui.scroll_region_right);
6549 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006550#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551}
6552
6553/*
6554 * Insert the given number of lines before the given row, scrolling down any
6555 * following text within the scroll region.
6556 */
6557 void
6558gui_mch_insert_lines(int row, int num_lines)
6559{
Bram Moolenaar98921892016-02-23 17:14:37 +01006560#if GTK_CHECK_VERSION(3,0,0)
6561 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6562 const int nrows = gui.scroll_region_bot - row + 1;
6563 const int src_nrows = nrows - num_lines;
6564
6565 gui_gtk_surface_copy_rect(
6566 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6567 FILL_X(gui.scroll_region_left), FILL_Y(row),
6568 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6569 gui_mch_clear_block(
6570 row, gui.scroll_region_left,
6571 row + num_lines - 1, gui.scroll_region_right);
6572 gui_gtk3_redraw(
6573 FILL_X(gui.scroll_region_left), FILL_Y(row),
6574 gui.char_width * ncols + 1, gui.char_height * nrows);
6575 if (!gui.by_signal)
6576 gtk_widget_queue_draw_area(gui.drawarea,
6577 FILL_X(gui.scroll_region_left), FILL_Y(row),
6578 gui.char_width * ncols + 1, gui.char_height * nrows);
6579#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6581 return; /* Can't see the window */
6582
6583 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6584 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6585
6586 /* copy one extra pixel, for when bold has spilled over */
6587 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6588 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6589 gui.drawarea->window,
6590 FILL_X(gui.scroll_region_left), FILL_Y(row),
6591 gui.char_width * (gui.scroll_region_right
6592 - gui.scroll_region_left + 1) + 1,
6593 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6594
6595 gui_clear_block(row, gui.scroll_region_left,
6596 row + num_lines - 1, gui.scroll_region_right);
6597 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006598#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599}
6600
6601/*
6602 * X Selection stuff, for cutting and pasting text to other windows.
6603 */
6604 void
6605clip_mch_request_selection(VimClipboard *cbd)
6606{
6607 GdkAtom target;
6608 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006609 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006610
6611 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6612 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006613 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6614 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615 received_selection = RS_NONE;
6616 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6617
6618 gtk_selection_convert(gui.drawarea,
6619 cbd->gtk_sel_atom, target,
6620 (guint32)GDK_CURRENT_TIME);
6621
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006622 /* Hack: Wait up to three seconds for the selection. A hang was
6623 * noticed here when using the netrw plugin combined with ":gui"
6624 * during the FocusGained event. */
6625 start = time(NULL);
6626 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006627 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006628
6629 if (received_selection != RS_FAIL)
6630 return;
6631 }
6632
6633 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006634 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6635 cbd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006636}
6637
6638/*
6639 * Disown the selection.
6640 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006642clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643{
Bram Moolenaar29dfa5a2018-03-20 21:24:45 +01006644 if (!in_selection_clear_event)
6645 {
6646 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
6647 gui_mch_update();
6648 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006649}
6650
6651/*
6652 * Own the selection and return OK if it worked.
6653 */
6654 int
6655clip_mch_own_selection(VimClipboard *cbd)
6656{
6657 int success;
6658
6659 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006660 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661 gui_mch_update();
6662 return (success) ? OK : FAIL;
6663}
6664
6665/*
6666 * Send the current selection to the clipboard. Do nothing for X because we
6667 * will fill in the selection only when requested by another app.
6668 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006670clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006671{
6672}
6673
Bram Moolenaar113e1072019-01-20 15:30:40 +01006674#if (defined(FEAT_XCLIPBOARD) && defined(USE_SYSTEM)) || defined(PROTO)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006675 int
6676clip_gtk_owner_exists(VimClipboard *cbd)
6677{
6678 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6679}
Bram Moolenaar113e1072019-01-20 15:30:40 +01006680#endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006681
Bram Moolenaar071d4272004-06-13 20:20:40 +00006682
6683#if defined(FEAT_MENU) || defined(PROTO)
6684/*
6685 * Make a menu item appear either active or not active (grey or not grey).
6686 */
6687 void
6688gui_mch_menu_grey(vimmenu_T *menu, int grey)
6689{
6690 if (menu->id == NULL)
6691 return;
6692
6693 if (menu_is_separator(menu->name))
6694 grey = TRUE;
6695
6696 gui_mch_menu_hidden(menu, FALSE);
6697 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01006698 if (!gtk_widget_get_sensitive(menu->id) == !grey)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699 {
6700 gtk_widget_set_sensitive(menu->id, !grey);
6701 gui_mch_update();
6702 }
6703}
6704
6705/*
6706 * Make menu item hidden or not hidden.
6707 */
6708 void
6709gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6710{
6711 if (menu->id == 0)
6712 return;
6713
6714 if (hidden)
6715 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006716 if (gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006717 {
6718 gtk_widget_hide(menu->id);
6719 gui_mch_update();
6720 }
6721 }
6722 else
6723 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006724 if (!gtk_widget_get_visible(menu->id))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006725 {
6726 gtk_widget_show(menu->id);
6727 gui_mch_update();
6728 }
6729 }
6730}
6731
6732/*
6733 * This is called after setting all the menus to grey/hidden or not.
6734 */
6735 void
6736gui_mch_draw_menubar(void)
6737{
6738 /* just make sure that the visual changes get effect immediately */
6739 gui_mch_update();
6740}
6741#endif /* FEAT_MENU */
6742
6743/*
6744 * Scrollbar stuff.
6745 */
6746 void
6747gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6748{
6749 if (sb->id == NULL)
6750 return;
6751
Bram Moolenaar98921892016-02-23 17:14:37 +01006752 gtk_widget_set_visible(sb->id, flag);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00006753 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754}
6755
6756
6757/*
6758 * Return the RGB value of a pixel as long.
6759 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006760 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006761gui_mch_get_rgb(guicolor_T pixel)
6762{
Bram Moolenaar98921892016-02-23 17:14:37 +01006763#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006764 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006765#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006766 GdkColor color;
6767
Bram Moolenaar071d4272004-06-13 20:20:40 +00006768 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
6769 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006771 return (guicolor_T)(
6772 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006773 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02006774 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02006775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006776}
6777
6778/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006779 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006781 void
6782gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006783{
Bram Moolenaar98921892016-02-23 17:14:37 +01006784 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785}
6786
6787 void
6788gui_mch_setmouse(int x, int y)
6789{
6790 /* Sorry for the Xlib call, but we can't avoid it, since there is no
6791 * internal GDK mechanism present to accomplish this. (and for good
6792 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01006793 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
6794 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
6795 0, 0, 0U, 0U, x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796}
6797
6798
6799#ifdef FEAT_MOUSESHAPE
6800/* The last set mouse pointer shape is remembered, to be used when it goes
6801 * from hidden to not hidden. */
6802static int last_shape = 0;
6803#endif
6804
6805/*
6806 * Use the blank mouse pointer or not.
6807 *
6808 * hide: TRUE = use blank ptr, FALSE = use parent ptr
6809 */
6810 void
6811gui_mch_mousehide(int hide)
6812{
6813 if (gui.pointer_hidden != hide)
6814 {
6815 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01006816 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817 {
6818 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01006819 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6820 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821 else
6822#ifdef FEAT_MOUSESHAPE
6823 mch_set_mouse_shape(last_shape);
6824#else
Bram Moolenaar25328e32018-09-11 21:30:09 +02006825 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826#endif
6827 }
6828 }
6829}
6830
6831#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
6832
6833/* Table for shape IDs. Keep in sync with the mshape_names[] table in
6834 * misc2.c! */
6835static const int mshape_ids[] =
6836{
6837 GDK_LEFT_PTR, /* arrow */
6838 GDK_CURSOR_IS_PIXMAP, /* blank */
6839 GDK_XTERM, /* beam */
6840 GDK_SB_V_DOUBLE_ARROW, /* updown */
6841 GDK_SIZING, /* udsizing */
6842 GDK_SB_H_DOUBLE_ARROW, /* leftright */
6843 GDK_SIZING, /* lrsizing */
6844 GDK_WATCH, /* busy */
6845 GDK_X_CURSOR, /* no */
6846 GDK_CROSSHAIR, /* crosshair */
6847 GDK_HAND1, /* hand1 */
6848 GDK_HAND2, /* hand2 */
6849 GDK_PENCIL, /* pencil */
6850 GDK_QUESTION_ARROW, /* question */
6851 GDK_RIGHT_PTR, /* right-arrow */
6852 GDK_CENTER_PTR, /* up-arrow */
6853 GDK_LEFT_PTR /* last one */
6854};
6855
6856 void
6857mch_set_mouse_shape(int shape)
6858{
6859 int id;
6860 GdkCursor *c;
6861
Bram Moolenaar98921892016-02-23 17:14:37 +01006862 if (gtk_widget_get_window(gui.drawarea) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863 return;
6864
6865 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01006866 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
6867 gui.blank_pointer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868 else
6869 {
6870 if (shape >= MSHAPE_NUMBERED)
6871 {
6872 id = shape - MSHAPE_NUMBERED;
6873 if (id >= GDK_LAST_CURSOR)
6874 id = GDK_LEFT_PTR;
6875 else
6876 id &= ~1; /* they are always even (why?) */
6877 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006878 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006879 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00006880 else
6881 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006882 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00006883 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar98921892016-02-23 17:14:37 +01006884 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
Bram Moolenaar98921892016-02-23 17:14:37 +01006885# if GTK_CHECK_VERSION(3,0,0)
6886 g_object_unref(G_OBJECT(c));
6887# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006889# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890 }
6891 if (shape != MSHAPE_HIDE)
6892 last_shape = shape;
6893}
6894#endif /* FEAT_MOUSESHAPE */
6895
6896
6897#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
6898/*
6899 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
6900 * scaled down if the current font is not big enough, or scaled up if the image
6901 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
6902 * will be cut off if the current font is not big enough, or centered if it's
6903 * too small.
6904 */
6905# define SIGN_WIDTH (2 * gui.char_width)
6906# define SIGN_HEIGHT (gui.char_height)
6907# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
6908
Bram Moolenaar071d4272004-06-13 20:20:40 +00006909 void
6910gui_mch_drawsign(int row, int col, int typenr)
6911{
6912 GdkPixbuf *sign;
6913
6914 sign = (GdkPixbuf *)sign_get_image(typenr);
6915
Bram Moolenaar98921892016-02-23 17:14:37 +01006916 if (sign != NULL && gui.drawarea != NULL
6917 && gtk_widget_get_window(gui.drawarea) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006918 {
6919 int width;
6920 int height;
6921 int xoffset;
6922 int yoffset;
6923 int need_scale;
6924
6925 width = gdk_pixbuf_get_width(sign);
6926 height = gdk_pixbuf_get_height(sign);
6927 /*
6928 * Decide whether we need to scale. Allow one pixel of border
6929 * width to be cut off, in order to avoid excessive scaling for
6930 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006931 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932 */
6933 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006934 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935 || (width < 3 * SIGN_WIDTH / 4
6936 && height < 3 * SIGN_HEIGHT / 4));
6937 if (need_scale)
6938 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006939 double aspect;
6940 int w = width;
6941 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942
6943 /* Keep the original aspect ratio */
6944 aspect = (double)height / (double)width;
6945 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
6946 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006947 if (((double)(MAX(height, SIGN_HEIGHT)) /
6948 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
6949 {
6950 /* Change the aspect ratio by at most 15% to fill the
Bram Moolenaarbdace832019-03-02 10:13:42 +01006951 * available space completely. */
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006952 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
6953 height = MIN(height, SIGN_HEIGHT);
6954 }
6955 else
6956 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006957
Bram Moolenaar58cbc912014-06-17 18:47:02 +02006958 if (w == width && h == height)
6959 {
6960 /* no change in dimensions; don't decrease reference counter
6961 * (below) */
6962 need_scale = FALSE;
6963 }
6964 else
6965 {
6966 /* This doesn't seem to be worth caching, and doing so would
6967 * complicate the code quite a bit. */
6968 sign = gdk_pixbuf_scale_simple(sign, width, height,
6969 GDK_INTERP_BILINEAR);
6970 if (sign == NULL)
6971 return; /* out of memory */
6972 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006973 }
6974
6975 /* The origin is the upper-left corner of the pixmap. Therefore
6976 * these offset may become negative if the pixmap is smaller than
6977 * the 2x1 cells reserved for the sign icon. */
6978 xoffset = (width - SIGN_WIDTH) / 2;
6979 yoffset = (height - SIGN_HEIGHT) / 2;
6980
Bram Moolenaar98921892016-02-23 17:14:37 +01006981# if GTK_CHECK_VERSION(3,0,0)
6982 {
6983 cairo_t *cr;
6984 cairo_surface_t *bg_surf;
6985 cairo_t *bg_cr;
6986 cairo_surface_t *sign_surf;
6987 cairo_t *sign_cr;
6988
6989 cr = cairo_create(gui.surface);
6990
6991 bg_surf = cairo_surface_create_similar(gui.surface,
6992 cairo_surface_get_content(gui.surface),
6993 SIGN_WIDTH, SIGN_HEIGHT);
6994 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006995 cairo_set_source_rgba(bg_cr,
6996 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
6997 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006998 cairo_paint(bg_cr);
6999
7000 sign_surf = cairo_surface_create_similar(gui.surface,
7001 cairo_surface_get_content(gui.surface),
7002 SIGN_WIDTH, SIGN_HEIGHT);
7003 sign_cr = cairo_create(sign_surf);
7004 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7005 cairo_paint(sign_cr);
7006
7007 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7008 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7009 cairo_paint(sign_cr);
7010
7011 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7012 cairo_paint(cr);
7013
7014 cairo_destroy(sign_cr);
7015 cairo_surface_destroy(sign_surf);
7016 cairo_destroy(bg_cr);
7017 cairo_surface_destroy(bg_surf);
7018 cairo_destroy(cr);
7019
7020 if (!gui.by_signal)
7021 gtk_widget_queue_draw_area(gui.drawarea,
7022 FILL_X(col), FILL_Y(col), width, height);
7023
7024 }
7025# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7027
7028 gdk_draw_rectangle(gui.drawarea->window,
7029 gui.text_gc,
7030 TRUE,
7031 FILL_X(col),
7032 FILL_Y(row),
7033 SIGN_WIDTH,
7034 SIGN_HEIGHT);
7035
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036 gdk_pixbuf_render_to_drawable_alpha(sign,
7037 gui.drawarea->window,
7038 MAX(0, xoffset),
7039 MAX(0, yoffset),
7040 FILL_X(col) - MIN(0, xoffset),
7041 FILL_Y(row) - MIN(0, yoffset),
7042 MIN(width, SIGN_WIDTH),
7043 MIN(height, SIGN_HEIGHT),
7044 GDK_PIXBUF_ALPHA_BILEVEL,
7045 127,
7046 GDK_RGB_DITHER_NORMAL,
7047 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007048# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049 if (need_scale)
7050 g_object_unref(sign);
7051 }
7052}
7053
7054 void *
7055gui_mch_register_sign(char_u *signfile)
7056{
7057 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7058 {
7059 GdkPixbuf *sign;
7060 GError *error = NULL;
7061 char_u *message;
7062
7063 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7064
7065 if (error == NULL)
7066 return sign;
7067
7068 message = (char_u *)error->message;
7069
7070 if (message != NULL && input_conv.vc_type != CONV_NONE)
7071 message = string_convert(&input_conv, message, NULL);
7072
7073 if (message != NULL)
7074 {
7075 /* The error message is already translated and will be more
7076 * descriptive than anything we could possibly do ourselves. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007077 semsg("E255: %s", message);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078
7079 if (input_conv.vc_type != CONV_NONE)
7080 vim_free(message);
7081 }
7082 g_error_free(error);
7083 }
7084
7085 return NULL;
7086}
7087
7088 void
7089gui_mch_destroy_sign(void *sign)
7090{
7091 if (sign != NULL)
7092 g_object_unref(sign);
7093}
7094
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095#endif /* FEAT_SIGN_ICONS */