blob: 514ac9e31a481e8b823903af74f69a198eebaaa5 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * Porting to GTK+ was done by:
12 *
Bram Moolenaar0a56cb82005-01-04 21:45:14 +000013 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * With GREAT support and continuous encouragements by Andy Kahn and of
16 * course Bram Moolenaar!
17 *
18 * Support for GTK+ 2 was added by:
19 *
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
21 * Daniel Elstner <daniel.elstner@gmx.net>
Bram Moolenaar98921892016-02-23 17:14:37 +010022 *
23 * Support for GTK+ 3 was added by:
24 *
25 * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 */
27
28#include "vim.h"
Bram Moolenaar36e294c2015-12-29 18:55:46 +010029#ifdef USE_GRESOURCE
30#include "auto/gui_gtk_gresources.h"
31#endif
Bram Moolenaarc93e7912008-07-08 10:46:08 +000032
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_GUI_GNOME
34/* Gnome redefines _() and N_(). Grrr... */
35# ifdef _
36# undef _
37# endif
38# ifdef N_
39# undef N_
40# endif
41# ifdef textdomain
42# undef textdomain
43# endif
44# ifdef bindtextdomain
45# undef bindtextdomain
46# endif
Bram Moolenaara2dd9002007-05-14 17:38:30 +000047# ifdef bind_textdomain_codeset
48# undef bind_textdomain_codeset
Bram Moolenaar49325942007-05-10 19:19:59 +000049# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000050# if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
51# define ENABLE_NLS /* so the texts in the dialog boxes are translated */
52# endif
53# include <gnome.h>
54# include "version.h"
Bram Moolenaardb552d602006-03-23 22:59:57 +000055/* missing prototype in bonobo-dock-item.h */
56extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#endif
58
59#if !defined(FEAT_GUI_GTK) && defined(PROTO)
60/* When generating prototypes we don't want syntax errors. */
61# define GdkAtom int
62# define GdkEventExpose int
63# define GdkEventFocus int
64# define GdkEventVisibility int
65# define GdkEventProperty int
66# define GtkContainer int
67# define GtkTargetEntry int
68# define GtkType int
69# define GtkWidget int
70# define gint int
71# define gpointer int
72# define guint int
73# define GdkEventKey int
74# define GdkEventSelection int
75# define GtkSelectionData int
76# define GdkEventMotion int
77# define GdkEventButton int
78# define GdkDragContext int
79# define GdkEventConfigure int
80# define GdkEventClient int
81#else
Bram Moolenaar98921892016-02-23 17:14:37 +010082# if GTK_CHECK_VERSION(3,0,0)
83# include <gdk/gdkkeysyms-compat.h>
84# include <gtk/gtkx.h>
85# else
86# include <gdk/gdkkeysyms.h>
87# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000088# include <gdk/gdk.h>
89# ifdef WIN3264
90# include <gdk/gdkwin32.h>
91# else
92# include <gdk/gdkx.h>
93# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000094# include <gtk/gtk.h>
95# include "gui_gtk_f.h"
96#endif
97
98#ifdef HAVE_X11_SUNKEYSYM_H
99# include <X11/Sunkeysym.h>
100#endif
101
102/*
103 * Easy-to-use macro for multihead support.
104 */
105#ifdef HAVE_GTK_MULTIHEAD
106# define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
107 gtk_widget_get_display(gui.mainwin), atom)
108#else
109# define GET_X_ATOM(atom) ((Atom)(atom))
110#endif
111
112/* Selection type distinguishers */
113enum
114{
115 TARGET_TYPE_NONE,
116 TARGET_UTF8_STRING,
117 TARGET_STRING,
118 TARGET_COMPOUND_TEXT,
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000119 TARGET_HTML,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120 TARGET_TEXT,
121 TARGET_TEXT_URI_LIST,
122 TARGET_TEXT_PLAIN,
123 TARGET_VIM,
124 TARGET_VIMENC
125};
126
127/*
128 * Table of selection targets supported by Vim.
129 * Note: Order matters, preferred types should come first.
130 */
131static const GtkTargetEntry selection_targets[] =
132{
133 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
134 {VIM_ATOM_NAME, 0, TARGET_VIM},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000135 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
138 {"TEXT", 0, TARGET_TEXT},
139 {"STRING", 0, TARGET_STRING}
140};
141#define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
142
143#ifdef FEAT_DND
144/*
145 * Table of DnD targets supported by Vim.
146 * Note: Order matters, preferred types should come first.
147 */
148static const GtkTargetEntry dnd_targets[] =
149{
150 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000151 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 {"STRING", 0, TARGET_STRING},
154 {"text/plain", 0, TARGET_TEXT_PLAIN}
155};
156# define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
157#endif
158
159
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160/*
161 * "Monospace" is a standard font alias that should be present
162 * on all proper Pango/fontconfig installations.
163 */
164# define DEFAULT_FONT "Monospace 10"
165
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
167/*
168 * Atoms used to communicate save-yourself from the X11 session manager. There
169 * is no need to move them into the GUI struct, since they should be constant.
170 */
171static GdkAtom wm_protocols_atom = GDK_NONE;
172static GdkAtom save_yourself_atom = GDK_NONE;
173#endif
174
175/*
176 * Atoms used to control/reference X11 selections.
177 */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000178static GdkAtom html_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179static GdkAtom utf8_string_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182
183/*
184 * Keycodes recognized by vim.
185 * NOTE: when changing this, the table in gui_x11.c probably needs the same
186 * change!
187 */
188static struct special_key
189{
190 guint key_sym;
191 char_u code0;
192 char_u code1;
193}
194const special_keys[] =
195{
196 {GDK_Up, 'k', 'u'},
197 {GDK_Down, 'k', 'd'},
198 {GDK_Left, 'k', 'l'},
199 {GDK_Right, 'k', 'r'},
200 {GDK_F1, 'k', '1'},
201 {GDK_F2, 'k', '2'},
202 {GDK_F3, 'k', '3'},
203 {GDK_F4, 'k', '4'},
204 {GDK_F5, 'k', '5'},
205 {GDK_F6, 'k', '6'},
206 {GDK_F7, 'k', '7'},
207 {GDK_F8, 'k', '8'},
208 {GDK_F9, 'k', '9'},
209 {GDK_F10, 'k', ';'},
210 {GDK_F11, 'F', '1'},
211 {GDK_F12, 'F', '2'},
212 {GDK_F13, 'F', '3'},
213 {GDK_F14, 'F', '4'},
214 {GDK_F15, 'F', '5'},
215 {GDK_F16, 'F', '6'},
216 {GDK_F17, 'F', '7'},
217 {GDK_F18, 'F', '8'},
218 {GDK_F19, 'F', '9'},
219 {GDK_F20, 'F', 'A'},
220 {GDK_F21, 'F', 'B'},
221 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */
222 {GDK_F22, 'F', 'C'},
223 {GDK_F23, 'F', 'D'},
224 {GDK_F24, 'F', 'E'},
225 {GDK_F25, 'F', 'F'},
226 {GDK_F26, 'F', 'G'},
227 {GDK_F27, 'F', 'H'},
228 {GDK_F28, 'F', 'I'},
229 {GDK_F29, 'F', 'J'},
230 {GDK_F30, 'F', 'K'},
231 {GDK_F31, 'F', 'L'},
232 {GDK_F32, 'F', 'M'},
233 {GDK_F33, 'F', 'N'},
234 {GDK_F34, 'F', 'O'},
235 {GDK_F35, 'F', 'P'},
236#ifdef SunXK_F36
237 {SunXK_F36, 'F', 'Q'},
238 {SunXK_F37, 'F', 'R'},
239#endif
240 {GDK_Help, '%', '1'},
241 {GDK_Undo, '&', '8'},
242 {GDK_BackSpace, 'k', 'b'},
243 {GDK_Insert, 'k', 'I'},
244 {GDK_Delete, 'k', 'D'},
245 {GDK_3270_BackTab, 'k', 'B'},
246 {GDK_Clear, 'k', 'C'},
247 {GDK_Home, 'k', 'h'},
248 {GDK_End, '@', '7'},
249 {GDK_Prior, 'k', 'P'},
250 {GDK_Next, 'k', 'N'},
251 {GDK_Print, '%', '9'},
252 /* Keypad keys: */
253 {GDK_KP_Left, 'k', 'l'},
254 {GDK_KP_Right, 'k', 'r'},
255 {GDK_KP_Up, 'k', 'u'},
256 {GDK_KP_Down, 'k', 'd'},
257 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
258 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
259 {GDK_KP_Home, 'K', '1'},
260 {GDK_KP_End, 'K', '4'},
261 {GDK_KP_Prior, 'K', '3'}, /* page up */
262 {GDK_KP_Next, 'K', '5'}, /* page down */
263
264 {GDK_KP_Add, 'K', '6'},
265 {GDK_KP_Subtract, 'K', '7'},
266 {GDK_KP_Divide, 'K', '8'},
267 {GDK_KP_Multiply, 'K', '9'},
268 {GDK_KP_Enter, 'K', 'A'},
269 {GDK_KP_Decimal, 'K', 'B'},
270
271 {GDK_KP_0, 'K', 'C'},
272 {GDK_KP_1, 'K', 'D'},
273 {GDK_KP_2, 'K', 'E'},
274 {GDK_KP_3, 'K', 'F'},
275 {GDK_KP_4, 'K', 'G'},
276 {GDK_KP_5, 'K', 'H'},
277 {GDK_KP_6, 'K', 'I'},
278 {GDK_KP_7, 'K', 'J'},
279 {GDK_KP_8, 'K', 'K'},
280 {GDK_KP_9, 'K', 'L'},
281
282 /* End of list marker: */
283 {0, 0, 0}
284};
285
286/*
287 * Flags for command line options table below.
288 */
289#define ARG_FONT 1
290#define ARG_GEOMETRY 2
291#define ARG_REVERSE 3
292#define ARG_NOREVERSE 4
293#define ARG_BACKGROUND 5
294#define ARG_FOREGROUND 6
295#define ARG_ICONIC 7
296#define ARG_ROLE 8
297#define ARG_NETBEANS 9
298#define ARG_XRM 10 /* ignored */
299#define ARG_MENUFONT 11 /* ignored */
300#define ARG_INDEX_MASK 0x00ff
301#define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */
302#define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */
303#define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */
304#define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */
305#define ARG_KEEP 0x1000 /* don't remove argument from argv[] */
306
307/*
308 * This table holds all the X GUI command line options allowed. This includes
309 * the standard ones so that we can skip them when Vim is started without the
310 * GUI (but the GUI might start up later).
311 *
312 * When changing this, also update doc/gui_x11.txt and the usage message!!!
313 */
314typedef struct
315{
316 const char *name;
317 unsigned int flags;
318}
319cmdline_option_T;
320
321static const cmdline_option_T cmdline_options[] =
322{
323 /* We handle these options ourselves */
324 {"-fn", ARG_FONT|ARG_HAS_VALUE},
325 {"-font", ARG_FONT|ARG_HAS_VALUE},
326 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE},
327 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE},
328 {"-rv", ARG_REVERSE},
329 {"-reverse", ARG_REVERSE},
330 {"+rv", ARG_NOREVERSE},
331 {"+reverse", ARG_NOREVERSE},
332 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE},
333 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE},
334 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE},
335 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE},
336 {"-iconic", ARG_ICONIC},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 {"--role", ARG_ROLE|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338#ifdef FEAT_NETBEANS_INTG
339 {"-nb", ARG_NETBEANS}, /* non-standard value format */
340 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */
341 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
342 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 /* Arguments handled by GTK (and GNOME) internally. */
345 {"--g-fatal-warnings", ARG_FOR_GTK},
346 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
347 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
348 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
349 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
350 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE},
351 {"--sync", ARG_FOR_GTK},
352 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
353 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
354 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE},
356 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE},
357 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358#ifdef FEAT_GUI_GNOME
359 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE},
360 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE},
361 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE},
362 {"--sm-disable", ARG_FOR_GTK},
363 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE},
364 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE},
365 {"--oaf-private", ARG_FOR_GTK},
366 {"--enable-sound", ARG_FOR_GTK},
367 {"--disable-sound", ARG_FOR_GTK},
368 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE},
369 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI},
370 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP},
371 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI},
372# if 0 /* conflicts with Vim's own --version argument */
373 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI},
374# endif
375 {"--disable-crash-dialog", ARG_FOR_GTK},
376#endif
377 {NULL, 0}
378};
379
380static int gui_argc = 0;
381static char **gui_argv = NULL;
382
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383static const char *role_argument = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
385static const char *restart_command = NULL;
Bram Moolenaar9085f802009-06-03 14:20:21 +0000386static char *abs_restart_command = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387#endif
388static int found_iconic_arg = FALSE;
389
390#ifdef FEAT_GUI_GNOME
391/*
392 * Can't use Gnome if --socketid given
393 */
394static int using_gnome = 0;
395#else
396# define using_gnome 0
397#endif
398
399/*
400 * Parse the GUI related command-line arguments. Any arguments used are
401 * deleted from argv, and *argc is decremented accordingly. This is called
402 * when vim is started, whether or not the GUI has been started.
403 */
404 void
405gui_mch_prepare(int *argc, char **argv)
406{
407 const cmdline_option_T *option;
408 int i = 0;
409 int len = 0;
410
411#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
412 /*
413 * Determine the command used to invoke Vim, to be passed as restart
414 * command to the session manager. If argv[0] contains any directory
415 * components try building an absolute path, otherwise leave it as is.
416 */
417 restart_command = argv[0];
418
419 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
420 {
421 char_u buf[MAXPATHL];
422
423 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000424 {
425 abs_restart_command = (char *)vim_strsave(buf);
426 restart_command = abs_restart_command;
427 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 }
429#endif
430
431 /*
432 * Move all the entries in argv which are relevant to GTK+ and GNOME
433 * into gui_argv. Freed later in gui_mch_init().
434 */
435 gui_argc = 0;
436 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *)));
437
438 g_return_if_fail(gui_argv != NULL);
439
440 gui_argv[gui_argc++] = argv[i++];
441
442 while (i < *argc)
443 {
444 /* Don't waste CPU cycles on non-option arguments. */
445 if (argv[i][0] != '-' && argv[i][0] != '+')
446 {
447 ++i;
448 continue;
449 }
450
451 /* Look for argv[i] in cmdline_options[] table. */
452 for (option = &cmdline_options[0]; option->name != NULL; ++option)
453 {
454 len = strlen(option->name);
455
456 if (strncmp(argv[i], option->name, len) == 0)
457 {
458 if (argv[i][len] == '\0')
459 break;
460 /* allow --foo=bar style */
461 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
462 break;
463#ifdef FEAT_NETBEANS_INTG
464 /* darn, -nb has non-standard syntax */
465 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
466 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
467 break;
468#endif
469 }
470 else if ((option->flags & ARG_COMPAT_LONG)
471 && strcmp(argv[i], option->name + 1) == 0)
472 {
473 /* Replace the standard X arguments "-name" and "-display"
474 * with their GNU-style long option counterparts. */
475 argv[i] = (char *)option->name;
476 break;
477 }
478 }
479 if (option->name == NULL) /* no match */
480 {
481 ++i;
482 continue;
483 }
484
485 if (option->flags & ARG_FOR_GTK)
486 {
487 /* Move the argument into gui_argv, which
488 * will later be passed to gtk_init_check() */
489 gui_argv[gui_argc++] = argv[i];
490 }
491 else
492 {
493 char *value = NULL;
494
495 /* Extract the option's value if there is one.
496 * Accept both "--foo bar" and "--foo=bar" style. */
497 if (option->flags & ARG_HAS_VALUE)
498 {
499 if (argv[i][len] == '=')
500 value = &argv[i][len + 1];
501 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
502 value = argv[i + 1];
503 }
504
505 /* Check for options handled by Vim itself */
506 switch (option->flags & ARG_INDEX_MASK)
507 {
508 case ARG_REVERSE:
509 found_reverse_arg = TRUE;
510 break;
511 case ARG_NOREVERSE:
512 found_reverse_arg = FALSE;
513 break;
514 case ARG_FONT:
515 font_argument = value;
516 break;
517 case ARG_GEOMETRY:
518 if (value != NULL)
519 gui.geom = vim_strsave((char_u *)value);
520 break;
521 case ARG_BACKGROUND:
522 background_argument = value;
523 break;
524 case ARG_FOREGROUND:
525 foreground_argument = value;
526 break;
527 case ARG_ICONIC:
528 found_iconic_arg = TRUE;
529 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 case ARG_ROLE:
531 role_argument = value; /* used later in gui_mch_open() */
532 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533#ifdef FEAT_NETBEANS_INTG
534 case ARG_NETBEANS:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 gui.dofork = FALSE; /* don't fork() when starting GUI */
536 netbeansArg = argv[i];
537 break;
538#endif
539 default:
540 break;
541 }
542 }
543
544 /* These arguments make gnome_program_init() print a message and exit.
Bram Moolenaar717e1962016-08-10 21:28:44 +0200545 * Must start the GUI for this, otherwise ":gui" will exit later!
546 * Only when the GUI can start. */
547 if ((option->flags & ARG_NEEDS_GUI)
548 && gui_mch_early_init_check(FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 gui.starting = TRUE;
550
551 if (option->flags & ARG_KEEP)
552 ++i;
553 else
554 {
555 /* Remove the flag from the argument vector. */
556 if (--*argc > i)
557 {
558 int n_strip = 1;
559
560 /* Move the argument's value as well, if there is one. */
561 if ((option->flags & ARG_HAS_VALUE)
562 && argv[i][len] != '='
563 && strcmp(argv[i + 1], "--") != 0)
564 {
565 ++n_strip;
566 --*argc;
567 if (option->flags & ARG_FOR_GTK)
568 gui_argv[gui_argc++] = argv[i + 1];
569 }
570
571 if (*argc > i)
572 mch_memmove(&argv[i], &argv[i + n_strip],
573 (*argc - i) * sizeof(char *));
574 }
575 argv[*argc] = NULL;
576 }
577 }
578
579 gui_argv[gui_argc] = NULL;
580}
581
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000582#if defined(EXITFREE) || defined(PROTO)
583 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100584gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000585{
586 vim_free(gui_argv);
Bram Moolenaar9085f802009-06-03 14:20:21 +0000587#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
588 vim_free(abs_restart_command);
589#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000590}
591#endif
592
Bram Moolenaar98921892016-02-23 17:14:37 +0100593#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594/*
595 * This should be maybe completely removed.
596 * Doesn't seem possible, since check_copy_area() relies on
597 * this information. --danielk
598 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000600visibility_event(GtkWidget *widget UNUSED,
601 GdkEventVisibility *event,
602 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603{
604 gui.visibility = event->state;
605 /*
606 * When we do an gdk_window_copy_area(), and the window is partially
607 * obscured, we want to receive an event to tell us whether it worked
608 * or not.
609 */
610 if (gui.text_gc != NULL)
611 gdk_gc_set_exposures(gui.text_gc,
612 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
613 return FALSE;
614}
Bram Moolenaar98921892016-02-23 17:14:37 +0100615#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616
617/*
618 * Redraw the corresponding portions of the screen.
619 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100620#if GTK_CHECK_VERSION(3,0,0)
621static gboolean is_key_pressed = FALSE;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100622static gboolean blink_mode = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100623
624static gboolean gui_gtk_is_blink_on(void);
Bram Moolenaar98921892016-02-23 17:14:37 +0100625static void gui_gtk_window_clear(GdkWindow *win);
626
627 static void
628gui_gtk3_redraw(int x, int y, int width, int height)
629{
630 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
631 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
632 GUI_MON_NOCLEAR);
633}
634
635 static void
636gui_gtk3_update_cursor(cairo_t *cr)
637{
638 if (gui.row == gui.cursor_row)
639 {
640 gui.by_signal = TRUE;
Bram Moolenaar4fc563b2016-03-12 12:40:58 +0100641 if (State & CMDLINE)
642 gui_update_cursor(TRUE, FALSE);
643 else
644 gui_update_cursor(TRUE, TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +0100645 gui.by_signal = FALSE;
646 cairo_paint(cr);
647 }
648}
649
650 static gboolean
651gui_gtk3_should_draw_cursor(void)
652{
653 unsigned int cond = 0;
654 cond |= gui_gtk_is_blink_on();
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100655 if (gui.cursor_col >= gui.col)
656 cond |= is_key_pressed;
Bram Moolenaar98921892016-02-23 17:14:37 +0100657 cond |= gui.in_focus == FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100658 return cond;
659}
660
661 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200662draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100663 cairo_t *cr,
664 gpointer user_data UNUSED)
665{
666 /* Skip this when the GUI isn't set up yet, will redraw later. */
667 if (gui.starting)
668 return FALSE;
669
670 out_flush(); /* make sure all output has been processed */
671 /* for GTK+ 3, may induce other draw events. */
672
673 cairo_set_source_surface(cr, gui.surface, 0, 0);
674
675 /* Draw the window without the cursor. */
676 gui.by_signal = TRUE;
677 {
678 cairo_rectangle_list_t *list = NULL;
679
Bram Moolenaar98921892016-02-23 17:14:37 +0100680 list = cairo_copy_clip_rectangle_list(cr);
681 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
682 {
683 int i;
684 for (i = 0; i < list->num_rectangles; i++)
685 {
686 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200687
688 gui_mch_clear_block(Y_2_ROW(rect.y), 1,
689 Y_2_ROW(rect.y + rect.height - 1), Columns);
690
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100691 if (blink_mode)
692 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
693 else
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100694 {
695 if (get_real_state() & VISUAL)
696 gui_gtk3_redraw(rect.x, rect.y,
697 rect.width, rect.height);
698 else
699 gui_redraw(rect.x, rect.y, rect.width, rect.height);
700 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100701 }
702 }
703 cairo_rectangle_list_destroy(list);
704
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100705 if (get_real_state() & VISUAL)
706 {
707 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col)
708 gui_update_cursor(TRUE, TRUE);
709 }
710
Bram Moolenaar98921892016-02-23 17:14:37 +0100711 cairo_paint(cr);
712 }
713 gui.by_signal = FALSE;
714
715 /* Add the cursor to the window if necessary.*/
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100716 if (gui_gtk3_should_draw_cursor() && blink_mode)
Bram Moolenaar98921892016-02-23 17:14:37 +0100717 gui_gtk3_update_cursor(cr);
718
719 return FALSE;
720}
721#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000723expose_event(GtkWidget *widget UNUSED,
724 GdkEventExpose *event,
725 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726{
727 /* Skip this when the GUI isn't set up yet, will redraw later. */
728 if (gui.starting)
729 return FALSE;
730
731 out_flush(); /* make sure all output has been processed */
732 gui_redraw(event->area.x, event->area.y,
733 event->area.width, event->area.height);
734
735 /* Clear the border areas if needed */
736 if (event->area.x < FILL_X(0))
737 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
738 if (event->area.y < FILL_Y(0))
739 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
740 if (event->area.x > FILL_X(Columns))
741 gdk_window_clear_area(gui.drawarea->window,
742 FILL_X((int)Columns), 0, 0, 0);
743 if (event->area.y > FILL_Y(Rows))
744 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
745
746 return FALSE;
747}
Bram Moolenaar98921892016-02-23 17:14:37 +0100748#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749
750#ifdef FEAT_CLIENTSERVER
751/*
752 * Handle changes to the "Comm" property
753 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000755property_event(GtkWidget *widget,
756 GdkEventProperty *event,
757 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758{
759 if (event->type == GDK_PROPERTY_NOTIFY
760 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100761# if GTK_CHECK_VERSION(3,0,0)
762 && GDK_WINDOW_XID(event->window) == commWindow
763# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 && GDK_WINDOW_XWINDOW(event->window) == commWindow
Bram Moolenaar98921892016-02-23 17:14:37 +0100765# endif
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# if GTK_CHECK_VERSION(3,0,0)
776 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
777 &xev, 0);
778# else
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200779 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +0100780# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 }
782 return FALSE;
783}
Bram Moolenaar98921892016-02-23 17:14:37 +0100784#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785
786
787/****************************************************************************
788 * Focus handlers:
789 */
790
791
792/*
793 * This is a simple state machine:
794 * BLINK_NONE not blinking at all
795 * BLINK_OFF blinking, cursor is not shown
796 * BLINK_ON blinking, cursor is shown
797 */
798
799#define BLINK_NONE 0
800#define BLINK_OFF 1
801#define BLINK_ON 2
802
803static int blink_state = BLINK_NONE;
804static long_u blink_waittime = 700;
805static long_u blink_ontime = 400;
806static long_u blink_offtime = 250;
807static guint blink_timer = 0;
808
Bram Moolenaar98921892016-02-23 17:14:37 +0100809#if GTK_CHECK_VERSION(3,0,0)
810 static gboolean
811gui_gtk_is_blink_on(void)
812{
813 return blink_state == BLINK_ON;
814}
Bram Moolenaar98921892016-02-23 17:14:37 +0100815#endif
816
Bram Moolenaar703a8042016-06-04 16:24:32 +0200817 int
818gui_mch_is_blinking(void)
819{
820 return blink_state != BLINK_NONE;
821}
822
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200823 int
824gui_mch_is_blink_off(void)
825{
826 return blink_state == BLINK_OFF;
827}
828
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 void
830gui_mch_set_blinking(long waittime, long on, long off)
831{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100832#if GTK_CHECK_VERSION(3,0,0)
833 if (waittime == 0 || on == 0 || off == 0)
834 {
835 blink_mode = FALSE;
836
837 blink_waittime = 700;
838 blink_ontime = 400;
839 blink_offtime = 250;
840 }
841 else
842 {
843 blink_mode = TRUE;
844
845 blink_waittime = waittime;
846 blink_ontime = on;
847 blink_offtime = off;
848 }
849#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 blink_waittime = waittime;
851 blink_ontime = on;
852 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100853#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854}
855
856/*
857 * Stop the cursor blinking. Show the cursor if it wasn't shown.
858 */
859 void
860gui_mch_stop_blink(void)
861{
862 if (blink_timer)
863 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100864#if GTK_CHECK_VERSION(3,0,0)
865 g_source_remove(blink_timer);
866#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100868#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 blink_timer = 0;
870 }
871 if (blink_state == BLINK_OFF)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200872 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200874 gui_mch_flush();
875 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 blink_state = BLINK_NONE;
877}
878
Bram Moolenaar98921892016-02-23 17:14:37 +0100879#if GTK_CHECK_VERSION(3,0,0)
880 static gboolean
881#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +0100883#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000884blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885{
886 if (blink_state == BLINK_ON)
887 {
888 gui_undraw_cursor();
889 blink_state = BLINK_OFF;
Bram Moolenaar98921892016-02-23 17:14:37 +0100890#if GTK_CHECK_VERSION(3,0,0)
891 blink_timer = g_timeout_add((guint)blink_offtime,
892 (GSourceFunc) blink_cb, NULL);
893#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 blink_timer = gtk_timeout_add((guint32)blink_offtime,
895 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100896#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 }
898 else
899 {
900 gui_update_cursor(TRUE, FALSE);
901 blink_state = BLINK_ON;
Bram Moolenaar98921892016-02-23 17:14:37 +0100902#if GTK_CHECK_VERSION(3,0,0)
903 blink_timer = g_timeout_add((guint)blink_ontime,
904 (GSourceFunc) blink_cb, NULL);
905#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 blink_timer = gtk_timeout_add((guint32)blink_ontime,
907 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100908#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 }
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200910 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911
912 return FALSE; /* don't happen again */
913}
914
915/*
916 * Start the cursor blinking. If it was already blinking, this restarts the
917 * waiting time and shows the cursor.
918 */
919 void
920gui_mch_start_blink(void)
921{
922 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200923 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100924#if GTK_CHECK_VERSION(3,0,0)
925 g_source_remove(blink_timer);
926#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100928#endif
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200929 blink_timer = 0;
930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 /* Only switch blinking on if none of the times is zero */
932 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
933 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100934#if GTK_CHECK_VERSION(3,0,0)
935 blink_timer = g_timeout_add((guint)blink_waittime,
936 (GSourceFunc) blink_cb, NULL);
937#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 blink_timer = gtk_timeout_add((guint32)blink_waittime,
939 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 blink_state = BLINK_ON;
942 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200943 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 }
945}
946
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000948enter_notify_event(GtkWidget *widget UNUSED,
949 GdkEventCrossing *event UNUSED,
950 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951{
952 if (blink_state == BLINK_NONE)
953 gui_mch_start_blink();
954
955 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100956#if GTK_CHECK_VERSION(3,0,0)
957 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
958#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea))
Bram Moolenaar98921892016-02-23 17:14:37 +0100960#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 gtk_widget_grab_focus(gui.drawarea);
962
963 return FALSE;
964}
965
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000967leave_notify_event(GtkWidget *widget UNUSED,
968 GdkEventCrossing *event UNUSED,
969 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970{
971 if (blink_state != BLINK_NONE)
972 gui_mch_stop_blink();
973
974 return FALSE;
975}
976
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000978focus_in_event(GtkWidget *widget,
979 GdkEventFocus *event UNUSED,
980 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981{
982 gui_focus_change(TRUE);
983
984 if (blink_state == BLINK_NONE)
985 gui_mch_start_blink();
986
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000987 /* make sure keyboard input goes to the draw area (if this is focus for a
988 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000989 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000990 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991
992 return TRUE;
993}
994
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000996focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200997 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000998 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999{
1000 gui_focus_change(FALSE);
1001
1002 if (blink_state != BLINK_NONE)
1003 gui_mch_stop_blink();
1004
1005 return TRUE;
1006}
1007
1008
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009/*
1010 * Translate a GDK key value to UTF-8 independently of the current locale.
1011 * The output is written to string, which must have room for at least 6 bytes
1012 * plus the NUL terminator. Returns the length in bytes.
1013 *
1014 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
1015 * of GdkEventKey::string instead. But event->string is evil; see here why:
1016 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1017 */
1018 static int
1019keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
1020{
1021 int len;
1022 guint32 uc;
1023
1024 uc = gdk_keyval_to_unicode(keyval);
1025 if (uc != 0)
1026 {
1027 /* Check for CTRL-foo */
1028 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
1029 {
1030 /* These mappings look arbitrary at the first glance, but in fact
1031 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
1032 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
1033 * more sense and is consistent with usual terminal behaviour). */
1034 if (uc >= '@')
1035 string[0] = uc & 0x1F;
1036 else if (uc == '2')
1037 string[0] = NUL;
1038 else if (uc >= '3' && uc <= '7')
1039 string[0] = uc ^ 0x28;
1040 else if (uc == '8')
1041 string[0] = BS;
1042 else if (uc == '?')
1043 string[0] = DEL;
1044 else
1045 string[0] = uc;
1046 len = 1;
1047 }
1048 else
1049 {
1050 /* Translate a normal key to UTF-8. This doesn't work for dead
1051 * keys of course, you _have_ to use an input method for that. */
1052 len = utf_char2bytes((int)uc, string);
1053 }
1054 }
1055 else
1056 {
1057 /* Translate keys which are represented by ASCII control codes in Vim.
1058 * There are only a few of those; most control keys are translated to
1059 * special terminal-like control sequences. */
1060 len = 1;
1061 switch (keyval)
1062 {
1063 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1064 string[0] = TAB;
1065 break;
1066 case GDK_Linefeed:
1067 string[0] = NL;
1068 break;
1069 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1070 string[0] = CAR;
1071 break;
1072 case GDK_Escape:
1073 string[0] = ESC;
1074 break;
1075 default:
1076 len = 0;
1077 break;
1078 }
1079 }
1080 string[len] = NUL;
1081
1082 return len;
1083}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001085 static int
1086modifiers_gdk2vim(guint state)
1087{
1088 int modifiers = 0;
1089
1090 if (state & GDK_SHIFT_MASK)
1091 modifiers |= MOD_MASK_SHIFT;
1092 if (state & GDK_CONTROL_MASK)
1093 modifiers |= MOD_MASK_CTRL;
1094 if (state & GDK_MOD1_MASK)
1095 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001096#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001097 if (state & GDK_SUPER_MASK)
1098 modifiers |= MOD_MASK_META;
1099#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001100 if (state & GDK_MOD4_MASK)
1101 modifiers |= MOD_MASK_META;
1102
1103 return modifiers;
1104}
1105
1106 static int
1107modifiers_gdk2mouse(guint state)
1108{
1109 int modifiers = 0;
1110
1111 if (state & GDK_SHIFT_MASK)
1112 modifiers |= MOUSE_SHIFT;
1113 if (state & GDK_CONTROL_MASK)
1114 modifiers |= MOUSE_CTRL;
1115 if (state & GDK_MOD1_MASK)
1116 modifiers |= MOUSE_ALT;
1117
1118 return modifiers;
1119}
1120
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121/*
1122 * Main keyboard handler:
1123 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001125key_press_event(GtkWidget *widget UNUSED,
1126 GdkEventKey *event,
1127 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001129 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1131 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 guint key_sym;
1133 int len;
1134 int i;
1135 int modifiers;
1136 int key;
1137 guint state;
1138 char_u *s, *d;
1139
Bram Moolenaar98921892016-02-23 17:14:37 +01001140#if GTK_CHECK_VERSION(3,0,0)
1141 is_key_pressed = TRUE;
1142 gui_mch_stop_blink();
1143#endif
1144
Bram Moolenaar20892c12011-06-26 04:49:00 +02001145 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 key_sym = event->keyval;
1147 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148
1149#ifdef FEAT_XIM
1150 if (xim_queue_key_press_event(event, TRUE))
1151 return TRUE;
1152#endif
1153
1154#ifdef FEAT_HANGULIN
1155 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1156 {
1157 hangul_input_state_toggle();
1158 return TRUE;
1159 }
1160#endif
1161
1162#ifdef SunXK_F36
1163 /*
1164 * These keys have bogus lookup strings, and trapping them here is
1165 * easier than trying to XRebindKeysym() on them with every possible
1166 * combination of modifiers.
1167 */
1168 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1169 len = 0;
1170 else
1171#endif
1172 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 len = keyval_to_string(key_sym, state, string2);
1174
1175 /* Careful: convert_input() doesn't handle the NUL character.
1176 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1177 if (len > 1 && input_conv.vc_type != CONV_NONE)
1178 len = convert_input(string2, len, sizeof(string2));
1179
1180 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 d = string;
1182 for (i = 0; i < len; ++i)
1183 {
1184 *d++ = s[i];
1185 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1186 {
1187 /* Turn CSI into K_CSI. */
1188 *d++ = KS_EXTRA;
1189 *d++ = (int)KE_CSI;
1190 }
1191 }
1192 len = d - string;
1193 }
1194
1195 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1196 if (key_sym == GDK_ISO_Left_Tab)
1197 {
1198 key_sym = GDK_Tab;
1199 state |= GDK_SHIFT_MASK;
1200 }
1201
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202#ifdef FEAT_MENU
1203 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1204 * is a menu shortcut, we ignore everything with the ALT modifier. */
1205 if ((state & GDK_MOD1_MASK)
1206 && gui.menu_is_active
1207 && (*p_wak == 'y'
1208 || (*p_wak == 'm'
1209 && len == 1
1210 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 /* For GTK2 we return false to signify that we haven't handled the
1212 * keypress, so that gtk will handle the mnemonic or accelerator. */
1213 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214#endif
1215
1216 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1217 * that already has the 8th bit set.
1218 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1219 * Don't do this for double-byte encodings, it turns the char into a lead
1220 * byte. */
1221 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001222 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001223#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001224 || (state & GDK_SUPER_MASK)
1225#endif
1226 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1228 && (string[0] & 0x80) == 0
1229 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 )
1232 {
1233 string[0] |= 0x80;
1234 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 if (enc_utf8) /* convert to utf-8 */
1236 {
1237 string[1] = string[0] & 0xbf;
1238 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1239 if (string[1] == CSI)
1240 {
1241 string[2] = KS_EXTRA;
1242 string[3] = (int)KE_CSI;
1243 len = 4;
1244 }
1245 else
1246 len = 2;
1247 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 }
1249
1250 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1251 * value) to detect backspace, delete and keypad keys. */
1252 if (len == 0 || len == 1)
1253 {
1254 for (i = 0; special_keys[i].key_sym != 0; i++)
1255 {
1256 if (special_keys[i].key_sym == key_sym)
1257 {
1258 string[0] = CSI;
1259 string[1] = special_keys[i].code0;
1260 string[2] = special_keys[i].code1;
1261 len = -3;
1262 break;
1263 }
1264 }
1265 }
1266
1267 if (len == 0) /* Unrecognized key */
1268 return TRUE;
1269
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 /* Special keys (and a few others) may have modifiers. Also when using a
1271 * double-byte encoding (can't set the 8th bit). */
1272 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1273 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1274 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1275 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001276 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001277#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001278 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001280 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001282 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283
1284 /*
1285 * For some keys a shift modifier is translated into another key
1286 * code.
1287 */
1288 if (len == -3)
1289 key = TO_SPECIAL(string[1], string[2]);
1290 else
1291 key = string[0];
1292
1293 key = simplify_key(key, &modifiers);
1294 if (key == CSI)
1295 key = K_CSI;
1296 if (IS_SPECIAL(key))
1297 {
1298 string[0] = CSI;
1299 string[1] = K_SECOND(key);
1300 string[2] = K_THIRD(key);
1301 len = 3;
1302 }
1303 else
1304 {
1305 string[0] = key;
1306 len = 1;
1307 }
1308
1309 if (modifiers != 0)
1310 {
1311 string2[0] = CSI;
1312 string2[1] = KS_MODIFIER;
1313 string2[2] = modifiers;
1314 add_to_input_buf(string2, 3);
1315 }
1316 }
1317
1318 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1319 || (string[0] == intr_char && intr_char != Ctrl_C)))
1320 {
1321 trash_input_buf();
1322 got_int = TRUE;
1323 }
1324
1325 add_to_input_buf(string, len);
1326
1327 /* blank out the pointer if necessary */
1328 if (p_mh)
1329 gui_mch_mousehide(TRUE);
1330
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 return TRUE;
1332}
1333
Bram Moolenaar98921892016-02-23 17:14:37 +01001334#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001336key_release_event(GtkWidget *widget UNUSED,
1337 GdkEventKey *event,
1338 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339{
Bram Moolenaar98921892016-02-23 17:14:37 +01001340# if GTK_CHECK_VERSION(3,0,0)
1341 is_key_pressed = FALSE;
1342 gui_mch_start_blink();
1343# endif
1344# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001345 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 /*
1347 * GTK+ 2 input methods may do fancy stuff on key release events too.
1348 * With the default IM for instance, you can enter any UCS code point
1349 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1350 */
1351 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001352# else
1353 return TRUE;
1354# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355}
1356#endif
1357
1358
1359/****************************************************************************
1360 * Selection handlers:
1361 */
1362
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001364selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001366 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367{
1368 if (event->selection == clip_plus.gtk_sel_atom)
1369 clip_lose_selection(&clip_plus);
1370 else
1371 clip_lose_selection(&clip_star);
1372
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 return TRUE;
1374}
1375
1376#define RS_NONE 0 /* selection_received_cb() not called yet */
1377#define RS_OK 1 /* selection_received_cb() called and OK */
1378#define RS_FAIL 2 /* selection_received_cb() called and failed */
1379static int received_selection = RS_NONE;
1380
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001382selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001384 guint time_ UNUSED,
1385 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386{
1387 VimClipboard *cbd;
1388 char_u *text;
1389 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001392 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393
Bram Moolenaar98921892016-02-23 17:14:37 +01001394#if GTK_CHECK_VERSION(3,0,0)
1395 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
1396#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 if (data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001398#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 cbd = &clip_plus;
1400 else
1401 cbd = &clip_star;
1402
Bram Moolenaar98921892016-02-23 17:14:37 +01001403#if GTK_CHECK_VERSION(3,0,0)
1404 text = (char_u *)gtk_selection_data_get_data(data);
1405 len = gtk_selection_data_get_length(data);
1406#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 text = (char_u *)data->data;
1408 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01001409#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410
1411 if (text == NULL || len <= 0)
1412 {
1413 received_selection = RS_FAIL;
1414 /* clip_free_selection(cbd); ??? */
1415
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416 return;
1417 }
1418
Bram Moolenaar98921892016-02-23 17:14:37 +01001419#if GTK_CHECK_VERSION(3,0,0)
1420 if (gtk_selection_data_get_data_type(data) == vim_atom)
1421#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 if (data->type == vim_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001423#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 {
1425 motion_type = *text++;
1426 --len;
1427 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001428#if GTK_CHECK_VERSION(3,0,0)
1429 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
1430#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 else if (data->type == vimenc_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001432#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 {
1434 char_u *enc;
1435 vimconv_T conv;
1436
1437 motion_type = *text++;
1438 --len;
1439
1440 enc = text;
1441 text += STRLEN(text) + 1;
1442 len -= text - enc;
1443
1444 /* If the encoding of the text is different from 'encoding', attempt
1445 * converting it. */
1446 conv.vc_type = CONV_NONE;
1447 convert_setup(&conv, enc, p_enc);
1448 if (conv.vc_type != CONV_NONE)
1449 {
1450 tmpbuf = string_convert(&conv, text, &len);
1451 if (tmpbuf != NULL)
1452 text = tmpbuf;
1453 convert_setup(&conv, NULL, NULL);
1454 }
1455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 /* gtk_selection_data_get_text() handles all the nasty details
1458 * and targets and encodings etc. This rocks so hard. */
1459 else
1460 {
1461 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1462 if (tmpbuf_utf8 != NULL)
1463 {
1464 len = STRLEN(tmpbuf_utf8);
1465 if (input_conv.vc_type != CONV_NONE)
1466 {
1467 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1468 if (tmpbuf != NULL)
1469 text = tmpbuf;
1470 }
1471 else
1472 text = tmpbuf_utf8;
1473 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001474 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1475 {
1476 vimconv_T conv;
1477
1478 /* UTF-16, we get this for HTML */
1479 conv.vc_type = CONV_NONE;
1480 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1481
1482 if (conv.vc_type != CONV_NONE)
1483 {
1484 text += 2;
1485 len -= 2;
1486 tmpbuf = string_convert(&conv, text, &len);
1487 convert_setup(&conv, NULL, NULL);
1488 }
1489 if (tmpbuf != NULL)
1490 text = tmpbuf;
1491 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001494 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001495 while (len > 0 && text[len - 1] == NUL)
1496 --len;
1497
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 clip_yank_selection(motion_type, text, (long)len, cbd);
1499 received_selection = RS_OK;
1500 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502}
1503
1504/*
1505 * Prepare our selection data for passing it to the external selection
1506 * client.
1507 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001509selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 GtkSelectionData *selection_data,
1511 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001512 guint time_ UNUSED,
1513 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514{
1515 char_u *string;
1516 char_u *tmpbuf;
1517 long_u tmplen;
1518 int length;
1519 int motion_type;
1520 GdkAtom type;
1521 VimClipboard *cbd;
1522
Bram Moolenaar98921892016-02-23 17:14:37 +01001523#if GTK_CHECK_VERSION(3,0,0)
1524 if (gtk_selection_data_get_selection(selection_data)
1525 == clip_plus.gtk_sel_atom)
1526#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 if (selection_data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001528#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 cbd = &clip_plus;
1530 else
1531 cbd = &clip_star;
1532
1533 if (!cbd->owned)
1534 return; /* Shouldn't ever happen */
1535
1536 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001537 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 && info != (guint)TARGET_UTF8_STRING
1539 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 && info != (guint)TARGET_VIM
1541 && info != (guint)TARGET_COMPOUND_TEXT
1542 && info != (guint)TARGET_TEXT)
1543 return;
1544
1545 /* get the selection from the '*'/'+' register */
1546 clip_get_selection(cbd);
1547
1548 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1549 if (motion_type < 0 || string == NULL)
1550 return;
1551 /* Due to int arguments we can't handle more than G_MAXINT. Also
1552 * reserve one extra byte for NUL or the motion type; just in case.
1553 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1554 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1555
1556 if (info == (guint)TARGET_VIM)
1557 {
1558 tmpbuf = alloc((unsigned)length + 1);
1559 if (tmpbuf != NULL)
1560 {
1561 tmpbuf[0] = motion_type;
1562 mch_memmove(tmpbuf + 1, string, (size_t)length);
1563 }
1564 /* For our own format, the first byte contains the motion type */
1565 ++length;
1566 vim_free(string);
1567 string = tmpbuf;
1568 type = vim_atom;
1569 }
1570
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001571 else if (info == (guint)TARGET_HTML)
1572 {
1573 vimconv_T conv;
1574
1575 /* Since we get utf-16, we probably should set it as well. */
1576 conv.vc_type = CONV_NONE;
1577 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1578 if (conv.vc_type != CONV_NONE)
1579 {
1580 tmpbuf = string_convert(&conv, string, &length);
1581 convert_setup(&conv, NULL, NULL);
1582 vim_free(string);
1583 string = tmpbuf;
1584 }
1585
1586 /* Prepend the BOM: "fffe" */
1587 if (string != NULL)
1588 {
1589 tmpbuf = alloc(length + 2);
1590 tmpbuf[0] = 0xff;
1591 tmpbuf[1] = 0xfe;
1592 mch_memmove(tmpbuf + 2, string, (size_t)length);
1593 vim_free(string);
1594 string = tmpbuf;
1595 length += 2;
1596
Bram Moolenaar98921892016-02-23 17:14:37 +01001597#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001598 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001599 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001600 selection_data->type = selection_data->target;
1601 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001602#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001603 gtk_selection_data_set(selection_data, html_atom, 16,
1604 string, length);
1605 vim_free(string);
1606 }
1607 return;
1608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 else if (info == (guint)TARGET_VIMENC)
1610 {
1611 int l = STRLEN(p_enc);
1612
1613 /* contents: motion_type 'encoding' NUL text */
1614 tmpbuf = alloc((unsigned)length + l + 2);
1615 if (tmpbuf != NULL)
1616 {
1617 tmpbuf[0] = motion_type;
1618 STRCPY(tmpbuf + 1, p_enc);
1619 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
1620 }
1621 length += l + 2;
1622 vim_free(string);
1623 string = tmpbuf;
1624 type = vimenc_atom;
1625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 /* gtk_selection_data_set_text() handles everything for us. This is
1628 * so easy and simple and cool, it'd be insane not to use it. */
1629 else
1630 {
1631 if (output_conv.vc_type != CONV_NONE)
1632 {
1633 tmpbuf = string_convert(&output_conv, string, &length);
1634 vim_free(string);
1635 if (tmpbuf == NULL)
1636 return;
1637 string = tmpbuf;
1638 }
1639 /* Validate the string to avoid runtime warnings */
1640 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1641 {
1642 gtk_selection_data_set_text(selection_data,
1643 (const char *)string, length);
1644 }
1645 vim_free(string);
1646 return;
1647 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648
1649 if (string != NULL)
1650 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001651#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001652 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001653 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 selection_data->type = selection_data->target;
1655 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001656#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 gtk_selection_data_set(selection_data, type, 8, string, length);
1658 vim_free(string);
1659 }
1660}
1661
1662/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001663 * Check if the GUI can be started. Called before gvimrc is sourced and
1664 * before fork().
1665 * Return OK or FAIL.
1666 */
1667 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001668gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001669{
1670 char_u *p;
1671
1672 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1673 p = mch_getenv((char_u *)"DISPLAY");
1674 if (p == NULL || *p == NUL)
1675 {
1676 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001677 if (give_message)
1678 EMSG(_((char *)e_opendisp));
Bram Moolenaar29695702012-05-18 17:03:18 +02001679 return FAIL;
1680 }
1681 return OK;
1682}
1683
1684/*
1685 * Check if the GUI can be started. Called before gvimrc is sourced but after
1686 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 * Return OK or FAIL.
1688 */
1689 int
1690gui_mch_init_check(void)
1691{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001692#ifdef USE_GRESOURCE
1693 static int res_registered = FALSE;
1694
1695 if (!res_registered)
1696 {
1697 /* Call this function in the GUI process; otherwise, the resources
1698 * won't be available. Don't call it twice. */
1699 res_registered = TRUE;
1700 gui_gtk_register_resource();
1701 }
1702#endif
1703
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001704#if GTK_CHECK_VERSION(3,10,0)
1705 /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1706 * support for other backends such as Wayland. */
1707 gdk_set_allowed_backends ("x11");
1708#endif
1709
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710#ifdef FEAT_GUI_GNOME
1711 if (gtk_socket_id == 0)
1712 using_gnome = 1;
1713#endif
1714
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001715 /* This defaults to argv[0], but we want it to match the name of the
1716 * shipped gvim.desktop so that Vim's windows can be associated with this
1717 * file. */
1718 g_set_prgname("gvim");
1719
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1721 if (!gtk_init_check(&gui_argc, &gui_argv))
1722 {
1723 gui.dying = TRUE;
Bram Moolenaarc93e7912008-07-08 10:46:08 +00001724 EMSG(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 return FAIL;
1726 }
1727
1728 return OK;
1729}
1730
1731
1732/****************************************************************************
1733 * Mouse handling callbacks
1734 */
1735
1736
1737static guint mouse_click_timer = 0;
1738static int mouse_timed_out = TRUE;
1739
1740/*
1741 * Timer used to recognize multiple clicks of the mouse button
1742 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001743#if GTK_CHECK_VERSION(3,0,0)
1744 static gboolean
1745#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748mouse_click_timer_cb(gpointer data)
1749{
1750 /* we don't use this information currently */
1751 int *timed_out = (int *) data;
1752
1753 *timed_out = TRUE;
1754 return FALSE; /* don't happen again */
1755}
1756
1757static guint motion_repeat_timer = 0;
1758static int motion_repeat_offset = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01001759#ifdef GTK_DEST_DEFAULT_ALL
1760static gboolean motion_repeat_timer_cb(gpointer);
1761#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762static gint motion_repeat_timer_cb(gpointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01001763#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764
1765 static void
1766process_motion_notify(int x, int y, GdkModifierType state)
1767{
1768 int button;
1769 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001770#if GTK_CHECK_VERSION(3,0,0)
1771 GtkAllocation allocation;
1772#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773
1774 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1775 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1776 GDK_BUTTON5_MASK))
1777 ? MOUSE_DRAG : ' ';
1778
1779 /* If our pointer is currently hidden, then we should show it. */
1780 gui_mch_mousehide(FALSE);
1781
1782 /* Just moving the rodent above the drawing area without any button
1783 * being pressed. */
1784 if (button != MOUSE_DRAG)
1785 {
1786 gui_mouse_moved(x, y);
1787 return;
1788 }
1789
1790 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001791 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792
Bram Moolenaar49325942007-05-10 19:19:59 +00001793 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1795
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 /*
1797 * Auto repeat timer handling.
1798 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001799#if GTK_CHECK_VERSION(3,0,0)
1800 gtk_widget_get_allocation(gui.drawarea, &allocation);
1801
1802 if (x < 0 || y < 0
1803 || x >= allocation.width
1804 || y >= allocation.height)
1805#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 if (x < 0 || y < 0
1807 || x >= gui.drawarea->allocation.width
1808 || y >= gui.drawarea->allocation.height)
Bram Moolenaar98921892016-02-23 17:14:37 +01001809#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 {
1811
1812 int dx;
1813 int dy;
1814 int offshoot;
1815 int delay = 10;
1816
1817 /* Calculate the maximal distance of the cursor from the drawing area.
1818 * (offshoot can't become negative here!).
1819 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001820#if GTK_CHECK_VERSION(3,0,0)
1821 dx = x < 0 ? -x : x - allocation.width;
1822 dy = y < 0 ? -y : y - allocation.height;
1823#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 dx = x < 0 ? -x : x - gui.drawarea->allocation.width;
1825 dy = y < 0 ? -y : y - gui.drawarea->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01001826#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827
1828 offshoot = dx > dy ? dx : dy;
1829
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001830 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 * distance of 127 pixels from the main window.
1832 *
1833 * One could think endlessly about the most ergonomic variant here.
1834 * For example it could make sense to calculate the distance from the
1835 * drags start instead...
1836 *
1837 * Maybe a parabolic interpolation would suite us better here too...
1838 */
1839 if (offshoot > 127)
1840 {
1841 /* 5 appears to be somehow near to my perceptual limits :-). */
1842 delay = 5;
1843 }
1844 else
1845 {
1846 delay = (130 * (127 - offshoot)) / 127 + 5;
1847 }
1848
1849 /* shoot again */
1850 if (!motion_repeat_timer)
Bram Moolenaar98921892016-02-23 17:14:37 +01001851#if GTK_CHECK_VERSION(3,0,0)
1852 motion_repeat_timer = g_timeout_add((guint)delay,
1853 motion_repeat_timer_cb, NULL);
1854#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 motion_repeat_timer = gtk_timeout_add((guint32)delay,
1856 motion_repeat_timer_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01001857#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 }
1859}
1860
Bram Moolenaar98921892016-02-23 17:14:37 +01001861#if GTK_CHECK_VERSION(3,0,0)
1862 static GdkDevice *
1863gui_gtk_get_pointer_device(GtkWidget *widget)
1864{
1865 GdkWindow * const win = gtk_widget_get_window(widget);
1866 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001867# if GTK_CHECK_VERSION(3,20,0)
1868 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1869 return gdk_seat_get_pointer(seat);
1870# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001871 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1872 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001873# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001874}
1875
1876 static GdkWindow *
1877gui_gtk_get_pointer(GtkWidget *widget,
1878 gint *x,
1879 gint *y,
1880 GdkModifierType *state)
1881{
1882 GdkWindow * const win = gtk_widget_get_window(widget);
1883 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1884 return gdk_window_get_device_position(win, dev , x, y, state);
1885}
1886
Bram Moolenaar2369c152016-03-04 23:08:25 +01001887# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001888 static GdkWindow *
1889gui_gtk_window_at_position(GtkWidget *widget,
1890 gint *x,
1891 gint *y)
1892{
1893 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1894 return gdk_device_get_window_at_position(dev, x, y);
1895}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001896# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001897#endif
1898
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899/*
1900 * Timer used to recognize multiple clicks of the mouse button.
1901 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001902#if GTK_CHECK_VERSION(3,0,0)
1903 static gboolean
1904#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001906#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001907motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908{
1909 int x;
1910 int y;
1911 GdkModifierType state;
1912
Bram Moolenaar98921892016-02-23 17:14:37 +01001913#if GTK_CHECK_VERSION(3,0,0)
1914 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
1915#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918
1919 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1920 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1921 GDK_BUTTON5_MASK)))
1922 {
1923 motion_repeat_timer = 0;
1924 return FALSE;
1925 }
1926
1927 /* If there already is a mouse click in the input buffer, wait another
1928 * time (otherwise we would create a backlog of clicks) */
1929 if (vim_used_in_input_buf() > 10)
1930 return TRUE;
1931
1932 motion_repeat_timer = 0;
1933
1934 /*
1935 * Fake a motion event.
1936 * Trick: Pretend the mouse moved to the next character on every other
1937 * event, otherwise drag events will be discarded, because they are still
1938 * in the same character.
1939 */
1940 if (motion_repeat_offset)
1941 x += gui.char_width;
1942
1943 motion_repeat_offset = !motion_repeat_offset;
1944 process_motion_notify(x, y, state);
1945
1946 /* Don't happen again. We will get reinstalled in the synthetic event
1947 * if needed -- thus repeating should still work. */
1948 return FALSE;
1949}
1950
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001952motion_notify_event(GtkWidget *widget,
1953 GdkEventMotion *event,
1954 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955{
1956 if (event->is_hint)
1957 {
1958 int x;
1959 int y;
1960 GdkModifierType state;
1961
Bram Moolenaar98921892016-02-23 17:14:37 +01001962#if GTK_CHECK_VERSION(3,0,0)
1963 gui_gtk_get_pointer(widget, &x, &y, &state);
1964#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 gdk_window_get_pointer(widget->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001966#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 process_motion_notify(x, y, state);
1968 }
1969 else
1970 {
1971 process_motion_notify((int)event->x, (int)event->y,
1972 (GdkModifierType)event->state);
1973 }
1974
1975 return TRUE; /* handled */
1976}
1977
1978
1979/*
1980 * Mouse button handling. Note please that we are capturing multiple click's
1981 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1982 * This is due to the way the generic VIM code is recognizing multiple clicks.
1983 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001985button_press_event(GtkWidget *widget,
1986 GdkEventButton *event,
1987 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988{
1989 int button;
1990 int repeated_click = FALSE;
1991 int x, y;
1992 int_u vim_modifiers;
1993
Bram Moolenaar20892c12011-06-26 04:49:00 +02001994 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001995
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01001997#if GTK_CHECK_VERSION(3,0,0)
1998 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
1999#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002001#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 gtk_widget_grab_focus(widget);
2003
2004 /*
2005 * Don't let additional events about multiple clicks send by GTK to us
2006 * after the initial button press event confuse us.
2007 */
2008 if (event->type != GDK_BUTTON_PRESS)
2009 return FALSE;
2010
2011 x = event->x;
2012 y = event->y;
2013
2014 /* Handle multiple clicks */
2015 if (!mouse_timed_out && mouse_click_timer)
2016 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002017#if GTK_CHECK_VERSION(3,0,0)
2018 g_source_remove(mouse_click_timer);
2019#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 gtk_timeout_remove(mouse_click_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002021#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 mouse_click_timer = 0;
2023 repeated_click = TRUE;
2024 }
2025
2026 mouse_timed_out = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01002027#if GTK_CHECK_VERSION(3,0,0)
2028 mouse_click_timer = g_timeout_add((guint)p_mouset,
2029 mouse_click_timer_cb, &mouse_timed_out);
2030#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 mouse_click_timer = gtk_timeout_add((guint32)p_mouset,
2032 mouse_click_timer_cb, &mouse_timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01002033#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034
2035 switch (event->button)
2036 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01002037 /* Keep in sync with gui_x11.c.
2038 * Buttons 4-7 are handled in scroll_event() */
2039 case 1: button = MOUSE_LEFT; break;
2040 case 2: button = MOUSE_MIDDLE; break;
2041 case 3: button = MOUSE_RIGHT; break;
2042 case 8: button = MOUSE_X1; break;
2043 case 9: button = MOUSE_X2; break;
2044 default:
2045 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 }
2047
2048#ifdef FEAT_XIM
2049 /* cancel any preediting */
2050 if (im_is_preediting())
2051 xim_reset();
2052#endif
2053
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002054 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055
2056 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057
2058 return TRUE;
2059}
2060
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002062 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002065scroll_event(GtkWidget *widget,
2066 GdkEventScroll *event,
2067 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068{
2069 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002070 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071
Bram Moolenaar98921892016-02-23 17:14:37 +01002072#if GTK_CHECK_VERSION(3,0,0)
2073 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
2074#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002076#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 gtk_widget_grab_focus(widget);
2078
2079 switch (event->direction)
2080 {
2081 case GDK_SCROLL_UP:
2082 button = MOUSE_4;
2083 break;
2084 case GDK_SCROLL_DOWN:
2085 button = MOUSE_5;
2086 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002087 case GDK_SCROLL_LEFT:
2088 button = MOUSE_7;
2089 break;
2090 case GDK_SCROLL_RIGHT:
2091 button = MOUSE_6;
2092 break;
2093 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 return FALSE;
2095 }
2096
2097# ifdef FEAT_XIM
2098 /* cancel any preediting */
2099 if (im_is_preediting())
2100 xim_reset();
2101# endif
2102
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002103 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104
2105 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2106 FALSE, vim_modifiers);
2107
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 return TRUE;
2109}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110
2111
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002113button_release_event(GtkWidget *widget UNUSED,
2114 GdkEventButton *event,
2115 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116{
2117 int x, y;
2118 int_u vim_modifiers;
2119
Bram Moolenaar20892c12011-06-26 04:49:00 +02002120 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002121
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 /* Remove any motion "machine gun" timers used for automatic further
2123 extension of allocation areas if outside of the applications window
2124 area .*/
2125 if (motion_repeat_timer)
2126 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002127#if GTK_CHECK_VERSION(3,0,0)
2128 g_source_remove(motion_repeat_timer);
2129#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 gtk_timeout_remove(motion_repeat_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 motion_repeat_timer = 0;
2133 }
2134
2135 x = event->x;
2136 y = event->y;
2137
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002138 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139
2140 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141
2142 return TRUE;
2143}
2144
2145
2146#ifdef FEAT_DND
2147/****************************************************************************
2148 * Drag aNd Drop support handlers.
2149 */
2150
2151/*
2152 * Count how many items there may be and separate them with a NUL.
2153 * Apparently the items are separated with \r\n. This is not documented,
2154 * thus be careful not to go past the end. Also allow separation with
2155 * NUL characters.
2156 */
2157 static int
2158count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2159{
2160 int i;
2161 char_u *p = out;
2162 int count = 0;
2163
2164 for (i = 0; i < len; ++i)
2165 {
2166 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2167 {
2168 if (p > out && p[-1] != NUL)
2169 {
2170 ++count;
2171 *p++ = NUL;
2172 }
2173 }
2174 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2175 {
2176 *p++ = hexhex2nr(raw + i + 1);
2177 i += 2;
2178 }
2179 else
2180 *p++ = raw[i];
2181 }
2182 if (p > out && p[-1] != NUL)
2183 {
2184 *p = NUL; /* last item didn't have \r or \n */
2185 ++count;
2186 }
2187 return count;
2188}
2189
2190/*
2191 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2192 * this process, URI which protocol is not "file:" are removed. Return
2193 * length of array (less than "max").
2194 */
2195 static int
2196filter_uri_list(char_u **outlist, int max, char_u *src)
2197{
2198 int i, j;
2199
2200 for (i = j = 0; i < max; ++i)
2201 {
2202 outlist[i] = NULL;
2203 if (STRNCMP(src, "file:", 5) == 0)
2204 {
2205 src += 5;
2206 if (STRNCMP(src, "//localhost", 11) == 0)
2207 src += 11;
2208 while (src[0] == '/' && src[1] == '/')
2209 ++src;
2210 outlist[j++] = vim_strsave(src);
2211 }
2212 src += STRLEN(src) + 1;
2213 }
2214 return j;
2215}
2216
2217 static char_u **
2218parse_uri_list(int *count, char_u *data, int len)
2219{
2220 int n = 0;
2221 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002222 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223
2224 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2225 {
2226 n = count_and_decode_uri_list(tmp, data, len);
2227 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2228 n = filter_uri_list(array, n, tmp);
2229 }
2230 vim_free(tmp);
2231 *count = n;
2232 return array;
2233}
2234
2235 static void
2236drag_handle_uri_list(GdkDragContext *context,
2237 GtkSelectionData *data,
2238 guint time_,
2239 GdkModifierType state,
2240 gint x,
2241 gint y)
2242{
2243 char_u **fnames;
2244 int nfiles = 0;
2245
Bram Moolenaar98921892016-02-23 17:14:37 +01002246# if GTK_CHECK_VERSION(3,0,0)
2247 fnames = parse_uri_list(&nfiles,
2248 (char_u *)gtk_selection_data_get_data(data),
2249 gtk_selection_data_get_length(data));
2250# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 fnames = parse_uri_list(&nfiles, data->data, data->length);
Bram Moolenaar98921892016-02-23 17:14:37 +01002252# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253
2254 if (fnames != NULL && nfiles > 0)
2255 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002256 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257
2258 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2259
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002260 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261
2262 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2263 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002264 else
2265 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266}
2267
2268 static void
2269drag_handle_text(GdkDragContext *context,
2270 GtkSelectionData *data,
2271 guint time_,
2272 GdkModifierType state)
2273{
2274 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2275 char_u *text;
2276 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278
Bram Moolenaar98921892016-02-23 17:14:37 +01002279# if GTK_CHECK_VERSION(3,0,0)
2280 text = (char_u *)gtk_selection_data_get_data(data);
2281 len = gtk_selection_data_get_length(data);
2282# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 text = data->data;
2284 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01002285# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286
Bram Moolenaar98921892016-02-23 17:14:37 +01002287# if GTK_CHECK_VERSION(3,0,0)
2288 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
2289# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 if (data->type == utf8_string_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01002291# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 if (input_conv.vc_type != CONV_NONE)
2294 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 if (tmpbuf != NULL)
2296 text = tmpbuf;
2297 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298
2299 dnd_yank_drag_data(text, (long)len);
2300 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002303 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304
2305 if (dropkey[2] != 0)
2306 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2307 else
2308 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309}
2310
2311/*
2312 * DND receiver.
2313 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 static void
2315drag_data_received_cb(GtkWidget *widget,
2316 GdkDragContext *context,
2317 gint x,
2318 gint y,
2319 GtkSelectionData *data,
2320 guint info,
2321 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002322 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323{
2324 GdkModifierType state;
2325
2326 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002327# if GTK_CHECK_VERSION(3,0,0)
2328 const guchar * const data_data = gtk_selection_data_get_data(data);
2329 const gint data_length = gtk_selection_data_get_length(data);
2330 const gint data_format = gtk_selection_data_get_format(data);
2331
2332 if (data_data == NULL
2333 || data_length <= 0
2334 || data_format != 8
2335 || data_data[data_length] != '\0')
2336# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 if (data->data == NULL
2338 || data->length <= 0
2339 || data->format != 8
2340 || data->data[data->length] != '\0')
Bram Moolenaar98921892016-02-23 17:14:37 +01002341# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 {
2343 gtk_drag_finish(context, FALSE, FALSE, time_);
2344 return;
2345 }
2346
2347 /* Get the current modifier state for proper distinguishment between
2348 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002349#if GTK_CHECK_VERSION(3,0,0)
2350 gui_gtk_get_pointer(widget, NULL, NULL, &state);
2351# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01002353# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354
2355 /* Not sure about the role of "text/plain" here... */
2356 if (info == (guint)TARGET_TEXT_URI_LIST)
2357 drag_handle_uri_list(context, data, time_, state, x, y);
2358 else
2359 drag_handle_text(context, data, time_, state);
2360
2361}
2362#endif /* FEAT_DND */
2363
2364
2365#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2366/*
2367 * GnomeClient interact callback. Check for unsaved buffers that cannot
2368 * be abandoned and pop up a dialog asking the user for confirmation if
2369 * necessary.
2370 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002372sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002374 GnomeDialogType type UNUSED,
2375 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376{
2377 cmdmod_T save_cmdmod;
2378 gboolean shutdown_cancelled;
2379
2380 save_cmdmod = cmdmod;
2381
2382# ifdef FEAT_BROWSE
2383 cmdmod.browse = TRUE;
2384# endif
2385# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2386 cmdmod.confirm = TRUE;
2387# endif
2388 /*
2389 * If there are changed buffers, present the user with
2390 * a dialog if possible, otherwise give an error message.
2391 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002392 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393
2394 exiting = FALSE;
2395 cmdmod = save_cmdmod;
2396 setcursor(); /* position the cursor */
2397 out_flush();
2398 /*
2399 * If the user hit the [Cancel] button the whole shutdown
2400 * will be cancelled. Wow, quite powerful feature (:
2401 */
2402 gnome_interaction_key_return(key, shutdown_cancelled);
2403}
2404
2405/*
2406 * Generate a script that can be used to restore the current editing session.
2407 * Save the value of v:this_session before running :mksession in order to make
2408 * automagic session save fully transparent. Return TRUE on success.
2409 */
2410 static int
2411write_session_file(char_u *filename)
2412{
2413 char_u *escaped_filename;
2414 char *mksession_cmdline;
2415 unsigned int save_ssop_flags;
2416 int failed;
2417
2418 /*
2419 * Build an ex command line to create a script that restores the current
2420 * session if executed. Escape the filename to avoid nasty surprises.
2421 */
2422 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2423 if (escaped_filename == NULL)
2424 return FALSE;
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002425 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2426 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 vim_free(escaped_filename);
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002428
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 /*
2430 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2431 * unpredictable effects when the session is saved automatically. Also,
2432 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2433 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2434 * enormously large if the GNOME session feature is used regularly.
2435 */
2436 save_ssop_flags = ssop_flags;
2437 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002438 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439
2440 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2441 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2442 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
Bram Moolenaar485db9b2005-01-31 19:23:41 +00002443 do_unlet((char_u *)"Save_VV_this_session", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444
2445 ssop_flags = save_ssop_flags;
2446 g_free(mksession_cmdline);
Bram Moolenaar24dc2302014-05-13 20:19:58 +02002447
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 /*
2449 * Reopen the file and append a command to restore v:this_session,
2450 * as if this save never happened. This is to avoid conflicts with
2451 * the user's own sessions. FIXME: It's probably less hackish to add
2452 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2453 */
2454 if (!failed)
2455 {
2456 FILE *fd;
2457
2458 fd = open_exfile(filename, TRUE, APPENDBIN);
2459
2460 failed = (fd == NULL
2461 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2462 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2463
2464 if (fd != NULL && fclose(fd) != 0)
2465 failed = TRUE;
2466
2467 if (failed)
2468 mch_remove(filename);
2469 }
2470
2471 return !failed;
2472}
2473
2474/*
2475 * "save_yourself" signal handler. Initiate an interaction to ask the user
2476 * for confirmation if necessary. Save the current editing session and tell
2477 * the session manager how to restart Vim.
2478 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 static gboolean
2480sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002481 gint phase UNUSED,
2482 GnomeSaveStyle save_style UNUSED,
2483 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002485 gboolean fast UNUSED,
2486 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487{
2488 static const char suffix[] = "-session.vim";
2489 char *session_file;
2490 unsigned int len;
2491 gboolean success;
2492
2493 /* Always request an interaction if possible. check_changed_any()
2494 * won't actually show a dialog unless any buffers have been modified.
2495 * There doesn't seem to be an obvious way to check that without
2496 * automatically firing the dialog. Anyway, it works just fine. */
2497 if (interact_style == GNOME_INTERACT_ANY)
2498 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2499 &sm_client_check_changed_any,
2500 NULL);
2501 out_flush();
2502 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2503
2504 /* The path is unique for each session save. We do neither know nor care
2505 * which session script will actually be used later. This decision is in
2506 * the domain of the session manager. */
2507 session_file = gnome_config_get_real_path(
2508 gnome_client_get_config_prefix(client));
2509 len = strlen(session_file);
2510
2511 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2512 --len; /* get rid of the superfluous trailing '/' */
2513
2514 session_file = g_renew(char, session_file, len + sizeof(suffix));
2515 memcpy(session_file + len, suffix, sizeof(suffix));
2516
2517 success = write_session_file((char_u *)session_file);
2518
2519 if (success)
2520 {
2521 const char *argv[8];
2522 int i;
2523
2524 /* Tell the session manager how to wipe out the stored session data.
2525 * This isn't as dangerous as it looks, don't worry :) session_file
2526 * is a unique absolute filename. Usually it'll be something like
2527 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2528 i = 0;
2529 argv[i++] = "rm";
2530 argv[i++] = session_file;
2531 argv[i] = NULL;
2532
2533 gnome_client_set_discard_command(client, i, (char **)argv);
2534
2535 /* Tell the session manager how to restore the just saved session.
2536 * This is easily done thanks to Vim's -S option. Pass the -f flag
2537 * since there's no need to fork -- it might even cause confusion.
2538 * Also pass the window role to give the WM something to match on.
2539 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2540 i = 0;
2541 argv[i++] = restart_command;
2542 argv[i++] = "-f";
2543 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 argv[i++] = "--role";
2545 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 argv[i++] = "-S";
2547 argv[i++] = session_file;
2548 argv[i] = NULL;
2549
2550 gnome_client_set_restart_command(client, i, (char **)argv);
2551 gnome_client_set_clone_command(client, 0, NULL);
2552 }
2553
2554 g_free(session_file);
2555
2556 return success;
2557}
2558
2559/*
2560 * Called when the session manager wants us to die. There isn't much to save
2561 * here since "save_yourself" has been emitted before (unless serious trouble
2562 * is happening).
2563 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002565sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566{
2567 /* Don't write messages to the GUI anymore */
2568 full_screen = FALSE;
2569
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002570 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002571 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002572 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 preserve_exit();
2574}
2575
2576/*
2577 * Connect our signal handlers to be notified on session save and shutdown.
2578 */
2579 static void
2580setup_save_yourself(void)
2581{
2582 GnomeClient *client;
2583
2584 client = gnome_master_client();
2585
2586 if (client != NULL)
2587 {
2588 /* Must use the deprecated gtk_signal_connect() for compatibility
2589 * with GNOME 1. Arrgh, zombies! */
2590 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2591 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2592 gtk_signal_connect(GTK_OBJECT(client), "die",
2593 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2594 }
2595}
2596
2597#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2598
2599# ifdef USE_XSMP
2600/*
2601 * GTK tells us that XSMP needs attention
2602 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002604local_xsmp_handle_requests(
2605 GIOChannel *source UNUSED,
2606 GIOCondition condition,
2607 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608{
2609 if (condition == G_IO_IN)
2610 {
2611 /* Do stuff; maybe close connection */
2612 if (xsmp_handle_requests() == FAIL)
2613 g_io_channel_unref((GIOChannel *)data);
2614 return TRUE;
2615 }
2616 /* Error */
2617 g_io_channel_unref((GIOChannel *)data);
2618 xsmp_close();
2619 return TRUE;
2620}
2621# endif /* USE_XSMP */
2622
2623/*
2624 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2625 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2626 */
2627 static void
2628setup_save_yourself(void)
2629{
2630 Atom *existing_atoms = NULL;
2631 int count = 0;
2632
Bram Moolenaar98921892016-02-23 17:14:37 +01002633# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 if (xsmp_icefd != -1)
2635 {
2636 /*
2637 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2638 * set up GTK IO monitor
2639 */
2640 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2641
2642 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2643 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002644 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 }
2646 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002647# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 {
2649 /* Fall back to old method */
2650
2651 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002652# if GTK_CHECK_VERSION(3,0,0)
2653 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2654
2655 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2656 GDK_WINDOW_XID(mainwin_win),
2657 &existing_atoms, &count))
2658# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2660 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2661 &existing_atoms, &count))
Bram Moolenaar98921892016-02-23 17:14:37 +01002662# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 {
2664 Atom *new_atoms;
2665 Atom save_yourself_xatom;
2666 int i;
2667
2668 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2669
2670 /* check if WM_SAVE_YOURSELF isn't there yet */
2671 for (i = 0; i < count; ++i)
2672 if (existing_atoms[i] == save_yourself_xatom)
2673 break;
2674
2675 if (i == count)
2676 {
2677 /* allocate an Atoms array which is one item longer */
2678 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2679 * sizeof(Atom)));
2680 if (new_atoms != NULL)
2681 {
2682 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2683 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002684# if GTK_CHECK_VERSION(3,0,0)
2685 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2686 GDK_WINDOW_XID(mainwin_win),
2687# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2689 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002690# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 new_atoms, count + 1);
2692 vim_free(new_atoms);
2693 }
2694 }
2695 XFree(existing_atoms);
2696 }
2697 }
2698}
2699
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700/*
2701 * Installing a global event filter seems to be the only way to catch
2702 * client messages of type WM_PROTOCOLS without overriding GDK's own
2703 * client message event filter. Well, that's still better than trying
2704 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 *
2706 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2707 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2708 * I have the nasty feeling modern session managers just don't send this
2709 * deprecated message anymore. Addition: confirmed by several people.
2710 *
2711 * The GNOME session support is much cooler anyway. Unlike this ugly
2712 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2713 * it should work with KDE as well.
2714 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002716global_event_filter(GdkXEvent *xev,
2717 GdkEvent *event UNUSED,
2718 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719{
2720 XEvent *xevent = (XEvent *)xev;
2721
2722 if (xevent != NULL
2723 && xevent->type == ClientMessage
2724 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002725 && (long_u)xevent->xclient.data.l[0]
2726 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 {
2728 out_flush();
2729 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2730 /*
2731 * Set the window's WM_COMMAND property, to let the window manager
2732 * know we are done saving ourselves. We don't want to be
2733 * restarted, thus set argv to NULL.
2734 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002735# if GTK_CHECK_VERSION(3,0,0)
2736 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2737 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
2738# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2740 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002741# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 NULL, 0);
2743 return GDK_FILTER_REMOVE;
2744 }
2745
2746 return GDK_FILTER_CONTINUE;
2747}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2749
2750
2751/*
2752 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2753 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002755mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756{
2757/* If you get an error message here, you still need to unpack the runtime
2758 * archive! */
2759#ifdef magick
2760# undef magick
2761#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 /* A bit hackish, but avoids casting later and allows optimization */
2763# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764#define magick vim32x32
2765#include "../runtime/vim32x32.xpm"
2766#undef magick
2767#define magick vim16x16
2768#include "../runtime/vim16x16.xpm"
2769#undef magick
2770#define magick vim48x48
2771#include "../runtime/vim48x48.xpm"
2772#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774
Bram Moolenaar98921892016-02-23 17:14:37 +01002775#if GTK_CHECK_VERSION(3,0,0)
2776 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2777#endif
2778
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 /* When started with "--echo-wid" argument, write window ID on stdout. */
2780 if (echo_wid_arg)
2781 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002782#if GTK_CHECK_VERSION(3,0,0)
2783 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
2784#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002786#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 fflush(stdout);
2788 }
2789
2790 if (vim_strchr(p_go, GO_ICON) != NULL)
2791 {
2792 /*
2793 * Add an icon to the main window. For fun and convenience of the user.
2794 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 GList *icons = NULL;
2796
2797 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2798 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2799 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2800
2801 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2802
2803 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2804 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 }
2806
2807#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2808 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810#endif
2811 /* Setup to indicate to the window manager that we want to catch the
2812 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2813 * manager instead. */
2814#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2815 if (using_gnome)
2816#endif
2817 setup_save_yourself();
2818
2819#ifdef FEAT_CLIENTSERVER
2820 if (serverName == NULL && serverDelayedStartName != NULL)
2821 {
2822 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002823# if GTK_CHECK_VERSION(3,0,0)
2824 commWindow = GDK_WINDOW_XID(mainwin_win);
2825
2826 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2827 serverDelayedStartName);
2828# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
2830
2831 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2832 serverDelayedStartName);
Bram Moolenaar98921892016-02-23 17:14:37 +01002833# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 }
2835 else
2836 {
2837 /*
2838 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2839 * have to change the "server" registration to that of the main window
2840 * If we have not registered a name yet, remember the window
2841 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002842# if GTK_CHECK_VERSION(3,0,0)
2843 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2844 GDK_WINDOW_XID(mainwin_win));
2845# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2847 GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002848# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 }
2850 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002851# if GTK_CHECK_VERSION(3,0,0)
2852 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2853 G_CALLBACK(property_event), NULL);
2854# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
2856 GTK_SIGNAL_FUNC(property_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01002857# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858#endif
2859}
2860
2861 static GdkCursor *
2862create_blank_pointer(void)
2863{
2864 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002865#if GTK_CHECK_VERSION(3,0,0)
2866 GdkPixbuf *blank_mask;
2867#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002871#if GTK_CHECK_VERSION(3,0,0)
2872 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2873#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 GdkColor color = { 0, 0, 0, 0 };
2875 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002876#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877
2878#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01002879# if GTK_CHECK_VERSION(3,12,0)
2880 {
2881 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2882 GdkScreen * const scrn = gdk_window_get_screen(win);
2883 root_window = gdk_screen_get_root_window(scrn);
2884 }
2885# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 root_window = gtk_widget_get_root_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002887# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888#endif
2889
2890 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2891 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002892#if GTK_CHECK_VERSION(3,0,0)
2893 {
2894 cairo_surface_t *surf;
2895 cairo_t *cr;
2896
2897 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2898 cr = cairo_create(surf);
2899
Bram Moolenaar36edf062016-07-21 22:10:12 +02002900 cairo_set_source_rgba(cr,
2901 color.red,
2902 color.green,
2903 color.blue,
2904 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002905 cairo_rectangle(cr, 0, 0, 1, 1);
2906 cairo_fill(cr);
2907 cairo_destroy(cr);
2908
2909 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2910 cairo_surface_destroy(surf);
2911
2912 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2913 blank_mask, 0, 0);
2914 g_object_unref(blank_mask);
2915 }
2916#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2918 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2919 &color, &color, 0, 0);
2920 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002921#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922
2923 return cursor;
2924}
2925
2926#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 static void
2928mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002929 GdkScreen *previous_screen UNUSED,
2930 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931{
2932 if (!gtk_widget_has_screen(widget))
2933 return;
2934
2935 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002936 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 */
2938 if (gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01002939# if GTK_CHECK_VERSION(3,0,0)
2940 g_object_unref(G_OBJECT(gui.blank_pointer));
2941# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002943# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944
2945 gui.blank_pointer = create_blank_pointer();
2946
Bram Moolenaar98921892016-02-23 17:14:37 +01002947# if GTK_CHECK_VERSION(3,0,0)
2948 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2949 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2950 gui.blank_pointer);
2951# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 if (gui.pointer_hidden && gui.drawarea->window != NULL)
2953 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002954# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955
2956 /*
2957 * Create a new PangoContext for this screen, and initialize it
2958 * with the current font if necessary.
2959 */
2960 if (gui.text_context != NULL)
2961 g_object_unref(gui.text_context);
2962
2963 gui.text_context = gtk_widget_create_pango_context(widget);
2964 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2965
2966 if (gui.norm_font != NULL)
2967 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002968 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar04a9d452006-03-27 21:03:26 +00002969 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 }
2971}
2972#endif /* HAVE_GTK_MULTIHEAD */
2973
2974/*
2975 * After the drawing area comes up, we calculate all colors and create the
2976 * dummy blank cursor.
2977 *
2978 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2979 * fact that the main VIM engine doesn't take them into account anywhere.
2980 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002982drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983{
2984 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002985#if GTK_CHECK_VERSION(3,0,0)
2986 GtkAllocation allocation;
2987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988
2989#ifdef FEAT_XIM
2990 xim_init();
2991#endif
2992 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002993#if GTK_CHECK_VERSION(3,0,0)
2994 gui.surface = gdk_window_create_similar_surface(
2995 gtk_widget_get_window(widget),
2996 CAIRO_CONTENT_COLOR_ALPHA,
2997 gtk_widget_get_allocated_width(widget),
2998 gtk_widget_get_allocated_height(widget));
2999#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01003001#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002
3003 gui.blank_pointer = create_blank_pointer();
3004 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01003005#if GTK_CHECK_VERSION(3,0,0)
3006 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
3007#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 gdk_window_set_cursor(widget->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003009#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010
3011 /* get the actual size of the scrollbars, if they are realized */
3012 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
3013 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
3014 && firstwin->w_scrollbars[SBAR_RIGHT].id))
3015 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003016#if GTK_CHECK_VERSION(3,0,0)
3017 gtk_widget_get_allocation(sbar, &allocation);
3018 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
3019 gui.scrollbar_width = allocation.width;
3020#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
3022 gui.scrollbar_width = sbar->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003023#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024
3025 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003026#if GTK_CHECK_VERSION(3,0,0)
3027 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
3028 gui.scrollbar_height = allocation.height;
3029#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
3031 gui.scrollbar_height = sbar->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01003032#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033}
3034
3035/*
3036 * Properly clean up on shutdown.
3037 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003039drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040{
3041 /* Don't write messages to the GUI anymore */
3042 full_screen = FALSE;
3043
3044#ifdef FEAT_XIM
3045 im_shutdown();
3046#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 if (gui.ascii_glyphs != NULL)
3048 {
3049 pango_glyph_string_free(gui.ascii_glyphs);
3050 gui.ascii_glyphs = NULL;
3051 }
3052 if (gui.ascii_font != NULL)
3053 {
3054 g_object_unref(gui.ascii_font);
3055 gui.ascii_font = NULL;
3056 }
3057 g_object_unref(gui.text_context);
3058 gui.text_context = NULL;
3059
Bram Moolenaar98921892016-02-23 17:14:37 +01003060#if GTK_CHECK_VERSION(3,0,0)
3061 if (gui.surface != NULL)
3062 {
3063 cairo_surface_destroy(gui.surface);
3064 gui.surface = NULL;
3065 }
3066#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067 g_object_unref(gui.text_gc);
3068 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003069#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070
Bram Moolenaar98921892016-02-23 17:14:37 +01003071#if GTK_CHECK_VERSION(3,0,0)
3072 g_object_unref(G_OBJECT(gui.blank_pointer));
3073#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003075#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077}
3078
Bram Moolenaara859f042016-11-17 19:11:55 +01003079#if GTK_CHECK_VERSION(3,22,2)
3080 static void
3081drawarea_style_updated_cb(GtkWidget *widget UNUSED,
3082 gpointer data UNUSED)
3083#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003085drawarea_style_set_cb(GtkWidget *widget UNUSED,
3086 GtkStyle *previous_style UNUSED,
3087 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01003088#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089{
3090 gui_mch_new_colors();
3091}
3092
Bram Moolenaar98921892016-02-23 17:14:37 +01003093#if GTK_CHECK_VERSION(3,0,0)
3094 static gboolean
3095drawarea_configure_event_cb(GtkWidget *widget,
3096 GdkEventConfigure *event,
3097 gpointer data UNUSED)
3098{
3099 static int cur_width = 0;
3100 static int cur_height = 0;
3101
3102 g_return_val_if_fail(event
3103 && event->width >= 1 && event->height >= 1, TRUE);
3104
Bram Moolenaar182707a2016-11-21 20:55:58 +01003105# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01003106 /* As of 3.22.2, GdkWindows have started distributing configure events to
3107 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
3108 *
3109 * As can be seen from the implementation of move_native_children() and
3110 * configure_native_child() in gdkwindow.c, those functions actually
3111 * propagate configure events to every child, failing to distinguish
3112 * "native" one from non-native one.
3113 *
3114 * Naturally, configure events propagated to here like that are fallacious
3115 * and, as a matter of fact, they trigger a geometric collapse of
3116 * gui.drawarea in fullscreen and miximized modes.
3117 *
3118 * To filter out such nuisance events, we are making use of the fact that
3119 * the field send_event of such GdkEventConfigures is set to FALSE in
3120 * configure_native_child().
3121 *
3122 * Obviously, this is a terrible hack making GVim depend on GTK's
3123 * implementation details. Therefore, watch out any relevant internal
3124 * changes happening in GTK in the feature (sigh).
3125 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01003126 /* Follow-up
3127 * After a few weeks later, the GdkWindow change mentioned above was
3128 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
3129 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01003130 if (event->send_event == FALSE)
3131 return TRUE;
3132# endif
3133
Bram Moolenaar98921892016-02-23 17:14:37 +01003134 if (event->width == cur_width && event->height == cur_height)
3135 return TRUE;
3136
3137 cur_width = event->width;
3138 cur_height = event->height;
3139
3140 if (gui.surface != NULL)
3141 cairo_surface_destroy(gui.surface);
3142
3143 gui.surface = gdk_window_create_similar_surface(
3144 gtk_widget_get_window(widget),
3145 CAIRO_CONTENT_COLOR_ALPHA,
3146 event->width, event->height);
3147
3148 gtk_widget_queue_draw(widget);
3149
3150 return TRUE;
3151}
3152#endif
3153
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154/*
3155 * Callback routine for the "delete_event" signal on the toplevel window.
3156 * Tries to vim gracefully, or refuses to exit with changed buffers.
3157 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003159delete_event_cb(GtkWidget *widget UNUSED,
3160 GdkEventAny *event UNUSED,
3161 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162{
3163 gui_shell_closed();
3164 return TRUE;
3165}
3166
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003167#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
3168 static int
3169get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
3170{
3171 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
3172
Bram Moolenaar98921892016-02-23 17:14:37 +01003173# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003174 if (using_gnome && widget != NULL)
3175 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003176 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003177 BonoboDockItem *dockitem;
3178
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003179 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003180 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
3181 {
3182 /* Only menu & toolbar are dock items. Could tabline be?
3183 * Seem to be only the 2 defined in GNOME */
3184 widget = parent;
3185 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003186
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003187 if (dockitem == NULL || dockitem->is_floating)
3188 return 0;
3189 item_orientation = bonobo_dock_item_get_orientation(dockitem);
3190 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003191 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003192# endif
3193# if GTK_CHECK_VERSION(3,0,0)
3194 if (widget != NULL
3195 && item_orientation == orientation
3196 && gtk_widget_get_realized(widget)
3197 && gtk_widget_get_visible(widget))
3198# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003199 if (widget != NULL
3200 && item_orientation == orientation
3201 && GTK_WIDGET_REALIZED(widget)
3202 && GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01003203# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003204 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003205# if GTK_CHECK_VERSION(3,0,0)
3206 GtkAllocation allocation;
3207
3208 gtk_widget_get_allocation(widget, &allocation);
3209
3210 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3211 return allocation.height;
3212 else
3213 return allocation.width;
3214# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003215 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3216 return widget->allocation.height;
3217 else
3218 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003219# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003220 }
3221 return 0;
3222}
3223#endif
3224
3225 static int
3226get_menu_tool_width(void)
3227{
3228 int width = 0;
3229
3230#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3231# ifdef FEAT_MENU
3232 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3233# endif
3234# ifdef FEAT_TOOLBAR
3235 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3236# endif
3237# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003238 if (gui.tabline != NULL)
3239 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003240# endif
3241#endif
3242
3243 return width;
3244}
3245
3246 static int
3247get_menu_tool_height(void)
3248{
3249 int height = 0;
3250
3251#ifdef FEAT_MENU
3252 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3253#endif
3254#ifdef FEAT_TOOLBAR
3255 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3256#endif
3257#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003258 if (gui.tabline != NULL)
3259 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003260#endif
3261
3262 return height;
3263}
3264
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003265/* This controls whether we can set the real window hints at
3266 * start-up when in a GtkPlug.
3267 * 0 = normal processing (default)
3268 * 1 = init. hints set, no-one's tried to reset since last check
3269 * 2 = init. hints set, attempt made to change hints
3270 */
3271static int init_window_hints_state = 0;
3272
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003273 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003274update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003275{
3276 static int old_width = 0;
3277 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003278 static int old_min_width = 0;
3279 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003280 static int old_char_width = 0;
3281 static int old_char_height = 0;
3282
3283 int width;
3284 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003285 int min_width;
3286 int min_height;
3287
3288 /* At start-up, don't try to set the hints until the initial
3289 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003290 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003291 */
3292 if (!(force_width && force_height) && init_window_hints_state > 0)
3293 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003294 /* Don't do it! */
3295 init_window_hints_state = 2;
3296 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003297 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003298
3299 /* This also needs to be done when the main window isn't there yet,
3300 * otherwise the hints don't work. */
3301 width = gui_get_base_width();
3302 height = gui_get_base_height();
3303# ifdef FEAT_MENU
3304 height += tabline_height() * gui.char_height;
3305# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003306 width += get_menu_tool_width();
3307 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003308
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003309 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003310 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003311 * 'set columns=' or init. -geom) we briefly set the min. to the size
3312 * we wish to be instead of the legitimate minimum so that we actually
3313 * resize correctly.
3314 */
3315 if (force_width && force_height)
3316 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003317 min_width = force_width;
3318 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003319 }
3320 else
3321 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003322 min_width = width + MIN_COLUMNS * gui.char_width;
3323 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003324 }
3325
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003326 /* Avoid an expose event when the size didn't change. */
3327 if (width != old_width
3328 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003329 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003330 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003331 || gui.char_width != old_char_width
3332 || gui.char_height != old_char_height)
3333 {
3334 GdkGeometry geometry;
3335 GdkWindowHints geometry_mask;
3336
3337 geometry.width_inc = gui.char_width;
3338 geometry.height_inc = gui.char_height;
3339 geometry.base_width = width;
3340 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003341 geometry.min_width = min_width;
3342 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003343 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3344 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003345 /* Using gui.formwin as geometry widget doesn't work as expected
3346 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3347 * in Vim confuse GTK+. */
3348 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3349 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003350 old_width = width;
3351 old_height = height;
3352 old_min_width = min_width;
3353 old_min_height = min_height;
3354 old_char_width = gui.char_width;
3355 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003356 }
3357}
3358
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359#ifdef FEAT_TOOLBAR
3360
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361/*
3362 * This extra effort wouldn't be necessary if we only used stock icons in the
3363 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3364 * shouldn't be treated differently, thus we do need this.
3365 */
3366 static void
3367icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3368{
3369 if (GTK_IS_IMAGE(widget))
3370 {
3371 GtkImage *image = (GtkImage *)widget;
3372
Bram Moolenaar98921892016-02-23 17:14:37 +01003373# if GTK_CHECK_VERSION(3,10,0)
3374 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3375 {
3376 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3377 const gchar *icon_name;
3378
3379 gtk_image_get_icon_name(image, &icon_name, NULL);
3380
3381 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3382 }
3383# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 /* User-defined icons are stored in a GtkIconSet */
3385 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3386 {
3387 GtkIconSet *icon_set;
3388 GtkIconSize icon_size;
3389
3390 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3391 icon_size = (GtkIconSize)(long)user_data;
3392
3393 gtk_icon_set_ref(icon_set);
3394 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3395 gtk_icon_set_unref(icon_set);
3396 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003397# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 }
3399 else if (GTK_IS_CONTAINER(widget))
3400 {
3401 gtk_container_foreach((GtkContainer *)widget,
3402 &icon_size_changed_foreach,
3403 user_data);
3404 }
3405}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406
3407 static void
3408set_toolbar_style(GtkToolbar *toolbar)
3409{
3410 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 GtkIconSize size;
3412 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3415 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3416 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003417 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3419 style = GTK_TOOLBAR_BOTH;
3420 else if (toolbar_flags & TOOLBAR_TEXT)
3421 style = GTK_TOOLBAR_TEXT;
3422 else
3423 style = GTK_TOOLBAR_ICONS;
3424
3425 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003426# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003428# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 switch (tbis_flags)
3431 {
3432 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3433 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3434 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3435 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003436 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3437 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 default: size = GTK_ICON_SIZE_INVALID; break;
3439 }
3440 oldsize = gtk_toolbar_get_icon_size(toolbar);
3441
3442 if (size == GTK_ICON_SIZE_INVALID)
3443 {
3444 /* Let global user preferences decide the icon size. */
3445 gtk_toolbar_unset_icon_size(toolbar);
3446 size = gtk_toolbar_get_icon_size(toolbar);
3447 }
3448 if (size != oldsize)
3449 {
3450 gtk_container_foreach(GTK_CONTAINER(toolbar),
3451 &icon_size_changed_foreach,
3452 GINT_TO_POINTER((int)size));
3453 }
3454 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455}
3456
3457#endif /* FEAT_TOOLBAR */
3458
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003459#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3460static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003461static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003462# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003463static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003464# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003465static int clicked_page; /* page clicked in tab line */
3466
3467/*
3468 * Handle selecting an item in the tab line popup menu.
3469 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003470 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003471tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003472{
Bram Moolenaara5621492006-02-25 21:55:24 +00003473 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003474 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003475}
3476
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003477 static void
3478add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3479{
3480 GtkWidget *item;
3481 char_u *utf_text;
3482
3483 utf_text = CONVERT_TO_UTF8(text);
3484 item = gtk_menu_item_new_with_label((const char *)utf_text);
3485 gtk_widget_show(item);
3486 CONVERT_TO_UTF8_FREE(utf_text);
3487
3488 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003489# if GTK_CHECK_VERSION(3,0,0)
3490 g_signal_connect(G_OBJECT(item), "activate",
3491 G_CALLBACK(tabline_menu_handler),
3492 GINT_TO_POINTER(resp));
3493# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003494 gtk_signal_connect(GTK_OBJECT(item), "activate",
3495 GTK_SIGNAL_FUNC(tabline_menu_handler),
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003496 (gpointer)(long)resp);
Bram Moolenaar98921892016-02-23 17:14:37 +01003497# endif
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003498}
3499
Bram Moolenaara5621492006-02-25 21:55:24 +00003500/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003501 * Create a menu for the tab line.
3502 */
3503 static GtkWidget *
3504create_tabline_menu(void)
3505{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003506 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003507
3508 menu = gtk_menu_new();
Bram Moolenaar7098ee52015-06-09 19:14:24 +02003509 if (first_tabpage->tp_next != NULL)
3510 add_tabline_menu_item(menu, (char_u *)_("Close tab"),
3511 TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003512 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3513 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003514
3515 return menu;
3516}
3517
3518 static gboolean
3519on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3520{
3521 /* Was this button press event ? */
3522 if (event->type == GDK_BUTTON_PRESS)
3523 {
3524 GdkEventButton *bevent = (GdkEventButton *)event;
3525 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003526 int y = bevent->y;
3527 GtkWidget *tabwidget;
3528 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003529
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003530 /* When ignoring events return TRUE so that the selected page doesn't
3531 * change. */
3532 if (hold_gui_events
3533# ifdef FEAT_CMDWIN
3534 || cmdwin_type != 0
3535# endif
3536 )
3537 return TRUE;
3538
Bram Moolenaar98921892016-02-23 17:14:37 +01003539# if GTK_CHECK_VERSION(3,0,0)
3540 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
3541# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003542 tabwin = gdk_window_at_pointer(&x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003543# endif
3544
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003545 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003546# if GTK_CHECK_VERSION(3,0,0)
3547 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3548 "tab_num"));
3549# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003550 clicked_page = (int)(long)gtk_object_get_user_data(
3551 GTK_OBJECT(tabwidget));
Bram Moolenaar98921892016-02-23 17:14:37 +01003552# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003553
3554 /* If the event was generated for 3rd button popup the menu. */
3555 if (bevent->button == 3)
3556 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003557# if GTK_CHECK_VERSION(3,22,2)
3558 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3559# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003560 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3561 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003562# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003563 /* We handled the event. */
3564 return TRUE;
3565 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003566 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003567 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003568 if (clicked_page == 0)
3569 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003570 /* Click after all tabs moves to next tab page. When "x" is
3571 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003572 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003573 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003574 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003575 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003576
Bram Moolenaara5621492006-02-25 21:55:24 +00003577 /* We didn't handle the event. */
3578 return FALSE;
3579}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003580
3581/*
3582 * Handle selecting one of the tabs.
3583 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003584 static void
3585on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003586 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003587# if GTK_CHECK_VERSION(3,0,0)
3588 gpointer *page UNUSED,
3589# else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003590 GtkNotebookPage *page UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003591# endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00003592 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003593 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003594{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003595 if (!ignore_tabline_evt)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003596 {
Bram Moolenaara3f41662010-07-11 19:01:06 +02003597 send_tabline_event(idx + 1);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003598 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003599}
3600
3601/*
3602 * Show or hide the tabline.
3603 */
3604 void
3605gui_mch_show_tabline(int showit)
3606{
3607 if (gui.tabline == NULL)
3608 return;
3609
3610 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3611 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003612 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003613 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003614 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003615 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003616# if GTK_CHECK_VERSION(3,0,0)
3617 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
3618# else
Bram Moolenaar96351572006-05-05 21:16:59 +00003619 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01003620# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003621 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003622
3623 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003624}
3625
3626/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003627 * Return TRUE when tabline is displayed.
3628 */
3629 int
3630gui_mch_showing_tabline(void)
3631{
3632 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003633 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003634}
3635
3636/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003637 * Update the labels of the tabline.
3638 */
3639 void
3640gui_mch_update_tabline(void)
3641{
3642 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003643 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003644 GtkWidget *label;
3645 tabpage_T *tp;
3646 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003647 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003648 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003649 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003650
3651 if (gui.tabline == NULL)
3652 return;
3653
3654 ignore_tabline_evt = TRUE;
3655
3656 /* Add a label for each tab page. They all contain the same text area. */
3657 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3658 {
3659 if (tp == curtab)
3660 curtabidx = nr;
3661
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003662 tab_num = nr + 1;
3663
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003664 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3665 if (page == NULL)
3666 {
3667 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003668# if GTK_CHECK_VERSION(3,2,0)
3669 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3670 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3671# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003672 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003673# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003674 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003675 event_box = gtk_event_box_new();
3676 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003677 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003678# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003679 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003680# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003681 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003682 gtk_widget_show(label);
3683 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3684 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003685 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003686 nr++);
3687 }
3688
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003689 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003690# if GTK_CHECK_VERSION(3,0,0)
3691 g_object_set_data(G_OBJECT(event_box), "tab_num",
3692 GINT_TO_POINTER(tab_num));
3693# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003694 gtk_object_set_user_data(GTK_OBJECT(event_box),
3695 (gpointer)(long)tab_num);
Bram Moolenaar98921892016-02-23 17:14:37 +01003696# endif
3697# if GTK_CHECK_VERSION(3,0,0)
3698 label = gtk_bin_get_child(GTK_BIN(event_box));
3699# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003700 label = GTK_BIN(event_box)->child;
Bram Moolenaar98921892016-02-23 17:14:37 +01003701# endif
Bram Moolenaar57657d82006-04-21 22:12:41 +00003702 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003703 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003704 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003705 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003706
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003707 get_tabline_label(tp, TRUE);
3708 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003709# if GTK_CHECK_VERSION(3,0,0)
3710 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3711# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003712 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3713 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003714# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003715 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003716 }
3717
3718 /* Remove any old labels. */
3719 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3720 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3721
Bram Moolenaar98921892016-02-23 17:14:37 +01003722# if GTK_CHECK_VERSION(3,0,0)
3723 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3724 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3725# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003726 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003727 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar98921892016-02-23 17:14:37 +01003728# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003729
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003730 /* Make sure everything is in place before drawing text. */
3731 gui_mch_update();
3732
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003733 ignore_tabline_evt = FALSE;
3734}
3735
3736/*
3737 * Set the current tab to "nr". First tab is 1.
3738 */
3739 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003740gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003741{
3742 if (gui.tabline == NULL)
3743 return;
3744
3745 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003746# if GTK_CHECK_VERSION(3,0,0)
3747 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3748 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3749# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003750 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003751 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01003752# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003753 ignore_tabline_evt = FALSE;
3754}
3755
3756#endif /* FEAT_GUI_TABLINE */
3757
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003759 * Add selection targets for PRIMARY and CLIPBOARD selections.
3760 */
3761 void
3762gui_gtk_set_selection_targets(void)
3763{
3764 int i, j = 0;
3765 int n_targets = N_SELECTION_TARGETS;
3766 GtkTargetEntry targets[N_SELECTION_TARGETS];
3767
3768 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3769 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003770 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003771 * return something, instead of trying another target. Therefore only
3772 * offer TARGET_HTML when it works. */
3773 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3774 n_targets--;
3775 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003776 targets[j++] = selection_targets[i];
3777 }
3778
3779 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3780 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3781 gtk_selection_add_targets(gui.drawarea,
3782 (GdkAtom)GDK_SELECTION_PRIMARY,
3783 targets, n_targets);
3784 gtk_selection_add_targets(gui.drawarea,
3785 (GdkAtom)clip_plus.gtk_sel_atom,
3786 targets, n_targets);
3787}
3788
3789/*
3790 * Set up for receiving DND items.
3791 */
3792 void
3793gui_gtk_set_dnd_targets(void)
3794{
3795 int i, j = 0;
3796 int n_targets = N_DND_TARGETS;
3797 GtkTargetEntry targets[N_DND_TARGETS];
3798
3799 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3800 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003801 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003802 n_targets--;
3803 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003804 targets[j++] = dnd_targets[i];
3805 }
3806
3807 gtk_drag_dest_unset(gui.drawarea);
3808 gtk_drag_dest_set(gui.drawarea,
3809 GTK_DEST_DEFAULT_ALL,
3810 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003811 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003812}
3813
3814/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3816 * Returns OK for success, FAIL when the GUI can't be started.
3817 */
3818 int
3819gui_mch_init(void)
3820{
3821 GtkWidget *vbox;
3822
3823#ifdef FEAT_GUI_GNOME
3824 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3825 * exits on failure, but that's a non-issue because we already called
3826 * gtk_init_check() in gui_mch_init_check(). */
3827 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003828 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3830 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003831# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003832 {
3833 char *p = setlocale(LC_NUMERIC, NULL);
3834
3835 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3836 * init may change it. */
3837 if (p == NULL || strcmp(p, "C") != 0)
3838 setlocale(LC_NUMERIC, "C");
3839 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003840# endif
3841 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842#endif
3843 vim_free(gui_argv);
3844 gui_argv = NULL;
3845
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003846#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 /* Set the human-readable application name */
3848 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003849#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850 /*
3851 * Force UTF-8 output no matter what the value of 'encoding' is.
3852 * did_set_string_option() in option.c prohibits changing 'termencoding'
3853 * to something else than UTF-8 if the GUI is in use.
3854 */
3855 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3856
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003857#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003859#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3861 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003862#if !GTK_CHECK_VERSION(3,0,0)
3863# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003865# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866#endif
3867
3868 /* Initialize values */
3869 gui.border_width = 2;
3870 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3871 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003872#if GTK_CHECK_VERSION(3,0,0)
3873 gui.fgcolor = g_new(GdkRGBA, 1);
3874 gui.bgcolor = g_new(GdkRGBA, 1);
3875 gui.spcolor = g_new(GdkRGBA, 1);
3876#else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003877 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003879 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003881 /* LINTED: avoid warning: conversion to 'unsigned long' */
3882 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003883#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884
3885 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003886 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888
3889 /* Set default foreground and background colors. */
3890 gui.norm_pixel = gui.def_norm_pixel;
3891 gui.back_pixel = gui.def_back_pixel;
3892
3893 if (gtk_socket_id != 0)
3894 {
3895 GtkWidget *plug;
3896
3897 /* Use GtkSocket from another app. */
3898#ifdef HAVE_GTK_MULTIHEAD
3899 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3900 gtk_socket_id);
3901#else
3902 plug = gtk_plug_new(gtk_socket_id);
3903#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003904#if GTK_CHECK_VERSION(3,0,0)
3905 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
3906#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01003908#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 {
3910 gui.mainwin = plug;
3911 }
3912 else
3913 {
3914 g_warning("Connection to GTK+ socket (ID %u) failed",
3915 (unsigned int)gtk_socket_id);
3916 /* Pretend we never wanted it if it failed (get own window) */
3917 gtk_socket_id = 0;
3918 }
3919 }
3920
3921 if (gtk_socket_id == 0)
3922 {
3923#ifdef FEAT_GUI_GNOME
3924 if (using_gnome)
3925 {
3926 gui.mainwin = gnome_app_new("Vim", NULL);
3927# ifdef USE_XSMP
3928 /* Use the GNOME save-yourself functionality now. */
3929 xsmp_close();
3930# endif
3931 }
3932 else
3933#endif
3934 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3935 }
3936
3937 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3938
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 /* Create the PangoContext used for drawing all text. */
3940 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3941 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942
Bram Moolenaar98921892016-02-23 17:14:37 +01003943#if GTK_CHECK_VERSION(3,0,0)
3944 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
3945#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003947#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3949
Bram Moolenaar98921892016-02-23 17:14:37 +01003950#if GTK_CHECK_VERSION(3,0,0)
3951 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3952 G_CALLBACK(&delete_event_cb), NULL);
3953
3954 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3955 G_CALLBACK(&mainwin_realize), NULL);
3956#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3958 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3959
3960 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3961 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003962#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963#ifdef HAVE_GTK_MULTIHEAD
3964 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
3965 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
3966#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 gui.accel_group = gtk_accel_group_new();
3968 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003970 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003971#if GTK_CHECK_VERSION(3,2,0)
3972 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3973 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3974#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003976#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977
3978#ifdef FEAT_GUI_GNOME
3979 if (using_gnome)
3980 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003981# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 /* automagically restore menubar/toolbar placement */
3983 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3984# endif
3985 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3986 }
3987 else
3988#endif
3989 {
3990 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3991 gtk_widget_show(vbox);
3992 }
3993
3994#ifdef FEAT_MENU
3995 /*
3996 * Create the menubar and handle
3997 */
3998 gui.menubar = gtk_menu_bar_new();
3999 gtk_widget_set_name(gui.menubar, "vim-menubar");
4000
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004001 /* Avoid that GTK takes <F10> away from us. */
4002 {
4003 GtkSettings *gtk_settings;
4004
4005 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
4006 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
4007 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004008
4009
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010# ifdef FEAT_GUI_GNOME
4011 if (using_gnome)
4012 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 BonoboDockItem *dockitem;
4014
4015 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
4016 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4017 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00004018 /* We don't want the menu to float. */
4019 bonobo_dock_item_set_behavior(dockitem,
4020 bonobo_dock_item_get_behavior(dockitem)
4021 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 }
4024 else
4025# endif /* FEAT_GUI_GNOME */
4026 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00004027 /* Always show the menubar, otherwise <F10> doesn't work. It may be
4028 * disabled in gui_init() later. */
4029 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
4031 }
4032#endif /* FEAT_MENU */
4033
4034#ifdef FEAT_TOOLBAR
4035 /*
4036 * Create the toolbar and handle
4037 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01004039# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004040 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004041 /* N.B. Since the default value of GtkToolbar::button-relief is
4042 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
4043# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 gtk_rc_parse_string(
4045 "style \"vim-toolbar-style\" {\n"
4046 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
4047 "}\n"
4048 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01004049# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 gui.toolbar = gtk_toolbar_new();
4051 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4053
4054# ifdef FEAT_GUI_GNOME
4055 if (using_gnome)
4056 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 BonoboDockItem *dockitem;
4058
4059 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
4060 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4061 GNOME_APP_TOOLBAR_NAME);
4062 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004063 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00004064 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004065 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00004066 bonobo_dock_item_get_behavior(dockitem)
4067 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 }
4070 else
4071# endif /* FEAT_GUI_GNOME */
4072 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
4074 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4075 gtk_widget_show(gui.toolbar);
4076 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
4077 }
4078#endif /* FEAT_TOOLBAR */
4079
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004080#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004081 /*
4082 * Use a Notebook for the tab pages labels. The labels are hidden by
4083 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004084 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004085 gui.tabline = gtk_notebook_new();
4086 gtk_widget_show(gui.tabline);
4087 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
4088 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
4089 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004090 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004091# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00004092 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004093# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004094
Bram Moolenaar98921892016-02-23 17:14:37 +01004095# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004096 tabline_tooltip = gtk_tooltips_new();
4097 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01004098# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004099
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004100 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004101 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004102
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004103 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004104# if GTK_CHECK_VERSION(3,2,0)
4105 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
4106 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
4107# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004108 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004109# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004110 gtk_widget_show(page);
4111 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
4112 label = gtk_label_new("-Empty-");
4113 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004114 event_box = gtk_event_box_new();
4115 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01004116# if GTK_CHECK_VERSION(3,0,0)
4117 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
4118# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00004119 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L);
Bram Moolenaar98921892016-02-23 17:14:37 +01004120# endif
4121# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00004122 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01004123# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004124 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004125 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004126 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00004127
Bram Moolenaar98921892016-02-23 17:14:37 +01004128# if GTK_CHECK_VERSION(3,0,0)
4129 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
4130 G_CALLBACK(on_select_tab), NULL);
4131# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004132 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004133 GTK_SIGNAL_FUNC(on_select_tab), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004134# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004135
4136 /* Create a popup menu for the tab line and connect it. */
4137 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01004138# if GTK_CHECK_VERSION(3,0,0)
4139 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
4140 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
4141# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004142 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004143 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01004144# endif
4145#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004146
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004148#if GTK_CHECK_VERSION(3,0,0)
4149 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
4150#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004152#endif
4153#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01004155#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156
4157 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaara859f042016-11-17 19:11:55 +01004158#if GTK_CHECK_VERSION(3,22,2)
4159 gtk_widget_set_name(gui.drawarea, "vim-gui-drawarea");
4160#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004161#if GTK_CHECK_VERSION(3,0,0)
4162 gui.surface = NULL;
4163 gui.by_signal = FALSE;
4164#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165
4166 /* Determine which events we will filter. */
4167 gtk_widget_set_events(gui.drawarea,
4168 GDK_EXPOSURE_MASK |
4169 GDK_ENTER_NOTIFY_MASK |
4170 GDK_LEAVE_NOTIFY_MASK |
4171 GDK_BUTTON_PRESS_MASK |
4172 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 GDK_KEY_PRESS_MASK |
4175 GDK_KEY_RELEASE_MASK |
4176 GDK_POINTER_MOTION_MASK |
4177 GDK_POINTER_MOTION_HINT_MASK);
4178
4179 gtk_widget_show(gui.drawarea);
4180 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
4181 gtk_widget_show(gui.formwin);
4182 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
4183
4184 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
4185 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004186#if GTK_CHECK_VERSION(3,0,0)
4187 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4188 : G_OBJECT(gui.drawarea),
4189 "key-press-event",
4190 G_CALLBACK(key_press_event), NULL);
4191#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
4193 : GTK_OBJECT(gui.drawarea),
4194 "key_press_event",
4195 GTK_SIGNAL_FUNC(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004196#endif
4197#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 /* Also forward key release events for the benefit of GTK+ 2 input
4199 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
4200 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4201 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01004202 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 G_CALLBACK(&key_release_event), NULL);
4204#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004205#if GTK_CHECK_VERSION(3,0,0)
4206 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
4207 G_CALLBACK(drawarea_realize_cb), NULL);
4208 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
4209 G_CALLBACK(drawarea_unrealize_cb), NULL);
4210 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
4211 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaara859f042016-11-17 19:11:55 +01004212# if GTK_CHECK_VERSION(3,22,2)
4213 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
4214 G_CALLBACK(&drawarea_style_updated_cb), NULL);
4215# else
Bram Moolenaar98921892016-02-23 17:14:37 +01004216 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
4217 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaara859f042016-11-17 19:11:55 +01004218# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004219#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
4221 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
4222 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
4223 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
4224
4225 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
4226 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004227#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228
Bram Moolenaar98921892016-02-23 17:14:37 +01004229#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01004231#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232
4233#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
4234 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
4235 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
4236#endif
4237
4238 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004239 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01004240#if GTK_CHECK_VERSION(3,0,0)
4241 gtk_widget_set_can_focus(gui.drawarea, TRUE);
4242#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01004244#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245
4246 /*
4247 * Set clipboard specific atoms
4248 */
4249 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
4252 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
4253
4254 /*
4255 * Start out by adding the configured border width into the border offset.
4256 */
4257 gui.border_offset = gui.border_width;
4258
Bram Moolenaar98921892016-02-23 17:14:37 +01004259#if GTK_CHECK_VERSION(3,0,0)
4260 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
4261 G_CALLBACK(draw_event), NULL);
4262#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
4264 GTK_SIGNAL_FUNC(visibility_event), NULL);
4265 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
4266 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004267#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268
4269 /*
4270 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
4271 * Only needed for some window managers.
4272 */
4273 if (vim_strchr(p_go, GO_POINTER) != NULL)
4274 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004275#if GTK_CHECK_VERSION(3,0,0)
4276 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4277 G_CALLBACK(leave_notify_event), NULL);
4278 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4279 G_CALLBACK(enter_notify_event), NULL);
4280#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
4282 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
4283 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
4284 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004285#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 }
4287
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004288 /* Real windows can get focus ... GtkPlug, being a mere container can't,
4289 * only its widgets. Arguably, this could be common code and we not use
4290 * the window focus at all, but let's be safe.
4291 */
4292 if (gtk_socket_id == 0)
4293 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004294#if GTK_CHECK_VERSION(3,0,0)
4295 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4296 G_CALLBACK(focus_out_event), NULL);
4297 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4298 G_CALLBACK(focus_in_event), NULL);
4299#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004300 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
4301 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4302 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
4303 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004304#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004305 }
4306 else
4307 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004308#if GTK_CHECK_VERSION(3,0,0)
4309 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4310 G_CALLBACK(focus_out_event), NULL);
4311 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4312 G_CALLBACK(focus_in_event), NULL);
4313#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004314 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
4315 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4316 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
4317 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004318#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004319#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004320# if GTK_CHECK_VERSION(3,0,0)
4321 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4322 G_CALLBACK(focus_out_event), NULL);
4323 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4324 G_CALLBACK(focus_in_event), NULL);
4325# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004326 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
4327 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4328 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
4329 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004330# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004331#endif /* FEAT_GUI_TABLINE */
4332 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333
Bram Moolenaar98921892016-02-23 17:14:37 +01004334#if GTK_CHECK_VERSION(3,0,0)
4335 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4336 G_CALLBACK(motion_notify_event), NULL);
4337 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4338 G_CALLBACK(button_press_event), NULL);
4339 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4340 G_CALLBACK(button_release_event), NULL);
4341 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4342 G_CALLBACK(&scroll_event), NULL);
4343#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
4345 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
4346 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
4347 GTK_SIGNAL_FUNC(button_press_event), NULL);
4348 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
4349 GTK_SIGNAL_FUNC(button_release_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
4351 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004352#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353
4354 /*
4355 * Add selection handler functions.
4356 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004357#if GTK_CHECK_VERSION(3,0,0)
4358 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4359 G_CALLBACK(selection_clear_event), NULL);
4360 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4361 G_CALLBACK(selection_received_cb), NULL);
4362#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
4364 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
4365 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
4366 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004367#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368
Bram Moolenaara76638f2010-06-05 12:49:46 +02004369 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370
Bram Moolenaar98921892016-02-23 17:14:37 +01004371#if GTK_CHECK_VERSION(3,0,0)
4372 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4373 G_CALLBACK(selection_get_cb), NULL);
4374#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
4376 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004377#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378
4379 /* Pretend we don't have input focus, we will get an event if we do. */
4380 gui.in_focus = FALSE;
4381
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 return OK;
4383}
4384
4385#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4386/*
4387 * This is called from gui_start() after a fork() has been done.
4388 * We have to tell the session manager our new PID.
4389 */
4390 void
4391gui_mch_forked(void)
4392{
4393 if (using_gnome)
4394 {
4395 GnomeClient *client;
4396
4397 client = gnome_master_client();
4398
4399 if (client != NULL)
4400 gnome_client_set_process_id(client, getpid());
4401 }
4402}
4403#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4404
Bram Moolenaar98921892016-02-23 17:14:37 +01004405#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004406 static GdkRGBA
4407color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004408{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004409 GdkRGBA rgba;
4410 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4411 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4412 rgba.blue = ((color & 0xff)) / 255.0;
4413 rgba.alpha = 1.0;
4414 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004415}
4416
4417 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004418set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004419{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004420 const GdkRGBA rgba = color_to_rgba(color);
4421 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004422}
4423#endif /* GTK_CHECK_VERSION(3,0,0) */
4424
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425/*
4426 * Called when the foreground or background color has been changed.
4427 * This used to change the graphics contexts directly but we are
4428 * currently manipulating them where desired.
4429 */
4430 void
4431gui_mch_new_colors(void)
4432{
Bram Moolenaar98921892016-02-23 17:14:37 +01004433#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaara859f042016-11-17 19:11:55 +01004434# if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar98921892016-02-23 17:14:37 +01004435 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaara859f042016-11-17 19:11:55 +01004436# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004437
4438 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
4439#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01004441#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 {
Bram Moolenaara859f042016-11-17 19:11:55 +01004443#if GTK_CHECK_VERSION(3,22,2)
4444 GtkStyleContext * const context
4445 = gtk_widget_get_style_context(gui.drawarea);
4446 GtkCssProvider * const provider = gtk_css_provider_new();
4447 gchar * const css = g_strdup_printf(
4448 "widget#vim-gui-drawarea {\n"
4449 " background-color: #%.2lx%.2lx%.2lx;\n"
4450 "}\n",
4451 (gui.back_pixel >> 16) & 0xff,
4452 (gui.back_pixel >> 8) & 0xff,
4453 gui.back_pixel & 0xff);
4454
4455 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4456 gtk_style_context_add_provider(context,
4457 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4458
4459 g_free(css);
4460 g_object_unref(provider);
4461#elif GTK_CHECK_VERSION(3,4,0) /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar36edf062016-07-21 22:10:12 +02004462 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004463
Bram Moolenaar36edf062016-07-21 22:10:12 +02004464 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004465 {
4466 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004467 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004468 if (pat != NULL)
4469 {
4470 gdk_window_set_background_pattern(da_win, pat);
4471 cairo_pattern_destroy(pat);
4472 }
4473 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004474 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004475 }
4476#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 GdkColor color = { 0, 0, 0, 0 };
4478
4479 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004480# if GTK_CHECK_VERSION(3,0,0)
4481 gdk_window_set_background(da_win, &color);
4482# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 gdk_window_set_background(gui.drawarea->window, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01004484# endif
Bram Moolenaara859f042016-11-17 19:11:55 +01004485#endif /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 }
4487}
4488
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489/*
4490 * This signal informs us about the need to rearrange our sub-widgets.
4491 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004493form_configure_event(GtkWidget *widget UNUSED,
4494 GdkEventConfigure *event,
4495 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004497 int usable_height = event->height;
4498
Bram Moolenaar182707a2016-11-21 20:55:58 +01004499#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01004500 /* As of 3.22.2, GdkWindows have started distributing configure events to
4501 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4502 *
4503 * As can be seen from the implementation of move_native_children() and
4504 * configure_native_child() in gdkwindow.c, those functions actually
4505 * propagate configure events to every child, failing to distinguish
4506 * "native" one from non-native one.
4507 *
4508 * Naturally, configure events propagated to here like that are fallacious
4509 * and, as a matter of fact, they trigger a geometric collapse of
4510 * gui.formwin.
4511 *
4512 * To filter out such fallacious events, check if the given event is the
4513 * one that was sent out to the right place. Ignore it if not.
4514 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01004515 /* Follow-up
4516 * After a few weeks later, the GdkWindow change mentioned above was
4517 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4518 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01004519 if (event->window != gtk_widget_get_window(gui.formwin))
4520 return TRUE;
4521#endif
4522
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004523 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4524 * no. of char-heights), so we have to manually sanitise them.
4525 * Widths seem to sort themselves out, don't ask me why.
4526 */
4527 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004528 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004529
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004531 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 gtk_form_thaw(GTK_FORM(gui.formwin));
4533
4534 return TRUE;
4535}
4536
4537/*
4538 * Function called when window already closed.
4539 * We can't do much more here than to trying to preserve what had been done,
4540 * since the window is already inevitably going away.
4541 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004542#if GTK_CHECK_VERSION(3,0,0)
4543 static void
4544mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
4545#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004547mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar98921892016-02-23 17:14:37 +01004548#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549{
4550 /* Don't write messages to the GUI anymore */
4551 full_screen = FALSE;
4552
4553 gui.mainwin = NULL;
4554 gui.drawarea = NULL;
4555
4556 if (!exiting) /* only do anything if the destroy was unexpected */
4557 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004558 vim_strncpy(IObuff,
4559 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4560 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 preserve_exit();
4562 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004563#ifdef USE_GRESOURCE
4564 gui_gtk_unregister_resource();
4565#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566}
4567
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004568
4569/*
4570 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4571 * hints (and thus the required size from -geom), but that after that we
4572 * put the hints back to normal (the actual minimum size) so we may
4573 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaar49325942007-05-10 19:19:59 +00004574 * plug's window 'min hints to set *it's* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004575 * only way we have of making ourselves bigger (by set lines/columns).
4576 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004577 * second after the final attempt to reset the real minimum hints (done by
4578 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004579 * We'll not let the default hints be set while this timer's active.
4580 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004581 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004582check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004583{
4584 if (init_window_hints_state == 1)
4585 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004586 /* Safe to use normal hints now */
4587 init_window_hints_state = 0;
4588 update_window_manager_hints(0, 0);
4589 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004590 }
4591
4592 /* Keep on trying */
4593 init_window_hints_state = 1;
4594 return TRUE;
4595}
4596
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597/*
4598 * Open the GUI window which was created by a call to gui_mch_init().
4599 */
4600 int
4601gui_mch_open(void)
4602{
4603 guicolor_T fg_pixel = INVALCOLOR;
4604 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004605 guint pixel_width;
4606 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 /*
4609 * Allow setting a window role on the command line, or invent one
4610 * if none was specified. This is mainly useful for GNOME session
4611 * support; allowing the WM to restore window placement.
4612 */
4613 if (role_argument != NULL)
4614 {
4615 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4616 }
4617 else
4618 {
4619 char *role;
4620
4621 /* Invent a unique-enough ID string for the role */
4622 role = g_strdup_printf("vim-%u-%u-%u",
4623 (unsigned)mch_get_pid(),
4624 (unsigned)g_random_int(),
4625 (unsigned)time(NULL));
4626
4627 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4628 g_free(role);
4629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630
4631 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633
4634 /* Determine user specified geometry, if present. */
4635 if (gui.geom != NULL)
4636 {
4637 int mask;
4638 unsigned int w, h;
4639 int x = 0;
4640 int y = 0;
4641
4642 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4643
4644 if (mask & WidthValue)
4645 Columns = w;
4646 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004647 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004648 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004649 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004651 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004652 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004653
4654 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4655 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4656
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004657 pixel_width += get_menu_tool_width();
4658 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004659
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004661 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004662 int ww, hh;
4663 gui_mch_get_screen_dimensions(&ww, &hh);
4664 hh += p_ghr + get_menu_tool_height();
4665 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004666 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004667 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004668 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004669 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004671 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 vim_free(gui.geom);
4673 gui.geom = NULL;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004674
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004675 /* From now until everyone's stopped trying to set the window hints
4676 * to their correct minimum values, stop them being set as we need
4677 * them to remain at our required size for the parent GtkSocket to
4678 * give us the right initial size.
4679 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004680 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004681 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004682 update_window_manager_hints(pixel_width, pixel_height);
4683 init_window_hints_state = 1;
4684 g_timeout_add(1000, check_startup_plug_hints, NULL);
4685 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 }
4687
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004688 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4689 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004690 /* For GTK2 changing the size of the form widget doesn't cause window
4691 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004692 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004693 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004694 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695
4696 if (foreground_argument != NULL)
4697 fg_pixel = gui_get_color((char_u *)foreground_argument);
4698 if (fg_pixel == INVALCOLOR)
4699 fg_pixel = gui_get_color((char_u *)"Black");
4700
4701 if (background_argument != NULL)
4702 bg_pixel = gui_get_color((char_u *)background_argument);
4703 if (bg_pixel == INVALCOLOR)
4704 bg_pixel = gui_get_color((char_u *)"White");
4705
4706 if (found_reverse_arg)
4707 {
4708 gui.def_norm_pixel = bg_pixel;
4709 gui.def_back_pixel = fg_pixel;
4710 }
4711 else
4712 {
4713 gui.def_norm_pixel = fg_pixel;
4714 gui.def_back_pixel = bg_pixel;
4715 }
4716
4717 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4718 * in a vimrc file) */
4719 set_normal_colors();
4720
4721 /* Check that none of the colors are the same as the background color */
4722 gui_check_colors();
4723
4724 /* Get the colors for the highlight groups (gui_check_colors() might have
4725 * changed them). */
4726 highlight_gui_started(); /* re-init colors and fonts */
4727
Bram Moolenaar98921892016-02-23 17:14:37 +01004728#if GTK_CHECK_VERSION(3,0,0)
4729 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4730 G_CALLBACK(mainwin_destroy_cb), NULL);
4731#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
4733 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004734#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735
4736#ifdef FEAT_HANGULIN
4737 hangul_keyboard_set();
4738#endif
4739
4740 /*
4741 * Notify the fixed area about the need to resize the contents of the
4742 * gui.formwin, which we use for random positioning of the included
4743 * components.
4744 *
4745 * We connect this signal deferred finally after anything is in place,
4746 * since this is intended to handle resizements coming from the window
4747 * manager upon us and should not interfere with what VIM is requesting
4748 * upon startup.
4749 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004750#if GTK_CHECK_VERSION(3,0,0)
4751 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4752 G_CALLBACK(form_configure_event), NULL);
4753#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
4755 GTK_SIGNAL_FUNC(form_configure_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004756#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757
4758#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004759 /* Set up for receiving DND items. */
4760 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761
Bram Moolenaar98921892016-02-23 17:14:37 +01004762# if GTK_CHECK_VERSION(3,0,0)
4763 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4764 G_CALLBACK(drag_data_received_cb), NULL);
4765# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
4767 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004768# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769#endif
4770
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004772 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 if (found_iconic_arg && gtk_socket_id == 0)
4774 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775
4776 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004777#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778 unsigned long menu_handler = 0;
4779# ifdef FEAT_TOOLBAR
4780 unsigned long tool_handler = 0;
4781# endif
4782 /*
4783 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4784 * show when restoring the saved layout configuration. We can't just
4785 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4786 * a toplevel window and thus will be realized immediately. Instead,
4787 * connect signal handlers to hide the widgets just after they've been
4788 * marked visible, but before the main window is realized.
4789 */
4790 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4791 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4792 G_CALLBACK(&gtk_widget_hide),
4793 NULL);
4794# ifdef FEAT_TOOLBAR
4795 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4796 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4797 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4798 G_CALLBACK(&gtk_widget_hide),
4799 NULL);
4800# endif
4801#endif
4802 gtk_widget_show(gui.mainwin);
4803
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004804#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 if (menu_handler != 0)
4806 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4807# ifdef FEAT_TOOLBAR
4808 if (tool_handler != 0)
4809 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4810# endif
4811#endif
4812 }
4813
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 return OK;
4815}
4816
4817
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004819gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820{
4821 if (gui.mainwin != NULL)
4822 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823}
4824
4825/*
4826 * Get the position of the top left corner of the window.
4827 */
4828 int
4829gui_mch_get_winpos(int *x, int *y)
4830{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 return OK;
4833}
4834
4835/*
4836 * Set the position of the top left corner of the window to the given
4837 * coordinates.
4838 */
4839 void
4840gui_mch_set_winpos(int x, int y)
4841{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843}
4844
Bram Moolenaar98921892016-02-23 17:14:37 +01004845#if !GTK_CHECK_VERSION(3,0,0)
4846# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847static int resize_idle_installed = FALSE;
4848/*
4849 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4850 * the shell size doesn't exceed the window size, i.e. if the window manager
4851 * ignored our size request. Usually this happens if the window is maximized.
4852 *
4853 * FIXME: It'd be nice if we could find a little more orthodox solution.
4854 * See also the remark below in gui_mch_set_shellsize().
4855 *
4856 * DISABLED: When doing ":set lines+=1" this function would first invoke
4857 * gui_resize_shell() with the old size, then the normal callback would
4858 * report the new size through form_configure_event(). That caused the window
4859 * layout to be messed up.
4860 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 static gboolean
4862force_shell_resize_idle(gpointer data)
4863{
4864 if (gui.mainwin != NULL
4865 && GTK_WIDGET_REALIZED(gui.mainwin)
4866 && GTK_WIDGET_VISIBLE(gui.mainwin))
4867 {
4868 int width;
4869 int height;
4870
4871 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4872
4873 width -= get_menu_tool_width();
4874 height -= get_menu_tool_height();
4875
4876 gui_resize_shell(width, height);
4877 }
4878
4879 resize_idle_installed = FALSE;
4880 return FALSE; /* don't call me again */
4881}
Bram Moolenaar98921892016-02-23 17:14:37 +01004882# endif
4883#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884
Bram Moolenaar09736232009-09-23 16:14:49 +00004885/*
4886 * Return TRUE if the main window is maximized.
4887 */
4888 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004889gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004890{
Bram Moolenaar98921892016-02-23 17:14:37 +01004891#if GTK_CHECK_VERSION(3,0,0)
4892 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4893 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4894 & GDK_WINDOW_STATE_MAXIMIZED));
4895#else
Bram Moolenaar09736232009-09-23 16:14:49 +00004896 return (gui.mainwin != NULL && gui.mainwin->window != NULL
4897 && (gdk_window_get_state(gui.mainwin->window)
4898 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar98921892016-02-23 17:14:37 +01004899#endif
Bram Moolenaar09736232009-09-23 16:14:49 +00004900}
4901
4902/*
4903 * Unmaximize the main window
4904 */
4905 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004906gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004907{
4908 if (gui.mainwin != NULL)
4909 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4910}
Bram Moolenaar09736232009-09-23 16:14:49 +00004911
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912/*
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004913 * Called when the font changed while the window is maximized. Compute the
4914 * new Rows and Columns. This is like resizing the window.
4915 */
4916 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004917gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004918{
4919 int w, h;
4920
4921 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4922 w -= get_menu_tool_width();
4923 h -= get_menu_tool_height();
4924 gui_resize_shell(w, h);
4925}
4926
4927/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 * Set the windows size.
4929 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 void
4931gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004932 int min_width UNUSED, int min_height UNUSED,
4933 int base_width UNUSED, int base_height UNUSED,
4934 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 /* give GTK+ a chance to put all widget's into place */
4937 gui_mch_update();
4938
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004939 /* this will cause the proper resizement to happen too */
4940 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004941 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004942
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004944 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 * main window instead. */
4946 width += get_menu_tool_width();
4947 height += get_menu_tool_height();
4948
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004949 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004950 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004951 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004952 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953
Bram Moolenaar98921892016-02-23 17:14:37 +01004954# if !GTK_CHECK_VERSION(3,0,0)
4955# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 if (!resize_idle_installed)
4957 {
4958 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4959 &force_shell_resize_idle, NULL, NULL);
4960 resize_idle_installed = TRUE;
4961 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004962# endif
4963# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 /*
4965 * Wait until all events are processed to prevent a crash because the
4966 * real size of the drawing area doesn't reflect Vim's internal ideas.
4967 *
4968 * This is a bit of a hack, since Vim is a terminal application with a GUI
4969 * on top, while the GUI expects to be the boss.
4970 */
4971 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972}
4973
4974
4975/*
4976 * The screen size is used to make sure the initial window doesn't get bigger
4977 * than the screen. This subtracts some room for menubar, toolbar and window
4978 * decorations.
4979 */
4980 void
4981gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4982{
4983#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaara859f042016-11-17 19:11:55 +01004984# if GTK_CHECK_VERSION(3,22,2)
4985 GdkRectangle rect;
4986 GdkMonitor * const mon = gdk_display_get_monitor_at_window(
4987 gtk_widget_get_display(gui.mainwin),
4988 gtk_widget_get_window(gui.mainwin));
4989 gdk_monitor_get_geometry(mon, &rect);
4990
4991 *screen_w = rect.width;
4992 *screen_h = rect.height - p_ghr;
4993# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 GdkScreen* screen;
4995
4996 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
4997 screen = gtk_widget_get_screen(gui.mainwin);
4998 else
4999 screen = gdk_screen_get_default();
5000
5001 *screen_w = gdk_screen_get_width(screen);
5002 *screen_h = gdk_screen_get_height(screen) - p_ghr;
Bram Moolenaara859f042016-11-17 19:11:55 +01005003# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004#else
5005 *screen_w = gdk_screen_width();
5006 /* Subtract 'guiheadroom' from the height to allow some room for the
5007 * window manager (task list and window title bar). */
5008 *screen_h = gdk_screen_height() - p_ghr;
5009#endif
5010
5011 /*
5012 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
5013 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02005014 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 * This should be completely changed later.
5016 */
5017 *screen_w -= get_menu_tool_width();
5018 *screen_h -= get_menu_tool_height();
5019}
5020
5021#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005023gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 if (title != NULL && output_conv.vc_type != CONV_NONE)
5026 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027
5028 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
5029
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 if (output_conv.vc_type != CONV_NONE)
5031 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032}
5033#endif /* FEAT_TITLE */
5034
5035#if defined(FEAT_MENU) || defined(PROTO)
5036 void
5037gui_mch_enable_menu(int showit)
5038{
5039 GtkWidget *widget;
5040
5041# ifdef FEAT_GUI_GNOME
5042 if (using_gnome)
5043 widget = gui.menubar_h;
5044 else
5045# endif
5046 widget = gui.menubar;
5047
Bram Moolenaar18144c82006-04-12 21:52:12 +00005048 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01005049# if GTK_CHECK_VERSION(3,0,0)
5050 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
5051# else
Bram Moolenaar18144c82006-04-12 21:52:12 +00005052 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
Bram Moolenaar98921892016-02-23 17:14:37 +01005053# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 {
5055 if (showit)
5056 gtk_widget_show(widget);
5057 else
5058 gtk_widget_hide(widget);
5059
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005060 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 }
5062}
5063#endif /* FEAT_MENU */
5064
5065#if defined(FEAT_TOOLBAR) || defined(PROTO)
5066 void
5067gui_mch_show_toolbar(int showit)
5068{
5069 GtkWidget *widget;
5070
5071 if (gui.toolbar == NULL)
5072 return;
5073
5074# ifdef FEAT_GUI_GNOME
5075 if (using_gnome)
5076 widget = gui.toolbar_h;
5077 else
5078# endif
5079 widget = gui.toolbar;
5080
5081 if (showit)
5082 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
5083
Bram Moolenaar98921892016-02-23 17:14:37 +01005084# if GTK_CHECK_VERSION(3,0,0)
5085 if (!showit != !gtk_widget_get_visible(widget))
5086# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 if (!showit != !GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01005088# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 {
5090 if (showit)
5091 gtk_widget_show(widget);
5092 else
5093 gtk_widget_hide(widget);
5094
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005095 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 }
5097}
5098#endif /* FEAT_TOOLBAR */
5099
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100/*
5101 * Check if a given font is a CJK font. This is done in a very crude manner. It
5102 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
5103 * font. Consequently, this function cannot be used as a general purpose check
5104 * for CJK-ness for which fontconfig APIs should be used. This is only used by
5105 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
5106 */
5107 static int
5108is_cjk_font(PangoFontDescription *font_desc)
5109{
5110 static const char * const cjk_langs[] =
5111 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
5112
5113 PangoFont *font;
5114 unsigned i;
5115 int is_cjk = FALSE;
5116
5117 font = pango_context_load_font(gui.text_context, font_desc);
5118
5119 if (font == NULL)
5120 return FALSE;
5121
5122 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
5123 {
5124 PangoCoverage *coverage;
5125 gunichar uc;
5126
5127 coverage = pango_font_get_coverage(
5128 font, pango_language_from_string(cjk_langs[i]));
5129
5130 if (coverage != NULL)
5131 {
5132 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
5133 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
5134 pango_coverage_unref(coverage);
5135 }
5136 }
5137
5138 g_object_unref(font);
5139
5140 return is_cjk;
5141}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142
Bram Moolenaar231334e2005-07-25 20:46:57 +00005143/*
5144 * Adjust gui.char_height (after 'linespace' was changed).
5145 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00005147gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 PangoFontMetrics *metrics;
5150 int ascent;
5151 int descent;
5152
5153 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
5154 pango_context_get_language(gui.text_context));
5155 ascent = pango_font_metrics_get_ascent(metrics);
5156 descent = pango_font_metrics_get_descent(metrics);
5157
5158 pango_font_metrics_unref(metrics);
5159
5160 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00005161 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00005162 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
5164
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 /* A not-positive value of char_height may crash Vim. Only happens
5166 * if 'linespace' is negative (which does make sense sometimes). */
5167 gui.char_ascent = MAX(gui.char_ascent, 0);
5168 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5169
5170 return OK;
5171}
5172
Bram Moolenaar98921892016-02-23 17:14:37 +01005173#if GTK_CHECK_VERSION(3,0,0)
5174/* Callback function used in gui_mch_font_dialog() */
5175 static gboolean
5176font_filter(const PangoFontFamily *family,
5177 const PangoFontFace *face UNUSED,
5178 gpointer data UNUSED)
5179{
5180 return pango_font_family_is_monospace((PangoFontFamily *)family);
5181}
5182#endif
5183
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184/*
5185 * Put up a font dialog and return the selected font name in allocated memory.
5186 * "oldval" is the previous value. Return NULL when cancelled.
5187 * This should probably go into gui_gtk.c. Hmm.
5188 * FIXME:
5189 * The GTK2 font selection dialog has no filtering API. So we could either
5190 * a) implement our own (possibly copying the code from somewhere else) or
5191 * b) just live with it.
5192 */
5193 char_u *
5194gui_mch_font_dialog(char_u *oldval)
5195{
5196 GtkWidget *dialog;
5197 int response;
5198 char_u *fontname = NULL;
5199 char_u *oldname;
5200
Bram Moolenaar98921892016-02-23 17:14:37 +01005201#if GTK_CHECK_VERSION(3,2,0)
5202 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
5203 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
5204 NULL, NULL);
5205#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208
5209 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
5210 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
5211
5212 if (oldval != NULL && oldval[0] != NUL)
5213 {
5214 if (output_conv.vc_type != CONV_NONE)
5215 oldname = string_convert(&output_conv, oldval, NULL);
5216 else
5217 oldname = oldval;
5218
5219 /* Annoying bug in GTK (or Pango): if the font name does not include a
5220 * size, zero is used. Use default point size ten. */
5221 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
5222 {
5223 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
5224
5225 if (p != NULL)
5226 {
5227 STRCPY(p + STRLEN(p), " 10");
5228 if (oldname != oldval)
5229 vim_free(oldname);
5230 oldname = p;
5231 }
5232 }
5233
Bram Moolenaar98921892016-02-23 17:14:37 +01005234#if GTK_CHECK_VERSION(3,2,0)
5235 gtk_font_chooser_set_font(
5236 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
5237#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005238 gtk_font_selection_dialog_set_font_name(
5239 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01005240#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241
5242 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005243 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005245 else
Bram Moolenaar98921892016-02-23 17:14:37 +01005246#if GTK_CHECK_VERSION(3,2,0)
5247 gtk_font_chooser_set_font(
5248 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
5249#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005250 gtk_font_selection_dialog_set_font_name(
5251 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01005252#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253
5254 response = gtk_dialog_run(GTK_DIALOG(dialog));
5255
5256 if (response == GTK_RESPONSE_OK)
5257 {
5258 char *name;
5259
Bram Moolenaar98921892016-02-23 17:14:37 +01005260#if GTK_CHECK_VERSION(3,2,0)
5261 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
5262#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 name = gtk_font_selection_dialog_get_font_name(
5264 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01005265#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 if (name != NULL)
5267 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005268 char_u *p;
5269
5270 /* Apparently some font names include a comma, need to escape
5271 * that, because in 'guifont' it separates names. */
5272 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005274 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005275 {
5276 fontname = string_convert(&input_conv, p, NULL);
5277 vim_free(p);
5278 }
5279 else
5280 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 }
5282 }
5283
5284 if (response != GTK_RESPONSE_NONE)
5285 gtk_widget_destroy(dialog);
5286
5287 return fontname;
5288}
5289
5290/*
5291 * Some monospace fonts don't support a bold weight, and fall back
5292 * silently to the regular weight. But this is no good since our text
5293 * drawing function can emulate bold by overstriking. So let's try
5294 * to detect whether bold weight is actually available and emulate it
5295 * otherwise.
5296 *
5297 * Note that we don't need to check for italic style since Xft can
5298 * emulate italic on its own, provided you have a proper fontconfig
5299 * setup. We wouldn't be able to emulate it in Vim anyway.
5300 */
5301 static void
5302get_styled_font_variants(void)
5303{
5304 PangoFontDescription *bold_font_desc;
5305 PangoFont *plain_font;
5306 PangoFont *bold_font;
5307
5308 gui.font_can_bold = FALSE;
5309
5310 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5311
5312 if (plain_font == NULL)
5313 return;
5314
5315 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5316 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5317
5318 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5319 /*
5320 * The comparison relies on the unique handle nature of a PangoFont*,
5321 * i.e. it's assumed that a different PangoFont* won't refer to the
5322 * same font. Seems to work, and failing here isn't critical anyway.
5323 */
5324 if (bold_font != NULL)
5325 {
5326 gui.font_can_bold = (bold_font != plain_font);
5327 g_object_unref(bold_font);
5328 }
5329
5330 pango_font_description_free(bold_font_desc);
5331 g_object_unref(plain_font);
5332}
5333
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334static PangoEngineShape *default_shape_engine = NULL;
5335
5336/*
5337 * Create a map from ASCII characters in the range [32,126] to glyphs
5338 * of the current font. This is used by gui_gtk2_draw_string() to skip
5339 * the itemize and shaping process for the most common case.
5340 */
5341 static void
5342ascii_glyph_table_init(void)
5343{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005344 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 PangoAttrList *attr_list;
5346 GList *item_list;
5347 int i;
5348
5349 if (gui.ascii_glyphs != NULL)
5350 pango_glyph_string_free(gui.ascii_glyphs);
5351 if (gui.ascii_font != NULL)
5352 g_object_unref(gui.ascii_font);
5353
5354 gui.ascii_glyphs = NULL;
5355 gui.ascii_font = NULL;
5356
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005357 /* For safety, fill in question marks for the control characters.
5358 * Put a space between characters to avoid shaping. */
5359 for (i = 0; i < 128; ++i)
5360 {
5361 if (i >= 32 && i < 127)
5362 ascii_chars[2 * i] = i;
5363 else
5364 ascii_chars[2 * i] = '?';
5365 ascii_chars[2 * i + 1] = ' ';
5366 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367
5368 attr_list = pango_attr_list_new();
5369 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5370 0, sizeof(ascii_chars), attr_list, NULL);
5371
5372 if (item_list != NULL && item_list->next == NULL) /* play safe */
5373 {
5374 PangoItem *item;
5375 int width;
5376
5377 item = (PangoItem *)item_list->data;
5378 width = gui.char_width * PANGO_SCALE;
5379
5380 /* Remember the shape engine used for ASCII. */
5381 default_shape_engine = item->analysis.shape_engine;
5382
5383 gui.ascii_font = item->analysis.font;
5384 g_object_ref(gui.ascii_font);
5385
5386 gui.ascii_glyphs = pango_glyph_string_new();
5387
5388 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5389 &item->analysis, gui.ascii_glyphs);
5390
5391 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5392
5393 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5394 {
5395 PangoGlyphGeometry *geom;
5396
5397 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5398 geom->x_offset += MAX(0, width - geom->width) / 2;
5399 geom->width = width;
5400 }
5401 }
5402
5403 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5404 g_list_free(item_list);
5405 pango_attr_list_unref(attr_list);
5406}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407
5408/*
5409 * Initialize Vim to use the font or fontset with the given name.
5410 * Return FAIL if the font could not be loaded, OK otherwise.
5411 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005413gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 PangoFontDescription *font_desc;
5416 PangoLayout *layout;
5417 int width;
5418
5419 /* If font_name is NULL, this means to use the default, which should
5420 * be present on all proper Pango/fontconfig installations. */
5421 if (font_name == NULL)
5422 font_name = (char_u *)DEFAULT_FONT;
5423
5424 font_desc = gui_mch_get_font(font_name, FALSE);
5425
5426 if (font_desc == NULL)
5427 return FAIL;
5428
5429 gui_mch_free_font(gui.norm_font);
5430 gui.norm_font = font_desc;
5431
5432 pango_context_set_font_description(gui.text_context, font_desc);
5433
5434 layout = pango_layout_new(gui.text_context);
5435 pango_layout_set_text(layout, "MW", 2);
5436 pango_layout_get_size(layout, &width, NULL);
5437 /*
5438 * Set char_width to half the width obtained from pango_layout_get_size()
5439 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5440 * Pango to use the same width for both non-CJK characters (e.g. Latin
5441 * letters and numbers) and CJK characters. This results in 's p a c e d
5442 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5443 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5444 * width for CJK fonts.
5445 *
5446 * For related bugs, see:
5447 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5448 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5449 *
5450 * With this, for all four of the following cases, Vim works fine:
5451 * guifont=CJK_fixed_width_font
5452 * guifont=Non_CJK_fixed_font
5453 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5454 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5455 */
5456 if (is_cjk_font(gui.norm_font))
5457 {
5458 int cjk_width;
5459
5460 /* Measure the text extent of U+4E00 and U+4E8C */
5461 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5462 pango_layout_get_size(layout, &cjk_width, NULL);
5463
5464 if (width == cjk_width) /* Xft not patched */
5465 width /= 2;
5466 }
5467 g_object_unref(layout);
5468
5469 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5470
5471 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5472 if (gui.char_width <= 0)
5473 gui.char_width = 8;
5474
Bram Moolenaar231334e2005-07-25 20:46:57 +00005475 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476
5477 /* Set the fontname, which will be used for information purposes */
5478 hl_set_font_name(font_name);
5479
5480 get_styled_font_variants();
5481 ascii_glyph_table_init();
5482
5483 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5484 if (gui.wide_font != NULL
5485 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5486 {
5487 pango_font_description_free(gui.wide_font);
5488 gui.wide_font = NULL;
5489 }
5490
Bram Moolenaare161c792009-11-03 17:13:59 +00005491 if (gui_mch_maximized())
5492 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005493 /* Update lines and columns in accordance with the new font, keep the
5494 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005495 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005496 }
5497 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005498 {
5499 /* Preserve the logical dimensions of the screen. */
5500 update_window_manager_hints(0, 0);
5501 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502
5503 return OK;
5504}
5505
5506/*
5507 * Get a reference to the font "name".
5508 * Return zero for failure.
5509 */
5510 GuiFont
5511gui_mch_get_font(char_u *name, int report_error)
5512{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514
5515 /* can't do this when GUI is not running */
5516 if (!gui.in_use || name == NULL)
5517 return NULL;
5518
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 if (output_conv.vc_type != CONV_NONE)
5520 {
5521 char_u *buf;
5522
5523 buf = string_convert(&output_conv, name, NULL);
5524 if (buf != NULL)
5525 {
5526 font = pango_font_description_from_string((const char *)buf);
5527 vim_free(buf);
5528 }
5529 else
5530 font = NULL;
5531 }
5532 else
5533 font = pango_font_description_from_string((const char *)name);
5534
5535 if (font != NULL)
5536 {
5537 PangoFont *real_font;
5538
5539 /* pango_context_load_font() bails out if no font size is set */
5540 if (pango_font_description_get_size(font) <= 0)
5541 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5542
5543 real_font = pango_context_load_font(gui.text_context, font);
5544
5545 if (real_font == NULL)
5546 {
5547 pango_font_description_free(font);
5548 font = NULL;
5549 }
5550 else
5551 g_object_unref(real_font);
5552 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553
5554 if (font == NULL)
5555 {
5556 if (report_error)
Bram Moolenaarc93e7912008-07-08 10:46:08 +00005557 EMSG2(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 return NULL;
5559 }
5560
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 return font;
5562}
5563
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005564#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005565/*
5566 * Return the name of font "font" in allocated memory.
5567 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005568 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005569gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005570{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005571 if (font != NOFONT)
5572 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005573 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005574
Bram Moolenaar89d40322006-08-29 15:30:07 +00005575 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005576 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005577 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005578
Bram Moolenaar89d40322006-08-29 15:30:07 +00005579 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005580 return s;
5581 }
5582 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005583 return NULL;
5584}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005585#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005586
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587/*
5588 * If a font is not going to be used, free its structure.
5589 */
5590 void
5591gui_mch_free_font(GuiFont font)
5592{
5593 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595}
5596
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005598 * Return the Pixel value (color) for the given color name.
5599 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600 * Return INVALCOLOR for error.
5601 */
5602 guicolor_T
5603gui_mch_get_color(char_u *name)
5604{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605 if (!gui.in_use) /* can't do this when GUI not running */
5606 return INVALCOLOR;
5607
Bram Moolenaar98921892016-02-23 17:14:37 +01005608#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005609 return name != NULL ? gui_get_color_cmn(name) : INVALCOLOR;
Bram Moolenaar98921892016-02-23 17:14:37 +01005610#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005611 guicolor_T color;
5612 GdkColor gcolor;
5613 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614
Bram Moolenaar36edf062016-07-21 22:10:12 +02005615 color = (name != NULL) ? gui_get_color_cmn(name) : INVALCOLOR;
5616 if (color == INVALCOLOR)
5617 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618
Bram Moolenaar36edf062016-07-21 22:10:12 +02005619 gcolor.red = (guint16)(((color & 0xff0000) >> 16) / 255.0 * 65535 + 0.5);
5620 gcolor.green = (guint16)(((color & 0xff00) >> 8) / 255.0 * 65535 + 0.5);
5621 gcolor.blue = (guint16)((color & 0xff) / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622
Bram Moolenaar36edf062016-07-21 22:10:12 +02005623 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5624 &gcolor, FALSE, TRUE);
5625
5626 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5627#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628}
5629
5630/*
5631 * Set the current text foreground color.
5632 */
5633 void
5634gui_mch_set_fg_color(guicolor_T color)
5635{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005636#if GTK_CHECK_VERSION(3,0,0)
5637 *gui.fgcolor = color_to_rgba(color);
5638#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005640#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005641}
5642
5643/*
5644 * Set the current text background color.
5645 */
5646 void
5647gui_mch_set_bg_color(guicolor_T color)
5648{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005649#if GTK_CHECK_VERSION(3,0,0)
5650 *gui.bgcolor = color_to_rgba(color);
5651#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005653#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654}
5655
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005656/*
5657 * Set the current text special color.
5658 */
5659 void
5660gui_mch_set_sp_color(guicolor_T color)
5661{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005662#if GTK_CHECK_VERSION(3,0,0)
5663 *gui.spcolor = color_to_rgba(color);
5664#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005665 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005666#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005667}
5668
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669/*
5670 * Function-like convenience macro for the sake of efficiency.
5671 */
5672#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5673 G_STMT_START{ \
5674 PangoAttribute *tmp_attr_; \
5675 tmp_attr_ = (Attribute); \
5676 tmp_attr_->start_index = (Start); \
5677 tmp_attr_->end_index = (End); \
5678 pango_attr_list_insert((AttrList), tmp_attr_); \
5679 }G_STMT_END
5680
5681 static void
5682apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5683{
5684 char_u *start = NULL;
5685 char_u *p;
5686 int uc;
5687
5688 for (p = s; p < s + len; p += utf_byte2len(*p))
5689 {
5690 uc = utf_ptr2char(p);
5691
5692 if (start == NULL)
5693 {
5694 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5695 start = p;
5696 }
5697 else if (uc < 0x80 /* optimization shortcut */
5698 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5699 {
5700 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5701 attr_list, start - s, p - s);
5702 start = NULL;
5703 }
5704 }
5705
5706 if (start != NULL)
5707 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5708 attr_list, start - s, len);
5709}
5710
5711 static int
5712count_cluster_cells(char_u *s, PangoItem *item,
5713 PangoGlyphString* glyphs, int i,
5714 int *cluster_width,
5715 int *last_glyph_rbearing)
5716{
5717 char_u *p;
5718 int next; /* glyph start index of next cluster */
5719 int start, end; /* string segment of current cluster */
5720 int width; /* real cluster width in Pango units */
5721 int uc;
5722 int cellcount = 0;
5723
5724 width = glyphs->glyphs[i].geometry.width;
5725
5726 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5727 {
5728 if (glyphs->glyphs[next].attr.is_cluster_start)
5729 break;
5730 else if (glyphs->glyphs[next].geometry.width > width)
5731 width = glyphs->glyphs[next].geometry.width;
5732 }
5733
5734 start = item->offset + glyphs->log_clusters[i];
5735 end = item->offset + ((next < glyphs->num_glyphs) ?
5736 glyphs->log_clusters[next] : item->length);
5737
5738 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5739 {
5740 uc = utf_ptr2char(p);
5741 if (uc < 0x80)
5742 ++cellcount;
5743 else if (!utf_iscomposing(uc))
5744 cellcount += utf_char2cells(uc);
5745 }
5746
5747 if (last_glyph_rbearing != NULL
5748 && cellcount > 0 && next == glyphs->num_glyphs)
5749 {
5750 PangoRectangle ink_rect;
5751 /*
5752 * If a certain combining mark had to be taken from a non-monospace
5753 * font, we have to compensate manually by adapting x_offset according
5754 * to the ink extents of the previous glyph.
5755 */
5756 pango_font_get_glyph_extents(item->analysis.font,
5757 glyphs->glyphs[i].glyph,
5758 &ink_rect, NULL);
5759
5760 if (PANGO_RBEARING(ink_rect) > 0)
5761 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5762 }
5763
5764 if (cellcount > 0)
5765 *cluster_width = width;
5766
5767 return cellcount;
5768}
5769
5770/*
5771 * If there are only combining characters in the cluster, we cannot just
5772 * change the width of the previous glyph since there is none. Therefore
5773 * some guesswork is needed.
5774 *
5775 * If ink_rect.x is negative Pango apparently has taken care of the composing
5776 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5777 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005778 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 *
5780 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5781 * the position of the previous glyph. Apparently this happens only with old
5782 * X fonts which don't provide the special combining information needed by
5783 * Pango.
5784 */
5785 static void
5786setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5787 int last_cellcount, int last_cluster_width,
5788 int last_glyph_rbearing)
5789{
5790 PangoRectangle ink_rect;
5791 PangoRectangle logical_rect;
5792 int width;
5793
5794 width = last_cellcount * gui.char_width * PANGO_SCALE;
5795 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5796 glyph->geometry.width = 0;
5797
5798 pango_font_get_glyph_extents(item->analysis.font,
5799 glyph->glyph,
5800 &ink_rect, &logical_rect);
5801 if (ink_rect.x < 0)
5802 {
5803 glyph->geometry.x_offset += last_glyph_rbearing;
5804 glyph->geometry.y_offset = logical_rect.height
5805 - (gui.char_height - p_linespace) * PANGO_SCALE;
5806 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005807 else
5808 /* If the accent width is smaller than the cluster width, position it
5809 * in the middle. */
5810 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811}
5812
Bram Moolenaar98921892016-02-23 17:14:37 +01005813#if GTK_CHECK_VERSION(3,0,0)
5814 static void
5815draw_glyph_string(int row, int col, int num_cells, int flags,
5816 PangoFont *font, PangoGlyphString *glyphs,
5817 cairo_t *cr)
5818#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819 static void
5820draw_glyph_string(int row, int col, int num_cells, int flags,
5821 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005822#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823{
5824 if (!(flags & DRAW_TRANSP))
5825 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005826#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005827 cairo_set_source_rgba(cr,
5828 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5829 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005830 cairo_rectangle(cr,
5831 FILL_X(col), FILL_Y(row),
5832 num_cells * gui.char_width, gui.char_height);
5833 cairo_fill(cr);
5834#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5836
5837 gdk_draw_rectangle(gui.drawarea->window,
5838 gui.text_gc,
5839 TRUE,
5840 FILL_X(col),
5841 FILL_Y(row),
5842 num_cells * gui.char_width,
5843 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005844#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845 }
5846
Bram Moolenaar98921892016-02-23 17:14:37 +01005847#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005848 cairo_set_source_rgba(cr,
5849 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5850 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005851 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5852 pango_cairo_show_glyph_string(cr, font, glyphs);
5853#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5855
5856 gdk_draw_glyphs(gui.drawarea->window,
5857 gui.text_gc,
5858 font,
5859 TEXT_X(col),
5860 TEXT_Y(row),
5861 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005862#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863
5864 /* redraw the contents with an offset of 1 to emulate bold */
5865 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005866#if GTK_CHECK_VERSION(3,0,0)
5867 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005868 cairo_set_source_rgba(cr,
5869 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5870 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005871 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5872 pango_cairo_show_glyph_string(cr, font, glyphs);
5873 }
5874#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875 gdk_draw_glyphs(gui.drawarea->window,
5876 gui.text_gc,
5877 font,
5878 TEXT_X(col) + 1,
5879 TEXT_Y(row),
5880 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005881#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005882}
5883
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005884/*
5885 * Draw underline and undercurl at the bottom of the character cell.
5886 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005887#if GTK_CHECK_VERSION(3,0,0)
5888 static void
5889draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5890#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005891 static void
5892draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005893#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005894{
5895 int i;
5896 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005897 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005898 int y = FILL_Y(row + 1) - 1;
5899
5900 /* Undercurl: draw curl at the bottom of the character cell. */
5901 if (flags & DRAW_UNDERC)
5902 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005903#if GTK_CHECK_VERSION(3,0,0)
5904 cairo_set_line_width(cr, 1.0);
5905 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005906 cairo_set_source_rgba(cr,
5907 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5908 gui.spcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005909 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5910 {
5911 offset = val[i % 8];
5912 cairo_line_to(cr, i, y - offset + 0.5);
5913 }
5914 cairo_stroke(cr);
5915#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005916 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5917 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5918 {
5919 offset = val[i % 8];
5920 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5921 }
5922 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005923#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005924 }
5925
5926 /* Underline: draw a line at the bottom of the character cell. */
5927 if (flags & DRAW_UNDERL)
5928 {
5929 /* When p_linespace is 0, overwrite the bottom row of pixels.
5930 * Otherwise put the line just below the character. */
5931 if (p_linespace > 1)
5932 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005933#if GTK_CHECK_VERSION(3,0,0)
5934 {
5935 cairo_set_line_width(cr, 1.0);
5936 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005937 cairo_set_source_rgba(cr,
5938 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5939 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005940 cairo_move_to(cr, FILL_X(col), y + 0.5);
5941 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5942 cairo_stroke(cr);
5943 }
5944#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005945 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5946 FILL_X(col), y,
5947 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005948#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005949 }
5950}
5951
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952 int
5953gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5954{
5955 GdkRectangle area; /* area for clip mask */
5956 PangoGlyphString *glyphs; /* glyphs of current item */
5957 int column_offset = 0; /* column offset in cells */
5958 int i;
5959 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5960 char_u *new_conv_buf;
5961 int convlen;
5962 char_u *sp, *bp;
5963 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005964#if GTK_CHECK_VERSION(3,0,0)
5965 cairo_t *cr;
5966#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967
Bram Moolenaar98921892016-02-23 17:14:37 +01005968#if GTK_CHECK_VERSION(3,0,0)
5969 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
5970#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971 if (gui.text_context == NULL || gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01005972#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 return len;
5974
5975 if (output_conv.vc_type != CONV_NONE)
5976 {
5977 /*
5978 * Convert characters from 'encoding' to 'termencoding', which is set
5979 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5980 * prohibits changing this to something else than UTF-8 if the GUI is
5981 * in use.
5982 */
5983 convlen = len;
5984 conv_buf = string_convert(&output_conv, s, &convlen);
5985 g_return_val_if_fail(conv_buf != NULL, len);
5986
5987 /* Correct for differences in char width: some chars are
5988 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5989 * compensate for that. */
5990 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5991 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005992 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5994 {
5995 new_conv_buf = alloc(convlen + 2);
5996 if (new_conv_buf == NULL)
5997 return len;
5998 plen += bp - conv_buf;
5999 mch_memmove(new_conv_buf, conv_buf, plen);
6000 new_conv_buf[plen] = ' ';
6001 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
6002 convlen - plen + 1);
6003 vim_free(conv_buf);
6004 conv_buf = new_conv_buf;
6005 ++convlen;
6006 bp = conv_buf + plen;
6007 plen = 1;
6008 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006009 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010 bp += plen;
6011 }
6012 s = conv_buf;
6013 len = convlen;
6014 }
6015
6016 /*
6017 * Restrict all drawing to the current screen line in order to prevent
6018 * fuzzy font lookups from messing up the screen.
6019 */
6020 area.x = gui.border_offset;
6021 area.y = FILL_Y(row);
6022 area.width = gui.num_cols * gui.char_width;
6023 area.height = gui.char_height;
6024
Bram Moolenaar98921892016-02-23 17:14:37 +01006025#if GTK_CHECK_VERSION(3,0,0)
6026 cr = cairo_create(gui.surface);
6027 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
6028 cairo_clip(cr);
6029#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
6031 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01006032#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006033
6034 glyphs = pango_glyph_string_new();
6035
6036 /*
6037 * Optimization hack: If possible, skip the itemize and shaping process
6038 * for pure ASCII strings. This optimization is particularly effective
6039 * because Vim draws space characters to clear parts of the screen.
6040 */
6041 if (!(flags & DRAW_ITALIC)
6042 && !((flags & DRAW_BOLD) && gui.font_can_bold)
6043 && gui.ascii_glyphs != NULL)
6044 {
6045 char_u *p;
6046
6047 for (p = s; p < s + len; ++p)
6048 if (*p & 0x80)
6049 goto not_ascii;
6050
6051 pango_glyph_string_set_size(glyphs, len);
6052
6053 for (i = 0; i < len; ++i)
6054 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02006055 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056 glyphs->log_clusters[i] = i;
6057 }
6058
Bram Moolenaar98921892016-02-23 17:14:37 +01006059#if GTK_CHECK_VERSION(3,0,0)
6060 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
6061#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006063#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064
6065 column_offset = len;
6066 }
6067 else
6068not_ascii:
6069 {
6070 PangoAttrList *attr_list;
6071 GList *item_list;
6072 int cluster_width;
6073 int last_glyph_rbearing;
6074 int cells = 0; /* cells occupied by current cluster */
6075
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006076 /* Safety check: pango crashes when invoked with invalid utf-8
6077 * characters. */
6078 if (!utf_valid_string(s, s + len))
6079 {
6080 column_offset = len;
6081 goto skipitall;
6082 }
6083
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084 /* original width of the current cluster */
6085 cluster_width = PANGO_SCALE * gui.char_width;
6086
6087 /* right bearing of the last non-composing glyph */
6088 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
6089
6090 attr_list = pango_attr_list_new();
6091
6092 /* If 'guifontwide' is set then use that for double-width characters.
6093 * Otherwise just go with 'guifont' and let Pango do its thing. */
6094 if (gui.wide_font != NULL)
6095 apply_wide_font_attr(s, len, attr_list);
6096
6097 if ((flags & DRAW_BOLD) && gui.font_can_bold)
6098 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
6099 attr_list, 0, len);
6100 if (flags & DRAW_ITALIC)
6101 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
6102 attr_list, 0, len);
6103 /*
6104 * Break the text into segments with consistent directional level
6105 * and shaping engine. Pure Latin text needs only a single segment,
6106 * so there's no need to worry about the loop's efficiency. Better
6107 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
6108 */
6109 item_list = pango_itemize(gui.text_context,
6110 (const char *)s, 0, len, attr_list, NULL);
6111
6112 while (item_list != NULL)
6113 {
6114 PangoItem *item;
6115 int item_cells = 0; /* item length in cells */
6116
6117 item = (PangoItem *)item_list->data;
6118 item_list = g_list_delete_link(item_list, item_list);
6119 /*
6120 * Increment the bidirectional embedding level by 1 if it is not
6121 * even. An odd number means the output will be RTL, but we don't
6122 * want that since Vim handles right-to-left text on its own. It
6123 * would probably be sufficient to just set level = 0, but you can
6124 * never know :)
6125 *
6126 * Unfortunately we can't take advantage of Pango's ability to
6127 * render both LTR and RTL at the same time. In order to support
6128 * that, Vim's main screen engine would have to make use of Pango
6129 * functionality.
6130 */
6131 item->analysis.level = (item->analysis.level + 1) & (~1U);
6132
6133 /* HACK: Overrule the shape engine, we don't want shaping to be
6134 * done, because drawing the cursor would change the display. */
6135 item->analysis.shape_engine = default_shape_engine;
6136
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006137#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006138 pango_shape_full((const char *)s + item->offset, item->length,
6139 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006140#else
6141 pango_shape((const char *)s + item->offset, item->length,
6142 &item->analysis, glyphs);
6143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006144 /*
6145 * Fixed-width hack: iterate over the array and assign a fixed
6146 * width to each glyph, thus overriding the choice made by the
6147 * shaping engine. We use utf_char2cells() to determine the
6148 * number of cells needed.
6149 *
6150 * Also perform all kind of dark magic to get composing
6151 * characters right (and pretty too of course).
6152 */
6153 for (i = 0; i < glyphs->num_glyphs; ++i)
6154 {
6155 PangoGlyphInfo *glyph;
6156
6157 glyph = &glyphs->glyphs[i];
6158
6159 if (glyph->attr.is_cluster_start)
6160 {
6161 int cellcount;
6162
6163 cellcount = count_cluster_cells(
6164 s, item, glyphs, i, &cluster_width,
6165 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6166
6167 if (cellcount > 0)
6168 {
6169 int width;
6170
6171 width = cellcount * gui.char_width * PANGO_SCALE;
6172 glyph->geometry.x_offset +=
6173 MAX(0, width - cluster_width) / 2;
6174 glyph->geometry.width = width;
6175 }
6176 else
6177 {
6178 /* If there are only combining characters in the
6179 * cluster, we cannot just change the width of the
6180 * previous glyph since there is none. Therefore
6181 * some guesswork is needed. */
6182 setup_zero_width_cluster(item, glyph, cells,
6183 cluster_width,
6184 last_glyph_rbearing);
6185 }
6186
6187 item_cells += cellcount;
6188 cells = cellcount;
6189 }
6190 else if (i > 0)
6191 {
6192 int width;
6193
6194 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006195 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02006196 * In some circumstances Pango uses a positive x_offset,
6197 * then use the width of the previous glyph for this one
6198 * and set the previous width to zero.
6199 * Otherwise we get a negative x_offset, Pango has already
6200 * positioned the combining char, keep the widths as they
6201 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006202 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02006203 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006204 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006205 {
6206 glyphs->glyphs[i].geometry.width =
6207 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006208 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006209 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006210 width = cells * gui.char_width * PANGO_SCALE;
6211 glyph->geometry.x_offset +=
6212 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213 }
6214 else /* i == 0 "cannot happen" */
6215 {
6216 glyph->geometry.width = 0;
6217 }
6218 }
6219
6220 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01006221#if GTK_CHECK_VERSION(3,0,0)
6222 draw_glyph_string(row, col + column_offset, item_cells,
6223 flags, item->analysis.font, glyphs,
6224 cr);
6225#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006226 draw_glyph_string(row, col + column_offset, item_cells,
6227 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006228#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006229
6230 pango_item_free(item);
6231
6232 column_offset += item_cells;
6233 }
6234
6235 pango_attr_list_unref(attr_list);
6236 }
6237
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006238skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006239 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006240#if GTK_CHECK_VERSION(3,0,0)
6241 draw_under(flags, row, col, column_offset, cr);
6242#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006243 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006244#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006245
6246 pango_glyph_string_free(glyphs);
6247 vim_free(conv_buf);
6248
Bram Moolenaar98921892016-02-23 17:14:37 +01006249#if GTK_CHECK_VERSION(3,0,0)
6250 cairo_destroy(cr);
6251 if (!gui.by_signal)
6252 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
6253 &area, FALSE);
6254#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006255 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006256#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257
6258 return column_offset;
6259}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260
6261/*
6262 * Return OK if the key with the termcap name "name" is supported.
6263 */
6264 int
6265gui_mch_haskey(char_u *name)
6266{
6267 int i;
6268
6269 for (i = 0; special_keys[i].key_sym != 0; i++)
6270 if (name[0] == special_keys[i].code0
6271 && name[1] == special_keys[i].code1)
6272 return OK;
6273 return FAIL;
6274}
6275
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006276#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277/*
6278 * Return the text window-id and display. Only required for X-based GUI's
6279 */
6280 int
6281gui_get_x11_windis(Window *win, Display **dis)
6282{
Bram Moolenaar98921892016-02-23 17:14:37 +01006283#if GTK_CHECK_VERSION(3,0,0)
6284 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6285#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006287#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006289#if GTK_CHECK_VERSION(3,0,0)
6290 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6291 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
6292#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006293 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6294 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006295#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296 return OK;
6297 }
6298
6299 *dis = NULL;
6300 *win = 0;
6301 return FAIL;
6302}
6303#endif
6304
6305#if defined(FEAT_CLIENTSERVER) \
6306 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6307
6308 Display *
6309gui_mch_get_display(void)
6310{
Bram Moolenaar98921892016-02-23 17:14:37 +01006311#if GTK_CHECK_VERSION(3,0,0)
6312 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6313 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6314#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6316 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006317#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318 else
6319 return NULL;
6320}
6321#endif
6322
6323 void
6324gui_mch_beep(void)
6325{
6326#ifdef HAVE_GTK_MULTIHEAD
6327 GdkDisplay *display;
6328
Bram Moolenaar98921892016-02-23 17:14:37 +01006329# if GTK_CHECK_VERSION(3,0,0)
6330 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6331# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006333# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334 display = gtk_widget_get_display(gui.mainwin);
6335 else
6336 display = gdk_display_get_default();
6337
6338 if (display != NULL)
6339 gdk_display_beep(display);
6340#else
6341 gdk_beep();
6342#endif
6343}
6344
6345 void
6346gui_mch_flash(int msec)
6347{
Bram Moolenaar98921892016-02-23 17:14:37 +01006348#if GTK_CHECK_VERSION(3,0,0)
6349 /* TODO Replace GdkGC with Cairo */
6350 (void)msec;
6351#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352 GdkGCValues values;
6353 GdkGC *invert_gc;
6354
6355 if (gui.drawarea->window == NULL)
6356 return;
6357
6358 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6359 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6360 values.function = GDK_XOR;
6361 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6362 &values,
6363 GDK_GC_FOREGROUND |
6364 GDK_GC_BACKGROUND |
6365 GDK_GC_FUNCTION);
6366 gdk_gc_set_exposures(invert_gc,
6367 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6368 /*
6369 * Do a visual beep by changing back and forth in some undetermined way,
6370 * the foreground and background colors. This is due to the fact that
6371 * there can't be really any prediction about the effects of XOR on
6372 * arbitrary X11 servers. However this seems to be enough for what we
6373 * intend it to do.
6374 */
6375 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6376 TRUE,
6377 0, 0,
6378 FILL_X((int)Columns) + gui.border_offset,
6379 FILL_Y((int)Rows) + gui.border_offset);
6380
6381 gui_mch_flush();
6382 ui_delay((long)msec, TRUE); /* wait so many msec */
6383
6384 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6385 TRUE,
6386 0, 0,
6387 FILL_X((int)Columns) + gui.border_offset,
6388 FILL_Y((int)Rows) + gui.border_offset);
6389
6390 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006391#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392}
6393
6394/*
6395 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6396 */
6397 void
6398gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6399{
Bram Moolenaar98921892016-02-23 17:14:37 +01006400#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006401 const GdkRectangle rect = {
6402 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6403 };
6404 cairo_t * const cr = cairo_create(gui.surface);
6405
Bram Moolenaar36edf062016-07-21 22:10:12 +02006406 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006407# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6408 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6409# else
6410 /* Give an implementation for older cairo versions if necessary. */
6411# endif
6412 gdk_cairo_rectangle(cr, &rect);
6413 cairo_fill(cr);
6414
6415 cairo_destroy(cr);
6416
6417 if (!gui.by_signal)
6418 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6419 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006420#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421 GdkGCValues values;
6422 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423
6424 if (gui.drawarea->window == NULL)
6425 return;
6426
Bram Moolenaar89d40322006-08-29 15:30:07 +00006427 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6428 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429 values.function = GDK_XOR;
6430 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6431 &values,
6432 GDK_GC_FOREGROUND |
6433 GDK_GC_BACKGROUND |
6434 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006435 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6436 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006437 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6438 TRUE,
6439 FILL_X(c), FILL_Y(r),
6440 (nc) * gui.char_width, (nr) * gui.char_height);
6441 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006442#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443}
6444
6445/*
6446 * Iconify the GUI window.
6447 */
6448 void
6449gui_mch_iconify(void)
6450{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452}
6453
6454#if defined(FEAT_EVAL) || defined(PROTO)
6455/*
6456 * Bring the Vim window to the foreground.
6457 */
6458 void
6459gui_mch_set_foreground(void)
6460{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462}
6463#endif
6464
6465/*
6466 * Draw a cursor without focus.
6467 */
6468 void
6469gui_mch_draw_hollow_cursor(guicolor_T color)
6470{
6471 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006472#if GTK_CHECK_VERSION(3,0,0)
6473 cairo_t *cr;
6474#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475
Bram Moolenaar98921892016-02-23 17:14:37 +01006476#if GTK_CHECK_VERSION(3,0,0)
6477 if (gtk_widget_get_window(gui.drawarea) == NULL)
6478#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006480#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481 return;
6482
Bram Moolenaar98921892016-02-23 17:14:37 +01006483#if GTK_CHECK_VERSION(3,0,0)
6484 cr = cairo_create(gui.surface);
6485#endif
6486
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487 gui_mch_set_fg_color(color);
6488
Bram Moolenaar98921892016-02-23 17:14:37 +01006489#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006490 cairo_set_source_rgba(cr,
6491 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6492 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006493#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006495#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006496 if (mb_lefthalve(gui.row, gui.col))
6497 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006498#if GTK_CHECK_VERSION(3,0,0)
6499 cairo_set_line_width(cr, 1.0);
6500 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6501 cairo_rectangle(cr,
6502 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6503 i * gui.char_width - 1, gui.char_height - 1);
6504 cairo_stroke(cr);
6505 cairo_destroy(cr);
6506#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6508 FALSE,
6509 FILL_X(gui.col), FILL_Y(gui.row),
6510 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006511#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006512}
6513
6514/*
6515 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6516 * color "color".
6517 */
6518 void
6519gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6520{
Bram Moolenaar98921892016-02-23 17:14:37 +01006521#if GTK_CHECK_VERSION(3,0,0)
6522 if (gtk_widget_get_window(gui.drawarea) == NULL)
6523#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006524 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006525#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006526 return;
6527
6528 gui_mch_set_fg_color(color);
6529
Bram Moolenaar98921892016-02-23 17:14:37 +01006530#if GTK_CHECK_VERSION(3,0,0)
6531 {
6532 cairo_t *cr;
6533
6534 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006535 cairo_set_source_rgba(cr,
6536 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6537 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006538 cairo_rectangle(cr,
6539# ifdef FEAT_RIGHTLEFT
6540 /* vertical line should be on the right of current point */
6541 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6542# endif
6543 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6544 w, h);
6545 cairo_fill(cr);
6546 cairo_destroy(cr);
6547 }
6548#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006549 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6550 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6551 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006552# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553 /* vertical line should be on the right of current point */
6554 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006555# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 FILL_X(gui.col),
6557 FILL_Y(gui.row) + gui.char_height - h,
6558 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006559#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560}
6561
6562
6563/*
6564 * Catch up with any queued X11 events. This may put keyboard input into the
6565 * input buffer, call resize call-backs, trigger timers etc. If there is
6566 * nothing in the X11 event queue (& no timers pending), then we return
6567 * immediately.
6568 */
6569 void
6570gui_mch_update(void)
6571{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006572 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6573 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006574}
6575
Bram Moolenaar98921892016-02-23 17:14:37 +01006576#if GTK_CHECK_VERSION(3,0,0)
6577 static gboolean
6578#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006579 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01006580#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006581input_timer_cb(gpointer data)
6582{
6583 int *timed_out = (int *) data;
6584
Bram Moolenaar49325942007-05-10 19:19:59 +00006585 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586 *timed_out = TRUE;
6587
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588 return FALSE; /* don't happen again */
6589}
6590
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591/*
6592 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6593 * from the keyboard.
6594 * wtime == -1 Wait forever.
6595 * wtime == 0 This should never happen.
6596 * wtime > 0 Wait wtime milliseconds for a character.
6597 * Returns OK if a character was found to be available within the given time,
6598 * or FAIL otherwise.
6599 */
6600 int
6601gui_mch_wait_for_chars(long wtime)
6602{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006603 int focus;
6604 guint timer;
6605 static int timed_out;
6606 int retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006607
6608 timed_out = FALSE;
6609
6610 /* this timeout makes sure that we will return if no characters arrived in
6611 * time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006612 if (wtime > 0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006613#if GTK_CHECK_VERSION(3,0,0)
6614 timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out);
6615#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006616 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01006617#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006618 else
6619 timer = 0;
6620
6621 focus = gui.in_focus;
6622
6623 do
6624 {
6625 /* Stop or start blinking when focus changes */
6626 if (gui.in_focus != focus)
6627 {
6628 if (gui.in_focus)
6629 gui_mch_start_blink();
6630 else
6631 gui_mch_stop_blink();
6632 focus = gui.in_focus;
6633 }
6634
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006635#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006636# ifdef FEAT_TIMERS
6637 did_add_timer = FALSE;
6638# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006639 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006640# ifdef FEAT_TIMERS
6641 if (did_add_timer)
6642 /* Need to recompute the waiting time. */
6643 goto theend;
6644# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006645#endif
6646
Bram Moolenaar071d4272004-06-13 20:20:40 +00006647 /*
6648 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006649 * Skip this if input is available anyway (can happen in rare
6650 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006652 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006653 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654
6655 /* Got char, return immediately */
6656 if (input_available())
6657 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006658 retval = OK;
6659 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660 }
6661 } while (wtime < 0 || !timed_out);
6662
6663 /*
6664 * Flush all eventually pending (drawing) events.
6665 */
6666 gui_mch_update();
6667
Bram Moolenaar4231da42016-06-02 14:30:04 +02006668theend:
6669 if (timer != 0 && !timed_out)
6670#if GTK_CHECK_VERSION(3,0,0)
6671 g_source_remove(timer);
6672#else
6673 gtk_timeout_remove(timer);
6674#endif
6675
6676 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677}
6678
6679
6680/****************************************************************************
6681 * Output drawing routines.
6682 ****************************************************************************/
6683
6684
6685/* Flush any output to the screen */
6686 void
6687gui_mch_flush(void)
6688{
6689#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01006690# if GTK_CHECK_VERSION(3,0,0)
6691 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6692# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006693 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006694# endif
Bram Moolenaarfdadad92016-07-15 17:49:58 +02006695 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006696#else
6697 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
6698#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699}
6700
6701/*
6702 * Clear a rectangular region of the screen from text pos (row1, col1) to
6703 * (row2, col2) inclusive.
6704 */
6705 void
6706gui_mch_clear_block(int row1, int col1, int row2, int col2)
6707{
Bram Moolenaar98921892016-02-23 17:14:37 +01006708#if GTK_CHECK_VERSION(3,0,0)
6709 if (gtk_widget_get_window(gui.drawarea) == NULL)
6710 return;
6711#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712 GdkColor color;
6713
6714 if (gui.drawarea->window == NULL)
6715 return;
6716
6717 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006718#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006719
Bram Moolenaar98921892016-02-23 17:14:37 +01006720#if GTK_CHECK_VERSION(3,0,0)
6721 {
6722 /* Add one pixel to the far right column in case a double-stroked
6723 * bold glyph may sit there. */
6724 const GdkRectangle rect = {
6725 FILL_X(col1), FILL_Y(row1),
6726 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6727 (row2 - row1 + 1) * gui.char_height
6728 };
6729 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6730 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006731# if GTK_CHECK_VERSION(3,22,2)
6732 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6733# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006734 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6735 if (pat != NULL)
6736 cairo_set_source(cr, pat);
6737 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006738 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006739# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006740 gdk_cairo_rectangle(cr, &rect);
6741 cairo_fill(cr);
6742 cairo_destroy(cr);
6743
6744 if (!gui.by_signal)
6745 gdk_window_invalidate_rect(win, &rect, FALSE);
6746 }
6747#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748 gdk_gc_set_foreground(gui.text_gc, &color);
6749
6750 /* Clear one extra pixel at the far right, for when bold characters have
6751 * spilled over to the window border. */
6752 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6753 FILL_X(col1), FILL_Y(row1),
6754 (col2 - col1 + 1) * gui.char_width
6755 + (col2 == Columns - 1),
6756 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006757#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758}
6759
Bram Moolenaar98921892016-02-23 17:14:37 +01006760#if GTK_CHECK_VERSION(3,0,0)
6761 static void
6762gui_gtk_window_clear(GdkWindow *win)
6763{
6764 const GdkRectangle rect = {
6765 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6766 };
6767 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006768# if GTK_CHECK_VERSION(3,22,2)
6769 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6770# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006771 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6772 if (pat != NULL)
6773 cairo_set_source(cr, pat);
6774 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006775 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006776# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006777 gdk_cairo_rectangle(cr, &rect);
6778 cairo_fill(cr);
6779 cairo_destroy(cr);
6780
6781 if (!gui.by_signal)
6782 gdk_window_invalidate_rect(win, &rect, FALSE);
6783}
6784#endif
6785
Bram Moolenaar071d4272004-06-13 20:20:40 +00006786 void
6787gui_mch_clear_all(void)
6788{
Bram Moolenaar98921892016-02-23 17:14:37 +01006789#if GTK_CHECK_VERSION(3,0,0)
6790 if (gtk_widget_get_window(gui.drawarea) != NULL)
6791 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
6792#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006793 if (gui.drawarea->window != NULL)
6794 gdk_window_clear(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006795#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796}
6797
Bram Moolenaar98921892016-02-23 17:14:37 +01006798#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006799/*
6800 * Redraw any text revealed by scrolling up/down.
6801 */
6802 static void
6803check_copy_area(void)
6804{
6805 GdkEvent *event;
6806 int expose_count;
6807
6808 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6809 return;
6810
6811 /* Avoid redrawing the cursor while scrolling or it'll end up where
6812 * we don't want it to be. I'm not sure if it's correct to call
6813 * gui_dont_update_cursor() at this point but it works as a quick
6814 * fix for now. */
Bram Moolenaar107abd22016-08-12 14:08:25 +02006815 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006816
6817 do
6818 {
6819 /* Wait to check whether the scroll worked or not. */
6820 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6821
6822 if (event == NULL)
6823 break; /* received NoExpose event */
6824
6825 gui_redraw(event->expose.area.x, event->expose.area.y,
6826 event->expose.area.width, event->expose.area.height);
6827
6828 expose_count = event->expose.count;
6829 gdk_event_free(event);
6830 }
6831 while (expose_count > 0); /* more events follow */
6832
6833 gui_can_update_cursor();
6834}
Bram Moolenaar98921892016-02-23 17:14:37 +01006835#endif /* !GTK_CHECK_VERSION(3,0,0) */
6836
6837#if GTK_CHECK_VERSION(3,0,0)
6838 static void
6839gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6840 int src_x, int src_y,
6841 int width, int height)
6842{
6843 cairo_t * const cr = cairo_create(gui.surface);
6844
6845 cairo_rectangle(cr, dest_x, dest_y, width, height);
6846 cairo_clip(cr);
6847 cairo_push_group(cr);
6848 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6849 cairo_paint(cr);
6850 cairo_pop_group_to_source(cr);
6851 cairo_paint(cr);
6852
6853 cairo_destroy(cr);
6854}
6855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856
6857/*
6858 * Delete the given number of lines from the given row, scrolling up any
6859 * text further down within the scroll region.
6860 */
6861 void
6862gui_mch_delete_lines(int row, int num_lines)
6863{
Bram Moolenaar98921892016-02-23 17:14:37 +01006864#if GTK_CHECK_VERSION(3,0,0)
6865 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6866 const int nrows = gui.scroll_region_bot - row + 1;
6867 const int src_nrows = nrows - num_lines;
6868
6869 gui_gtk_surface_copy_rect(
6870 FILL_X(gui.scroll_region_left), FILL_Y(row),
6871 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6872 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6873 gui_clear_block(
6874 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6875 gui.scroll_region_bot, gui.scroll_region_right);
6876 gui_gtk3_redraw(
6877 FILL_X(gui.scroll_region_left), FILL_Y(row),
6878 gui.char_width * ncols + 1, gui.char_height * nrows);
6879 if (!gui.by_signal)
6880 gtk_widget_queue_draw_area(gui.drawarea,
6881 FILL_X(gui.scroll_region_left), FILL_Y(row),
6882 gui.char_width * ncols + 1, gui.char_height * nrows);
6883#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6885 return; /* Can't see the window */
6886
6887 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6888 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6889
6890 /* copy one extra pixel, for when bold has spilled over */
6891 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6892 FILL_X(gui.scroll_region_left), FILL_Y(row),
6893 gui.drawarea->window,
6894 FILL_X(gui.scroll_region_left),
6895 FILL_Y(row + num_lines),
6896 gui.char_width * (gui.scroll_region_right
6897 - gui.scroll_region_left + 1) + 1,
6898 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6899
6900 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6901 gui.scroll_region_left,
6902 gui.scroll_region_bot, gui.scroll_region_right);
6903 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006904#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905}
6906
6907/*
6908 * Insert the given number of lines before the given row, scrolling down any
6909 * following text within the scroll region.
6910 */
6911 void
6912gui_mch_insert_lines(int row, int num_lines)
6913{
Bram Moolenaar98921892016-02-23 17:14:37 +01006914#if GTK_CHECK_VERSION(3,0,0)
6915 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6916 const int nrows = gui.scroll_region_bot - row + 1;
6917 const int src_nrows = nrows - num_lines;
6918
6919 gui_gtk_surface_copy_rect(
6920 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6921 FILL_X(gui.scroll_region_left), FILL_Y(row),
6922 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6923 gui_mch_clear_block(
6924 row, gui.scroll_region_left,
6925 row + num_lines - 1, gui.scroll_region_right);
6926 gui_gtk3_redraw(
6927 FILL_X(gui.scroll_region_left), FILL_Y(row),
6928 gui.char_width * ncols + 1, gui.char_height * nrows);
6929 if (!gui.by_signal)
6930 gtk_widget_queue_draw_area(gui.drawarea,
6931 FILL_X(gui.scroll_region_left), FILL_Y(row),
6932 gui.char_width * ncols + 1, gui.char_height * nrows);
6933#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006934 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6935 return; /* Can't see the window */
6936
6937 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6938 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6939
6940 /* copy one extra pixel, for when bold has spilled over */
6941 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6942 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6943 gui.drawarea->window,
6944 FILL_X(gui.scroll_region_left), FILL_Y(row),
6945 gui.char_width * (gui.scroll_region_right
6946 - gui.scroll_region_left + 1) + 1,
6947 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6948
6949 gui_clear_block(row, gui.scroll_region_left,
6950 row + num_lines - 1, gui.scroll_region_right);
6951 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006952#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006953}
6954
6955/*
6956 * X Selection stuff, for cutting and pasting text to other windows.
6957 */
6958 void
6959clip_mch_request_selection(VimClipboard *cbd)
6960{
6961 GdkAtom target;
6962 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006963 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006964
6965 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6966 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006967 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6968 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969 received_selection = RS_NONE;
6970 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6971
6972 gtk_selection_convert(gui.drawarea,
6973 cbd->gtk_sel_atom, target,
6974 (guint32)GDK_CURRENT_TIME);
6975
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006976 /* Hack: Wait up to three seconds for the selection. A hang was
6977 * noticed here when using the netrw plugin combined with ":gui"
6978 * during the FocusGained event. */
6979 start = time(NULL);
6980 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006981 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006982
6983 if (received_selection != RS_FAIL)
6984 return;
6985 }
6986
6987 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006988#if GTK_CHECK_VERSION(3,0,0)
6989 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6990 cbd);
6991#else
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006992 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd);
Bram Moolenaar98921892016-02-23 17:14:37 +01006993#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994}
6995
6996/*
6997 * Disown the selection.
6998 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007000clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007001{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01007002 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007003 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004}
7005
7006/*
7007 * Own the selection and return OK if it worked.
7008 */
7009 int
7010clip_mch_own_selection(VimClipboard *cbd)
7011{
7012 int success;
7013
7014 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02007015 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016 gui_mch_update();
7017 return (success) ? OK : FAIL;
7018}
7019
7020/*
7021 * Send the current selection to the clipboard. Do nothing for X because we
7022 * will fill in the selection only when requested by another app.
7023 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007024 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007025clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026{
7027}
7028
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01007029 int
7030clip_gtk_owner_exists(VimClipboard *cbd)
7031{
7032 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
7033}
7034
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035
7036#if defined(FEAT_MENU) || defined(PROTO)
7037/*
7038 * Make a menu item appear either active or not active (grey or not grey).
7039 */
7040 void
7041gui_mch_menu_grey(vimmenu_T *menu, int grey)
7042{
7043 if (menu->id == NULL)
7044 return;
7045
7046 if (menu_is_separator(menu->name))
7047 grey = TRUE;
7048
7049 gui_mch_menu_hidden(menu, FALSE);
7050 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01007051# if GTK_CHECK_VERSION(3,0,0)
7052 if (!gtk_widget_get_sensitive(menu->id) == !grey)
7053# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
Bram Moolenaar98921892016-02-23 17:14:37 +01007055# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056 {
7057 gtk_widget_set_sensitive(menu->id, !grey);
7058 gui_mch_update();
7059 }
7060}
7061
7062/*
7063 * Make menu item hidden or not hidden.
7064 */
7065 void
7066gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
7067{
7068 if (menu->id == 0)
7069 return;
7070
7071 if (hidden)
7072 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007073# if GTK_CHECK_VERSION(3,0,0)
7074 if (gtk_widget_get_visible(menu->id))
7075# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007076 if (GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007077# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078 {
7079 gtk_widget_hide(menu->id);
7080 gui_mch_update();
7081 }
7082 }
7083 else
7084 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007085# if GTK_CHECK_VERSION(3,0,0)
7086 if (!gtk_widget_get_visible(menu->id))
7087# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007088 if (!GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007089# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090 {
7091 gtk_widget_show(menu->id);
7092 gui_mch_update();
7093 }
7094 }
7095}
7096
7097/*
7098 * This is called after setting all the menus to grey/hidden or not.
7099 */
7100 void
7101gui_mch_draw_menubar(void)
7102{
7103 /* just make sure that the visual changes get effect immediately */
7104 gui_mch_update();
7105}
7106#endif /* FEAT_MENU */
7107
7108/*
7109 * Scrollbar stuff.
7110 */
7111 void
7112gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
7113{
7114 if (sb->id == NULL)
7115 return;
7116
Bram Moolenaar98921892016-02-23 17:14:37 +01007117#if GTK_CHECK_VERSION(3,0,0)
7118 gtk_widget_set_visible(sb->id, flag);
7119#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120 if (flag)
7121 gtk_widget_show(sb->id);
7122 else
7123 gtk_widget_hide(sb->id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007124#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007125
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00007126 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007127}
7128
7129
7130/*
7131 * Return the RGB value of a pixel as long.
7132 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007133 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134gui_mch_get_rgb(guicolor_T pixel)
7135{
Bram Moolenaar98921892016-02-23 17:14:37 +01007136#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02007137 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01007138#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02007139 GdkColor color;
7140
Bram Moolenaar071d4272004-06-13 20:20:40 +00007141 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
7142 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007143
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007144 return (guicolor_T)(
7145 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007146 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007147 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02007148#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007149}
7150
7151/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007152 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007153 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007154 void
7155gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156{
Bram Moolenaar98921892016-02-23 17:14:37 +01007157#if GTK_CHECK_VERSION(3,0,0)
7158 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
7159#else
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007160 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01007161#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162}
7163
7164 void
7165gui_mch_setmouse(int x, int y)
7166{
7167 /* Sorry for the Xlib call, but we can't avoid it, since there is no
7168 * internal GDK mechanism present to accomplish this. (and for good
7169 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01007170#if GTK_CHECK_VERSION(3,0,0)
7171 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7172 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7173 0, 0, 0U, 0U, x, y);
7174#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
7176 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
7177 0, 0, 0U, 0U, x, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01007178#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179}
7180
7181
7182#ifdef FEAT_MOUSESHAPE
7183/* The last set mouse pointer shape is remembered, to be used when it goes
7184 * from hidden to not hidden. */
7185static int last_shape = 0;
7186#endif
7187
7188/*
7189 * Use the blank mouse pointer or not.
7190 *
7191 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7192 */
7193 void
7194gui_mch_mousehide(int hide)
7195{
7196 if (gui.pointer_hidden != hide)
7197 {
7198 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007199#if GTK_CHECK_VERSION(3,0,0)
7200 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
7201#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007202 if (gui.drawarea->window && gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007203#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007204 {
7205 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007206#if GTK_CHECK_VERSION(3,0,0)
7207 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7208 gui.blank_pointer);
7209#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007211#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007212 else
7213#ifdef FEAT_MOUSESHAPE
7214 mch_set_mouse_shape(last_shape);
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01007215#elif GTK_CHECK_VERSION(3,0,0)
7216 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007217#else
7218 gdk_window_set_cursor(gui.drawarea->window, NULL);
7219#endif
7220 }
7221 }
7222}
7223
7224#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7225
7226/* Table for shape IDs. Keep in sync with the mshape_names[] table in
7227 * misc2.c! */
7228static const int mshape_ids[] =
7229{
7230 GDK_LEFT_PTR, /* arrow */
7231 GDK_CURSOR_IS_PIXMAP, /* blank */
7232 GDK_XTERM, /* beam */
7233 GDK_SB_V_DOUBLE_ARROW, /* updown */
7234 GDK_SIZING, /* udsizing */
7235 GDK_SB_H_DOUBLE_ARROW, /* leftright */
7236 GDK_SIZING, /* lrsizing */
7237 GDK_WATCH, /* busy */
7238 GDK_X_CURSOR, /* no */
7239 GDK_CROSSHAIR, /* crosshair */
7240 GDK_HAND1, /* hand1 */
7241 GDK_HAND2, /* hand2 */
7242 GDK_PENCIL, /* pencil */
7243 GDK_QUESTION_ARROW, /* question */
7244 GDK_RIGHT_PTR, /* right-arrow */
7245 GDK_CENTER_PTR, /* up-arrow */
7246 GDK_LEFT_PTR /* last one */
7247};
7248
7249 void
7250mch_set_mouse_shape(int shape)
7251{
7252 int id;
7253 GdkCursor *c;
7254
Bram Moolenaar98921892016-02-23 17:14:37 +01007255# if GTK_CHECK_VERSION(3,0,0)
7256 if (gtk_widget_get_window(gui.drawarea) == NULL)
7257# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007258 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007259# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007260 return;
7261
7262 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007263# if GTK_CHECK_VERSION(3,0,0)
7264 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7265 gui.blank_pointer);
7266# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007268# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007269 else
7270 {
7271 if (shape >= MSHAPE_NUMBERED)
7272 {
7273 id = shape - MSHAPE_NUMBERED;
7274 if (id >= GDK_LAST_CURSOR)
7275 id = GDK_LEFT_PTR;
7276 else
7277 id &= ~1; /* they are always even (why?) */
7278 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007279 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007280 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007281 else
7282 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007283# ifdef HAVE_GTK_MULTIHEAD
7284 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007285 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007286# else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007287 c = gdk_cursor_new((GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007288# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01007289# if GTK_CHECK_VERSION(3,0,0)
7290 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
7291# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007292 gdk_window_set_cursor(gui.drawarea->window, c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007293# endif
7294# if GTK_CHECK_VERSION(3,0,0)
7295 g_object_unref(G_OBJECT(c));
7296# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007297 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01007298# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007299 }
7300 if (shape != MSHAPE_HIDE)
7301 last_shape = shape;
7302}
7303#endif /* FEAT_MOUSESHAPE */
7304
7305
7306#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7307/*
7308 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7309 * scaled down if the current font is not big enough, or scaled up if the image
7310 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7311 * will be cut off if the current font is not big enough, or centered if it's
7312 * too small.
7313 */
7314# define SIGN_WIDTH (2 * gui.char_width)
7315# define SIGN_HEIGHT (gui.char_height)
7316# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7317
Bram Moolenaar071d4272004-06-13 20:20:40 +00007318 void
7319gui_mch_drawsign(int row, int col, int typenr)
7320{
7321 GdkPixbuf *sign;
7322
7323 sign = (GdkPixbuf *)sign_get_image(typenr);
7324
Bram Moolenaar98921892016-02-23 17:14:37 +01007325# if GTK_CHECK_VERSION(3,0,0)
7326 if (sign != NULL && gui.drawarea != NULL
7327 && gtk_widget_get_window(gui.drawarea) != NULL)
7328# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007329 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007330# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007331 {
7332 int width;
7333 int height;
7334 int xoffset;
7335 int yoffset;
7336 int need_scale;
7337
7338 width = gdk_pixbuf_get_width(sign);
7339 height = gdk_pixbuf_get_height(sign);
7340 /*
7341 * Decide whether we need to scale. Allow one pixel of border
7342 * width to be cut off, in order to avoid excessive scaling for
7343 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007344 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007345 */
7346 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007347 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348 || (width < 3 * SIGN_WIDTH / 4
7349 && height < 3 * SIGN_HEIGHT / 4));
7350 if (need_scale)
7351 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007352 double aspect;
7353 int w = width;
7354 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355
7356 /* Keep the original aspect ratio */
7357 aspect = (double)height / (double)width;
7358 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7359 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007360 if (((double)(MAX(height, SIGN_HEIGHT)) /
7361 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7362 {
7363 /* Change the aspect ratio by at most 15% to fill the
7364 * available space completly. */
7365 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7366 height = MIN(height, SIGN_HEIGHT);
7367 }
7368 else
7369 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007370
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007371 if (w == width && h == height)
7372 {
7373 /* no change in dimensions; don't decrease reference counter
7374 * (below) */
7375 need_scale = FALSE;
7376 }
7377 else
7378 {
7379 /* This doesn't seem to be worth caching, and doing so would
7380 * complicate the code quite a bit. */
7381 sign = gdk_pixbuf_scale_simple(sign, width, height,
7382 GDK_INTERP_BILINEAR);
7383 if (sign == NULL)
7384 return; /* out of memory */
7385 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007386 }
7387
7388 /* The origin is the upper-left corner of the pixmap. Therefore
7389 * these offset may become negative if the pixmap is smaller than
7390 * the 2x1 cells reserved for the sign icon. */
7391 xoffset = (width - SIGN_WIDTH) / 2;
7392 yoffset = (height - SIGN_HEIGHT) / 2;
7393
Bram Moolenaar98921892016-02-23 17:14:37 +01007394# if GTK_CHECK_VERSION(3,0,0)
7395 {
7396 cairo_t *cr;
7397 cairo_surface_t *bg_surf;
7398 cairo_t *bg_cr;
7399 cairo_surface_t *sign_surf;
7400 cairo_t *sign_cr;
7401
7402 cr = cairo_create(gui.surface);
7403
7404 bg_surf = cairo_surface_create_similar(gui.surface,
7405 cairo_surface_get_content(gui.surface),
7406 SIGN_WIDTH, SIGN_HEIGHT);
7407 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007408 cairo_set_source_rgba(bg_cr,
7409 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7410 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007411 cairo_paint(bg_cr);
7412
7413 sign_surf = cairo_surface_create_similar(gui.surface,
7414 cairo_surface_get_content(gui.surface),
7415 SIGN_WIDTH, SIGN_HEIGHT);
7416 sign_cr = cairo_create(sign_surf);
7417 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7418 cairo_paint(sign_cr);
7419
7420 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7421 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7422 cairo_paint(sign_cr);
7423
7424 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7425 cairo_paint(cr);
7426
7427 cairo_destroy(sign_cr);
7428 cairo_surface_destroy(sign_surf);
7429 cairo_destroy(bg_cr);
7430 cairo_surface_destroy(bg_surf);
7431 cairo_destroy(cr);
7432
7433 if (!gui.by_signal)
7434 gtk_widget_queue_draw_area(gui.drawarea,
7435 FILL_X(col), FILL_Y(col), width, height);
7436
7437 }
7438# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007439 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7440
7441 gdk_draw_rectangle(gui.drawarea->window,
7442 gui.text_gc,
7443 TRUE,
7444 FILL_X(col),
7445 FILL_Y(row),
7446 SIGN_WIDTH,
7447 SIGN_HEIGHT);
7448
Bram Moolenaar071d4272004-06-13 20:20:40 +00007449 gdk_pixbuf_render_to_drawable_alpha(sign,
7450 gui.drawarea->window,
7451 MAX(0, xoffset),
7452 MAX(0, yoffset),
7453 FILL_X(col) - MIN(0, xoffset),
7454 FILL_Y(row) - MIN(0, yoffset),
7455 MIN(width, SIGN_WIDTH),
7456 MIN(height, SIGN_HEIGHT),
7457 GDK_PIXBUF_ALPHA_BILEVEL,
7458 127,
7459 GDK_RGB_DITHER_NORMAL,
7460 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007461# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007462 if (need_scale)
7463 g_object_unref(sign);
7464 }
7465}
7466
7467 void *
7468gui_mch_register_sign(char_u *signfile)
7469{
7470 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7471 {
7472 GdkPixbuf *sign;
7473 GError *error = NULL;
7474 char_u *message;
7475
7476 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7477
7478 if (error == NULL)
7479 return sign;
7480
7481 message = (char_u *)error->message;
7482
7483 if (message != NULL && input_conv.vc_type != CONV_NONE)
7484 message = string_convert(&input_conv, message, NULL);
7485
7486 if (message != NULL)
7487 {
7488 /* The error message is already translated and will be more
7489 * descriptive than anything we could possibly do ourselves. */
7490 EMSG2("E255: %s", message);
7491
7492 if (input_conv.vc_type != CONV_NONE)
7493 vim_free(message);
7494 }
7495 g_error_free(error);
7496 }
7497
7498 return NULL;
7499}
7500
7501 void
7502gui_mch_destroy_sign(void *sign)
7503{
7504 if (sign != NULL)
7505 g_object_unref(sign);
7506}
7507
Bram Moolenaar071d4272004-06-13 20:20:40 +00007508#endif /* FEAT_SIGN_ICONS */