blob: 5020177d95fc4718244905ebf64045cec00c2e6a [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 Moolenaara859f042016-11-17 19:11:55 +01003105# if GTK_CHECK_VERSION(3,22,2)
3106 /* 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 */
3126 if (event->send_event == FALSE)
3127 return TRUE;
3128# endif
3129
Bram Moolenaar98921892016-02-23 17:14:37 +01003130 if (event->width == cur_width && event->height == cur_height)
3131 return TRUE;
3132
3133 cur_width = event->width;
3134 cur_height = event->height;
3135
3136 if (gui.surface != NULL)
3137 cairo_surface_destroy(gui.surface);
3138
3139 gui.surface = gdk_window_create_similar_surface(
3140 gtk_widget_get_window(widget),
3141 CAIRO_CONTENT_COLOR_ALPHA,
3142 event->width, event->height);
3143
3144 gtk_widget_queue_draw(widget);
3145
3146 return TRUE;
3147}
3148#endif
3149
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150/*
3151 * Callback routine for the "delete_event" signal on the toplevel window.
3152 * Tries to vim gracefully, or refuses to exit with changed buffers.
3153 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003155delete_event_cb(GtkWidget *widget UNUSED,
3156 GdkEventAny *event UNUSED,
3157 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158{
3159 gui_shell_closed();
3160 return TRUE;
3161}
3162
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003163#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
3164 static int
3165get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
3166{
3167 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
3168
Bram Moolenaar98921892016-02-23 17:14:37 +01003169# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003170 if (using_gnome && widget != NULL)
3171 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003172 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003173 BonoboDockItem *dockitem;
3174
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003175 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003176 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
3177 {
3178 /* Only menu & toolbar are dock items. Could tabline be?
3179 * Seem to be only the 2 defined in GNOME */
3180 widget = parent;
3181 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003182
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003183 if (dockitem == NULL || dockitem->is_floating)
3184 return 0;
3185 item_orientation = bonobo_dock_item_get_orientation(dockitem);
3186 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003187 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003188# endif
3189# if GTK_CHECK_VERSION(3,0,0)
3190 if (widget != NULL
3191 && item_orientation == orientation
3192 && gtk_widget_get_realized(widget)
3193 && gtk_widget_get_visible(widget))
3194# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003195 if (widget != NULL
3196 && item_orientation == orientation
3197 && GTK_WIDGET_REALIZED(widget)
3198 && GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01003199# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003200 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003201# if GTK_CHECK_VERSION(3,0,0)
3202 GtkAllocation allocation;
3203
3204 gtk_widget_get_allocation(widget, &allocation);
3205
3206 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3207 return allocation.height;
3208 else
3209 return allocation.width;
3210# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003211 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3212 return widget->allocation.height;
3213 else
3214 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003215# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003216 }
3217 return 0;
3218}
3219#endif
3220
3221 static int
3222get_menu_tool_width(void)
3223{
3224 int width = 0;
3225
3226#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3227# ifdef FEAT_MENU
3228 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3229# endif
3230# ifdef FEAT_TOOLBAR
3231 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3232# endif
3233# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003234 if (gui.tabline != NULL)
3235 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003236# endif
3237#endif
3238
3239 return width;
3240}
3241
3242 static int
3243get_menu_tool_height(void)
3244{
3245 int height = 0;
3246
3247#ifdef FEAT_MENU
3248 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3249#endif
3250#ifdef FEAT_TOOLBAR
3251 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3252#endif
3253#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003254 if (gui.tabline != NULL)
3255 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003256#endif
3257
3258 return height;
3259}
3260
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003261/* This controls whether we can set the real window hints at
3262 * start-up when in a GtkPlug.
3263 * 0 = normal processing (default)
3264 * 1 = init. hints set, no-one's tried to reset since last check
3265 * 2 = init. hints set, attempt made to change hints
3266 */
3267static int init_window_hints_state = 0;
3268
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003269 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003270update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003271{
3272 static int old_width = 0;
3273 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003274 static int old_min_width = 0;
3275 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003276 static int old_char_width = 0;
3277 static int old_char_height = 0;
3278
3279 int width;
3280 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003281 int min_width;
3282 int min_height;
3283
3284 /* At start-up, don't try to set the hints until the initial
3285 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003286 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003287 */
3288 if (!(force_width && force_height) && init_window_hints_state > 0)
3289 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003290 /* Don't do it! */
3291 init_window_hints_state = 2;
3292 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003293 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003294
3295 /* This also needs to be done when the main window isn't there yet,
3296 * otherwise the hints don't work. */
3297 width = gui_get_base_width();
3298 height = gui_get_base_height();
3299# ifdef FEAT_MENU
3300 height += tabline_height() * gui.char_height;
3301# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003302 width += get_menu_tool_width();
3303 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003304
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003305 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003306 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003307 * 'set columns=' or init. -geom) we briefly set the min. to the size
3308 * we wish to be instead of the legitimate minimum so that we actually
3309 * resize correctly.
3310 */
3311 if (force_width && force_height)
3312 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003313 min_width = force_width;
3314 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003315 }
3316 else
3317 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003318 min_width = width + MIN_COLUMNS * gui.char_width;
3319 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003320 }
3321
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003322 /* Avoid an expose event when the size didn't change. */
3323 if (width != old_width
3324 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003325 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003326 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003327 || gui.char_width != old_char_width
3328 || gui.char_height != old_char_height)
3329 {
3330 GdkGeometry geometry;
3331 GdkWindowHints geometry_mask;
3332
3333 geometry.width_inc = gui.char_width;
3334 geometry.height_inc = gui.char_height;
3335 geometry.base_width = width;
3336 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003337 geometry.min_width = min_width;
3338 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003339 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3340 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003341 /* Using gui.formwin as geometry widget doesn't work as expected
3342 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3343 * in Vim confuse GTK+. */
3344 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3345 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003346 old_width = width;
3347 old_height = height;
3348 old_min_width = min_width;
3349 old_min_height = min_height;
3350 old_char_width = gui.char_width;
3351 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003352 }
3353}
3354
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355#ifdef FEAT_TOOLBAR
3356
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357/*
3358 * This extra effort wouldn't be necessary if we only used stock icons in the
3359 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3360 * shouldn't be treated differently, thus we do need this.
3361 */
3362 static void
3363icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3364{
3365 if (GTK_IS_IMAGE(widget))
3366 {
3367 GtkImage *image = (GtkImage *)widget;
3368
Bram Moolenaar98921892016-02-23 17:14:37 +01003369# if GTK_CHECK_VERSION(3,10,0)
3370 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3371 {
3372 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3373 const gchar *icon_name;
3374
3375 gtk_image_get_icon_name(image, &icon_name, NULL);
3376
3377 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3378 }
3379# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 /* User-defined icons are stored in a GtkIconSet */
3381 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3382 {
3383 GtkIconSet *icon_set;
3384 GtkIconSize icon_size;
3385
3386 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3387 icon_size = (GtkIconSize)(long)user_data;
3388
3389 gtk_icon_set_ref(icon_set);
3390 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3391 gtk_icon_set_unref(icon_set);
3392 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003393# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394 }
3395 else if (GTK_IS_CONTAINER(widget))
3396 {
3397 gtk_container_foreach((GtkContainer *)widget,
3398 &icon_size_changed_foreach,
3399 user_data);
3400 }
3401}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402
3403 static void
3404set_toolbar_style(GtkToolbar *toolbar)
3405{
3406 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 GtkIconSize size;
3408 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3411 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3412 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003413 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3415 style = GTK_TOOLBAR_BOTH;
3416 else if (toolbar_flags & TOOLBAR_TEXT)
3417 style = GTK_TOOLBAR_TEXT;
3418 else
3419 style = GTK_TOOLBAR_ICONS;
3420
3421 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003422# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003424# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 switch (tbis_flags)
3427 {
3428 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3429 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3430 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3431 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003432 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3433 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 default: size = GTK_ICON_SIZE_INVALID; break;
3435 }
3436 oldsize = gtk_toolbar_get_icon_size(toolbar);
3437
3438 if (size == GTK_ICON_SIZE_INVALID)
3439 {
3440 /* Let global user preferences decide the icon size. */
3441 gtk_toolbar_unset_icon_size(toolbar);
3442 size = gtk_toolbar_get_icon_size(toolbar);
3443 }
3444 if (size != oldsize)
3445 {
3446 gtk_container_foreach(GTK_CONTAINER(toolbar),
3447 &icon_size_changed_foreach,
3448 GINT_TO_POINTER((int)size));
3449 }
3450 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451}
3452
3453#endif /* FEAT_TOOLBAR */
3454
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003455#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3456static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003457static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003458# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003459static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003460# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003461static int clicked_page; /* page clicked in tab line */
3462
3463/*
3464 * Handle selecting an item in the tab line popup menu.
3465 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003466 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003467tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003468{
Bram Moolenaara5621492006-02-25 21:55:24 +00003469 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003470 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003471}
3472
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003473 static void
3474add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3475{
3476 GtkWidget *item;
3477 char_u *utf_text;
3478
3479 utf_text = CONVERT_TO_UTF8(text);
3480 item = gtk_menu_item_new_with_label((const char *)utf_text);
3481 gtk_widget_show(item);
3482 CONVERT_TO_UTF8_FREE(utf_text);
3483
3484 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003485# if GTK_CHECK_VERSION(3,0,0)
3486 g_signal_connect(G_OBJECT(item), "activate",
3487 G_CALLBACK(tabline_menu_handler),
3488 GINT_TO_POINTER(resp));
3489# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003490 gtk_signal_connect(GTK_OBJECT(item), "activate",
3491 GTK_SIGNAL_FUNC(tabline_menu_handler),
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003492 (gpointer)(long)resp);
Bram Moolenaar98921892016-02-23 17:14:37 +01003493# endif
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003494}
3495
Bram Moolenaara5621492006-02-25 21:55:24 +00003496/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003497 * Create a menu for the tab line.
3498 */
3499 static GtkWidget *
3500create_tabline_menu(void)
3501{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003502 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003503
3504 menu = gtk_menu_new();
Bram Moolenaar7098ee52015-06-09 19:14:24 +02003505 if (first_tabpage->tp_next != NULL)
3506 add_tabline_menu_item(menu, (char_u *)_("Close tab"),
3507 TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003508 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3509 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003510
3511 return menu;
3512}
3513
3514 static gboolean
3515on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3516{
3517 /* Was this button press event ? */
3518 if (event->type == GDK_BUTTON_PRESS)
3519 {
3520 GdkEventButton *bevent = (GdkEventButton *)event;
3521 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003522 int y = bevent->y;
3523 GtkWidget *tabwidget;
3524 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003525
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003526 /* When ignoring events return TRUE so that the selected page doesn't
3527 * change. */
3528 if (hold_gui_events
3529# ifdef FEAT_CMDWIN
3530 || cmdwin_type != 0
3531# endif
3532 )
3533 return TRUE;
3534
Bram Moolenaar98921892016-02-23 17:14:37 +01003535# if GTK_CHECK_VERSION(3,0,0)
3536 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
3537# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003538 tabwin = gdk_window_at_pointer(&x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003539# endif
3540
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003541 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003542# if GTK_CHECK_VERSION(3,0,0)
3543 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3544 "tab_num"));
3545# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003546 clicked_page = (int)(long)gtk_object_get_user_data(
3547 GTK_OBJECT(tabwidget));
Bram Moolenaar98921892016-02-23 17:14:37 +01003548# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003549
3550 /* If the event was generated for 3rd button popup the menu. */
3551 if (bevent->button == 3)
3552 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003553# if GTK_CHECK_VERSION(3,22,2)
3554 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3555# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003556 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3557 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003558# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003559 /* We handled the event. */
3560 return TRUE;
3561 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003562 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003563 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003564 if (clicked_page == 0)
3565 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003566 /* Click after all tabs moves to next tab page. When "x" is
3567 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003568 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003569 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003570 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003571 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003572
Bram Moolenaara5621492006-02-25 21:55:24 +00003573 /* We didn't handle the event. */
3574 return FALSE;
3575}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003576
3577/*
3578 * Handle selecting one of the tabs.
3579 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003580 static void
3581on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003582 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003583# if GTK_CHECK_VERSION(3,0,0)
3584 gpointer *page UNUSED,
3585# else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003586 GtkNotebookPage *page UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003587# endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00003588 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003589 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003590{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003591 if (!ignore_tabline_evt)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003592 {
Bram Moolenaara3f41662010-07-11 19:01:06 +02003593 send_tabline_event(idx + 1);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003594 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003595}
3596
3597/*
3598 * Show or hide the tabline.
3599 */
3600 void
3601gui_mch_show_tabline(int showit)
3602{
3603 if (gui.tabline == NULL)
3604 return;
3605
3606 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3607 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003608 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003609 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003610 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003611 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003612# if GTK_CHECK_VERSION(3,0,0)
3613 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
3614# else
Bram Moolenaar96351572006-05-05 21:16:59 +00003615 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01003616# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003617 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003618
3619 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003620}
3621
3622/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003623 * Return TRUE when tabline is displayed.
3624 */
3625 int
3626gui_mch_showing_tabline(void)
3627{
3628 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003629 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003630}
3631
3632/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003633 * Update the labels of the tabline.
3634 */
3635 void
3636gui_mch_update_tabline(void)
3637{
3638 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003639 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003640 GtkWidget *label;
3641 tabpage_T *tp;
3642 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003643 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003644 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003645 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003646
3647 if (gui.tabline == NULL)
3648 return;
3649
3650 ignore_tabline_evt = TRUE;
3651
3652 /* Add a label for each tab page. They all contain the same text area. */
3653 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3654 {
3655 if (tp == curtab)
3656 curtabidx = nr;
3657
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003658 tab_num = nr + 1;
3659
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003660 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3661 if (page == NULL)
3662 {
3663 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003664# if GTK_CHECK_VERSION(3,2,0)
3665 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3666 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3667# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003668 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003669# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003670 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003671 event_box = gtk_event_box_new();
3672 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003673 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003674# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003675 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003676# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003677 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003678 gtk_widget_show(label);
3679 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3680 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003681 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003682 nr++);
3683 }
3684
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003685 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003686# if GTK_CHECK_VERSION(3,0,0)
3687 g_object_set_data(G_OBJECT(event_box), "tab_num",
3688 GINT_TO_POINTER(tab_num));
3689# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003690 gtk_object_set_user_data(GTK_OBJECT(event_box),
3691 (gpointer)(long)tab_num);
Bram Moolenaar98921892016-02-23 17:14:37 +01003692# endif
3693# if GTK_CHECK_VERSION(3,0,0)
3694 label = gtk_bin_get_child(GTK_BIN(event_box));
3695# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003696 label = GTK_BIN(event_box)->child;
Bram Moolenaar98921892016-02-23 17:14:37 +01003697# endif
Bram Moolenaar57657d82006-04-21 22:12:41 +00003698 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003699 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003700 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003701 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003702
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003703 get_tabline_label(tp, TRUE);
3704 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003705# if GTK_CHECK_VERSION(3,0,0)
3706 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3707# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003708 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3709 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003710# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003711 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003712 }
3713
3714 /* Remove any old labels. */
3715 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3716 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3717
Bram Moolenaar98921892016-02-23 17:14:37 +01003718# if GTK_CHECK_VERSION(3,0,0)
3719 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3720 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3721# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003722 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003723 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar98921892016-02-23 17:14:37 +01003724# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003725
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003726 /* Make sure everything is in place before drawing text. */
3727 gui_mch_update();
3728
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003729 ignore_tabline_evt = FALSE;
3730}
3731
3732/*
3733 * Set the current tab to "nr". First tab is 1.
3734 */
3735 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003736gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003737{
3738 if (gui.tabline == NULL)
3739 return;
3740
3741 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003742# if GTK_CHECK_VERSION(3,0,0)
3743 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3744 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3745# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003746 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003747 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01003748# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003749 ignore_tabline_evt = FALSE;
3750}
3751
3752#endif /* FEAT_GUI_TABLINE */
3753
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003755 * Add selection targets for PRIMARY and CLIPBOARD selections.
3756 */
3757 void
3758gui_gtk_set_selection_targets(void)
3759{
3760 int i, j = 0;
3761 int n_targets = N_SELECTION_TARGETS;
3762 GtkTargetEntry targets[N_SELECTION_TARGETS];
3763
3764 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3765 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003766 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003767 * return something, instead of trying another target. Therefore only
3768 * offer TARGET_HTML when it works. */
3769 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3770 n_targets--;
3771 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003772 targets[j++] = selection_targets[i];
3773 }
3774
3775 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3776 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3777 gtk_selection_add_targets(gui.drawarea,
3778 (GdkAtom)GDK_SELECTION_PRIMARY,
3779 targets, n_targets);
3780 gtk_selection_add_targets(gui.drawarea,
3781 (GdkAtom)clip_plus.gtk_sel_atom,
3782 targets, n_targets);
3783}
3784
3785/*
3786 * Set up for receiving DND items.
3787 */
3788 void
3789gui_gtk_set_dnd_targets(void)
3790{
3791 int i, j = 0;
3792 int n_targets = N_DND_TARGETS;
3793 GtkTargetEntry targets[N_DND_TARGETS];
3794
3795 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3796 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003797 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003798 n_targets--;
3799 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003800 targets[j++] = dnd_targets[i];
3801 }
3802
3803 gtk_drag_dest_unset(gui.drawarea);
3804 gtk_drag_dest_set(gui.drawarea,
3805 GTK_DEST_DEFAULT_ALL,
3806 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003807 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003808}
3809
3810/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3812 * Returns OK for success, FAIL when the GUI can't be started.
3813 */
3814 int
3815gui_mch_init(void)
3816{
3817 GtkWidget *vbox;
3818
3819#ifdef FEAT_GUI_GNOME
3820 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3821 * exits on failure, but that's a non-issue because we already called
3822 * gtk_init_check() in gui_mch_init_check(). */
3823 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003824 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3826 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003827# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003828 {
3829 char *p = setlocale(LC_NUMERIC, NULL);
3830
3831 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3832 * init may change it. */
3833 if (p == NULL || strcmp(p, "C") != 0)
3834 setlocale(LC_NUMERIC, "C");
3835 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003836# endif
3837 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838#endif
3839 vim_free(gui_argv);
3840 gui_argv = NULL;
3841
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003842#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843 /* Set the human-readable application name */
3844 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003845#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846 /*
3847 * Force UTF-8 output no matter what the value of 'encoding' is.
3848 * did_set_string_option() in option.c prohibits changing 'termencoding'
3849 * to something else than UTF-8 if the GUI is in use.
3850 */
3851 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3852
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003853#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3857 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003858#if !GTK_CHECK_VERSION(3,0,0)
3859# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003861# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862#endif
3863
3864 /* Initialize values */
3865 gui.border_width = 2;
3866 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3867 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003868#if GTK_CHECK_VERSION(3,0,0)
3869 gui.fgcolor = g_new(GdkRGBA, 1);
3870 gui.bgcolor = g_new(GdkRGBA, 1);
3871 gui.spcolor = g_new(GdkRGBA, 1);
3872#else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003873 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003875 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003877 /* LINTED: avoid warning: conversion to 'unsigned long' */
3878 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880
3881 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003882 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884
3885 /* Set default foreground and background colors. */
3886 gui.norm_pixel = gui.def_norm_pixel;
3887 gui.back_pixel = gui.def_back_pixel;
3888
3889 if (gtk_socket_id != 0)
3890 {
3891 GtkWidget *plug;
3892
3893 /* Use GtkSocket from another app. */
3894#ifdef HAVE_GTK_MULTIHEAD
3895 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3896 gtk_socket_id);
3897#else
3898 plug = gtk_plug_new(gtk_socket_id);
3899#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003900#if GTK_CHECK_VERSION(3,0,0)
3901 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
3902#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01003904#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 {
3906 gui.mainwin = plug;
3907 }
3908 else
3909 {
3910 g_warning("Connection to GTK+ socket (ID %u) failed",
3911 (unsigned int)gtk_socket_id);
3912 /* Pretend we never wanted it if it failed (get own window) */
3913 gtk_socket_id = 0;
3914 }
3915 }
3916
3917 if (gtk_socket_id == 0)
3918 {
3919#ifdef FEAT_GUI_GNOME
3920 if (using_gnome)
3921 {
3922 gui.mainwin = gnome_app_new("Vim", NULL);
3923# ifdef USE_XSMP
3924 /* Use the GNOME save-yourself functionality now. */
3925 xsmp_close();
3926# endif
3927 }
3928 else
3929#endif
3930 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3931 }
3932
3933 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3934
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 /* Create the PangoContext used for drawing all text. */
3936 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3937 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938
Bram Moolenaar98921892016-02-23 17:14:37 +01003939#if GTK_CHECK_VERSION(3,0,0)
3940 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
3941#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3945
Bram Moolenaar98921892016-02-23 17:14:37 +01003946#if GTK_CHECK_VERSION(3,0,0)
3947 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3948 G_CALLBACK(&delete_event_cb), NULL);
3949
3950 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3951 G_CALLBACK(&mainwin_realize), NULL);
3952#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3954 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3955
3956 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3957 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959#ifdef HAVE_GTK_MULTIHEAD
3960 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
3961 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
3962#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 gui.accel_group = gtk_accel_group_new();
3964 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003966 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003967#if GTK_CHECK_VERSION(3,2,0)
3968 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3969 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3970#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003972#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973
3974#ifdef FEAT_GUI_GNOME
3975 if (using_gnome)
3976 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003977# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 /* automagically restore menubar/toolbar placement */
3979 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3980# endif
3981 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3982 }
3983 else
3984#endif
3985 {
3986 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3987 gtk_widget_show(vbox);
3988 }
3989
3990#ifdef FEAT_MENU
3991 /*
3992 * Create the menubar and handle
3993 */
3994 gui.menubar = gtk_menu_bar_new();
3995 gtk_widget_set_name(gui.menubar, "vim-menubar");
3996
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003997 /* Avoid that GTK takes <F10> away from us. */
3998 {
3999 GtkSettings *gtk_settings;
4000
4001 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
4002 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
4003 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004004
4005
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006# ifdef FEAT_GUI_GNOME
4007 if (using_gnome)
4008 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009 BonoboDockItem *dockitem;
4010
4011 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
4012 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4013 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00004014 /* We don't want the menu to float. */
4015 bonobo_dock_item_set_behavior(dockitem,
4016 bonobo_dock_item_get_behavior(dockitem)
4017 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 }
4020 else
4021# endif /* FEAT_GUI_GNOME */
4022 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00004023 /* Always show the menubar, otherwise <F10> doesn't work. It may be
4024 * disabled in gui_init() later. */
4025 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
4027 }
4028#endif /* FEAT_MENU */
4029
4030#ifdef FEAT_TOOLBAR
4031 /*
4032 * Create the toolbar and handle
4033 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01004035# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004036 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004037 /* N.B. Since the default value of GtkToolbar::button-relief is
4038 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
4039# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 gtk_rc_parse_string(
4041 "style \"vim-toolbar-style\" {\n"
4042 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
4043 "}\n"
4044 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01004045# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 gui.toolbar = gtk_toolbar_new();
4047 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4049
4050# ifdef FEAT_GUI_GNOME
4051 if (using_gnome)
4052 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 BonoboDockItem *dockitem;
4054
4055 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
4056 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4057 GNOME_APP_TOOLBAR_NAME);
4058 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004059 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00004060 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004061 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00004062 bonobo_dock_item_get_behavior(dockitem)
4063 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065 }
4066 else
4067# endif /* FEAT_GUI_GNOME */
4068 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
4070 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4071 gtk_widget_show(gui.toolbar);
4072 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
4073 }
4074#endif /* FEAT_TOOLBAR */
4075
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004076#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004077 /*
4078 * Use a Notebook for the tab pages labels. The labels are hidden by
4079 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004080 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004081 gui.tabline = gtk_notebook_new();
4082 gtk_widget_show(gui.tabline);
4083 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
4084 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
4085 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004086 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004087# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00004088 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004089# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004090
Bram Moolenaar98921892016-02-23 17:14:37 +01004091# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004092 tabline_tooltip = gtk_tooltips_new();
4093 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01004094# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004095
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004096 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004097 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004098
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004099 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004100# if GTK_CHECK_VERSION(3,2,0)
4101 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
4102 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
4103# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004104 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004105# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004106 gtk_widget_show(page);
4107 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
4108 label = gtk_label_new("-Empty-");
4109 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004110 event_box = gtk_event_box_new();
4111 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01004112# if GTK_CHECK_VERSION(3,0,0)
4113 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
4114# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00004115 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L);
Bram Moolenaar98921892016-02-23 17:14:37 +01004116# endif
4117# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00004118 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01004119# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004120 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004121 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004122 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00004123
Bram Moolenaar98921892016-02-23 17:14:37 +01004124# if GTK_CHECK_VERSION(3,0,0)
4125 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
4126 G_CALLBACK(on_select_tab), NULL);
4127# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004128 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004129 GTK_SIGNAL_FUNC(on_select_tab), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004130# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004131
4132 /* Create a popup menu for the tab line and connect it. */
4133 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01004134# if GTK_CHECK_VERSION(3,0,0)
4135 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
4136 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
4137# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004138 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004139 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01004140# endif
4141#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004142
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004144#if GTK_CHECK_VERSION(3,0,0)
4145 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
4146#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004148#endif
4149#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01004151#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152
4153 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaara859f042016-11-17 19:11:55 +01004154#if GTK_CHECK_VERSION(3,22,2)
4155 gtk_widget_set_name(gui.drawarea, "vim-gui-drawarea");
4156#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004157#if GTK_CHECK_VERSION(3,0,0)
4158 gui.surface = NULL;
4159 gui.by_signal = FALSE;
4160#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161
4162 /* Determine which events we will filter. */
4163 gtk_widget_set_events(gui.drawarea,
4164 GDK_EXPOSURE_MASK |
4165 GDK_ENTER_NOTIFY_MASK |
4166 GDK_LEAVE_NOTIFY_MASK |
4167 GDK_BUTTON_PRESS_MASK |
4168 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170 GDK_KEY_PRESS_MASK |
4171 GDK_KEY_RELEASE_MASK |
4172 GDK_POINTER_MOTION_MASK |
4173 GDK_POINTER_MOTION_HINT_MASK);
4174
4175 gtk_widget_show(gui.drawarea);
4176 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
4177 gtk_widget_show(gui.formwin);
4178 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
4179
4180 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
4181 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004182#if GTK_CHECK_VERSION(3,0,0)
4183 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4184 : G_OBJECT(gui.drawarea),
4185 "key-press-event",
4186 G_CALLBACK(key_press_event), NULL);
4187#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
4189 : GTK_OBJECT(gui.drawarea),
4190 "key_press_event",
4191 GTK_SIGNAL_FUNC(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004192#endif
4193#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194 /* Also forward key release events for the benefit of GTK+ 2 input
4195 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
4196 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4197 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01004198 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 G_CALLBACK(&key_release_event), NULL);
4200#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004201#if GTK_CHECK_VERSION(3,0,0)
4202 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
4203 G_CALLBACK(drawarea_realize_cb), NULL);
4204 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
4205 G_CALLBACK(drawarea_unrealize_cb), NULL);
4206 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
4207 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaara859f042016-11-17 19:11:55 +01004208# if GTK_CHECK_VERSION(3,22,2)
4209 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
4210 G_CALLBACK(&drawarea_style_updated_cb), NULL);
4211# else
Bram Moolenaar98921892016-02-23 17:14:37 +01004212 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
4213 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaara859f042016-11-17 19:11:55 +01004214# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004215#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
4217 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
4218 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
4219 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
4220
4221 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
4222 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004223#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224
Bram Moolenaar98921892016-02-23 17:14:37 +01004225#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01004227#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228
4229#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
4230 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
4231 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
4232#endif
4233
4234 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004235 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01004236#if GTK_CHECK_VERSION(3,0,0)
4237 gtk_widget_set_can_focus(gui.drawarea, TRUE);
4238#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01004240#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241
4242 /*
4243 * Set clipboard specific atoms
4244 */
4245 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
4248 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
4249
4250 /*
4251 * Start out by adding the configured border width into the border offset.
4252 */
4253 gui.border_offset = gui.border_width;
4254
Bram Moolenaar98921892016-02-23 17:14:37 +01004255#if GTK_CHECK_VERSION(3,0,0)
4256 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
4257 G_CALLBACK(draw_event), NULL);
4258#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
4260 GTK_SIGNAL_FUNC(visibility_event), NULL);
4261 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
4262 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004263#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264
4265 /*
4266 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
4267 * Only needed for some window managers.
4268 */
4269 if (vim_strchr(p_go, GO_POINTER) != NULL)
4270 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004271#if GTK_CHECK_VERSION(3,0,0)
4272 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4273 G_CALLBACK(leave_notify_event), NULL);
4274 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4275 G_CALLBACK(enter_notify_event), NULL);
4276#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
4278 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
4279 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
4280 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004281#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 }
4283
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004284 /* Real windows can get focus ... GtkPlug, being a mere container can't,
4285 * only its widgets. Arguably, this could be common code and we not use
4286 * the window focus at all, but let's be safe.
4287 */
4288 if (gtk_socket_id == 0)
4289 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004290#if GTK_CHECK_VERSION(3,0,0)
4291 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4292 G_CALLBACK(focus_out_event), NULL);
4293 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4294 G_CALLBACK(focus_in_event), NULL);
4295#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004296 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
4297 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4298 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
4299 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004300#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004301 }
4302 else
4303 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004304#if GTK_CHECK_VERSION(3,0,0)
4305 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4306 G_CALLBACK(focus_out_event), NULL);
4307 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4308 G_CALLBACK(focus_in_event), NULL);
4309#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004310 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
4311 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4312 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
4313 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004314#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004315#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004316# if GTK_CHECK_VERSION(3,0,0)
4317 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4318 G_CALLBACK(focus_out_event), NULL);
4319 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4320 G_CALLBACK(focus_in_event), NULL);
4321# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004322 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
4323 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4324 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
4325 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004326# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004327#endif /* FEAT_GUI_TABLINE */
4328 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329
Bram Moolenaar98921892016-02-23 17:14:37 +01004330#if GTK_CHECK_VERSION(3,0,0)
4331 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4332 G_CALLBACK(motion_notify_event), NULL);
4333 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4334 G_CALLBACK(button_press_event), NULL);
4335 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4336 G_CALLBACK(button_release_event), NULL);
4337 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4338 G_CALLBACK(&scroll_event), NULL);
4339#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
4341 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
4342 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
4343 GTK_SIGNAL_FUNC(button_press_event), NULL);
4344 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
4345 GTK_SIGNAL_FUNC(button_release_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
4347 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004348#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349
4350 /*
4351 * Add selection handler functions.
4352 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004353#if GTK_CHECK_VERSION(3,0,0)
4354 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4355 G_CALLBACK(selection_clear_event), NULL);
4356 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4357 G_CALLBACK(selection_received_cb), NULL);
4358#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
4360 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
4361 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
4362 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004363#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364
Bram Moolenaara76638f2010-06-05 12:49:46 +02004365 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366
Bram Moolenaar98921892016-02-23 17:14:37 +01004367#if GTK_CHECK_VERSION(3,0,0)
4368 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4369 G_CALLBACK(selection_get_cb), NULL);
4370#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
4372 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004373#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374
4375 /* Pretend we don't have input focus, we will get an event if we do. */
4376 gui.in_focus = FALSE;
4377
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 return OK;
4379}
4380
4381#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4382/*
4383 * This is called from gui_start() after a fork() has been done.
4384 * We have to tell the session manager our new PID.
4385 */
4386 void
4387gui_mch_forked(void)
4388{
4389 if (using_gnome)
4390 {
4391 GnomeClient *client;
4392
4393 client = gnome_master_client();
4394
4395 if (client != NULL)
4396 gnome_client_set_process_id(client, getpid());
4397 }
4398}
4399#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4400
Bram Moolenaar98921892016-02-23 17:14:37 +01004401#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004402 static GdkRGBA
4403color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004404{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004405 GdkRGBA rgba;
4406 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4407 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4408 rgba.blue = ((color & 0xff)) / 255.0;
4409 rgba.alpha = 1.0;
4410 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004411}
4412
4413 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004414set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004415{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004416 const GdkRGBA rgba = color_to_rgba(color);
4417 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004418}
4419#endif /* GTK_CHECK_VERSION(3,0,0) */
4420
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421/*
4422 * Called when the foreground or background color has been changed.
4423 * This used to change the graphics contexts directly but we are
4424 * currently manipulating them where desired.
4425 */
4426 void
4427gui_mch_new_colors(void)
4428{
Bram Moolenaar98921892016-02-23 17:14:37 +01004429#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaara859f042016-11-17 19:11:55 +01004430# if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar98921892016-02-23 17:14:37 +01004431 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaara859f042016-11-17 19:11:55 +01004432# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004433
4434 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
4435#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01004437#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438 {
Bram Moolenaara859f042016-11-17 19:11:55 +01004439#if GTK_CHECK_VERSION(3,22,2)
4440 GtkStyleContext * const context
4441 = gtk_widget_get_style_context(gui.drawarea);
4442 GtkCssProvider * const provider = gtk_css_provider_new();
4443 gchar * const css = g_strdup_printf(
4444 "widget#vim-gui-drawarea {\n"
4445 " background-color: #%.2lx%.2lx%.2lx;\n"
4446 "}\n",
4447 (gui.back_pixel >> 16) & 0xff,
4448 (gui.back_pixel >> 8) & 0xff,
4449 gui.back_pixel & 0xff);
4450
4451 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4452 gtk_style_context_add_provider(context,
4453 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4454
4455 g_free(css);
4456 g_object_unref(provider);
4457#elif GTK_CHECK_VERSION(3,4,0) /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar36edf062016-07-21 22:10:12 +02004458 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004459
Bram Moolenaar36edf062016-07-21 22:10:12 +02004460 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004461 {
4462 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004463 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004464 if (pat != NULL)
4465 {
4466 gdk_window_set_background_pattern(da_win, pat);
4467 cairo_pattern_destroy(pat);
4468 }
4469 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004470 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004471 }
4472#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 GdkColor color = { 0, 0, 0, 0 };
4474
4475 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004476# if GTK_CHECK_VERSION(3,0,0)
4477 gdk_window_set_background(da_win, &color);
4478# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 gdk_window_set_background(gui.drawarea->window, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01004480# endif
Bram Moolenaara859f042016-11-17 19:11:55 +01004481#endif /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 }
4483}
4484
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485/*
4486 * This signal informs us about the need to rearrange our sub-widgets.
4487 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004489form_configure_event(GtkWidget *widget UNUSED,
4490 GdkEventConfigure *event,
4491 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004493 int usable_height = event->height;
4494
Bram Moolenaara859f042016-11-17 19:11:55 +01004495#if GTK_CHECK_VERSION(3,22,2)
4496 /* As of 3.22.2, GdkWindows have started distributing configure events to
4497 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4498 *
4499 * As can be seen from the implementation of move_native_children() and
4500 * configure_native_child() in gdkwindow.c, those functions actually
4501 * propagate configure events to every child, failing to distinguish
4502 * "native" one from non-native one.
4503 *
4504 * Naturally, configure events propagated to here like that are fallacious
4505 * and, as a matter of fact, they trigger a geometric collapse of
4506 * gui.formwin.
4507 *
4508 * To filter out such fallacious events, check if the given event is the
4509 * one that was sent out to the right place. Ignore it if not.
4510 */
4511 if (event->window != gtk_widget_get_window(gui.formwin))
4512 return TRUE;
4513#endif
4514
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004515 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4516 * no. of char-heights), so we have to manually sanitise them.
4517 * Widths seem to sort themselves out, don't ask me why.
4518 */
4519 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004520 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004521
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004523 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 gtk_form_thaw(GTK_FORM(gui.formwin));
4525
4526 return TRUE;
4527}
4528
4529/*
4530 * Function called when window already closed.
4531 * We can't do much more here than to trying to preserve what had been done,
4532 * since the window is already inevitably going away.
4533 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004534#if GTK_CHECK_VERSION(3,0,0)
4535 static void
4536mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
4537#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004539mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar98921892016-02-23 17:14:37 +01004540#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541{
4542 /* Don't write messages to the GUI anymore */
4543 full_screen = FALSE;
4544
4545 gui.mainwin = NULL;
4546 gui.drawarea = NULL;
4547
4548 if (!exiting) /* only do anything if the destroy was unexpected */
4549 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004550 vim_strncpy(IObuff,
4551 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4552 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 preserve_exit();
4554 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004555#ifdef USE_GRESOURCE
4556 gui_gtk_unregister_resource();
4557#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558}
4559
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004560
4561/*
4562 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4563 * hints (and thus the required size from -geom), but that after that we
4564 * put the hints back to normal (the actual minimum size) so we may
4565 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaar49325942007-05-10 19:19:59 +00004566 * plug's window 'min hints to set *it's* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004567 * only way we have of making ourselves bigger (by set lines/columns).
4568 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004569 * second after the final attempt to reset the real minimum hints (done by
4570 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004571 * We'll not let the default hints be set while this timer's active.
4572 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004573 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004574check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004575{
4576 if (init_window_hints_state == 1)
4577 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004578 /* Safe to use normal hints now */
4579 init_window_hints_state = 0;
4580 update_window_manager_hints(0, 0);
4581 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004582 }
4583
4584 /* Keep on trying */
4585 init_window_hints_state = 1;
4586 return TRUE;
4587}
4588
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589/*
4590 * Open the GUI window which was created by a call to gui_mch_init().
4591 */
4592 int
4593gui_mch_open(void)
4594{
4595 guicolor_T fg_pixel = INVALCOLOR;
4596 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004597 guint pixel_width;
4598 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600 /*
4601 * Allow setting a window role on the command line, or invent one
4602 * if none was specified. This is mainly useful for GNOME session
4603 * support; allowing the WM to restore window placement.
4604 */
4605 if (role_argument != NULL)
4606 {
4607 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4608 }
4609 else
4610 {
4611 char *role;
4612
4613 /* Invent a unique-enough ID string for the role */
4614 role = g_strdup_printf("vim-%u-%u-%u",
4615 (unsigned)mch_get_pid(),
4616 (unsigned)g_random_int(),
4617 (unsigned)time(NULL));
4618
4619 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4620 g_free(role);
4621 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622
4623 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625
4626 /* Determine user specified geometry, if present. */
4627 if (gui.geom != NULL)
4628 {
4629 int mask;
4630 unsigned int w, h;
4631 int x = 0;
4632 int y = 0;
4633
4634 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4635
4636 if (mask & WidthValue)
4637 Columns = w;
4638 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004639 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004640 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004641 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004643 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004644 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004645
4646 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4647 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4648
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004649 pixel_width += get_menu_tool_width();
4650 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004651
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004653 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004654 int ww, hh;
4655 gui_mch_get_screen_dimensions(&ww, &hh);
4656 hh += p_ghr + get_menu_tool_height();
4657 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004658 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004659 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004660 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004661 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004663 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 vim_free(gui.geom);
4665 gui.geom = NULL;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004666
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004667 /* From now until everyone's stopped trying to set the window hints
4668 * to their correct minimum values, stop them being set as we need
4669 * them to remain at our required size for the parent GtkSocket to
4670 * give us the right initial size.
4671 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004672 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004673 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004674 update_window_manager_hints(pixel_width, pixel_height);
4675 init_window_hints_state = 1;
4676 g_timeout_add(1000, check_startup_plug_hints, NULL);
4677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678 }
4679
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004680 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4681 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004682 /* For GTK2 changing the size of the form widget doesn't cause window
4683 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004684 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004685 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004686 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687
4688 if (foreground_argument != NULL)
4689 fg_pixel = gui_get_color((char_u *)foreground_argument);
4690 if (fg_pixel == INVALCOLOR)
4691 fg_pixel = gui_get_color((char_u *)"Black");
4692
4693 if (background_argument != NULL)
4694 bg_pixel = gui_get_color((char_u *)background_argument);
4695 if (bg_pixel == INVALCOLOR)
4696 bg_pixel = gui_get_color((char_u *)"White");
4697
4698 if (found_reverse_arg)
4699 {
4700 gui.def_norm_pixel = bg_pixel;
4701 gui.def_back_pixel = fg_pixel;
4702 }
4703 else
4704 {
4705 gui.def_norm_pixel = fg_pixel;
4706 gui.def_back_pixel = bg_pixel;
4707 }
4708
4709 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4710 * in a vimrc file) */
4711 set_normal_colors();
4712
4713 /* Check that none of the colors are the same as the background color */
4714 gui_check_colors();
4715
4716 /* Get the colors for the highlight groups (gui_check_colors() might have
4717 * changed them). */
4718 highlight_gui_started(); /* re-init colors and fonts */
4719
Bram Moolenaar98921892016-02-23 17:14:37 +01004720#if GTK_CHECK_VERSION(3,0,0)
4721 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4722 G_CALLBACK(mainwin_destroy_cb), NULL);
4723#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
4725 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004726#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727
4728#ifdef FEAT_HANGULIN
4729 hangul_keyboard_set();
4730#endif
4731
4732 /*
4733 * Notify the fixed area about the need to resize the contents of the
4734 * gui.formwin, which we use for random positioning of the included
4735 * components.
4736 *
4737 * We connect this signal deferred finally after anything is in place,
4738 * since this is intended to handle resizements coming from the window
4739 * manager upon us and should not interfere with what VIM is requesting
4740 * upon startup.
4741 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004742#if GTK_CHECK_VERSION(3,0,0)
4743 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4744 G_CALLBACK(form_configure_event), NULL);
4745#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
4747 GTK_SIGNAL_FUNC(form_configure_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004748#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749
4750#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004751 /* Set up for receiving DND items. */
4752 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753
Bram Moolenaar98921892016-02-23 17:14:37 +01004754# if GTK_CHECK_VERSION(3,0,0)
4755 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4756 G_CALLBACK(drag_data_received_cb), NULL);
4757# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
4759 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004760# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761#endif
4762
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004764 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765 if (found_iconic_arg && gtk_socket_id == 0)
4766 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767
4768 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004769#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 unsigned long menu_handler = 0;
4771# ifdef FEAT_TOOLBAR
4772 unsigned long tool_handler = 0;
4773# endif
4774 /*
4775 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4776 * show when restoring the saved layout configuration. We can't just
4777 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4778 * a toplevel window and thus will be realized immediately. Instead,
4779 * connect signal handlers to hide the widgets just after they've been
4780 * marked visible, but before the main window is realized.
4781 */
4782 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4783 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4784 G_CALLBACK(&gtk_widget_hide),
4785 NULL);
4786# ifdef FEAT_TOOLBAR
4787 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4788 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4789 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4790 G_CALLBACK(&gtk_widget_hide),
4791 NULL);
4792# endif
4793#endif
4794 gtk_widget_show(gui.mainwin);
4795
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004796#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 if (menu_handler != 0)
4798 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4799# ifdef FEAT_TOOLBAR
4800 if (tool_handler != 0)
4801 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4802# endif
4803#endif
4804 }
4805
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 return OK;
4807}
4808
4809
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004811gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812{
4813 if (gui.mainwin != NULL)
4814 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815}
4816
4817/*
4818 * Get the position of the top left corner of the window.
4819 */
4820 int
4821gui_mch_get_winpos(int *x, int *y)
4822{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 return OK;
4825}
4826
4827/*
4828 * Set the position of the top left corner of the window to the given
4829 * coordinates.
4830 */
4831 void
4832gui_mch_set_winpos(int x, int y)
4833{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835}
4836
Bram Moolenaar98921892016-02-23 17:14:37 +01004837#if !GTK_CHECK_VERSION(3,0,0)
4838# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839static int resize_idle_installed = FALSE;
4840/*
4841 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4842 * the shell size doesn't exceed the window size, i.e. if the window manager
4843 * ignored our size request. Usually this happens if the window is maximized.
4844 *
4845 * FIXME: It'd be nice if we could find a little more orthodox solution.
4846 * See also the remark below in gui_mch_set_shellsize().
4847 *
4848 * DISABLED: When doing ":set lines+=1" this function would first invoke
4849 * gui_resize_shell() with the old size, then the normal callback would
4850 * report the new size through form_configure_event(). That caused the window
4851 * layout to be messed up.
4852 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 static gboolean
4854force_shell_resize_idle(gpointer data)
4855{
4856 if (gui.mainwin != NULL
4857 && GTK_WIDGET_REALIZED(gui.mainwin)
4858 && GTK_WIDGET_VISIBLE(gui.mainwin))
4859 {
4860 int width;
4861 int height;
4862
4863 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4864
4865 width -= get_menu_tool_width();
4866 height -= get_menu_tool_height();
4867
4868 gui_resize_shell(width, height);
4869 }
4870
4871 resize_idle_installed = FALSE;
4872 return FALSE; /* don't call me again */
4873}
Bram Moolenaar98921892016-02-23 17:14:37 +01004874# endif
4875#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876
Bram Moolenaar09736232009-09-23 16:14:49 +00004877/*
4878 * Return TRUE if the main window is maximized.
4879 */
4880 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004881gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004882{
Bram Moolenaar98921892016-02-23 17:14:37 +01004883#if GTK_CHECK_VERSION(3,0,0)
4884 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4885 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4886 & GDK_WINDOW_STATE_MAXIMIZED));
4887#else
Bram Moolenaar09736232009-09-23 16:14:49 +00004888 return (gui.mainwin != NULL && gui.mainwin->window != NULL
4889 && (gdk_window_get_state(gui.mainwin->window)
4890 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar98921892016-02-23 17:14:37 +01004891#endif
Bram Moolenaar09736232009-09-23 16:14:49 +00004892}
4893
4894/*
4895 * Unmaximize the main window
4896 */
4897 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004898gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004899{
4900 if (gui.mainwin != NULL)
4901 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4902}
Bram Moolenaar09736232009-09-23 16:14:49 +00004903
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904/*
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004905 * Called when the font changed while the window is maximized. Compute the
4906 * new Rows and Columns. This is like resizing the window.
4907 */
4908 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004909gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004910{
4911 int w, h;
4912
4913 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4914 w -= get_menu_tool_width();
4915 h -= get_menu_tool_height();
4916 gui_resize_shell(w, h);
4917}
4918
4919/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 * Set the windows size.
4921 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922 void
4923gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004924 int min_width UNUSED, int min_height UNUSED,
4925 int base_width UNUSED, int base_height UNUSED,
4926 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 /* give GTK+ a chance to put all widget's into place */
4929 gui_mch_update();
4930
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004931 /* this will cause the proper resizement to happen too */
4932 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004933 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004934
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004936 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 * main window instead. */
4938 width += get_menu_tool_width();
4939 height += get_menu_tool_height();
4940
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004941 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004942 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004943 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004944 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945
Bram Moolenaar98921892016-02-23 17:14:37 +01004946# if !GTK_CHECK_VERSION(3,0,0)
4947# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 if (!resize_idle_installed)
4949 {
4950 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4951 &force_shell_resize_idle, NULL, NULL);
4952 resize_idle_installed = TRUE;
4953 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004954# endif
4955# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 /*
4957 * Wait until all events are processed to prevent a crash because the
4958 * real size of the drawing area doesn't reflect Vim's internal ideas.
4959 *
4960 * This is a bit of a hack, since Vim is a terminal application with a GUI
4961 * on top, while the GUI expects to be the boss.
4962 */
4963 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964}
4965
4966
4967/*
4968 * The screen size is used to make sure the initial window doesn't get bigger
4969 * than the screen. This subtracts some room for menubar, toolbar and window
4970 * decorations.
4971 */
4972 void
4973gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4974{
4975#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaara859f042016-11-17 19:11:55 +01004976# if GTK_CHECK_VERSION(3,22,2)
4977 GdkRectangle rect;
4978 GdkMonitor * const mon = gdk_display_get_monitor_at_window(
4979 gtk_widget_get_display(gui.mainwin),
4980 gtk_widget_get_window(gui.mainwin));
4981 gdk_monitor_get_geometry(mon, &rect);
4982
4983 *screen_w = rect.width;
4984 *screen_h = rect.height - p_ghr;
4985# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 GdkScreen* screen;
4987
4988 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
4989 screen = gtk_widget_get_screen(gui.mainwin);
4990 else
4991 screen = gdk_screen_get_default();
4992
4993 *screen_w = gdk_screen_get_width(screen);
4994 *screen_h = gdk_screen_get_height(screen) - p_ghr;
Bram Moolenaara859f042016-11-17 19:11:55 +01004995# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996#else
4997 *screen_w = gdk_screen_width();
4998 /* Subtract 'guiheadroom' from the height to allow some room for the
4999 * window manager (task list and window title bar). */
5000 *screen_h = gdk_screen_height() - p_ghr;
5001#endif
5002
5003 /*
5004 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
5005 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02005006 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 * This should be completely changed later.
5008 */
5009 *screen_w -= get_menu_tool_width();
5010 *screen_h -= get_menu_tool_height();
5011}
5012
5013#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005015gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 if (title != NULL && output_conv.vc_type != CONV_NONE)
5018 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019
5020 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
5021
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 if (output_conv.vc_type != CONV_NONE)
5023 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024}
5025#endif /* FEAT_TITLE */
5026
5027#if defined(FEAT_MENU) || defined(PROTO)
5028 void
5029gui_mch_enable_menu(int showit)
5030{
5031 GtkWidget *widget;
5032
5033# ifdef FEAT_GUI_GNOME
5034 if (using_gnome)
5035 widget = gui.menubar_h;
5036 else
5037# endif
5038 widget = gui.menubar;
5039
Bram Moolenaar18144c82006-04-12 21:52:12 +00005040 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01005041# if GTK_CHECK_VERSION(3,0,0)
5042 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
5043# else
Bram Moolenaar18144c82006-04-12 21:52:12 +00005044 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
Bram Moolenaar98921892016-02-23 17:14:37 +01005045# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 {
5047 if (showit)
5048 gtk_widget_show(widget);
5049 else
5050 gtk_widget_hide(widget);
5051
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005052 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 }
5054}
5055#endif /* FEAT_MENU */
5056
5057#if defined(FEAT_TOOLBAR) || defined(PROTO)
5058 void
5059gui_mch_show_toolbar(int showit)
5060{
5061 GtkWidget *widget;
5062
5063 if (gui.toolbar == NULL)
5064 return;
5065
5066# ifdef FEAT_GUI_GNOME
5067 if (using_gnome)
5068 widget = gui.toolbar_h;
5069 else
5070# endif
5071 widget = gui.toolbar;
5072
5073 if (showit)
5074 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
5075
Bram Moolenaar98921892016-02-23 17:14:37 +01005076# if GTK_CHECK_VERSION(3,0,0)
5077 if (!showit != !gtk_widget_get_visible(widget))
5078# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 if (!showit != !GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01005080# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 {
5082 if (showit)
5083 gtk_widget_show(widget);
5084 else
5085 gtk_widget_hide(widget);
5086
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005087 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 }
5089}
5090#endif /* FEAT_TOOLBAR */
5091
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092/*
5093 * Check if a given font is a CJK font. This is done in a very crude manner. It
5094 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
5095 * font. Consequently, this function cannot be used as a general purpose check
5096 * for CJK-ness for which fontconfig APIs should be used. This is only used by
5097 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
5098 */
5099 static int
5100is_cjk_font(PangoFontDescription *font_desc)
5101{
5102 static const char * const cjk_langs[] =
5103 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
5104
5105 PangoFont *font;
5106 unsigned i;
5107 int is_cjk = FALSE;
5108
5109 font = pango_context_load_font(gui.text_context, font_desc);
5110
5111 if (font == NULL)
5112 return FALSE;
5113
5114 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
5115 {
5116 PangoCoverage *coverage;
5117 gunichar uc;
5118
5119 coverage = pango_font_get_coverage(
5120 font, pango_language_from_string(cjk_langs[i]));
5121
5122 if (coverage != NULL)
5123 {
5124 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
5125 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
5126 pango_coverage_unref(coverage);
5127 }
5128 }
5129
5130 g_object_unref(font);
5131
5132 return is_cjk;
5133}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134
Bram Moolenaar231334e2005-07-25 20:46:57 +00005135/*
5136 * Adjust gui.char_height (after 'linespace' was changed).
5137 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00005139gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 PangoFontMetrics *metrics;
5142 int ascent;
5143 int descent;
5144
5145 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
5146 pango_context_get_language(gui.text_context));
5147 ascent = pango_font_metrics_get_ascent(metrics);
5148 descent = pango_font_metrics_get_descent(metrics);
5149
5150 pango_font_metrics_unref(metrics);
5151
5152 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00005153 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00005154 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
5156
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 /* A not-positive value of char_height may crash Vim. Only happens
5158 * if 'linespace' is negative (which does make sense sometimes). */
5159 gui.char_ascent = MAX(gui.char_ascent, 0);
5160 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5161
5162 return OK;
5163}
5164
Bram Moolenaar98921892016-02-23 17:14:37 +01005165#if GTK_CHECK_VERSION(3,0,0)
5166/* Callback function used in gui_mch_font_dialog() */
5167 static gboolean
5168font_filter(const PangoFontFamily *family,
5169 const PangoFontFace *face UNUSED,
5170 gpointer data UNUSED)
5171{
5172 return pango_font_family_is_monospace((PangoFontFamily *)family);
5173}
5174#endif
5175
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176/*
5177 * Put up a font dialog and return the selected font name in allocated memory.
5178 * "oldval" is the previous value. Return NULL when cancelled.
5179 * This should probably go into gui_gtk.c. Hmm.
5180 * FIXME:
5181 * The GTK2 font selection dialog has no filtering API. So we could either
5182 * a) implement our own (possibly copying the code from somewhere else) or
5183 * b) just live with it.
5184 */
5185 char_u *
5186gui_mch_font_dialog(char_u *oldval)
5187{
5188 GtkWidget *dialog;
5189 int response;
5190 char_u *fontname = NULL;
5191 char_u *oldname;
5192
Bram Moolenaar98921892016-02-23 17:14:37 +01005193#if GTK_CHECK_VERSION(3,2,0)
5194 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
5195 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
5196 NULL, NULL);
5197#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005199#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200
5201 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
5202 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
5203
5204 if (oldval != NULL && oldval[0] != NUL)
5205 {
5206 if (output_conv.vc_type != CONV_NONE)
5207 oldname = string_convert(&output_conv, oldval, NULL);
5208 else
5209 oldname = oldval;
5210
5211 /* Annoying bug in GTK (or Pango): if the font name does not include a
5212 * size, zero is used. Use default point size ten. */
5213 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
5214 {
5215 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
5216
5217 if (p != NULL)
5218 {
5219 STRCPY(p + STRLEN(p), " 10");
5220 if (oldname != oldval)
5221 vim_free(oldname);
5222 oldname = p;
5223 }
5224 }
5225
Bram Moolenaar98921892016-02-23 17:14:37 +01005226#if GTK_CHECK_VERSION(3,2,0)
5227 gtk_font_chooser_set_font(
5228 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
5229#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 gtk_font_selection_dialog_set_font_name(
5231 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01005232#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233
5234 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005235 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005237 else
Bram Moolenaar98921892016-02-23 17:14:37 +01005238#if GTK_CHECK_VERSION(3,2,0)
5239 gtk_font_chooser_set_font(
5240 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
5241#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005242 gtk_font_selection_dialog_set_font_name(
5243 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01005244#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245
5246 response = gtk_dialog_run(GTK_DIALOG(dialog));
5247
5248 if (response == GTK_RESPONSE_OK)
5249 {
5250 char *name;
5251
Bram Moolenaar98921892016-02-23 17:14:37 +01005252#if GTK_CHECK_VERSION(3,2,0)
5253 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
5254#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 name = gtk_font_selection_dialog_get_font_name(
5256 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01005257#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 if (name != NULL)
5259 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005260 char_u *p;
5261
5262 /* Apparently some font names include a comma, need to escape
5263 * that, because in 'guifont' it separates names. */
5264 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005266 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005267 {
5268 fontname = string_convert(&input_conv, p, NULL);
5269 vim_free(p);
5270 }
5271 else
5272 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 }
5274 }
5275
5276 if (response != GTK_RESPONSE_NONE)
5277 gtk_widget_destroy(dialog);
5278
5279 return fontname;
5280}
5281
5282/*
5283 * Some monospace fonts don't support a bold weight, and fall back
5284 * silently to the regular weight. But this is no good since our text
5285 * drawing function can emulate bold by overstriking. So let's try
5286 * to detect whether bold weight is actually available and emulate it
5287 * otherwise.
5288 *
5289 * Note that we don't need to check for italic style since Xft can
5290 * emulate italic on its own, provided you have a proper fontconfig
5291 * setup. We wouldn't be able to emulate it in Vim anyway.
5292 */
5293 static void
5294get_styled_font_variants(void)
5295{
5296 PangoFontDescription *bold_font_desc;
5297 PangoFont *plain_font;
5298 PangoFont *bold_font;
5299
5300 gui.font_can_bold = FALSE;
5301
5302 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5303
5304 if (plain_font == NULL)
5305 return;
5306
5307 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5308 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5309
5310 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5311 /*
5312 * The comparison relies on the unique handle nature of a PangoFont*,
5313 * i.e. it's assumed that a different PangoFont* won't refer to the
5314 * same font. Seems to work, and failing here isn't critical anyway.
5315 */
5316 if (bold_font != NULL)
5317 {
5318 gui.font_can_bold = (bold_font != plain_font);
5319 g_object_unref(bold_font);
5320 }
5321
5322 pango_font_description_free(bold_font_desc);
5323 g_object_unref(plain_font);
5324}
5325
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326static PangoEngineShape *default_shape_engine = NULL;
5327
5328/*
5329 * Create a map from ASCII characters in the range [32,126] to glyphs
5330 * of the current font. This is used by gui_gtk2_draw_string() to skip
5331 * the itemize and shaping process for the most common case.
5332 */
5333 static void
5334ascii_glyph_table_init(void)
5335{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005336 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 PangoAttrList *attr_list;
5338 GList *item_list;
5339 int i;
5340
5341 if (gui.ascii_glyphs != NULL)
5342 pango_glyph_string_free(gui.ascii_glyphs);
5343 if (gui.ascii_font != NULL)
5344 g_object_unref(gui.ascii_font);
5345
5346 gui.ascii_glyphs = NULL;
5347 gui.ascii_font = NULL;
5348
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005349 /* For safety, fill in question marks for the control characters.
5350 * Put a space between characters to avoid shaping. */
5351 for (i = 0; i < 128; ++i)
5352 {
5353 if (i >= 32 && i < 127)
5354 ascii_chars[2 * i] = i;
5355 else
5356 ascii_chars[2 * i] = '?';
5357 ascii_chars[2 * i + 1] = ' ';
5358 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359
5360 attr_list = pango_attr_list_new();
5361 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5362 0, sizeof(ascii_chars), attr_list, NULL);
5363
5364 if (item_list != NULL && item_list->next == NULL) /* play safe */
5365 {
5366 PangoItem *item;
5367 int width;
5368
5369 item = (PangoItem *)item_list->data;
5370 width = gui.char_width * PANGO_SCALE;
5371
5372 /* Remember the shape engine used for ASCII. */
5373 default_shape_engine = item->analysis.shape_engine;
5374
5375 gui.ascii_font = item->analysis.font;
5376 g_object_ref(gui.ascii_font);
5377
5378 gui.ascii_glyphs = pango_glyph_string_new();
5379
5380 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5381 &item->analysis, gui.ascii_glyphs);
5382
5383 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5384
5385 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5386 {
5387 PangoGlyphGeometry *geom;
5388
5389 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5390 geom->x_offset += MAX(0, width - geom->width) / 2;
5391 geom->width = width;
5392 }
5393 }
5394
5395 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5396 g_list_free(item_list);
5397 pango_attr_list_unref(attr_list);
5398}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399
5400/*
5401 * Initialize Vim to use the font or fontset with the given name.
5402 * Return FAIL if the font could not be loaded, OK otherwise.
5403 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005405gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 PangoFontDescription *font_desc;
5408 PangoLayout *layout;
5409 int width;
5410
5411 /* If font_name is NULL, this means to use the default, which should
5412 * be present on all proper Pango/fontconfig installations. */
5413 if (font_name == NULL)
5414 font_name = (char_u *)DEFAULT_FONT;
5415
5416 font_desc = gui_mch_get_font(font_name, FALSE);
5417
5418 if (font_desc == NULL)
5419 return FAIL;
5420
5421 gui_mch_free_font(gui.norm_font);
5422 gui.norm_font = font_desc;
5423
5424 pango_context_set_font_description(gui.text_context, font_desc);
5425
5426 layout = pango_layout_new(gui.text_context);
5427 pango_layout_set_text(layout, "MW", 2);
5428 pango_layout_get_size(layout, &width, NULL);
5429 /*
5430 * Set char_width to half the width obtained from pango_layout_get_size()
5431 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5432 * Pango to use the same width for both non-CJK characters (e.g. Latin
5433 * letters and numbers) and CJK characters. This results in 's p a c e d
5434 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5435 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5436 * width for CJK fonts.
5437 *
5438 * For related bugs, see:
5439 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5440 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5441 *
5442 * With this, for all four of the following cases, Vim works fine:
5443 * guifont=CJK_fixed_width_font
5444 * guifont=Non_CJK_fixed_font
5445 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5446 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5447 */
5448 if (is_cjk_font(gui.norm_font))
5449 {
5450 int cjk_width;
5451
5452 /* Measure the text extent of U+4E00 and U+4E8C */
5453 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5454 pango_layout_get_size(layout, &cjk_width, NULL);
5455
5456 if (width == cjk_width) /* Xft not patched */
5457 width /= 2;
5458 }
5459 g_object_unref(layout);
5460
5461 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5462
5463 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5464 if (gui.char_width <= 0)
5465 gui.char_width = 8;
5466
Bram Moolenaar231334e2005-07-25 20:46:57 +00005467 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468
5469 /* Set the fontname, which will be used for information purposes */
5470 hl_set_font_name(font_name);
5471
5472 get_styled_font_variants();
5473 ascii_glyph_table_init();
5474
5475 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5476 if (gui.wide_font != NULL
5477 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5478 {
5479 pango_font_description_free(gui.wide_font);
5480 gui.wide_font = NULL;
5481 }
5482
Bram Moolenaare161c792009-11-03 17:13:59 +00005483 if (gui_mch_maximized())
5484 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005485 /* Update lines and columns in accordance with the new font, keep the
5486 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005487 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005488 }
5489 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005490 {
5491 /* Preserve the logical dimensions of the screen. */
5492 update_window_manager_hints(0, 0);
5493 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494
5495 return OK;
5496}
5497
5498/*
5499 * Get a reference to the font "name".
5500 * Return zero for failure.
5501 */
5502 GuiFont
5503gui_mch_get_font(char_u *name, int report_error)
5504{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506
5507 /* can't do this when GUI is not running */
5508 if (!gui.in_use || name == NULL)
5509 return NULL;
5510
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 if (output_conv.vc_type != CONV_NONE)
5512 {
5513 char_u *buf;
5514
5515 buf = string_convert(&output_conv, name, NULL);
5516 if (buf != NULL)
5517 {
5518 font = pango_font_description_from_string((const char *)buf);
5519 vim_free(buf);
5520 }
5521 else
5522 font = NULL;
5523 }
5524 else
5525 font = pango_font_description_from_string((const char *)name);
5526
5527 if (font != NULL)
5528 {
5529 PangoFont *real_font;
5530
5531 /* pango_context_load_font() bails out if no font size is set */
5532 if (pango_font_description_get_size(font) <= 0)
5533 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5534
5535 real_font = pango_context_load_font(gui.text_context, font);
5536
5537 if (real_font == NULL)
5538 {
5539 pango_font_description_free(font);
5540 font = NULL;
5541 }
5542 else
5543 g_object_unref(real_font);
5544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545
5546 if (font == NULL)
5547 {
5548 if (report_error)
Bram Moolenaarc93e7912008-07-08 10:46:08 +00005549 EMSG2(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 return NULL;
5551 }
5552
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 return font;
5554}
5555
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005556#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005557/*
5558 * Return the name of font "font" in allocated memory.
5559 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005560 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005561gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005562{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005563 if (font != NOFONT)
5564 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005565 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005566
Bram Moolenaar89d40322006-08-29 15:30:07 +00005567 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005568 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005569 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005570
Bram Moolenaar89d40322006-08-29 15:30:07 +00005571 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005572 return s;
5573 }
5574 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005575 return NULL;
5576}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005577#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005578
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579/*
5580 * If a font is not going to be used, free its structure.
5581 */
5582 void
5583gui_mch_free_font(GuiFont font)
5584{
5585 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587}
5588
Bram Moolenaar071d4272004-06-13 20:20:40 +00005589/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005590 * Return the Pixel value (color) for the given color name.
5591 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 * Return INVALCOLOR for error.
5593 */
5594 guicolor_T
5595gui_mch_get_color(char_u *name)
5596{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 if (!gui.in_use) /* can't do this when GUI not running */
5598 return INVALCOLOR;
5599
Bram Moolenaar98921892016-02-23 17:14:37 +01005600#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005601 return name != NULL ? gui_get_color_cmn(name) : INVALCOLOR;
Bram Moolenaar98921892016-02-23 17:14:37 +01005602#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005603 guicolor_T color;
5604 GdkColor gcolor;
5605 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606
Bram Moolenaar36edf062016-07-21 22:10:12 +02005607 color = (name != NULL) ? gui_get_color_cmn(name) : INVALCOLOR;
5608 if (color == INVALCOLOR)
5609 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610
Bram Moolenaar36edf062016-07-21 22:10:12 +02005611 gcolor.red = (guint16)(((color & 0xff0000) >> 16) / 255.0 * 65535 + 0.5);
5612 gcolor.green = (guint16)(((color & 0xff00) >> 8) / 255.0 * 65535 + 0.5);
5613 gcolor.blue = (guint16)((color & 0xff) / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614
Bram Moolenaar36edf062016-07-21 22:10:12 +02005615 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5616 &gcolor, FALSE, TRUE);
5617
5618 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5619#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620}
5621
5622/*
5623 * Set the current text foreground color.
5624 */
5625 void
5626gui_mch_set_fg_color(guicolor_T color)
5627{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005628#if GTK_CHECK_VERSION(3,0,0)
5629 *gui.fgcolor = color_to_rgba(color);
5630#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005631 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005632#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633}
5634
5635/*
5636 * Set the current text background color.
5637 */
5638 void
5639gui_mch_set_bg_color(guicolor_T color)
5640{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005641#if GTK_CHECK_VERSION(3,0,0)
5642 *gui.bgcolor = color_to_rgba(color);
5643#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005645#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646}
5647
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005648/*
5649 * Set the current text special color.
5650 */
5651 void
5652gui_mch_set_sp_color(guicolor_T color)
5653{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005654#if GTK_CHECK_VERSION(3,0,0)
5655 *gui.spcolor = color_to_rgba(color);
5656#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005657 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005658#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005659}
5660
Bram Moolenaar071d4272004-06-13 20:20:40 +00005661/*
5662 * Function-like convenience macro for the sake of efficiency.
5663 */
5664#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5665 G_STMT_START{ \
5666 PangoAttribute *tmp_attr_; \
5667 tmp_attr_ = (Attribute); \
5668 tmp_attr_->start_index = (Start); \
5669 tmp_attr_->end_index = (End); \
5670 pango_attr_list_insert((AttrList), tmp_attr_); \
5671 }G_STMT_END
5672
5673 static void
5674apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5675{
5676 char_u *start = NULL;
5677 char_u *p;
5678 int uc;
5679
5680 for (p = s; p < s + len; p += utf_byte2len(*p))
5681 {
5682 uc = utf_ptr2char(p);
5683
5684 if (start == NULL)
5685 {
5686 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5687 start = p;
5688 }
5689 else if (uc < 0x80 /* optimization shortcut */
5690 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5691 {
5692 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5693 attr_list, start - s, p - s);
5694 start = NULL;
5695 }
5696 }
5697
5698 if (start != NULL)
5699 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5700 attr_list, start - s, len);
5701}
5702
5703 static int
5704count_cluster_cells(char_u *s, PangoItem *item,
5705 PangoGlyphString* glyphs, int i,
5706 int *cluster_width,
5707 int *last_glyph_rbearing)
5708{
5709 char_u *p;
5710 int next; /* glyph start index of next cluster */
5711 int start, end; /* string segment of current cluster */
5712 int width; /* real cluster width in Pango units */
5713 int uc;
5714 int cellcount = 0;
5715
5716 width = glyphs->glyphs[i].geometry.width;
5717
5718 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5719 {
5720 if (glyphs->glyphs[next].attr.is_cluster_start)
5721 break;
5722 else if (glyphs->glyphs[next].geometry.width > width)
5723 width = glyphs->glyphs[next].geometry.width;
5724 }
5725
5726 start = item->offset + glyphs->log_clusters[i];
5727 end = item->offset + ((next < glyphs->num_glyphs) ?
5728 glyphs->log_clusters[next] : item->length);
5729
5730 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5731 {
5732 uc = utf_ptr2char(p);
5733 if (uc < 0x80)
5734 ++cellcount;
5735 else if (!utf_iscomposing(uc))
5736 cellcount += utf_char2cells(uc);
5737 }
5738
5739 if (last_glyph_rbearing != NULL
5740 && cellcount > 0 && next == glyphs->num_glyphs)
5741 {
5742 PangoRectangle ink_rect;
5743 /*
5744 * If a certain combining mark had to be taken from a non-monospace
5745 * font, we have to compensate manually by adapting x_offset according
5746 * to the ink extents of the previous glyph.
5747 */
5748 pango_font_get_glyph_extents(item->analysis.font,
5749 glyphs->glyphs[i].glyph,
5750 &ink_rect, NULL);
5751
5752 if (PANGO_RBEARING(ink_rect) > 0)
5753 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5754 }
5755
5756 if (cellcount > 0)
5757 *cluster_width = width;
5758
5759 return cellcount;
5760}
5761
5762/*
5763 * If there are only combining characters in the cluster, we cannot just
5764 * change the width of the previous glyph since there is none. Therefore
5765 * some guesswork is needed.
5766 *
5767 * If ink_rect.x is negative Pango apparently has taken care of the composing
5768 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5769 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005770 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771 *
5772 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5773 * the position of the previous glyph. Apparently this happens only with old
5774 * X fonts which don't provide the special combining information needed by
5775 * Pango.
5776 */
5777 static void
5778setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5779 int last_cellcount, int last_cluster_width,
5780 int last_glyph_rbearing)
5781{
5782 PangoRectangle ink_rect;
5783 PangoRectangle logical_rect;
5784 int width;
5785
5786 width = last_cellcount * gui.char_width * PANGO_SCALE;
5787 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5788 glyph->geometry.width = 0;
5789
5790 pango_font_get_glyph_extents(item->analysis.font,
5791 glyph->glyph,
5792 &ink_rect, &logical_rect);
5793 if (ink_rect.x < 0)
5794 {
5795 glyph->geometry.x_offset += last_glyph_rbearing;
5796 glyph->geometry.y_offset = logical_rect.height
5797 - (gui.char_height - p_linespace) * PANGO_SCALE;
5798 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005799 else
5800 /* If the accent width is smaller than the cluster width, position it
5801 * in the middle. */
5802 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803}
5804
Bram Moolenaar98921892016-02-23 17:14:37 +01005805#if GTK_CHECK_VERSION(3,0,0)
5806 static void
5807draw_glyph_string(int row, int col, int num_cells, int flags,
5808 PangoFont *font, PangoGlyphString *glyphs,
5809 cairo_t *cr)
5810#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 static void
5812draw_glyph_string(int row, int col, int num_cells, int flags,
5813 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005814#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815{
5816 if (!(flags & DRAW_TRANSP))
5817 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005818#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005819 cairo_set_source_rgba(cr,
5820 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5821 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005822 cairo_rectangle(cr,
5823 FILL_X(col), FILL_Y(row),
5824 num_cells * gui.char_width, gui.char_height);
5825 cairo_fill(cr);
5826#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5828
5829 gdk_draw_rectangle(gui.drawarea->window,
5830 gui.text_gc,
5831 TRUE,
5832 FILL_X(col),
5833 FILL_Y(row),
5834 num_cells * gui.char_width,
5835 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005836#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005837 }
5838
Bram Moolenaar98921892016-02-23 17:14:37 +01005839#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005840 cairo_set_source_rgba(cr,
5841 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5842 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005843 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5844 pango_cairo_show_glyph_string(cr, font, glyphs);
5845#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5847
5848 gdk_draw_glyphs(gui.drawarea->window,
5849 gui.text_gc,
5850 font,
5851 TEXT_X(col),
5852 TEXT_Y(row),
5853 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005854#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855
5856 /* redraw the contents with an offset of 1 to emulate bold */
5857 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005858#if GTK_CHECK_VERSION(3,0,0)
5859 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005860 cairo_set_source_rgba(cr,
5861 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5862 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005863 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5864 pango_cairo_show_glyph_string(cr, font, glyphs);
5865 }
5866#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 gdk_draw_glyphs(gui.drawarea->window,
5868 gui.text_gc,
5869 font,
5870 TEXT_X(col) + 1,
5871 TEXT_Y(row),
5872 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005873#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874}
5875
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005876/*
5877 * Draw underline and undercurl at the bottom of the character cell.
5878 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005879#if GTK_CHECK_VERSION(3,0,0)
5880 static void
5881draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5882#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005883 static void
5884draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005885#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005886{
5887 int i;
5888 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005889 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005890 int y = FILL_Y(row + 1) - 1;
5891
5892 /* Undercurl: draw curl at the bottom of the character cell. */
5893 if (flags & DRAW_UNDERC)
5894 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005895#if GTK_CHECK_VERSION(3,0,0)
5896 cairo_set_line_width(cr, 1.0);
5897 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005898 cairo_set_source_rgba(cr,
5899 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5900 gui.spcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005901 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5902 {
5903 offset = val[i % 8];
5904 cairo_line_to(cr, i, y - offset + 0.5);
5905 }
5906 cairo_stroke(cr);
5907#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005908 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5909 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5910 {
5911 offset = val[i % 8];
5912 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5913 }
5914 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005915#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005916 }
5917
5918 /* Underline: draw a line at the bottom of the character cell. */
5919 if (flags & DRAW_UNDERL)
5920 {
5921 /* When p_linespace is 0, overwrite the bottom row of pixels.
5922 * Otherwise put the line just below the character. */
5923 if (p_linespace > 1)
5924 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005925#if GTK_CHECK_VERSION(3,0,0)
5926 {
5927 cairo_set_line_width(cr, 1.0);
5928 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005929 cairo_set_source_rgba(cr,
5930 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5931 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005932 cairo_move_to(cr, FILL_X(col), y + 0.5);
5933 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5934 cairo_stroke(cr);
5935 }
5936#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005937 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5938 FILL_X(col), y,
5939 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005940#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005941 }
5942}
5943
Bram Moolenaar071d4272004-06-13 20:20:40 +00005944 int
5945gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5946{
5947 GdkRectangle area; /* area for clip mask */
5948 PangoGlyphString *glyphs; /* glyphs of current item */
5949 int column_offset = 0; /* column offset in cells */
5950 int i;
5951 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5952 char_u *new_conv_buf;
5953 int convlen;
5954 char_u *sp, *bp;
5955 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005956#if GTK_CHECK_VERSION(3,0,0)
5957 cairo_t *cr;
5958#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959
Bram Moolenaar98921892016-02-23 17:14:37 +01005960#if GTK_CHECK_VERSION(3,0,0)
5961 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
5962#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 if (gui.text_context == NULL || gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01005964#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 return len;
5966
5967 if (output_conv.vc_type != CONV_NONE)
5968 {
5969 /*
5970 * Convert characters from 'encoding' to 'termencoding', which is set
5971 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5972 * prohibits changing this to something else than UTF-8 if the GUI is
5973 * in use.
5974 */
5975 convlen = len;
5976 conv_buf = string_convert(&output_conv, s, &convlen);
5977 g_return_val_if_fail(conv_buf != NULL, len);
5978
5979 /* Correct for differences in char width: some chars are
5980 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5981 * compensate for that. */
5982 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5983 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005984 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005985 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5986 {
5987 new_conv_buf = alloc(convlen + 2);
5988 if (new_conv_buf == NULL)
5989 return len;
5990 plen += bp - conv_buf;
5991 mch_memmove(new_conv_buf, conv_buf, plen);
5992 new_conv_buf[plen] = ' ';
5993 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5994 convlen - plen + 1);
5995 vim_free(conv_buf);
5996 conv_buf = new_conv_buf;
5997 ++convlen;
5998 bp = conv_buf + plen;
5999 plen = 1;
6000 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006001 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002 bp += plen;
6003 }
6004 s = conv_buf;
6005 len = convlen;
6006 }
6007
6008 /*
6009 * Restrict all drawing to the current screen line in order to prevent
6010 * fuzzy font lookups from messing up the screen.
6011 */
6012 area.x = gui.border_offset;
6013 area.y = FILL_Y(row);
6014 area.width = gui.num_cols * gui.char_width;
6015 area.height = gui.char_height;
6016
Bram Moolenaar98921892016-02-23 17:14:37 +01006017#if GTK_CHECK_VERSION(3,0,0)
6018 cr = cairo_create(gui.surface);
6019 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
6020 cairo_clip(cr);
6021#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
6023 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01006024#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025
6026 glyphs = pango_glyph_string_new();
6027
6028 /*
6029 * Optimization hack: If possible, skip the itemize and shaping process
6030 * for pure ASCII strings. This optimization is particularly effective
6031 * because Vim draws space characters to clear parts of the screen.
6032 */
6033 if (!(flags & DRAW_ITALIC)
6034 && !((flags & DRAW_BOLD) && gui.font_can_bold)
6035 && gui.ascii_glyphs != NULL)
6036 {
6037 char_u *p;
6038
6039 for (p = s; p < s + len; ++p)
6040 if (*p & 0x80)
6041 goto not_ascii;
6042
6043 pango_glyph_string_set_size(glyphs, len);
6044
6045 for (i = 0; i < len; ++i)
6046 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02006047 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048 glyphs->log_clusters[i] = i;
6049 }
6050
Bram Moolenaar98921892016-02-23 17:14:37 +01006051#if GTK_CHECK_VERSION(3,0,0)
6052 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
6053#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006055#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056
6057 column_offset = len;
6058 }
6059 else
6060not_ascii:
6061 {
6062 PangoAttrList *attr_list;
6063 GList *item_list;
6064 int cluster_width;
6065 int last_glyph_rbearing;
6066 int cells = 0; /* cells occupied by current cluster */
6067
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006068 /* Safety check: pango crashes when invoked with invalid utf-8
6069 * characters. */
6070 if (!utf_valid_string(s, s + len))
6071 {
6072 column_offset = len;
6073 goto skipitall;
6074 }
6075
Bram Moolenaar071d4272004-06-13 20:20:40 +00006076 /* original width of the current cluster */
6077 cluster_width = PANGO_SCALE * gui.char_width;
6078
6079 /* right bearing of the last non-composing glyph */
6080 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
6081
6082 attr_list = pango_attr_list_new();
6083
6084 /* If 'guifontwide' is set then use that for double-width characters.
6085 * Otherwise just go with 'guifont' and let Pango do its thing. */
6086 if (gui.wide_font != NULL)
6087 apply_wide_font_attr(s, len, attr_list);
6088
6089 if ((flags & DRAW_BOLD) && gui.font_can_bold)
6090 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
6091 attr_list, 0, len);
6092 if (flags & DRAW_ITALIC)
6093 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
6094 attr_list, 0, len);
6095 /*
6096 * Break the text into segments with consistent directional level
6097 * and shaping engine. Pure Latin text needs only a single segment,
6098 * so there's no need to worry about the loop's efficiency. Better
6099 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
6100 */
6101 item_list = pango_itemize(gui.text_context,
6102 (const char *)s, 0, len, attr_list, NULL);
6103
6104 while (item_list != NULL)
6105 {
6106 PangoItem *item;
6107 int item_cells = 0; /* item length in cells */
6108
6109 item = (PangoItem *)item_list->data;
6110 item_list = g_list_delete_link(item_list, item_list);
6111 /*
6112 * Increment the bidirectional embedding level by 1 if it is not
6113 * even. An odd number means the output will be RTL, but we don't
6114 * want that since Vim handles right-to-left text on its own. It
6115 * would probably be sufficient to just set level = 0, but you can
6116 * never know :)
6117 *
6118 * Unfortunately we can't take advantage of Pango's ability to
6119 * render both LTR and RTL at the same time. In order to support
6120 * that, Vim's main screen engine would have to make use of Pango
6121 * functionality.
6122 */
6123 item->analysis.level = (item->analysis.level + 1) & (~1U);
6124
6125 /* HACK: Overrule the shape engine, we don't want shaping to be
6126 * done, because drawing the cursor would change the display. */
6127 item->analysis.shape_engine = default_shape_engine;
6128
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006129#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006130 pango_shape_full((const char *)s + item->offset, item->length,
6131 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006132#else
6133 pango_shape((const char *)s + item->offset, item->length,
6134 &item->analysis, glyphs);
6135#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136 /*
6137 * Fixed-width hack: iterate over the array and assign a fixed
6138 * width to each glyph, thus overriding the choice made by the
6139 * shaping engine. We use utf_char2cells() to determine the
6140 * number of cells needed.
6141 *
6142 * Also perform all kind of dark magic to get composing
6143 * characters right (and pretty too of course).
6144 */
6145 for (i = 0; i < glyphs->num_glyphs; ++i)
6146 {
6147 PangoGlyphInfo *glyph;
6148
6149 glyph = &glyphs->glyphs[i];
6150
6151 if (glyph->attr.is_cluster_start)
6152 {
6153 int cellcount;
6154
6155 cellcount = count_cluster_cells(
6156 s, item, glyphs, i, &cluster_width,
6157 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6158
6159 if (cellcount > 0)
6160 {
6161 int width;
6162
6163 width = cellcount * gui.char_width * PANGO_SCALE;
6164 glyph->geometry.x_offset +=
6165 MAX(0, width - cluster_width) / 2;
6166 glyph->geometry.width = width;
6167 }
6168 else
6169 {
6170 /* If there are only combining characters in the
6171 * cluster, we cannot just change the width of the
6172 * previous glyph since there is none. Therefore
6173 * some guesswork is needed. */
6174 setup_zero_width_cluster(item, glyph, cells,
6175 cluster_width,
6176 last_glyph_rbearing);
6177 }
6178
6179 item_cells += cellcount;
6180 cells = cellcount;
6181 }
6182 else if (i > 0)
6183 {
6184 int width;
6185
6186 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006187 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02006188 * In some circumstances Pango uses a positive x_offset,
6189 * then use the width of the previous glyph for this one
6190 * and set the previous width to zero.
6191 * Otherwise we get a negative x_offset, Pango has already
6192 * positioned the combining char, keep the widths as they
6193 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006194 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02006195 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006196 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006197 {
6198 glyphs->glyphs[i].geometry.width =
6199 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006200 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202 width = cells * gui.char_width * PANGO_SCALE;
6203 glyph->geometry.x_offset +=
6204 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 }
6206 else /* i == 0 "cannot happen" */
6207 {
6208 glyph->geometry.width = 0;
6209 }
6210 }
6211
6212 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01006213#if GTK_CHECK_VERSION(3,0,0)
6214 draw_glyph_string(row, col + column_offset, item_cells,
6215 flags, item->analysis.font, glyphs,
6216 cr);
6217#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218 draw_glyph_string(row, col + column_offset, item_cells,
6219 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006220#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006221
6222 pango_item_free(item);
6223
6224 column_offset += item_cells;
6225 }
6226
6227 pango_attr_list_unref(attr_list);
6228 }
6229
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006230skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006231 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006232#if GTK_CHECK_VERSION(3,0,0)
6233 draw_under(flags, row, col, column_offset, cr);
6234#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006235 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006236#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006237
6238 pango_glyph_string_free(glyphs);
6239 vim_free(conv_buf);
6240
Bram Moolenaar98921892016-02-23 17:14:37 +01006241#if GTK_CHECK_VERSION(3,0,0)
6242 cairo_destroy(cr);
6243 if (!gui.by_signal)
6244 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
6245 &area, FALSE);
6246#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006248#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249
6250 return column_offset;
6251}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006252
6253/*
6254 * Return OK if the key with the termcap name "name" is supported.
6255 */
6256 int
6257gui_mch_haskey(char_u *name)
6258{
6259 int i;
6260
6261 for (i = 0; special_keys[i].key_sym != 0; i++)
6262 if (name[0] == special_keys[i].code0
6263 && name[1] == special_keys[i].code1)
6264 return OK;
6265 return FAIL;
6266}
6267
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006268#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269/*
6270 * Return the text window-id and display. Only required for X-based GUI's
6271 */
6272 int
6273gui_get_x11_windis(Window *win, Display **dis)
6274{
Bram Moolenaar98921892016-02-23 17:14:37 +01006275#if GTK_CHECK_VERSION(3,0,0)
6276 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6277#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006279#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006281#if GTK_CHECK_VERSION(3,0,0)
6282 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6283 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
6284#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6286 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006287#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288 return OK;
6289 }
6290
6291 *dis = NULL;
6292 *win = 0;
6293 return FAIL;
6294}
6295#endif
6296
6297#if defined(FEAT_CLIENTSERVER) \
6298 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6299
6300 Display *
6301gui_mch_get_display(void)
6302{
Bram Moolenaar98921892016-02-23 17:14:37 +01006303#if GTK_CHECK_VERSION(3,0,0)
6304 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6305 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6306#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006307 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6308 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006309#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310 else
6311 return NULL;
6312}
6313#endif
6314
6315 void
6316gui_mch_beep(void)
6317{
6318#ifdef HAVE_GTK_MULTIHEAD
6319 GdkDisplay *display;
6320
Bram Moolenaar98921892016-02-23 17:14:37 +01006321# if GTK_CHECK_VERSION(3,0,0)
6322 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6323# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006325# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006326 display = gtk_widget_get_display(gui.mainwin);
6327 else
6328 display = gdk_display_get_default();
6329
6330 if (display != NULL)
6331 gdk_display_beep(display);
6332#else
6333 gdk_beep();
6334#endif
6335}
6336
6337 void
6338gui_mch_flash(int msec)
6339{
Bram Moolenaar98921892016-02-23 17:14:37 +01006340#if GTK_CHECK_VERSION(3,0,0)
6341 /* TODO Replace GdkGC with Cairo */
6342 (void)msec;
6343#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006344 GdkGCValues values;
6345 GdkGC *invert_gc;
6346
6347 if (gui.drawarea->window == NULL)
6348 return;
6349
6350 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6351 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6352 values.function = GDK_XOR;
6353 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6354 &values,
6355 GDK_GC_FOREGROUND |
6356 GDK_GC_BACKGROUND |
6357 GDK_GC_FUNCTION);
6358 gdk_gc_set_exposures(invert_gc,
6359 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6360 /*
6361 * Do a visual beep by changing back and forth in some undetermined way,
6362 * the foreground and background colors. This is due to the fact that
6363 * there can't be really any prediction about the effects of XOR on
6364 * arbitrary X11 servers. However this seems to be enough for what we
6365 * intend it to do.
6366 */
6367 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6368 TRUE,
6369 0, 0,
6370 FILL_X((int)Columns) + gui.border_offset,
6371 FILL_Y((int)Rows) + gui.border_offset);
6372
6373 gui_mch_flush();
6374 ui_delay((long)msec, TRUE); /* wait so many msec */
6375
6376 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6377 TRUE,
6378 0, 0,
6379 FILL_X((int)Columns) + gui.border_offset,
6380 FILL_Y((int)Rows) + gui.border_offset);
6381
6382 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006383#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006384}
6385
6386/*
6387 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6388 */
6389 void
6390gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6391{
Bram Moolenaar98921892016-02-23 17:14:37 +01006392#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006393 const GdkRectangle rect = {
6394 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6395 };
6396 cairo_t * const cr = cairo_create(gui.surface);
6397
Bram Moolenaar36edf062016-07-21 22:10:12 +02006398 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006399# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6400 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6401# else
6402 /* Give an implementation for older cairo versions if necessary. */
6403# endif
6404 gdk_cairo_rectangle(cr, &rect);
6405 cairo_fill(cr);
6406
6407 cairo_destroy(cr);
6408
6409 if (!gui.by_signal)
6410 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6411 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006412#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413 GdkGCValues values;
6414 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415
6416 if (gui.drawarea->window == NULL)
6417 return;
6418
Bram Moolenaar89d40322006-08-29 15:30:07 +00006419 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6420 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421 values.function = GDK_XOR;
6422 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6423 &values,
6424 GDK_GC_FOREGROUND |
6425 GDK_GC_BACKGROUND |
6426 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006427 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6428 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6430 TRUE,
6431 FILL_X(c), FILL_Y(r),
6432 (nc) * gui.char_width, (nr) * gui.char_height);
6433 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006434#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006435}
6436
6437/*
6438 * Iconify the GUI window.
6439 */
6440 void
6441gui_mch_iconify(void)
6442{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444}
6445
6446#if defined(FEAT_EVAL) || defined(PROTO)
6447/*
6448 * Bring the Vim window to the foreground.
6449 */
6450 void
6451gui_mch_set_foreground(void)
6452{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454}
6455#endif
6456
6457/*
6458 * Draw a cursor without focus.
6459 */
6460 void
6461gui_mch_draw_hollow_cursor(guicolor_T color)
6462{
6463 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006464#if GTK_CHECK_VERSION(3,0,0)
6465 cairo_t *cr;
6466#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006467
Bram Moolenaar98921892016-02-23 17:14:37 +01006468#if GTK_CHECK_VERSION(3,0,0)
6469 if (gtk_widget_get_window(gui.drawarea) == NULL)
6470#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006472#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006473 return;
6474
Bram Moolenaar98921892016-02-23 17:14:37 +01006475#if GTK_CHECK_VERSION(3,0,0)
6476 cr = cairo_create(gui.surface);
6477#endif
6478
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479 gui_mch_set_fg_color(color);
6480
Bram Moolenaar98921892016-02-23 17:14:37 +01006481#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006482 cairo_set_source_rgba(cr,
6483 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6484 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006485#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006486 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006487#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 if (mb_lefthalve(gui.row, gui.col))
6489 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006490#if GTK_CHECK_VERSION(3,0,0)
6491 cairo_set_line_width(cr, 1.0);
6492 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6493 cairo_rectangle(cr,
6494 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6495 i * gui.char_width - 1, gui.char_height - 1);
6496 cairo_stroke(cr);
6497 cairo_destroy(cr);
6498#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6500 FALSE,
6501 FILL_X(gui.col), FILL_Y(gui.row),
6502 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006503#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006504}
6505
6506/*
6507 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6508 * color "color".
6509 */
6510 void
6511gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6512{
Bram Moolenaar98921892016-02-23 17:14:37 +01006513#if GTK_CHECK_VERSION(3,0,0)
6514 if (gtk_widget_get_window(gui.drawarea) == NULL)
6515#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006517#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006518 return;
6519
6520 gui_mch_set_fg_color(color);
6521
Bram Moolenaar98921892016-02-23 17:14:37 +01006522#if GTK_CHECK_VERSION(3,0,0)
6523 {
6524 cairo_t *cr;
6525
6526 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006527 cairo_set_source_rgba(cr,
6528 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6529 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006530 cairo_rectangle(cr,
6531# ifdef FEAT_RIGHTLEFT
6532 /* vertical line should be on the right of current point */
6533 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6534# endif
6535 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6536 w, h);
6537 cairo_fill(cr);
6538 cairo_destroy(cr);
6539 }
6540#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6542 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6543 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006544# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545 /* vertical line should be on the right of current point */
6546 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006547# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006548 FILL_X(gui.col),
6549 FILL_Y(gui.row) + gui.char_height - h,
6550 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006551#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006552}
6553
6554
6555/*
6556 * Catch up with any queued X11 events. This may put keyboard input into the
6557 * input buffer, call resize call-backs, trigger timers etc. If there is
6558 * nothing in the X11 event queue (& no timers pending), then we return
6559 * immediately.
6560 */
6561 void
6562gui_mch_update(void)
6563{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006564 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6565 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006566}
6567
Bram Moolenaar98921892016-02-23 17:14:37 +01006568#if GTK_CHECK_VERSION(3,0,0)
6569 static gboolean
6570#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01006572#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573input_timer_cb(gpointer data)
6574{
6575 int *timed_out = (int *) data;
6576
Bram Moolenaar49325942007-05-10 19:19:59 +00006577 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006578 *timed_out = TRUE;
6579
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580 return FALSE; /* don't happen again */
6581}
6582
Bram Moolenaar071d4272004-06-13 20:20:40 +00006583/*
6584 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6585 * from the keyboard.
6586 * wtime == -1 Wait forever.
6587 * wtime == 0 This should never happen.
6588 * wtime > 0 Wait wtime milliseconds for a character.
6589 * Returns OK if a character was found to be available within the given time,
6590 * or FAIL otherwise.
6591 */
6592 int
6593gui_mch_wait_for_chars(long wtime)
6594{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006595 int focus;
6596 guint timer;
6597 static int timed_out;
6598 int retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599
6600 timed_out = FALSE;
6601
6602 /* this timeout makes sure that we will return if no characters arrived in
6603 * time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006604 if (wtime > 0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006605#if GTK_CHECK_VERSION(3,0,0)
6606 timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out);
6607#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01006609#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006610 else
6611 timer = 0;
6612
6613 focus = gui.in_focus;
6614
6615 do
6616 {
6617 /* Stop or start blinking when focus changes */
6618 if (gui.in_focus != focus)
6619 {
6620 if (gui.in_focus)
6621 gui_mch_start_blink();
6622 else
6623 gui_mch_stop_blink();
6624 focus = gui.in_focus;
6625 }
6626
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006627#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006628# ifdef FEAT_TIMERS
6629 did_add_timer = FALSE;
6630# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006631 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006632# ifdef FEAT_TIMERS
6633 if (did_add_timer)
6634 /* Need to recompute the waiting time. */
6635 goto theend;
6636# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006637#endif
6638
Bram Moolenaar071d4272004-06-13 20:20:40 +00006639 /*
6640 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006641 * Skip this if input is available anyway (can happen in rare
6642 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006644 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006645 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006646
6647 /* Got char, return immediately */
6648 if (input_available())
6649 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006650 retval = OK;
6651 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006652 }
6653 } while (wtime < 0 || !timed_out);
6654
6655 /*
6656 * Flush all eventually pending (drawing) events.
6657 */
6658 gui_mch_update();
6659
Bram Moolenaar4231da42016-06-02 14:30:04 +02006660theend:
6661 if (timer != 0 && !timed_out)
6662#if GTK_CHECK_VERSION(3,0,0)
6663 g_source_remove(timer);
6664#else
6665 gtk_timeout_remove(timer);
6666#endif
6667
6668 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669}
6670
6671
6672/****************************************************************************
6673 * Output drawing routines.
6674 ****************************************************************************/
6675
6676
6677/* Flush any output to the screen */
6678 void
6679gui_mch_flush(void)
6680{
6681#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01006682# if GTK_CHECK_VERSION(3,0,0)
6683 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6684# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006685 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006686# endif
Bram Moolenaarfdadad92016-07-15 17:49:58 +02006687 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006688#else
6689 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
6690#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006691}
6692
6693/*
6694 * Clear a rectangular region of the screen from text pos (row1, col1) to
6695 * (row2, col2) inclusive.
6696 */
6697 void
6698gui_mch_clear_block(int row1, int col1, int row2, int col2)
6699{
Bram Moolenaar98921892016-02-23 17:14:37 +01006700#if GTK_CHECK_VERSION(3,0,0)
6701 if (gtk_widget_get_window(gui.drawarea) == NULL)
6702 return;
6703#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006704 GdkColor color;
6705
6706 if (gui.drawarea->window == NULL)
6707 return;
6708
6709 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006710#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006711
Bram Moolenaar98921892016-02-23 17:14:37 +01006712#if GTK_CHECK_VERSION(3,0,0)
6713 {
6714 /* Add one pixel to the far right column in case a double-stroked
6715 * bold glyph may sit there. */
6716 const GdkRectangle rect = {
6717 FILL_X(col1), FILL_Y(row1),
6718 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6719 (row2 - row1 + 1) * gui.char_height
6720 };
6721 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6722 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006723# if GTK_CHECK_VERSION(3,22,2)
6724 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6725# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006726 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6727 if (pat != NULL)
6728 cairo_set_source(cr, pat);
6729 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006730 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006731# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006732 gdk_cairo_rectangle(cr, &rect);
6733 cairo_fill(cr);
6734 cairo_destroy(cr);
6735
6736 if (!gui.by_signal)
6737 gdk_window_invalidate_rect(win, &rect, FALSE);
6738 }
6739#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740 gdk_gc_set_foreground(gui.text_gc, &color);
6741
6742 /* Clear one extra pixel at the far right, for when bold characters have
6743 * spilled over to the window border. */
6744 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6745 FILL_X(col1), FILL_Y(row1),
6746 (col2 - col1 + 1) * gui.char_width
6747 + (col2 == Columns - 1),
6748 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006749#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750}
6751
Bram Moolenaar98921892016-02-23 17:14:37 +01006752#if GTK_CHECK_VERSION(3,0,0)
6753 static void
6754gui_gtk_window_clear(GdkWindow *win)
6755{
6756 const GdkRectangle rect = {
6757 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6758 };
6759 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006760# if GTK_CHECK_VERSION(3,22,2)
6761 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6762# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006763 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6764 if (pat != NULL)
6765 cairo_set_source(cr, pat);
6766 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006767 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006768# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006769 gdk_cairo_rectangle(cr, &rect);
6770 cairo_fill(cr);
6771 cairo_destroy(cr);
6772
6773 if (!gui.by_signal)
6774 gdk_window_invalidate_rect(win, &rect, FALSE);
6775}
6776#endif
6777
Bram Moolenaar071d4272004-06-13 20:20:40 +00006778 void
6779gui_mch_clear_all(void)
6780{
Bram Moolenaar98921892016-02-23 17:14:37 +01006781#if GTK_CHECK_VERSION(3,0,0)
6782 if (gtk_widget_get_window(gui.drawarea) != NULL)
6783 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
6784#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785 if (gui.drawarea->window != NULL)
6786 gdk_window_clear(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006787#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788}
6789
Bram Moolenaar98921892016-02-23 17:14:37 +01006790#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791/*
6792 * Redraw any text revealed by scrolling up/down.
6793 */
6794 static void
6795check_copy_area(void)
6796{
6797 GdkEvent *event;
6798 int expose_count;
6799
6800 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6801 return;
6802
6803 /* Avoid redrawing the cursor while scrolling or it'll end up where
6804 * we don't want it to be. I'm not sure if it's correct to call
6805 * gui_dont_update_cursor() at this point but it works as a quick
6806 * fix for now. */
Bram Moolenaar107abd22016-08-12 14:08:25 +02006807 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006808
6809 do
6810 {
6811 /* Wait to check whether the scroll worked or not. */
6812 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6813
6814 if (event == NULL)
6815 break; /* received NoExpose event */
6816
6817 gui_redraw(event->expose.area.x, event->expose.area.y,
6818 event->expose.area.width, event->expose.area.height);
6819
6820 expose_count = event->expose.count;
6821 gdk_event_free(event);
6822 }
6823 while (expose_count > 0); /* more events follow */
6824
6825 gui_can_update_cursor();
6826}
Bram Moolenaar98921892016-02-23 17:14:37 +01006827#endif /* !GTK_CHECK_VERSION(3,0,0) */
6828
6829#if GTK_CHECK_VERSION(3,0,0)
6830 static void
6831gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6832 int src_x, int src_y,
6833 int width, int height)
6834{
6835 cairo_t * const cr = cairo_create(gui.surface);
6836
6837 cairo_rectangle(cr, dest_x, dest_y, width, height);
6838 cairo_clip(cr);
6839 cairo_push_group(cr);
6840 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6841 cairo_paint(cr);
6842 cairo_pop_group_to_source(cr);
6843 cairo_paint(cr);
6844
6845 cairo_destroy(cr);
6846}
6847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848
6849/*
6850 * Delete the given number of lines from the given row, scrolling up any
6851 * text further down within the scroll region.
6852 */
6853 void
6854gui_mch_delete_lines(int row, int num_lines)
6855{
Bram Moolenaar98921892016-02-23 17:14:37 +01006856#if GTK_CHECK_VERSION(3,0,0)
6857 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6858 const int nrows = gui.scroll_region_bot - row + 1;
6859 const int src_nrows = nrows - num_lines;
6860
6861 gui_gtk_surface_copy_rect(
6862 FILL_X(gui.scroll_region_left), FILL_Y(row),
6863 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6864 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6865 gui_clear_block(
6866 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6867 gui.scroll_region_bot, gui.scroll_region_right);
6868 gui_gtk3_redraw(
6869 FILL_X(gui.scroll_region_left), FILL_Y(row),
6870 gui.char_width * ncols + 1, gui.char_height * nrows);
6871 if (!gui.by_signal)
6872 gtk_widget_queue_draw_area(gui.drawarea,
6873 FILL_X(gui.scroll_region_left), FILL_Y(row),
6874 gui.char_width * ncols + 1, gui.char_height * nrows);
6875#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6877 return; /* Can't see the window */
6878
6879 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6880 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6881
6882 /* copy one extra pixel, for when bold has spilled over */
6883 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6884 FILL_X(gui.scroll_region_left), FILL_Y(row),
6885 gui.drawarea->window,
6886 FILL_X(gui.scroll_region_left),
6887 FILL_Y(row + num_lines),
6888 gui.char_width * (gui.scroll_region_right
6889 - gui.scroll_region_left + 1) + 1,
6890 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6891
6892 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6893 gui.scroll_region_left,
6894 gui.scroll_region_bot, gui.scroll_region_right);
6895 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006896#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897}
6898
6899/*
6900 * Insert the given number of lines before the given row, scrolling down any
6901 * following text within the scroll region.
6902 */
6903 void
6904gui_mch_insert_lines(int row, int num_lines)
6905{
Bram Moolenaar98921892016-02-23 17:14:37 +01006906#if GTK_CHECK_VERSION(3,0,0)
6907 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6908 const int nrows = gui.scroll_region_bot - row + 1;
6909 const int src_nrows = nrows - num_lines;
6910
6911 gui_gtk_surface_copy_rect(
6912 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6913 FILL_X(gui.scroll_region_left), FILL_Y(row),
6914 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6915 gui_mch_clear_block(
6916 row, gui.scroll_region_left,
6917 row + num_lines - 1, gui.scroll_region_right);
6918 gui_gtk3_redraw(
6919 FILL_X(gui.scroll_region_left), FILL_Y(row),
6920 gui.char_width * ncols + 1, gui.char_height * nrows);
6921 if (!gui.by_signal)
6922 gtk_widget_queue_draw_area(gui.drawarea,
6923 FILL_X(gui.scroll_region_left), FILL_Y(row),
6924 gui.char_width * ncols + 1, gui.char_height * nrows);
6925#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6927 return; /* Can't see the window */
6928
6929 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6930 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6931
6932 /* copy one extra pixel, for when bold has spilled over */
6933 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6934 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6935 gui.drawarea->window,
6936 FILL_X(gui.scroll_region_left), FILL_Y(row),
6937 gui.char_width * (gui.scroll_region_right
6938 - gui.scroll_region_left + 1) + 1,
6939 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6940
6941 gui_clear_block(row, gui.scroll_region_left,
6942 row + num_lines - 1, gui.scroll_region_right);
6943 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006944#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006945}
6946
6947/*
6948 * X Selection stuff, for cutting and pasting text to other windows.
6949 */
6950 void
6951clip_mch_request_selection(VimClipboard *cbd)
6952{
6953 GdkAtom target;
6954 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006955 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006956
6957 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6958 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006959 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6960 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006961 received_selection = RS_NONE;
6962 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6963
6964 gtk_selection_convert(gui.drawarea,
6965 cbd->gtk_sel_atom, target,
6966 (guint32)GDK_CURRENT_TIME);
6967
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006968 /* Hack: Wait up to three seconds for the selection. A hang was
6969 * noticed here when using the netrw plugin combined with ":gui"
6970 * during the FocusGained event. */
6971 start = time(NULL);
6972 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006973 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974
6975 if (received_selection != RS_FAIL)
6976 return;
6977 }
6978
6979 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006980#if GTK_CHECK_VERSION(3,0,0)
6981 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6982 cbd);
6983#else
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006984 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd);
Bram Moolenaar98921892016-02-23 17:14:37 +01006985#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986}
6987
6988/*
6989 * Disown the selection.
6990 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006992clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006994 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006995 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996}
6997
6998/*
6999 * Own the selection and return OK if it worked.
7000 */
7001 int
7002clip_mch_own_selection(VimClipboard *cbd)
7003{
7004 int success;
7005
7006 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02007007 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008 gui_mch_update();
7009 return (success) ? OK : FAIL;
7010}
7011
7012/*
7013 * Send the current selection to the clipboard. Do nothing for X because we
7014 * will fill in the selection only when requested by another app.
7015 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007017clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018{
7019}
7020
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01007021 int
7022clip_gtk_owner_exists(VimClipboard *cbd)
7023{
7024 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
7025}
7026
Bram Moolenaar071d4272004-06-13 20:20:40 +00007027
7028#if defined(FEAT_MENU) || defined(PROTO)
7029/*
7030 * Make a menu item appear either active or not active (grey or not grey).
7031 */
7032 void
7033gui_mch_menu_grey(vimmenu_T *menu, int grey)
7034{
7035 if (menu->id == NULL)
7036 return;
7037
7038 if (menu_is_separator(menu->name))
7039 grey = TRUE;
7040
7041 gui_mch_menu_hidden(menu, FALSE);
7042 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01007043# if GTK_CHECK_VERSION(3,0,0)
7044 if (!gtk_widget_get_sensitive(menu->id) == !grey)
7045# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007046 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
Bram Moolenaar98921892016-02-23 17:14:37 +01007047# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007048 {
7049 gtk_widget_set_sensitive(menu->id, !grey);
7050 gui_mch_update();
7051 }
7052}
7053
7054/*
7055 * Make menu item hidden or not hidden.
7056 */
7057 void
7058gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
7059{
7060 if (menu->id == 0)
7061 return;
7062
7063 if (hidden)
7064 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007065# if GTK_CHECK_VERSION(3,0,0)
7066 if (gtk_widget_get_visible(menu->id))
7067# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068 if (GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007069# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070 {
7071 gtk_widget_hide(menu->id);
7072 gui_mch_update();
7073 }
7074 }
7075 else
7076 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007077# if GTK_CHECK_VERSION(3,0,0)
7078 if (!gtk_widget_get_visible(menu->id))
7079# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080 if (!GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007081# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082 {
7083 gtk_widget_show(menu->id);
7084 gui_mch_update();
7085 }
7086 }
7087}
7088
7089/*
7090 * This is called after setting all the menus to grey/hidden or not.
7091 */
7092 void
7093gui_mch_draw_menubar(void)
7094{
7095 /* just make sure that the visual changes get effect immediately */
7096 gui_mch_update();
7097}
7098#endif /* FEAT_MENU */
7099
7100/*
7101 * Scrollbar stuff.
7102 */
7103 void
7104gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
7105{
7106 if (sb->id == NULL)
7107 return;
7108
Bram Moolenaar98921892016-02-23 17:14:37 +01007109#if GTK_CHECK_VERSION(3,0,0)
7110 gtk_widget_set_visible(sb->id, flag);
7111#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007112 if (flag)
7113 gtk_widget_show(sb->id);
7114 else
7115 gtk_widget_hide(sb->id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007116#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00007118 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119}
7120
7121
7122/*
7123 * Return the RGB value of a pixel as long.
7124 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007125 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126gui_mch_get_rgb(guicolor_T pixel)
7127{
Bram Moolenaar98921892016-02-23 17:14:37 +01007128#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02007129 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01007130#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02007131 GdkColor color;
7132
Bram Moolenaar071d4272004-06-13 20:20:40 +00007133 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
7134 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007136 return (guicolor_T)(
7137 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007139 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02007140#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007141}
7142
7143/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007144 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007145 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007146 void
7147gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148{
Bram Moolenaar98921892016-02-23 17:14:37 +01007149#if GTK_CHECK_VERSION(3,0,0)
7150 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
7151#else
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007152 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01007153#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154}
7155
7156 void
7157gui_mch_setmouse(int x, int y)
7158{
7159 /* Sorry for the Xlib call, but we can't avoid it, since there is no
7160 * internal GDK mechanism present to accomplish this. (and for good
7161 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01007162#if GTK_CHECK_VERSION(3,0,0)
7163 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7164 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7165 0, 0, 0U, 0U, x, y);
7166#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007167 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
7168 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
7169 0, 0, 0U, 0U, x, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01007170#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171}
7172
7173
7174#ifdef FEAT_MOUSESHAPE
7175/* The last set mouse pointer shape is remembered, to be used when it goes
7176 * from hidden to not hidden. */
7177static int last_shape = 0;
7178#endif
7179
7180/*
7181 * Use the blank mouse pointer or not.
7182 *
7183 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7184 */
7185 void
7186gui_mch_mousehide(int hide)
7187{
7188 if (gui.pointer_hidden != hide)
7189 {
7190 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007191#if GTK_CHECK_VERSION(3,0,0)
7192 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
7193#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007194 if (gui.drawarea->window && gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007195#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007196 {
7197 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007198#if GTK_CHECK_VERSION(3,0,0)
7199 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7200 gui.blank_pointer);
7201#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007202 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007203#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007204 else
7205#ifdef FEAT_MOUSESHAPE
7206 mch_set_mouse_shape(last_shape);
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01007207#elif GTK_CHECK_VERSION(3,0,0)
7208 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007209#else
7210 gdk_window_set_cursor(gui.drawarea->window, NULL);
7211#endif
7212 }
7213 }
7214}
7215
7216#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7217
7218/* Table for shape IDs. Keep in sync with the mshape_names[] table in
7219 * misc2.c! */
7220static const int mshape_ids[] =
7221{
7222 GDK_LEFT_PTR, /* arrow */
7223 GDK_CURSOR_IS_PIXMAP, /* blank */
7224 GDK_XTERM, /* beam */
7225 GDK_SB_V_DOUBLE_ARROW, /* updown */
7226 GDK_SIZING, /* udsizing */
7227 GDK_SB_H_DOUBLE_ARROW, /* leftright */
7228 GDK_SIZING, /* lrsizing */
7229 GDK_WATCH, /* busy */
7230 GDK_X_CURSOR, /* no */
7231 GDK_CROSSHAIR, /* crosshair */
7232 GDK_HAND1, /* hand1 */
7233 GDK_HAND2, /* hand2 */
7234 GDK_PENCIL, /* pencil */
7235 GDK_QUESTION_ARROW, /* question */
7236 GDK_RIGHT_PTR, /* right-arrow */
7237 GDK_CENTER_PTR, /* up-arrow */
7238 GDK_LEFT_PTR /* last one */
7239};
7240
7241 void
7242mch_set_mouse_shape(int shape)
7243{
7244 int id;
7245 GdkCursor *c;
7246
Bram Moolenaar98921892016-02-23 17:14:37 +01007247# if GTK_CHECK_VERSION(3,0,0)
7248 if (gtk_widget_get_window(gui.drawarea) == NULL)
7249# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007251# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007252 return;
7253
7254 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007255# if GTK_CHECK_VERSION(3,0,0)
7256 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7257 gui.blank_pointer);
7258# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007259 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007260# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007261 else
7262 {
7263 if (shape >= MSHAPE_NUMBERED)
7264 {
7265 id = shape - MSHAPE_NUMBERED;
7266 if (id >= GDK_LAST_CURSOR)
7267 id = GDK_LEFT_PTR;
7268 else
7269 id &= ~1; /* they are always even (why?) */
7270 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007271 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007273 else
7274 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007275# ifdef HAVE_GTK_MULTIHEAD
7276 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007277 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007278# else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007279 c = gdk_cursor_new((GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007280# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01007281# if GTK_CHECK_VERSION(3,0,0)
7282 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
7283# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007284 gdk_window_set_cursor(gui.drawarea->window, c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007285# endif
7286# if GTK_CHECK_VERSION(3,0,0)
7287 g_object_unref(G_OBJECT(c));
7288# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007289 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01007290# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007291 }
7292 if (shape != MSHAPE_HIDE)
7293 last_shape = shape;
7294}
7295#endif /* FEAT_MOUSESHAPE */
7296
7297
7298#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7299/*
7300 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7301 * scaled down if the current font is not big enough, or scaled up if the image
7302 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7303 * will be cut off if the current font is not big enough, or centered if it's
7304 * too small.
7305 */
7306# define SIGN_WIDTH (2 * gui.char_width)
7307# define SIGN_HEIGHT (gui.char_height)
7308# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7309
Bram Moolenaar071d4272004-06-13 20:20:40 +00007310 void
7311gui_mch_drawsign(int row, int col, int typenr)
7312{
7313 GdkPixbuf *sign;
7314
7315 sign = (GdkPixbuf *)sign_get_image(typenr);
7316
Bram Moolenaar98921892016-02-23 17:14:37 +01007317# if GTK_CHECK_VERSION(3,0,0)
7318 if (sign != NULL && gui.drawarea != NULL
7319 && gtk_widget_get_window(gui.drawarea) != NULL)
7320# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007321 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007322# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007323 {
7324 int width;
7325 int height;
7326 int xoffset;
7327 int yoffset;
7328 int need_scale;
7329
7330 width = gdk_pixbuf_get_width(sign);
7331 height = gdk_pixbuf_get_height(sign);
7332 /*
7333 * Decide whether we need to scale. Allow one pixel of border
7334 * width to be cut off, in order to avoid excessive scaling for
7335 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007336 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007337 */
7338 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007339 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007340 || (width < 3 * SIGN_WIDTH / 4
7341 && height < 3 * SIGN_HEIGHT / 4));
7342 if (need_scale)
7343 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007344 double aspect;
7345 int w = width;
7346 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007347
7348 /* Keep the original aspect ratio */
7349 aspect = (double)height / (double)width;
7350 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7351 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007352 if (((double)(MAX(height, SIGN_HEIGHT)) /
7353 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7354 {
7355 /* Change the aspect ratio by at most 15% to fill the
7356 * available space completly. */
7357 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7358 height = MIN(height, SIGN_HEIGHT);
7359 }
7360 else
7361 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007362
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007363 if (w == width && h == height)
7364 {
7365 /* no change in dimensions; don't decrease reference counter
7366 * (below) */
7367 need_scale = FALSE;
7368 }
7369 else
7370 {
7371 /* This doesn't seem to be worth caching, and doing so would
7372 * complicate the code quite a bit. */
7373 sign = gdk_pixbuf_scale_simple(sign, width, height,
7374 GDK_INTERP_BILINEAR);
7375 if (sign == NULL)
7376 return; /* out of memory */
7377 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007378 }
7379
7380 /* The origin is the upper-left corner of the pixmap. Therefore
7381 * these offset may become negative if the pixmap is smaller than
7382 * the 2x1 cells reserved for the sign icon. */
7383 xoffset = (width - SIGN_WIDTH) / 2;
7384 yoffset = (height - SIGN_HEIGHT) / 2;
7385
Bram Moolenaar98921892016-02-23 17:14:37 +01007386# if GTK_CHECK_VERSION(3,0,0)
7387 {
7388 cairo_t *cr;
7389 cairo_surface_t *bg_surf;
7390 cairo_t *bg_cr;
7391 cairo_surface_t *sign_surf;
7392 cairo_t *sign_cr;
7393
7394 cr = cairo_create(gui.surface);
7395
7396 bg_surf = cairo_surface_create_similar(gui.surface,
7397 cairo_surface_get_content(gui.surface),
7398 SIGN_WIDTH, SIGN_HEIGHT);
7399 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007400 cairo_set_source_rgba(bg_cr,
7401 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7402 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007403 cairo_paint(bg_cr);
7404
7405 sign_surf = cairo_surface_create_similar(gui.surface,
7406 cairo_surface_get_content(gui.surface),
7407 SIGN_WIDTH, SIGN_HEIGHT);
7408 sign_cr = cairo_create(sign_surf);
7409 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7410 cairo_paint(sign_cr);
7411
7412 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7413 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7414 cairo_paint(sign_cr);
7415
7416 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7417 cairo_paint(cr);
7418
7419 cairo_destroy(sign_cr);
7420 cairo_surface_destroy(sign_surf);
7421 cairo_destroy(bg_cr);
7422 cairo_surface_destroy(bg_surf);
7423 cairo_destroy(cr);
7424
7425 if (!gui.by_signal)
7426 gtk_widget_queue_draw_area(gui.drawarea,
7427 FILL_X(col), FILL_Y(col), width, height);
7428
7429 }
7430# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007431 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7432
7433 gdk_draw_rectangle(gui.drawarea->window,
7434 gui.text_gc,
7435 TRUE,
7436 FILL_X(col),
7437 FILL_Y(row),
7438 SIGN_WIDTH,
7439 SIGN_HEIGHT);
7440
Bram Moolenaar071d4272004-06-13 20:20:40 +00007441 gdk_pixbuf_render_to_drawable_alpha(sign,
7442 gui.drawarea->window,
7443 MAX(0, xoffset),
7444 MAX(0, yoffset),
7445 FILL_X(col) - MIN(0, xoffset),
7446 FILL_Y(row) - MIN(0, yoffset),
7447 MIN(width, SIGN_WIDTH),
7448 MIN(height, SIGN_HEIGHT),
7449 GDK_PIXBUF_ALPHA_BILEVEL,
7450 127,
7451 GDK_RGB_DITHER_NORMAL,
7452 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007453# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007454 if (need_scale)
7455 g_object_unref(sign);
7456 }
7457}
7458
7459 void *
7460gui_mch_register_sign(char_u *signfile)
7461{
7462 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7463 {
7464 GdkPixbuf *sign;
7465 GError *error = NULL;
7466 char_u *message;
7467
7468 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7469
7470 if (error == NULL)
7471 return sign;
7472
7473 message = (char_u *)error->message;
7474
7475 if (message != NULL && input_conv.vc_type != CONV_NONE)
7476 message = string_convert(&input_conv, message, NULL);
7477
7478 if (message != NULL)
7479 {
7480 /* The error message is already translated and will be more
7481 * descriptive than anything we could possibly do ourselves. */
7482 EMSG2("E255: %s", message);
7483
7484 if (input_conv.vc_type != CONV_NONE)
7485 vim_free(message);
7486 }
7487 g_error_free(error);
7488 }
7489
7490 return NULL;
7491}
7492
7493 void
7494gui_mch_destroy_sign(void *sign)
7495{
7496 if (sign != NULL)
7497 g_object_unref(sign);
7498}
7499
Bram Moolenaar071d4272004-06-13 20:20:40 +00007500#endif /* FEAT_SIGN_ICONS */