blob: eef0bd42778e12d25c926fe8c46c0e4e5be593f0 [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
Bram Moolenaar009c7b22017-01-09 20:30:27 +010038# ifdef ngettext
39# undef ngettext
40# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000041# ifdef N_
42# undef N_
43# endif
44# ifdef textdomain
45# undef textdomain
46# endif
47# ifdef bindtextdomain
48# undef bindtextdomain
49# endif
Bram Moolenaara2dd9002007-05-14 17:38:30 +000050# ifdef bind_textdomain_codeset
51# undef bind_textdomain_codeset
Bram Moolenaar49325942007-05-10 19:19:59 +000052# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000053# if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
54# define ENABLE_NLS /* so the texts in the dialog boxes are translated */
55# endif
56# include <gnome.h>
57# include "version.h"
Bram Moolenaardb552d602006-03-23 22:59:57 +000058/* missing prototype in bonobo-dock-item.h */
59extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
Bram Moolenaar071d4272004-06-13 20:20:40 +000060#endif
61
62#if !defined(FEAT_GUI_GTK) && defined(PROTO)
63/* When generating prototypes we don't want syntax errors. */
64# define GdkAtom int
65# define GdkEventExpose int
66# define GdkEventFocus int
67# define GdkEventVisibility int
68# define GdkEventProperty int
69# define GtkContainer int
70# define GtkTargetEntry int
71# define GtkType int
72# define GtkWidget int
73# define gint int
74# define gpointer int
75# define guint int
76# define GdkEventKey int
77# define GdkEventSelection int
78# define GtkSelectionData int
79# define GdkEventMotion int
80# define GdkEventButton int
81# define GdkDragContext int
82# define GdkEventConfigure int
83# define GdkEventClient int
84#else
Bram Moolenaar98921892016-02-23 17:14:37 +010085# if GTK_CHECK_VERSION(3,0,0)
86# include <gdk/gdkkeysyms-compat.h>
87# include <gtk/gtkx.h>
88# else
89# include <gdk/gdkkeysyms.h>
90# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000091# include <gdk/gdk.h>
92# ifdef WIN3264
93# include <gdk/gdkwin32.h>
94# else
95# include <gdk/gdkx.h>
96# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000097# include <gtk/gtk.h>
98# include "gui_gtk_f.h"
99#endif
100
101#ifdef HAVE_X11_SUNKEYSYM_H
102# include <X11/Sunkeysym.h>
103#endif
104
105/*
106 * Easy-to-use macro for multihead support.
107 */
108#ifdef HAVE_GTK_MULTIHEAD
109# define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
110 gtk_widget_get_display(gui.mainwin), atom)
111#else
112# define GET_X_ATOM(atom) ((Atom)(atom))
113#endif
114
115/* Selection type distinguishers */
116enum
117{
118 TARGET_TYPE_NONE,
119 TARGET_UTF8_STRING,
120 TARGET_STRING,
121 TARGET_COMPOUND_TEXT,
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000122 TARGET_HTML,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123 TARGET_TEXT,
124 TARGET_TEXT_URI_LIST,
125 TARGET_TEXT_PLAIN,
126 TARGET_VIM,
127 TARGET_VIMENC
128};
129
130/*
131 * Table of selection targets supported by Vim.
132 * Note: Order matters, preferred types should come first.
133 */
134static const GtkTargetEntry selection_targets[] =
135{
136 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
137 {VIM_ATOM_NAME, 0, TARGET_VIM},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000138 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
141 {"TEXT", 0, TARGET_TEXT},
142 {"STRING", 0, TARGET_STRING}
143};
144#define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
145
146#ifdef FEAT_DND
147/*
148 * Table of DnD targets supported by Vim.
149 * Note: Order matters, preferred types should come first.
150 */
151static const GtkTargetEntry dnd_targets[] =
152{
153 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000154 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 {"STRING", 0, TARGET_STRING},
157 {"text/plain", 0, TARGET_TEXT_PLAIN}
158};
159# define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
160#endif
161
162
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163/*
164 * "Monospace" is a standard font alias that should be present
165 * on all proper Pango/fontconfig installations.
166 */
167# define DEFAULT_FONT "Monospace 10"
168
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
170/*
171 * Atoms used to communicate save-yourself from the X11 session manager. There
172 * is no need to move them into the GUI struct, since they should be constant.
173 */
174static GdkAtom wm_protocols_atom = GDK_NONE;
175static GdkAtom save_yourself_atom = GDK_NONE;
176#endif
177
178/*
179 * Atoms used to control/reference X11 selections.
180 */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000181static GdkAtom html_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182static GdkAtom utf8_string_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185
186/*
187 * Keycodes recognized by vim.
188 * NOTE: when changing this, the table in gui_x11.c probably needs the same
189 * change!
190 */
191static struct special_key
192{
193 guint key_sym;
194 char_u code0;
195 char_u code1;
196}
197const special_keys[] =
198{
199 {GDK_Up, 'k', 'u'},
200 {GDK_Down, 'k', 'd'},
201 {GDK_Left, 'k', 'l'},
202 {GDK_Right, 'k', 'r'},
203 {GDK_F1, 'k', '1'},
204 {GDK_F2, 'k', '2'},
205 {GDK_F3, 'k', '3'},
206 {GDK_F4, 'k', '4'},
207 {GDK_F5, 'k', '5'},
208 {GDK_F6, 'k', '6'},
209 {GDK_F7, 'k', '7'},
210 {GDK_F8, 'k', '8'},
211 {GDK_F9, 'k', '9'},
212 {GDK_F10, 'k', ';'},
213 {GDK_F11, 'F', '1'},
214 {GDK_F12, 'F', '2'},
215 {GDK_F13, 'F', '3'},
216 {GDK_F14, 'F', '4'},
217 {GDK_F15, 'F', '5'},
218 {GDK_F16, 'F', '6'},
219 {GDK_F17, 'F', '7'},
220 {GDK_F18, 'F', '8'},
221 {GDK_F19, 'F', '9'},
222 {GDK_F20, 'F', 'A'},
223 {GDK_F21, 'F', 'B'},
224 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */
225 {GDK_F22, 'F', 'C'},
226 {GDK_F23, 'F', 'D'},
227 {GDK_F24, 'F', 'E'},
228 {GDK_F25, 'F', 'F'},
229 {GDK_F26, 'F', 'G'},
230 {GDK_F27, 'F', 'H'},
231 {GDK_F28, 'F', 'I'},
232 {GDK_F29, 'F', 'J'},
233 {GDK_F30, 'F', 'K'},
234 {GDK_F31, 'F', 'L'},
235 {GDK_F32, 'F', 'M'},
236 {GDK_F33, 'F', 'N'},
237 {GDK_F34, 'F', 'O'},
238 {GDK_F35, 'F', 'P'},
239#ifdef SunXK_F36
240 {SunXK_F36, 'F', 'Q'},
241 {SunXK_F37, 'F', 'R'},
242#endif
243 {GDK_Help, '%', '1'},
244 {GDK_Undo, '&', '8'},
245 {GDK_BackSpace, 'k', 'b'},
246 {GDK_Insert, 'k', 'I'},
247 {GDK_Delete, 'k', 'D'},
248 {GDK_3270_BackTab, 'k', 'B'},
249 {GDK_Clear, 'k', 'C'},
250 {GDK_Home, 'k', 'h'},
251 {GDK_End, '@', '7'},
252 {GDK_Prior, 'k', 'P'},
253 {GDK_Next, 'k', 'N'},
254 {GDK_Print, '%', '9'},
255 /* Keypad keys: */
256 {GDK_KP_Left, 'k', 'l'},
257 {GDK_KP_Right, 'k', 'r'},
258 {GDK_KP_Up, 'k', 'u'},
259 {GDK_KP_Down, 'k', 'd'},
260 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
261 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
262 {GDK_KP_Home, 'K', '1'},
263 {GDK_KP_End, 'K', '4'},
264 {GDK_KP_Prior, 'K', '3'}, /* page up */
265 {GDK_KP_Next, 'K', '5'}, /* page down */
266
267 {GDK_KP_Add, 'K', '6'},
268 {GDK_KP_Subtract, 'K', '7'},
269 {GDK_KP_Divide, 'K', '8'},
270 {GDK_KP_Multiply, 'K', '9'},
271 {GDK_KP_Enter, 'K', 'A'},
272 {GDK_KP_Decimal, 'K', 'B'},
273
274 {GDK_KP_0, 'K', 'C'},
275 {GDK_KP_1, 'K', 'D'},
276 {GDK_KP_2, 'K', 'E'},
277 {GDK_KP_3, 'K', 'F'},
278 {GDK_KP_4, 'K', 'G'},
279 {GDK_KP_5, 'K', 'H'},
280 {GDK_KP_6, 'K', 'I'},
281 {GDK_KP_7, 'K', 'J'},
282 {GDK_KP_8, 'K', 'K'},
283 {GDK_KP_9, 'K', 'L'},
284
285 /* End of list marker: */
286 {0, 0, 0}
287};
288
289/*
290 * Flags for command line options table below.
291 */
292#define ARG_FONT 1
293#define ARG_GEOMETRY 2
294#define ARG_REVERSE 3
295#define ARG_NOREVERSE 4
296#define ARG_BACKGROUND 5
297#define ARG_FOREGROUND 6
298#define ARG_ICONIC 7
299#define ARG_ROLE 8
300#define ARG_NETBEANS 9
301#define ARG_XRM 10 /* ignored */
302#define ARG_MENUFONT 11 /* ignored */
303#define ARG_INDEX_MASK 0x00ff
304#define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */
305#define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */
306#define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */
307#define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */
308#define ARG_KEEP 0x1000 /* don't remove argument from argv[] */
309
310/*
311 * This table holds all the X GUI command line options allowed. This includes
312 * the standard ones so that we can skip them when Vim is started without the
313 * GUI (but the GUI might start up later).
314 *
315 * When changing this, also update doc/gui_x11.txt and the usage message!!!
316 */
317typedef struct
318{
319 const char *name;
320 unsigned int flags;
321}
322cmdline_option_T;
323
324static const cmdline_option_T cmdline_options[] =
325{
326 /* We handle these options ourselves */
327 {"-fn", ARG_FONT|ARG_HAS_VALUE},
328 {"-font", ARG_FONT|ARG_HAS_VALUE},
329 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE},
330 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE},
331 {"-rv", ARG_REVERSE},
332 {"-reverse", ARG_REVERSE},
333 {"+rv", ARG_NOREVERSE},
334 {"+reverse", ARG_NOREVERSE},
335 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE},
336 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE},
337 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE},
338 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE},
339 {"-iconic", ARG_ICONIC},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 {"--role", ARG_ROLE|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341#ifdef FEAT_NETBEANS_INTG
342 {"-nb", ARG_NETBEANS}, /* non-standard value format */
343 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */
344 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
345 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
346#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 /* Arguments handled by GTK (and GNOME) internally. */
348 {"--g-fatal-warnings", ARG_FOR_GTK},
349 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
350 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
351 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
352 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
353 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE},
354 {"--sync", ARG_FOR_GTK},
355 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
356 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
357 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE},
359 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE},
360 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361#ifdef FEAT_GUI_GNOME
362 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE},
363 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE},
364 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE},
365 {"--sm-disable", ARG_FOR_GTK},
366 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE},
367 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE},
368 {"--oaf-private", ARG_FOR_GTK},
369 {"--enable-sound", ARG_FOR_GTK},
370 {"--disable-sound", ARG_FOR_GTK},
371 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE},
372 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI},
373 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP},
374 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI},
375# if 0 /* conflicts with Vim's own --version argument */
376 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI},
377# endif
378 {"--disable-crash-dialog", ARG_FOR_GTK},
379#endif
380 {NULL, 0}
381};
382
383static int gui_argc = 0;
384static char **gui_argv = NULL;
385
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386static const char *role_argument = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
388static const char *restart_command = NULL;
Bram Moolenaar9085f802009-06-03 14:20:21 +0000389static char *abs_restart_command = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390#endif
391static int found_iconic_arg = FALSE;
392
393#ifdef FEAT_GUI_GNOME
394/*
395 * Can't use Gnome if --socketid given
396 */
397static int using_gnome = 0;
398#else
399# define using_gnome 0
400#endif
401
402/*
403 * Parse the GUI related command-line arguments. Any arguments used are
404 * deleted from argv, and *argc is decremented accordingly. This is called
405 * when vim is started, whether or not the GUI has been started.
406 */
407 void
408gui_mch_prepare(int *argc, char **argv)
409{
410 const cmdline_option_T *option;
411 int i = 0;
412 int len = 0;
413
414#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
415 /*
416 * Determine the command used to invoke Vim, to be passed as restart
417 * command to the session manager. If argv[0] contains any directory
418 * components try building an absolute path, otherwise leave it as is.
419 */
420 restart_command = argv[0];
421
422 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
423 {
424 char_u buf[MAXPATHL];
425
426 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000427 {
428 abs_restart_command = (char *)vim_strsave(buf);
429 restart_command = abs_restart_command;
430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 }
432#endif
433
434 /*
435 * Move all the entries in argv which are relevant to GTK+ and GNOME
436 * into gui_argv. Freed later in gui_mch_init().
437 */
438 gui_argc = 0;
439 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *)));
440
441 g_return_if_fail(gui_argv != NULL);
442
443 gui_argv[gui_argc++] = argv[i++];
444
445 while (i < *argc)
446 {
447 /* Don't waste CPU cycles on non-option arguments. */
448 if (argv[i][0] != '-' && argv[i][0] != '+')
449 {
450 ++i;
451 continue;
452 }
453
454 /* Look for argv[i] in cmdline_options[] table. */
455 for (option = &cmdline_options[0]; option->name != NULL; ++option)
456 {
457 len = strlen(option->name);
458
459 if (strncmp(argv[i], option->name, len) == 0)
460 {
461 if (argv[i][len] == '\0')
462 break;
463 /* allow --foo=bar style */
464 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
465 break;
466#ifdef FEAT_NETBEANS_INTG
467 /* darn, -nb has non-standard syntax */
468 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
469 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
470 break;
471#endif
472 }
473 else if ((option->flags & ARG_COMPAT_LONG)
474 && strcmp(argv[i], option->name + 1) == 0)
475 {
476 /* Replace the standard X arguments "-name" and "-display"
477 * with their GNU-style long option counterparts. */
478 argv[i] = (char *)option->name;
479 break;
480 }
481 }
482 if (option->name == NULL) /* no match */
483 {
484 ++i;
485 continue;
486 }
487
488 if (option->flags & ARG_FOR_GTK)
489 {
490 /* Move the argument into gui_argv, which
491 * will later be passed to gtk_init_check() */
492 gui_argv[gui_argc++] = argv[i];
493 }
494 else
495 {
496 char *value = NULL;
497
498 /* Extract the option's value if there is one.
499 * Accept both "--foo bar" and "--foo=bar" style. */
500 if (option->flags & ARG_HAS_VALUE)
501 {
502 if (argv[i][len] == '=')
503 value = &argv[i][len + 1];
504 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
505 value = argv[i + 1];
506 }
507
508 /* Check for options handled by Vim itself */
509 switch (option->flags & ARG_INDEX_MASK)
510 {
511 case ARG_REVERSE:
512 found_reverse_arg = TRUE;
513 break;
514 case ARG_NOREVERSE:
515 found_reverse_arg = FALSE;
516 break;
517 case ARG_FONT:
518 font_argument = value;
519 break;
520 case ARG_GEOMETRY:
521 if (value != NULL)
522 gui.geom = vim_strsave((char_u *)value);
523 break;
524 case ARG_BACKGROUND:
525 background_argument = value;
526 break;
527 case ARG_FOREGROUND:
528 foreground_argument = value;
529 break;
530 case ARG_ICONIC:
531 found_iconic_arg = TRUE;
532 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 case ARG_ROLE:
534 role_argument = value; /* used later in gui_mch_open() */
535 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536#ifdef FEAT_NETBEANS_INTG
537 case ARG_NETBEANS:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 gui.dofork = FALSE; /* don't fork() when starting GUI */
539 netbeansArg = argv[i];
540 break;
541#endif
542 default:
543 break;
544 }
545 }
546
547 /* These arguments make gnome_program_init() print a message and exit.
Bram Moolenaar717e1962016-08-10 21:28:44 +0200548 * Must start the GUI for this, otherwise ":gui" will exit later!
549 * Only when the GUI can start. */
550 if ((option->flags & ARG_NEEDS_GUI)
551 && gui_mch_early_init_check(FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 gui.starting = TRUE;
553
554 if (option->flags & ARG_KEEP)
555 ++i;
556 else
557 {
558 /* Remove the flag from the argument vector. */
559 if (--*argc > i)
560 {
561 int n_strip = 1;
562
563 /* Move the argument's value as well, if there is one. */
564 if ((option->flags & ARG_HAS_VALUE)
565 && argv[i][len] != '='
566 && strcmp(argv[i + 1], "--") != 0)
567 {
568 ++n_strip;
569 --*argc;
570 if (option->flags & ARG_FOR_GTK)
571 gui_argv[gui_argc++] = argv[i + 1];
572 }
573
574 if (*argc > i)
575 mch_memmove(&argv[i], &argv[i + n_strip],
576 (*argc - i) * sizeof(char *));
577 }
578 argv[*argc] = NULL;
579 }
580 }
581
582 gui_argv[gui_argc] = NULL;
583}
584
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000585#if defined(EXITFREE) || defined(PROTO)
586 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100587gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000588{
589 vim_free(gui_argv);
Bram Moolenaar9085f802009-06-03 14:20:21 +0000590#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
591 vim_free(abs_restart_command);
592#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000593}
594#endif
595
Bram Moolenaar98921892016-02-23 17:14:37 +0100596#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597/*
598 * This should be maybe completely removed.
599 * Doesn't seem possible, since check_copy_area() relies on
600 * this information. --danielk
601 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000603visibility_event(GtkWidget *widget UNUSED,
604 GdkEventVisibility *event,
605 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606{
607 gui.visibility = event->state;
608 /*
609 * When we do an gdk_window_copy_area(), and the window is partially
610 * obscured, we want to receive an event to tell us whether it worked
611 * or not.
612 */
613 if (gui.text_gc != NULL)
614 gdk_gc_set_exposures(gui.text_gc,
615 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
616 return FALSE;
617}
Bram Moolenaar98921892016-02-23 17:14:37 +0100618#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619
620/*
621 * Redraw the corresponding portions of the screen.
622 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100623#if GTK_CHECK_VERSION(3,0,0)
624static gboolean is_key_pressed = FALSE;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100625static gboolean blink_mode = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100626
627static gboolean gui_gtk_is_blink_on(void);
Bram Moolenaar98921892016-02-23 17:14:37 +0100628static void gui_gtk_window_clear(GdkWindow *win);
629
630 static void
631gui_gtk3_redraw(int x, int y, int width, int height)
632{
633 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
634 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
635 GUI_MON_NOCLEAR);
636}
637
638 static void
639gui_gtk3_update_cursor(cairo_t *cr)
640{
641 if (gui.row == gui.cursor_row)
642 {
643 gui.by_signal = TRUE;
Bram Moolenaar4fc563b2016-03-12 12:40:58 +0100644 if (State & CMDLINE)
645 gui_update_cursor(TRUE, FALSE);
646 else
647 gui_update_cursor(TRUE, TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +0100648 gui.by_signal = FALSE;
649 cairo_paint(cr);
650 }
651}
652
653 static gboolean
654gui_gtk3_should_draw_cursor(void)
655{
656 unsigned int cond = 0;
657 cond |= gui_gtk_is_blink_on();
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100658 if (gui.cursor_col >= gui.col)
659 cond |= is_key_pressed;
Bram Moolenaar98921892016-02-23 17:14:37 +0100660 cond |= gui.in_focus == FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100661 return cond;
662}
663
664 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200665draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100666 cairo_t *cr,
667 gpointer user_data UNUSED)
668{
669 /* Skip this when the GUI isn't set up yet, will redraw later. */
670 if (gui.starting)
671 return FALSE;
672
673 out_flush(); /* make sure all output has been processed */
674 /* for GTK+ 3, may induce other draw events. */
675
676 cairo_set_source_surface(cr, gui.surface, 0, 0);
677
678 /* Draw the window without the cursor. */
679 gui.by_signal = TRUE;
680 {
681 cairo_rectangle_list_t *list = NULL;
682
Bram Moolenaar98921892016-02-23 17:14:37 +0100683 list = cairo_copy_clip_rectangle_list(cr);
684 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
685 {
686 int i;
687 for (i = 0; i < list->num_rectangles; i++)
688 {
689 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200690
691 gui_mch_clear_block(Y_2_ROW(rect.y), 1,
692 Y_2_ROW(rect.y + rect.height - 1), Columns);
693
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100694 if (blink_mode)
695 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
696 else
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100697 {
698 if (get_real_state() & VISUAL)
699 gui_gtk3_redraw(rect.x, rect.y,
700 rect.width, rect.height);
701 else
702 gui_redraw(rect.x, rect.y, rect.width, rect.height);
703 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100704 }
705 }
706 cairo_rectangle_list_destroy(list);
707
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100708 if (get_real_state() & VISUAL)
709 {
710 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col)
711 gui_update_cursor(TRUE, TRUE);
712 }
713
Bram Moolenaar98921892016-02-23 17:14:37 +0100714 cairo_paint(cr);
715 }
716 gui.by_signal = FALSE;
717
718 /* Add the cursor to the window if necessary.*/
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100719 if (gui_gtk3_should_draw_cursor() && blink_mode)
Bram Moolenaar98921892016-02-23 17:14:37 +0100720 gui_gtk3_update_cursor(cr);
721
722 return FALSE;
723}
724#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000726expose_event(GtkWidget *widget UNUSED,
727 GdkEventExpose *event,
728 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729{
730 /* Skip this when the GUI isn't set up yet, will redraw later. */
731 if (gui.starting)
732 return FALSE;
733
734 out_flush(); /* make sure all output has been processed */
735 gui_redraw(event->area.x, event->area.y,
736 event->area.width, event->area.height);
737
738 /* Clear the border areas if needed */
739 if (event->area.x < FILL_X(0))
740 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
741 if (event->area.y < FILL_Y(0))
742 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
743 if (event->area.x > FILL_X(Columns))
744 gdk_window_clear_area(gui.drawarea->window,
745 FILL_X((int)Columns), 0, 0, 0);
746 if (event->area.y > FILL_Y(Rows))
747 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
748
749 return FALSE;
750}
Bram Moolenaar98921892016-02-23 17:14:37 +0100751#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752
753#ifdef FEAT_CLIENTSERVER
754/*
755 * Handle changes to the "Comm" property
756 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000758property_event(GtkWidget *widget,
759 GdkEventProperty *event,
760 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761{
762 if (event->type == GDK_PROPERTY_NOTIFY
763 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100764# if GTK_CHECK_VERSION(3,0,0)
765 && GDK_WINDOW_XID(event->window) == commWindow
766# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 && GDK_WINDOW_XWINDOW(event->window) == commWindow
Bram Moolenaar98921892016-02-23 17:14:37 +0100768# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 && GET_X_ATOM(event->atom) == commProperty)
770 {
771 XEvent xev;
772
773 /* Translate to XLib */
774 xev.xproperty.type = PropertyNotify;
775 xev.xproperty.atom = commProperty;
776 xev.xproperty.window = commWindow;
777 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100778# if GTK_CHECK_VERSION(3,0,0)
779 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
780 &xev, 0);
781# else
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200782 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +0100783# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 }
785 return FALSE;
786}
Bram Moolenaar98921892016-02-23 17:14:37 +0100787#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788
789
790/****************************************************************************
791 * Focus handlers:
792 */
793
794
795/*
796 * This is a simple state machine:
797 * BLINK_NONE not blinking at all
798 * BLINK_OFF blinking, cursor is not shown
799 * BLINK_ON blinking, cursor is shown
800 */
801
802#define BLINK_NONE 0
803#define BLINK_OFF 1
804#define BLINK_ON 2
805
806static int blink_state = BLINK_NONE;
807static long_u blink_waittime = 700;
808static long_u blink_ontime = 400;
809static long_u blink_offtime = 250;
810static guint blink_timer = 0;
811
Bram Moolenaar98921892016-02-23 17:14:37 +0100812#if GTK_CHECK_VERSION(3,0,0)
813 static gboolean
814gui_gtk_is_blink_on(void)
815{
816 return blink_state == BLINK_ON;
817}
Bram Moolenaar98921892016-02-23 17:14:37 +0100818#endif
819
Bram Moolenaar703a8042016-06-04 16:24:32 +0200820 int
821gui_mch_is_blinking(void)
822{
823 return blink_state != BLINK_NONE;
824}
825
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200826 int
827gui_mch_is_blink_off(void)
828{
829 return blink_state == BLINK_OFF;
830}
831
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 void
833gui_mch_set_blinking(long waittime, long on, long off)
834{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100835#if GTK_CHECK_VERSION(3,0,0)
836 if (waittime == 0 || on == 0 || off == 0)
837 {
838 blink_mode = FALSE;
839
840 blink_waittime = 700;
841 blink_ontime = 400;
842 blink_offtime = 250;
843 }
844 else
845 {
846 blink_mode = TRUE;
847
848 blink_waittime = waittime;
849 blink_ontime = on;
850 blink_offtime = off;
851 }
852#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 blink_waittime = waittime;
854 blink_ontime = on;
855 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100856#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857}
858
859/*
860 * Stop the cursor blinking. Show the cursor if it wasn't shown.
861 */
862 void
863gui_mch_stop_blink(void)
864{
865 if (blink_timer)
866 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100867#if GTK_CHECK_VERSION(3,0,0)
868 g_source_remove(blink_timer);
869#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100871#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 blink_timer = 0;
873 }
874 if (blink_state == BLINK_OFF)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200875 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200877 gui_mch_flush();
878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 blink_state = BLINK_NONE;
880}
881
Bram Moolenaar98921892016-02-23 17:14:37 +0100882#if GTK_CHECK_VERSION(3,0,0)
883 static gboolean
884#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +0100886#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000887blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888{
889 if (blink_state == BLINK_ON)
890 {
891 gui_undraw_cursor();
892 blink_state = BLINK_OFF;
Bram Moolenaar98921892016-02-23 17:14:37 +0100893#if GTK_CHECK_VERSION(3,0,0)
894 blink_timer = g_timeout_add((guint)blink_offtime,
895 (GSourceFunc) blink_cb, NULL);
896#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 blink_timer = gtk_timeout_add((guint32)blink_offtime,
898 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100899#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 }
901 else
902 {
903 gui_update_cursor(TRUE, FALSE);
904 blink_state = BLINK_ON;
Bram Moolenaar98921892016-02-23 17:14:37 +0100905#if GTK_CHECK_VERSION(3,0,0)
906 blink_timer = g_timeout_add((guint)blink_ontime,
907 (GSourceFunc) blink_cb, NULL);
908#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 blink_timer = gtk_timeout_add((guint32)blink_ontime,
910 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100911#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 }
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200913 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914
915 return FALSE; /* don't happen again */
916}
917
918/*
919 * Start the cursor blinking. If it was already blinking, this restarts the
920 * waiting time and shows the cursor.
921 */
922 void
923gui_mch_start_blink(void)
924{
925 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200926 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100927#if GTK_CHECK_VERSION(3,0,0)
928 g_source_remove(blink_timer);
929#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100931#endif
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200932 blink_timer = 0;
933 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 /* Only switch blinking on if none of the times is zero */
935 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
936 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100937#if GTK_CHECK_VERSION(3,0,0)
938 blink_timer = g_timeout_add((guint)blink_waittime,
939 (GSourceFunc) blink_cb, NULL);
940#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 blink_timer = gtk_timeout_add((guint32)blink_waittime,
942 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 blink_state = BLINK_ON;
945 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200946 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 }
948}
949
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000951enter_notify_event(GtkWidget *widget UNUSED,
952 GdkEventCrossing *event UNUSED,
953 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954{
955 if (blink_state == BLINK_NONE)
956 gui_mch_start_blink();
957
958 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100959#if GTK_CHECK_VERSION(3,0,0)
960 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
961#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea))
Bram Moolenaar98921892016-02-23 17:14:37 +0100963#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 gtk_widget_grab_focus(gui.drawarea);
965
966 return FALSE;
967}
968
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000970leave_notify_event(GtkWidget *widget UNUSED,
971 GdkEventCrossing *event UNUSED,
972 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973{
974 if (blink_state != BLINK_NONE)
975 gui_mch_stop_blink();
976
977 return FALSE;
978}
979
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000981focus_in_event(GtkWidget *widget,
982 GdkEventFocus *event UNUSED,
983 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984{
985 gui_focus_change(TRUE);
986
987 if (blink_state == BLINK_NONE)
988 gui_mch_start_blink();
989
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000990 /* make sure keyboard input goes to the draw area (if this is focus for a
991 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000992 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000993 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994
995 return TRUE;
996}
997
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000999focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001000 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001001 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002{
1003 gui_focus_change(FALSE);
1004
1005 if (blink_state != BLINK_NONE)
1006 gui_mch_stop_blink();
1007
1008 return TRUE;
1009}
1010
1011
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012/*
1013 * Translate a GDK key value to UTF-8 independently of the current locale.
1014 * The output is written to string, which must have room for at least 6 bytes
1015 * plus the NUL terminator. Returns the length in bytes.
1016 *
1017 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
1018 * of GdkEventKey::string instead. But event->string is evil; see here why:
1019 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1020 */
1021 static int
1022keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
1023{
1024 int len;
1025 guint32 uc;
1026
1027 uc = gdk_keyval_to_unicode(keyval);
1028 if (uc != 0)
1029 {
1030 /* Check for CTRL-foo */
1031 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
1032 {
1033 /* These mappings look arbitrary at the first glance, but in fact
1034 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
1035 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
1036 * more sense and is consistent with usual terminal behaviour). */
1037 if (uc >= '@')
1038 string[0] = uc & 0x1F;
1039 else if (uc == '2')
1040 string[0] = NUL;
1041 else if (uc >= '3' && uc <= '7')
1042 string[0] = uc ^ 0x28;
1043 else if (uc == '8')
1044 string[0] = BS;
1045 else if (uc == '?')
1046 string[0] = DEL;
1047 else
1048 string[0] = uc;
1049 len = 1;
1050 }
1051 else
1052 {
1053 /* Translate a normal key to UTF-8. This doesn't work for dead
1054 * keys of course, you _have_ to use an input method for that. */
1055 len = utf_char2bytes((int)uc, string);
1056 }
1057 }
1058 else
1059 {
1060 /* Translate keys which are represented by ASCII control codes in Vim.
1061 * There are only a few of those; most control keys are translated to
1062 * special terminal-like control sequences. */
1063 len = 1;
1064 switch (keyval)
1065 {
1066 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1067 string[0] = TAB;
1068 break;
1069 case GDK_Linefeed:
1070 string[0] = NL;
1071 break;
1072 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1073 string[0] = CAR;
1074 break;
1075 case GDK_Escape:
1076 string[0] = ESC;
1077 break;
1078 default:
1079 len = 0;
1080 break;
1081 }
1082 }
1083 string[len] = NUL;
1084
1085 return len;
1086}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001088 static int
1089modifiers_gdk2vim(guint state)
1090{
1091 int modifiers = 0;
1092
1093 if (state & GDK_SHIFT_MASK)
1094 modifiers |= MOD_MASK_SHIFT;
1095 if (state & GDK_CONTROL_MASK)
1096 modifiers |= MOD_MASK_CTRL;
1097 if (state & GDK_MOD1_MASK)
1098 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001099#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001100 if (state & GDK_SUPER_MASK)
1101 modifiers |= MOD_MASK_META;
1102#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001103 if (state & GDK_MOD4_MASK)
1104 modifiers |= MOD_MASK_META;
1105
1106 return modifiers;
1107}
1108
1109 static int
1110modifiers_gdk2mouse(guint state)
1111{
1112 int modifiers = 0;
1113
1114 if (state & GDK_SHIFT_MASK)
1115 modifiers |= MOUSE_SHIFT;
1116 if (state & GDK_CONTROL_MASK)
1117 modifiers |= MOUSE_CTRL;
1118 if (state & GDK_MOD1_MASK)
1119 modifiers |= MOUSE_ALT;
1120
1121 return modifiers;
1122}
1123
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124/*
1125 * Main keyboard handler:
1126 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001128key_press_event(GtkWidget *widget UNUSED,
1129 GdkEventKey *event,
1130 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001132 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1134 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 guint key_sym;
1136 int len;
1137 int i;
1138 int modifiers;
1139 int key;
1140 guint state;
1141 char_u *s, *d;
1142
Bram Moolenaar98921892016-02-23 17:14:37 +01001143#if GTK_CHECK_VERSION(3,0,0)
1144 is_key_pressed = TRUE;
1145 gui_mch_stop_blink();
1146#endif
1147
Bram Moolenaar20892c12011-06-26 04:49:00 +02001148 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 key_sym = event->keyval;
1150 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151
1152#ifdef FEAT_XIM
1153 if (xim_queue_key_press_event(event, TRUE))
1154 return TRUE;
1155#endif
1156
1157#ifdef FEAT_HANGULIN
1158 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1159 {
1160 hangul_input_state_toggle();
1161 return TRUE;
1162 }
1163#endif
1164
1165#ifdef SunXK_F36
1166 /*
1167 * These keys have bogus lookup strings, and trapping them here is
1168 * easier than trying to XRebindKeysym() on them with every possible
1169 * combination of modifiers.
1170 */
1171 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1172 len = 0;
1173 else
1174#endif
1175 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 len = keyval_to_string(key_sym, state, string2);
1177
1178 /* Careful: convert_input() doesn't handle the NUL character.
1179 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1180 if (len > 1 && input_conv.vc_type != CONV_NONE)
1181 len = convert_input(string2, len, sizeof(string2));
1182
1183 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 d = string;
1185 for (i = 0; i < len; ++i)
1186 {
1187 *d++ = s[i];
1188 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1189 {
1190 /* Turn CSI into K_CSI. */
1191 *d++ = KS_EXTRA;
1192 *d++ = (int)KE_CSI;
1193 }
1194 }
1195 len = d - string;
1196 }
1197
1198 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1199 if (key_sym == GDK_ISO_Left_Tab)
1200 {
1201 key_sym = GDK_Tab;
1202 state |= GDK_SHIFT_MASK;
1203 }
1204
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205#ifdef FEAT_MENU
1206 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1207 * is a menu shortcut, we ignore everything with the ALT modifier. */
1208 if ((state & GDK_MOD1_MASK)
1209 && gui.menu_is_active
1210 && (*p_wak == 'y'
1211 || (*p_wak == 'm'
1212 && len == 1
1213 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 /* For GTK2 we return false to signify that we haven't handled the
1215 * keypress, so that gtk will handle the mnemonic or accelerator. */
1216 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217#endif
1218
1219 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1220 * that already has the 8th bit set.
1221 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1222 * Don't do this for double-byte encodings, it turns the char into a lead
1223 * byte. */
1224 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001225 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001226#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001227 || (state & GDK_SUPER_MASK)
1228#endif
1229 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1231 && (string[0] & 0x80) == 0
1232 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 )
1235 {
1236 string[0] |= 0x80;
1237 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 if (enc_utf8) /* convert to utf-8 */
1239 {
1240 string[1] = string[0] & 0xbf;
1241 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1242 if (string[1] == CSI)
1243 {
1244 string[2] = KS_EXTRA;
1245 string[3] = (int)KE_CSI;
1246 len = 4;
1247 }
1248 else
1249 len = 2;
1250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 }
1252
1253 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1254 * value) to detect backspace, delete and keypad keys. */
1255 if (len == 0 || len == 1)
1256 {
1257 for (i = 0; special_keys[i].key_sym != 0; i++)
1258 {
1259 if (special_keys[i].key_sym == key_sym)
1260 {
1261 string[0] = CSI;
1262 string[1] = special_keys[i].code0;
1263 string[2] = special_keys[i].code1;
1264 len = -3;
1265 break;
1266 }
1267 }
1268 }
1269
1270 if (len == 0) /* Unrecognized key */
1271 return TRUE;
1272
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 /* Special keys (and a few others) may have modifiers. Also when using a
1274 * double-byte encoding (can't set the 8th bit). */
1275 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1276 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1277 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1278 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001279 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001280#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001281 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001283 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001285 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286
1287 /*
1288 * For some keys a shift modifier is translated into another key
1289 * code.
1290 */
1291 if (len == -3)
1292 key = TO_SPECIAL(string[1], string[2]);
1293 else
1294 key = string[0];
1295
1296 key = simplify_key(key, &modifiers);
1297 if (key == CSI)
1298 key = K_CSI;
1299 if (IS_SPECIAL(key))
1300 {
1301 string[0] = CSI;
1302 string[1] = K_SECOND(key);
1303 string[2] = K_THIRD(key);
1304 len = 3;
1305 }
1306 else
1307 {
1308 string[0] = key;
1309 len = 1;
1310 }
1311
1312 if (modifiers != 0)
1313 {
1314 string2[0] = CSI;
1315 string2[1] = KS_MODIFIER;
1316 string2[2] = modifiers;
1317 add_to_input_buf(string2, 3);
1318 }
1319 }
1320
1321 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1322 || (string[0] == intr_char && intr_char != Ctrl_C)))
1323 {
1324 trash_input_buf();
1325 got_int = TRUE;
1326 }
1327
1328 add_to_input_buf(string, len);
1329
1330 /* blank out the pointer if necessary */
1331 if (p_mh)
1332 gui_mch_mousehide(TRUE);
1333
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 return TRUE;
1335}
1336
Bram Moolenaar98921892016-02-23 17:14:37 +01001337#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001339key_release_event(GtkWidget *widget UNUSED,
1340 GdkEventKey *event,
1341 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342{
Bram Moolenaar98921892016-02-23 17:14:37 +01001343# if GTK_CHECK_VERSION(3,0,0)
1344 is_key_pressed = FALSE;
1345 gui_mch_start_blink();
1346# endif
1347# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001348 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 /*
1350 * GTK+ 2 input methods may do fancy stuff on key release events too.
1351 * With the default IM for instance, you can enter any UCS code point
1352 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1353 */
1354 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001355# else
1356 return TRUE;
1357# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358}
1359#endif
1360
1361
1362/****************************************************************************
1363 * Selection handlers:
1364 */
1365
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001367selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001369 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370{
1371 if (event->selection == clip_plus.gtk_sel_atom)
1372 clip_lose_selection(&clip_plus);
1373 else
1374 clip_lose_selection(&clip_star);
1375
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 return TRUE;
1377}
1378
1379#define RS_NONE 0 /* selection_received_cb() not called yet */
1380#define RS_OK 1 /* selection_received_cb() called and OK */
1381#define RS_FAIL 2 /* selection_received_cb() called and failed */
1382static int received_selection = RS_NONE;
1383
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001385selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001387 guint time_ UNUSED,
1388 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389{
1390 VimClipboard *cbd;
1391 char_u *text;
1392 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001395 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396
Bram Moolenaar98921892016-02-23 17:14:37 +01001397#if GTK_CHECK_VERSION(3,0,0)
1398 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
1399#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 if (data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001401#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 cbd = &clip_plus;
1403 else
1404 cbd = &clip_star;
1405
Bram Moolenaar98921892016-02-23 17:14:37 +01001406#if GTK_CHECK_VERSION(3,0,0)
1407 text = (char_u *)gtk_selection_data_get_data(data);
1408 len = gtk_selection_data_get_length(data);
1409#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 text = (char_u *)data->data;
1411 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01001412#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413
1414 if (text == NULL || len <= 0)
1415 {
1416 received_selection = RS_FAIL;
1417 /* clip_free_selection(cbd); ??? */
1418
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419 return;
1420 }
1421
Bram Moolenaar98921892016-02-23 17:14:37 +01001422#if GTK_CHECK_VERSION(3,0,0)
1423 if (gtk_selection_data_get_data_type(data) == vim_atom)
1424#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 if (data->type == vim_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001426#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 {
1428 motion_type = *text++;
1429 --len;
1430 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001431#if GTK_CHECK_VERSION(3,0,0)
1432 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
1433#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434 else if (data->type == vimenc_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001435#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 {
1437 char_u *enc;
1438 vimconv_T conv;
1439
1440 motion_type = *text++;
1441 --len;
1442
1443 enc = text;
1444 text += STRLEN(text) + 1;
1445 len -= text - enc;
1446
1447 /* If the encoding of the text is different from 'encoding', attempt
1448 * converting it. */
1449 conv.vc_type = CONV_NONE;
1450 convert_setup(&conv, enc, p_enc);
1451 if (conv.vc_type != CONV_NONE)
1452 {
1453 tmpbuf = string_convert(&conv, text, &len);
1454 if (tmpbuf != NULL)
1455 text = tmpbuf;
1456 convert_setup(&conv, NULL, NULL);
1457 }
1458 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460 /* gtk_selection_data_get_text() handles all the nasty details
1461 * and targets and encodings etc. This rocks so hard. */
1462 else
1463 {
1464 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1465 if (tmpbuf_utf8 != NULL)
1466 {
1467 len = STRLEN(tmpbuf_utf8);
1468 if (input_conv.vc_type != CONV_NONE)
1469 {
1470 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1471 if (tmpbuf != NULL)
1472 text = tmpbuf;
1473 }
1474 else
1475 text = tmpbuf_utf8;
1476 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001477 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1478 {
1479 vimconv_T conv;
1480
1481 /* UTF-16, we get this for HTML */
1482 conv.vc_type = CONV_NONE;
1483 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1484
1485 if (conv.vc_type != CONV_NONE)
1486 {
1487 text += 2;
1488 len -= 2;
1489 tmpbuf = string_convert(&conv, text, &len);
1490 convert_setup(&conv, NULL, NULL);
1491 }
1492 if (tmpbuf != NULL)
1493 text = tmpbuf;
1494 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001497 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001498 while (len > 0 && text[len - 1] == NUL)
1499 --len;
1500
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 clip_yank_selection(motion_type, text, (long)len, cbd);
1502 received_selection = RS_OK;
1503 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505}
1506
1507/*
1508 * Prepare our selection data for passing it to the external selection
1509 * client.
1510 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001512selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 GtkSelectionData *selection_data,
1514 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001515 guint time_ UNUSED,
1516 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517{
1518 char_u *string;
1519 char_u *tmpbuf;
1520 long_u tmplen;
1521 int length;
1522 int motion_type;
1523 GdkAtom type;
1524 VimClipboard *cbd;
1525
Bram Moolenaar98921892016-02-23 17:14:37 +01001526#if GTK_CHECK_VERSION(3,0,0)
1527 if (gtk_selection_data_get_selection(selection_data)
1528 == clip_plus.gtk_sel_atom)
1529#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 if (selection_data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001531#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 cbd = &clip_plus;
1533 else
1534 cbd = &clip_star;
1535
1536 if (!cbd->owned)
1537 return; /* Shouldn't ever happen */
1538
1539 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001540 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 && info != (guint)TARGET_UTF8_STRING
1542 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 && info != (guint)TARGET_VIM
1544 && info != (guint)TARGET_COMPOUND_TEXT
1545 && info != (guint)TARGET_TEXT)
1546 return;
1547
1548 /* get the selection from the '*'/'+' register */
1549 clip_get_selection(cbd);
1550
1551 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1552 if (motion_type < 0 || string == NULL)
1553 return;
1554 /* Due to int arguments we can't handle more than G_MAXINT. Also
1555 * reserve one extra byte for NUL or the motion type; just in case.
1556 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1557 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1558
1559 if (info == (guint)TARGET_VIM)
1560 {
1561 tmpbuf = alloc((unsigned)length + 1);
1562 if (tmpbuf != NULL)
1563 {
1564 tmpbuf[0] = motion_type;
1565 mch_memmove(tmpbuf + 1, string, (size_t)length);
1566 }
1567 /* For our own format, the first byte contains the motion type */
1568 ++length;
1569 vim_free(string);
1570 string = tmpbuf;
1571 type = vim_atom;
1572 }
1573
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001574 else if (info == (guint)TARGET_HTML)
1575 {
1576 vimconv_T conv;
1577
1578 /* Since we get utf-16, we probably should set it as well. */
1579 conv.vc_type = CONV_NONE;
1580 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1581 if (conv.vc_type != CONV_NONE)
1582 {
1583 tmpbuf = string_convert(&conv, string, &length);
1584 convert_setup(&conv, NULL, NULL);
1585 vim_free(string);
1586 string = tmpbuf;
1587 }
1588
1589 /* Prepend the BOM: "fffe" */
1590 if (string != NULL)
1591 {
1592 tmpbuf = alloc(length + 2);
1593 tmpbuf[0] = 0xff;
1594 tmpbuf[1] = 0xfe;
1595 mch_memmove(tmpbuf + 2, string, (size_t)length);
1596 vim_free(string);
1597 string = tmpbuf;
1598 length += 2;
1599
Bram Moolenaar98921892016-02-23 17:14:37 +01001600#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001601 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001602 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001603 selection_data->type = selection_data->target;
1604 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001605#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001606 gtk_selection_data_set(selection_data, html_atom, 16,
1607 string, length);
1608 vim_free(string);
1609 }
1610 return;
1611 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 else if (info == (guint)TARGET_VIMENC)
1613 {
1614 int l = STRLEN(p_enc);
1615
1616 /* contents: motion_type 'encoding' NUL text */
1617 tmpbuf = alloc((unsigned)length + l + 2);
1618 if (tmpbuf != NULL)
1619 {
1620 tmpbuf[0] = motion_type;
1621 STRCPY(tmpbuf + 1, p_enc);
1622 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
1623 }
1624 length += l + 2;
1625 vim_free(string);
1626 string = tmpbuf;
1627 type = vimenc_atom;
1628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 /* gtk_selection_data_set_text() handles everything for us. This is
1631 * so easy and simple and cool, it'd be insane not to use it. */
1632 else
1633 {
1634 if (output_conv.vc_type != CONV_NONE)
1635 {
1636 tmpbuf = string_convert(&output_conv, string, &length);
1637 vim_free(string);
1638 if (tmpbuf == NULL)
1639 return;
1640 string = tmpbuf;
1641 }
1642 /* Validate the string to avoid runtime warnings */
1643 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1644 {
1645 gtk_selection_data_set_text(selection_data,
1646 (const char *)string, length);
1647 }
1648 vim_free(string);
1649 return;
1650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651
1652 if (string != NULL)
1653 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001654#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001655 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001656 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 selection_data->type = selection_data->target;
1658 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001659#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 gtk_selection_data_set(selection_data, type, 8, string, length);
1661 vim_free(string);
1662 }
1663}
1664
1665/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001666 * Check if the GUI can be started. Called before gvimrc is sourced and
1667 * before fork().
1668 * Return OK or FAIL.
1669 */
1670 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001671gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001672{
1673 char_u *p;
1674
1675 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1676 p = mch_getenv((char_u *)"DISPLAY");
1677 if (p == NULL || *p == NUL)
1678 {
1679 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001680 if (give_message)
1681 EMSG(_((char *)e_opendisp));
Bram Moolenaar29695702012-05-18 17:03:18 +02001682 return FAIL;
1683 }
1684 return OK;
1685}
1686
1687/*
1688 * Check if the GUI can be started. Called before gvimrc is sourced but after
1689 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 * Return OK or FAIL.
1691 */
1692 int
1693gui_mch_init_check(void)
1694{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001695#ifdef USE_GRESOURCE
1696 static int res_registered = FALSE;
1697
1698 if (!res_registered)
1699 {
1700 /* Call this function in the GUI process; otherwise, the resources
1701 * won't be available. Don't call it twice. */
1702 res_registered = TRUE;
1703 gui_gtk_register_resource();
1704 }
1705#endif
1706
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001707#if GTK_CHECK_VERSION(3,10,0)
1708 /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1709 * support for other backends such as Wayland. */
1710 gdk_set_allowed_backends ("x11");
1711#endif
1712
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713#ifdef FEAT_GUI_GNOME
1714 if (gtk_socket_id == 0)
1715 using_gnome = 1;
1716#endif
1717
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001718 /* This defaults to argv[0], but we want it to match the name of the
1719 * shipped gvim.desktop so that Vim's windows can be associated with this
1720 * file. */
1721 g_set_prgname("gvim");
1722
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1724 if (!gtk_init_check(&gui_argc, &gui_argv))
1725 {
1726 gui.dying = TRUE;
Bram Moolenaarc93e7912008-07-08 10:46:08 +00001727 EMSG(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 return FAIL;
1729 }
1730
1731 return OK;
1732}
1733
1734
1735/****************************************************************************
1736 * Mouse handling callbacks
1737 */
1738
1739
1740static guint mouse_click_timer = 0;
1741static int mouse_timed_out = TRUE;
1742
1743/*
1744 * Timer used to recognize multiple clicks of the mouse button
1745 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001746#if GTK_CHECK_VERSION(3,0,0)
1747 static gboolean
1748#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001750#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751mouse_click_timer_cb(gpointer data)
1752{
1753 /* we don't use this information currently */
1754 int *timed_out = (int *) data;
1755
1756 *timed_out = TRUE;
1757 return FALSE; /* don't happen again */
1758}
1759
1760static guint motion_repeat_timer = 0;
1761static int motion_repeat_offset = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01001762#ifdef GTK_DEST_DEFAULT_ALL
1763static gboolean motion_repeat_timer_cb(gpointer);
1764#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765static gint motion_repeat_timer_cb(gpointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01001766#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767
1768 static void
1769process_motion_notify(int x, int y, GdkModifierType state)
1770{
1771 int button;
1772 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001773#if GTK_CHECK_VERSION(3,0,0)
1774 GtkAllocation allocation;
1775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776
1777 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1778 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1779 GDK_BUTTON5_MASK))
1780 ? MOUSE_DRAG : ' ';
1781
1782 /* If our pointer is currently hidden, then we should show it. */
1783 gui_mch_mousehide(FALSE);
1784
1785 /* Just moving the rodent above the drawing area without any button
1786 * being pressed. */
1787 if (button != MOUSE_DRAG)
1788 {
1789 gui_mouse_moved(x, y);
1790 return;
1791 }
1792
1793 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001794 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795
Bram Moolenaar49325942007-05-10 19:19:59 +00001796 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1798
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 /*
1800 * Auto repeat timer handling.
1801 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001802#if GTK_CHECK_VERSION(3,0,0)
1803 gtk_widget_get_allocation(gui.drawarea, &allocation);
1804
1805 if (x < 0 || y < 0
1806 || x >= allocation.width
1807 || y >= allocation.height)
1808#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 if (x < 0 || y < 0
1810 || x >= gui.drawarea->allocation.width
1811 || y >= gui.drawarea->allocation.height)
Bram Moolenaar98921892016-02-23 17:14:37 +01001812#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 {
1814
1815 int dx;
1816 int dy;
1817 int offshoot;
1818 int delay = 10;
1819
1820 /* Calculate the maximal distance of the cursor from the drawing area.
1821 * (offshoot can't become negative here!).
1822 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001823#if GTK_CHECK_VERSION(3,0,0)
1824 dx = x < 0 ? -x : x - allocation.width;
1825 dy = y < 0 ? -y : y - allocation.height;
1826#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 dx = x < 0 ? -x : x - gui.drawarea->allocation.width;
1828 dy = y < 0 ? -y : y - gui.drawarea->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01001829#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830
1831 offshoot = dx > dy ? dx : dy;
1832
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001833 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 * distance of 127 pixels from the main window.
1835 *
1836 * One could think endlessly about the most ergonomic variant here.
1837 * For example it could make sense to calculate the distance from the
1838 * drags start instead...
1839 *
1840 * Maybe a parabolic interpolation would suite us better here too...
1841 */
1842 if (offshoot > 127)
1843 {
1844 /* 5 appears to be somehow near to my perceptual limits :-). */
1845 delay = 5;
1846 }
1847 else
1848 {
1849 delay = (130 * (127 - offshoot)) / 127 + 5;
1850 }
1851
1852 /* shoot again */
1853 if (!motion_repeat_timer)
Bram Moolenaar98921892016-02-23 17:14:37 +01001854#if GTK_CHECK_VERSION(3,0,0)
1855 motion_repeat_timer = g_timeout_add((guint)delay,
1856 motion_repeat_timer_cb, NULL);
1857#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 motion_repeat_timer = gtk_timeout_add((guint32)delay,
1859 motion_repeat_timer_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01001860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 }
1862}
1863
Bram Moolenaar98921892016-02-23 17:14:37 +01001864#if GTK_CHECK_VERSION(3,0,0)
1865 static GdkDevice *
1866gui_gtk_get_pointer_device(GtkWidget *widget)
1867{
1868 GdkWindow * const win = gtk_widget_get_window(widget);
1869 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001870# if GTK_CHECK_VERSION(3,20,0)
1871 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1872 return gdk_seat_get_pointer(seat);
1873# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001874 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1875 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001876# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001877}
1878
1879 static GdkWindow *
1880gui_gtk_get_pointer(GtkWidget *widget,
1881 gint *x,
1882 gint *y,
1883 GdkModifierType *state)
1884{
1885 GdkWindow * const win = gtk_widget_get_window(widget);
1886 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1887 return gdk_window_get_device_position(win, dev , x, y, state);
1888}
1889
Bram Moolenaar2369c152016-03-04 23:08:25 +01001890# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001891 static GdkWindow *
1892gui_gtk_window_at_position(GtkWidget *widget,
1893 gint *x,
1894 gint *y)
1895{
1896 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1897 return gdk_device_get_window_at_position(dev, x, y);
1898}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001899# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001900#endif
1901
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902/*
1903 * Timer used to recognize multiple clicks of the mouse button.
1904 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001905#if GTK_CHECK_VERSION(3,0,0)
1906 static gboolean
1907#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001909#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001910motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911{
1912 int x;
1913 int y;
1914 GdkModifierType state;
1915
Bram Moolenaar98921892016-02-23 17:14:37 +01001916#if GTK_CHECK_VERSION(3,0,0)
1917 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
1918#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001920#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921
1922 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1923 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1924 GDK_BUTTON5_MASK)))
1925 {
1926 motion_repeat_timer = 0;
1927 return FALSE;
1928 }
1929
1930 /* If there already is a mouse click in the input buffer, wait another
1931 * time (otherwise we would create a backlog of clicks) */
1932 if (vim_used_in_input_buf() > 10)
1933 return TRUE;
1934
1935 motion_repeat_timer = 0;
1936
1937 /*
1938 * Fake a motion event.
1939 * Trick: Pretend the mouse moved to the next character on every other
1940 * event, otherwise drag events will be discarded, because they are still
1941 * in the same character.
1942 */
1943 if (motion_repeat_offset)
1944 x += gui.char_width;
1945
1946 motion_repeat_offset = !motion_repeat_offset;
1947 process_motion_notify(x, y, state);
1948
1949 /* Don't happen again. We will get reinstalled in the synthetic event
1950 * if needed -- thus repeating should still work. */
1951 return FALSE;
1952}
1953
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001955motion_notify_event(GtkWidget *widget,
1956 GdkEventMotion *event,
1957 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958{
1959 if (event->is_hint)
1960 {
1961 int x;
1962 int y;
1963 GdkModifierType state;
1964
Bram Moolenaar98921892016-02-23 17:14:37 +01001965#if GTK_CHECK_VERSION(3,0,0)
1966 gui_gtk_get_pointer(widget, &x, &y, &state);
1967#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 gdk_window_get_pointer(widget->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001969#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 process_motion_notify(x, y, state);
1971 }
1972 else
1973 {
1974 process_motion_notify((int)event->x, (int)event->y,
1975 (GdkModifierType)event->state);
1976 }
1977
1978 return TRUE; /* handled */
1979}
1980
1981
1982/*
1983 * Mouse button handling. Note please that we are capturing multiple click's
1984 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1985 * This is due to the way the generic VIM code is recognizing multiple clicks.
1986 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001988button_press_event(GtkWidget *widget,
1989 GdkEventButton *event,
1990 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991{
1992 int button;
1993 int repeated_click = FALSE;
1994 int x, y;
1995 int_u vim_modifiers;
1996
Bram Moolenaar20892c12011-06-26 04:49:00 +02001997 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001998
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01002000#if GTK_CHECK_VERSION(3,0,0)
2001 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
2002#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002004#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 gtk_widget_grab_focus(widget);
2006
2007 /*
2008 * Don't let additional events about multiple clicks send by GTK to us
2009 * after the initial button press event confuse us.
2010 */
2011 if (event->type != GDK_BUTTON_PRESS)
2012 return FALSE;
2013
2014 x = event->x;
2015 y = event->y;
2016
2017 /* Handle multiple clicks */
2018 if (!mouse_timed_out && mouse_click_timer)
2019 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002020#if GTK_CHECK_VERSION(3,0,0)
2021 g_source_remove(mouse_click_timer);
2022#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 gtk_timeout_remove(mouse_click_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002024#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 mouse_click_timer = 0;
2026 repeated_click = TRUE;
2027 }
2028
2029 mouse_timed_out = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01002030#if GTK_CHECK_VERSION(3,0,0)
2031 mouse_click_timer = g_timeout_add((guint)p_mouset,
2032 mouse_click_timer_cb, &mouse_timed_out);
2033#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 mouse_click_timer = gtk_timeout_add((guint32)p_mouset,
2035 mouse_click_timer_cb, &mouse_timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01002036#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037
2038 switch (event->button)
2039 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01002040 /* Keep in sync with gui_x11.c.
2041 * Buttons 4-7 are handled in scroll_event() */
2042 case 1: button = MOUSE_LEFT; break;
2043 case 2: button = MOUSE_MIDDLE; break;
2044 case 3: button = MOUSE_RIGHT; break;
2045 case 8: button = MOUSE_X1; break;
2046 case 9: button = MOUSE_X2; break;
2047 default:
2048 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 }
2050
2051#ifdef FEAT_XIM
2052 /* cancel any preediting */
2053 if (im_is_preediting())
2054 xim_reset();
2055#endif
2056
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002057 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058
2059 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060
2061 return TRUE;
2062}
2063
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002065 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002068scroll_event(GtkWidget *widget,
2069 GdkEventScroll *event,
2070 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071{
2072 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002073 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074
Bram Moolenaar98921892016-02-23 17:14:37 +01002075#if GTK_CHECK_VERSION(3,0,0)
2076 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
2077#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002079#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 gtk_widget_grab_focus(widget);
2081
2082 switch (event->direction)
2083 {
2084 case GDK_SCROLL_UP:
2085 button = MOUSE_4;
2086 break;
2087 case GDK_SCROLL_DOWN:
2088 button = MOUSE_5;
2089 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002090 case GDK_SCROLL_LEFT:
2091 button = MOUSE_7;
2092 break;
2093 case GDK_SCROLL_RIGHT:
2094 button = MOUSE_6;
2095 break;
2096 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097 return FALSE;
2098 }
2099
2100# ifdef FEAT_XIM
2101 /* cancel any preediting */
2102 if (im_is_preediting())
2103 xim_reset();
2104# endif
2105
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002106 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107
2108 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2109 FALSE, vim_modifiers);
2110
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111 return TRUE;
2112}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113
2114
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002116button_release_event(GtkWidget *widget UNUSED,
2117 GdkEventButton *event,
2118 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119{
2120 int x, y;
2121 int_u vim_modifiers;
2122
Bram Moolenaar20892c12011-06-26 04:49:00 +02002123 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002124
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 /* Remove any motion "machine gun" timers used for automatic further
2126 extension of allocation areas if outside of the applications window
2127 area .*/
2128 if (motion_repeat_timer)
2129 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002130#if GTK_CHECK_VERSION(3,0,0)
2131 g_source_remove(motion_repeat_timer);
2132#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 gtk_timeout_remove(motion_repeat_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002134#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 motion_repeat_timer = 0;
2136 }
2137
2138 x = event->x;
2139 y = event->y;
2140
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002141 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142
2143 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144
2145 return TRUE;
2146}
2147
2148
2149#ifdef FEAT_DND
2150/****************************************************************************
2151 * Drag aNd Drop support handlers.
2152 */
2153
2154/*
2155 * Count how many items there may be and separate them with a NUL.
2156 * Apparently the items are separated with \r\n. This is not documented,
2157 * thus be careful not to go past the end. Also allow separation with
2158 * NUL characters.
2159 */
2160 static int
2161count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2162{
2163 int i;
2164 char_u *p = out;
2165 int count = 0;
2166
2167 for (i = 0; i < len; ++i)
2168 {
2169 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2170 {
2171 if (p > out && p[-1] != NUL)
2172 {
2173 ++count;
2174 *p++ = NUL;
2175 }
2176 }
2177 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2178 {
2179 *p++ = hexhex2nr(raw + i + 1);
2180 i += 2;
2181 }
2182 else
2183 *p++ = raw[i];
2184 }
2185 if (p > out && p[-1] != NUL)
2186 {
2187 *p = NUL; /* last item didn't have \r or \n */
2188 ++count;
2189 }
2190 return count;
2191}
2192
2193/*
2194 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2195 * this process, URI which protocol is not "file:" are removed. Return
2196 * length of array (less than "max").
2197 */
2198 static int
2199filter_uri_list(char_u **outlist, int max, char_u *src)
2200{
2201 int i, j;
2202
2203 for (i = j = 0; i < max; ++i)
2204 {
2205 outlist[i] = NULL;
2206 if (STRNCMP(src, "file:", 5) == 0)
2207 {
2208 src += 5;
2209 if (STRNCMP(src, "//localhost", 11) == 0)
2210 src += 11;
2211 while (src[0] == '/' && src[1] == '/')
2212 ++src;
2213 outlist[j++] = vim_strsave(src);
2214 }
2215 src += STRLEN(src) + 1;
2216 }
2217 return j;
2218}
2219
2220 static char_u **
2221parse_uri_list(int *count, char_u *data, int len)
2222{
2223 int n = 0;
2224 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002225 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226
2227 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2228 {
2229 n = count_and_decode_uri_list(tmp, data, len);
2230 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2231 n = filter_uri_list(array, n, tmp);
2232 }
2233 vim_free(tmp);
2234 *count = n;
2235 return array;
2236}
2237
2238 static void
2239drag_handle_uri_list(GdkDragContext *context,
2240 GtkSelectionData *data,
2241 guint time_,
2242 GdkModifierType state,
2243 gint x,
2244 gint y)
2245{
2246 char_u **fnames;
2247 int nfiles = 0;
2248
Bram Moolenaar98921892016-02-23 17:14:37 +01002249# if GTK_CHECK_VERSION(3,0,0)
2250 fnames = parse_uri_list(&nfiles,
2251 (char_u *)gtk_selection_data_get_data(data),
2252 gtk_selection_data_get_length(data));
2253# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 fnames = parse_uri_list(&nfiles, data->data, data->length);
Bram Moolenaar98921892016-02-23 17:14:37 +01002255# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256
2257 if (fnames != NULL && nfiles > 0)
2258 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002259 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260
2261 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2262
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002263 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264
2265 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2266 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002267 else
2268 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269}
2270
2271 static void
2272drag_handle_text(GdkDragContext *context,
2273 GtkSelectionData *data,
2274 guint time_,
2275 GdkModifierType state)
2276{
2277 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2278 char_u *text;
2279 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281
Bram Moolenaar98921892016-02-23 17:14:37 +01002282# if GTK_CHECK_VERSION(3,0,0)
2283 text = (char_u *)gtk_selection_data_get_data(data);
2284 len = gtk_selection_data_get_length(data);
2285# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 text = data->data;
2287 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01002288# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289
Bram Moolenaar98921892016-02-23 17:14:37 +01002290# if GTK_CHECK_VERSION(3,0,0)
2291 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
2292# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 if (data->type == utf8_string_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01002294# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 if (input_conv.vc_type != CONV_NONE)
2297 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 if (tmpbuf != NULL)
2299 text = tmpbuf;
2300 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301
2302 dnd_yank_drag_data(text, (long)len);
2303 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002306 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307
2308 if (dropkey[2] != 0)
2309 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2310 else
2311 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312}
2313
2314/*
2315 * DND receiver.
2316 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 static void
2318drag_data_received_cb(GtkWidget *widget,
2319 GdkDragContext *context,
2320 gint x,
2321 gint y,
2322 GtkSelectionData *data,
2323 guint info,
2324 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002325 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326{
2327 GdkModifierType state;
2328
2329 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002330# if GTK_CHECK_VERSION(3,0,0)
2331 const guchar * const data_data = gtk_selection_data_get_data(data);
2332 const gint data_length = gtk_selection_data_get_length(data);
2333 const gint data_format = gtk_selection_data_get_format(data);
2334
2335 if (data_data == NULL
2336 || data_length <= 0
2337 || data_format != 8
2338 || data_data[data_length] != '\0')
2339# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 if (data->data == NULL
2341 || data->length <= 0
2342 || data->format != 8
2343 || data->data[data->length] != '\0')
Bram Moolenaar98921892016-02-23 17:14:37 +01002344# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 {
2346 gtk_drag_finish(context, FALSE, FALSE, time_);
2347 return;
2348 }
2349
2350 /* Get the current modifier state for proper distinguishment between
2351 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002352#if GTK_CHECK_VERSION(3,0,0)
2353 gui_gtk_get_pointer(widget, NULL, NULL, &state);
2354# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01002356# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357
2358 /* Not sure about the role of "text/plain" here... */
2359 if (info == (guint)TARGET_TEXT_URI_LIST)
2360 drag_handle_uri_list(context, data, time_, state, x, y);
2361 else
2362 drag_handle_text(context, data, time_, state);
2363
2364}
2365#endif /* FEAT_DND */
2366
2367
2368#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2369/*
2370 * GnomeClient interact callback. Check for unsaved buffers that cannot
2371 * be abandoned and pop up a dialog asking the user for confirmation if
2372 * necessary.
2373 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002375sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002377 GnomeDialogType type UNUSED,
2378 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379{
2380 cmdmod_T save_cmdmod;
2381 gboolean shutdown_cancelled;
2382
2383 save_cmdmod = cmdmod;
2384
2385# ifdef FEAT_BROWSE
2386 cmdmod.browse = TRUE;
2387# endif
2388# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2389 cmdmod.confirm = TRUE;
2390# endif
2391 /*
2392 * If there are changed buffers, present the user with
2393 * a dialog if possible, otherwise give an error message.
2394 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002395 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396
2397 exiting = FALSE;
2398 cmdmod = save_cmdmod;
2399 setcursor(); /* position the cursor */
2400 out_flush();
2401 /*
2402 * If the user hit the [Cancel] button the whole shutdown
2403 * will be cancelled. Wow, quite powerful feature (:
2404 */
2405 gnome_interaction_key_return(key, shutdown_cancelled);
2406}
2407
2408/*
2409 * Generate a script that can be used to restore the current editing session.
2410 * Save the value of v:this_session before running :mksession in order to make
2411 * automagic session save fully transparent. Return TRUE on success.
2412 */
2413 static int
2414write_session_file(char_u *filename)
2415{
2416 char_u *escaped_filename;
2417 char *mksession_cmdline;
2418 unsigned int save_ssop_flags;
2419 int failed;
2420
2421 /*
2422 * Build an ex command line to create a script that restores the current
2423 * session if executed. Escape the filename to avoid nasty surprises.
2424 */
2425 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2426 if (escaped_filename == NULL)
2427 return FALSE;
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002428 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2429 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 vim_free(escaped_filename);
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002431
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 /*
2433 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2434 * unpredictable effects when the session is saved automatically. Also,
2435 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2436 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2437 * enormously large if the GNOME session feature is used regularly.
2438 */
2439 save_ssop_flags = ssop_flags;
2440 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002441 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442
2443 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2444 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2445 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
Bram Moolenaar485db9b2005-01-31 19:23:41 +00002446 do_unlet((char_u *)"Save_VV_this_session", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447
2448 ssop_flags = save_ssop_flags;
2449 g_free(mksession_cmdline);
Bram Moolenaar24dc2302014-05-13 20:19:58 +02002450
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 /*
2452 * Reopen the file and append a command to restore v:this_session,
2453 * as if this save never happened. This is to avoid conflicts with
2454 * the user's own sessions. FIXME: It's probably less hackish to add
2455 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2456 */
2457 if (!failed)
2458 {
2459 FILE *fd;
2460
2461 fd = open_exfile(filename, TRUE, APPENDBIN);
2462
2463 failed = (fd == NULL
2464 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2465 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2466
2467 if (fd != NULL && fclose(fd) != 0)
2468 failed = TRUE;
2469
2470 if (failed)
2471 mch_remove(filename);
2472 }
2473
2474 return !failed;
2475}
2476
2477/*
2478 * "save_yourself" signal handler. Initiate an interaction to ask the user
2479 * for confirmation if necessary. Save the current editing session and tell
2480 * the session manager how to restart Vim.
2481 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 static gboolean
2483sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002484 gint phase UNUSED,
2485 GnomeSaveStyle save_style UNUSED,
2486 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002488 gboolean fast UNUSED,
2489 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490{
2491 static const char suffix[] = "-session.vim";
2492 char *session_file;
2493 unsigned int len;
2494 gboolean success;
2495
2496 /* Always request an interaction if possible. check_changed_any()
2497 * won't actually show a dialog unless any buffers have been modified.
2498 * There doesn't seem to be an obvious way to check that without
2499 * automatically firing the dialog. Anyway, it works just fine. */
2500 if (interact_style == GNOME_INTERACT_ANY)
2501 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2502 &sm_client_check_changed_any,
2503 NULL);
2504 out_flush();
2505 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2506
2507 /* The path is unique for each session save. We do neither know nor care
2508 * which session script will actually be used later. This decision is in
2509 * the domain of the session manager. */
2510 session_file = gnome_config_get_real_path(
2511 gnome_client_get_config_prefix(client));
2512 len = strlen(session_file);
2513
2514 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2515 --len; /* get rid of the superfluous trailing '/' */
2516
2517 session_file = g_renew(char, session_file, len + sizeof(suffix));
2518 memcpy(session_file + len, suffix, sizeof(suffix));
2519
2520 success = write_session_file((char_u *)session_file);
2521
2522 if (success)
2523 {
2524 const char *argv[8];
2525 int i;
2526
2527 /* Tell the session manager how to wipe out the stored session data.
2528 * This isn't as dangerous as it looks, don't worry :) session_file
2529 * is a unique absolute filename. Usually it'll be something like
2530 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2531 i = 0;
2532 argv[i++] = "rm";
2533 argv[i++] = session_file;
2534 argv[i] = NULL;
2535
2536 gnome_client_set_discard_command(client, i, (char **)argv);
2537
2538 /* Tell the session manager how to restore the just saved session.
2539 * This is easily done thanks to Vim's -S option. Pass the -f flag
2540 * since there's no need to fork -- it might even cause confusion.
2541 * Also pass the window role to give the WM something to match on.
2542 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2543 i = 0;
2544 argv[i++] = restart_command;
2545 argv[i++] = "-f";
2546 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 argv[i++] = "--role";
2548 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 argv[i++] = "-S";
2550 argv[i++] = session_file;
2551 argv[i] = NULL;
2552
2553 gnome_client_set_restart_command(client, i, (char **)argv);
2554 gnome_client_set_clone_command(client, 0, NULL);
2555 }
2556
2557 g_free(session_file);
2558
2559 return success;
2560}
2561
2562/*
2563 * Called when the session manager wants us to die. There isn't much to save
2564 * here since "save_yourself" has been emitted before (unless serious trouble
2565 * is happening).
2566 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002568sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569{
2570 /* Don't write messages to the GUI anymore */
2571 full_screen = FALSE;
2572
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002573 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002574 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002575 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 preserve_exit();
2577}
2578
2579/*
2580 * Connect our signal handlers to be notified on session save and shutdown.
2581 */
2582 static void
2583setup_save_yourself(void)
2584{
2585 GnomeClient *client;
2586
2587 client = gnome_master_client();
2588
2589 if (client != NULL)
2590 {
2591 /* Must use the deprecated gtk_signal_connect() for compatibility
2592 * with GNOME 1. Arrgh, zombies! */
2593 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2594 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2595 gtk_signal_connect(GTK_OBJECT(client), "die",
2596 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2597 }
2598}
2599
2600#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2601
2602# ifdef USE_XSMP
2603/*
2604 * GTK tells us that XSMP needs attention
2605 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002607local_xsmp_handle_requests(
2608 GIOChannel *source UNUSED,
2609 GIOCondition condition,
2610 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611{
2612 if (condition == G_IO_IN)
2613 {
2614 /* Do stuff; maybe close connection */
2615 if (xsmp_handle_requests() == FAIL)
2616 g_io_channel_unref((GIOChannel *)data);
2617 return TRUE;
2618 }
2619 /* Error */
2620 g_io_channel_unref((GIOChannel *)data);
2621 xsmp_close();
2622 return TRUE;
2623}
2624# endif /* USE_XSMP */
2625
2626/*
2627 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2628 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2629 */
2630 static void
2631setup_save_yourself(void)
2632{
2633 Atom *existing_atoms = NULL;
2634 int count = 0;
2635
Bram Moolenaar98921892016-02-23 17:14:37 +01002636# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 if (xsmp_icefd != -1)
2638 {
2639 /*
2640 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2641 * set up GTK IO monitor
2642 */
2643 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2644
2645 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2646 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002647 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 }
2649 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002650# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 {
2652 /* Fall back to old method */
2653
2654 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002655# if GTK_CHECK_VERSION(3,0,0)
2656 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2657
2658 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2659 GDK_WINDOW_XID(mainwin_win),
2660 &existing_atoms, &count))
2661# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2663 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2664 &existing_atoms, &count))
Bram Moolenaar98921892016-02-23 17:14:37 +01002665# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 {
2667 Atom *new_atoms;
2668 Atom save_yourself_xatom;
2669 int i;
2670
2671 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2672
2673 /* check if WM_SAVE_YOURSELF isn't there yet */
2674 for (i = 0; i < count; ++i)
2675 if (existing_atoms[i] == save_yourself_xatom)
2676 break;
2677
2678 if (i == count)
2679 {
2680 /* allocate an Atoms array which is one item longer */
2681 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2682 * sizeof(Atom)));
2683 if (new_atoms != NULL)
2684 {
2685 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2686 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002687# if GTK_CHECK_VERSION(3,0,0)
2688 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2689 GDK_WINDOW_XID(mainwin_win),
2690# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2692 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002693# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694 new_atoms, count + 1);
2695 vim_free(new_atoms);
2696 }
2697 }
2698 XFree(existing_atoms);
2699 }
2700 }
2701}
2702
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703/*
2704 * Installing a global event filter seems to be the only way to catch
2705 * client messages of type WM_PROTOCOLS without overriding GDK's own
2706 * client message event filter. Well, that's still better than trying
2707 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 *
2709 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2710 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2711 * I have the nasty feeling modern session managers just don't send this
2712 * deprecated message anymore. Addition: confirmed by several people.
2713 *
2714 * The GNOME session support is much cooler anyway. Unlike this ugly
2715 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2716 * it should work with KDE as well.
2717 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002719global_event_filter(GdkXEvent *xev,
2720 GdkEvent *event UNUSED,
2721 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722{
2723 XEvent *xevent = (XEvent *)xev;
2724
2725 if (xevent != NULL
2726 && xevent->type == ClientMessage
2727 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002728 && (long_u)xevent->xclient.data.l[0]
2729 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 {
2731 out_flush();
2732 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2733 /*
2734 * Set the window's WM_COMMAND property, to let the window manager
2735 * know we are done saving ourselves. We don't want to be
2736 * restarted, thus set argv to NULL.
2737 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002738# if GTK_CHECK_VERSION(3,0,0)
2739 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2740 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
2741# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2743 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002744# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 NULL, 0);
2746 return GDK_FILTER_REMOVE;
2747 }
2748
2749 return GDK_FILTER_CONTINUE;
2750}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2752
2753
2754/*
2755 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2756 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002758mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759{
2760/* If you get an error message here, you still need to unpack the runtime
2761 * archive! */
2762#ifdef magick
2763# undef magick
2764#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 /* A bit hackish, but avoids casting later and allows optimization */
2766# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767#define magick vim32x32
2768#include "../runtime/vim32x32.xpm"
2769#undef magick
2770#define magick vim16x16
2771#include "../runtime/vim16x16.xpm"
2772#undef magick
2773#define magick vim48x48
2774#include "../runtime/vim48x48.xpm"
2775#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777
Bram Moolenaar98921892016-02-23 17:14:37 +01002778#if GTK_CHECK_VERSION(3,0,0)
2779 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2780#endif
2781
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 /* When started with "--echo-wid" argument, write window ID on stdout. */
2783 if (echo_wid_arg)
2784 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002785#if GTK_CHECK_VERSION(3,0,0)
2786 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
2787#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002789#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 fflush(stdout);
2791 }
2792
2793 if (vim_strchr(p_go, GO_ICON) != NULL)
2794 {
2795 /*
2796 * Add an icon to the main window. For fun and convenience of the user.
2797 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 GList *icons = NULL;
2799
2800 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2801 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2802 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2803
2804 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2805
2806 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2807 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 }
2809
2810#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2811 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813#endif
2814 /* Setup to indicate to the window manager that we want to catch the
2815 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2816 * manager instead. */
2817#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2818 if (using_gnome)
2819#endif
2820 setup_save_yourself();
2821
2822#ifdef FEAT_CLIENTSERVER
2823 if (serverName == NULL && serverDelayedStartName != NULL)
2824 {
2825 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002826# if GTK_CHECK_VERSION(3,0,0)
2827 commWindow = GDK_WINDOW_XID(mainwin_win);
2828
2829 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2830 serverDelayedStartName);
2831# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
2833
2834 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2835 serverDelayedStartName);
Bram Moolenaar98921892016-02-23 17:14:37 +01002836# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 }
2838 else
2839 {
2840 /*
2841 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2842 * have to change the "server" registration to that of the main window
2843 * If we have not registered a name yet, remember the window
2844 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002845# if GTK_CHECK_VERSION(3,0,0)
2846 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2847 GDK_WINDOW_XID(mainwin_win));
2848# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2850 GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002851# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 }
2853 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002854# if GTK_CHECK_VERSION(3,0,0)
2855 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2856 G_CALLBACK(property_event), NULL);
2857# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
2859 GTK_SIGNAL_FUNC(property_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01002860# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861#endif
2862}
2863
2864 static GdkCursor *
2865create_blank_pointer(void)
2866{
2867 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002868#if GTK_CHECK_VERSION(3,0,0)
2869 GdkPixbuf *blank_mask;
2870#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002872#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002874#if GTK_CHECK_VERSION(3,0,0)
2875 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2876#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 GdkColor color = { 0, 0, 0, 0 };
2878 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880
2881#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01002882# if GTK_CHECK_VERSION(3,12,0)
2883 {
2884 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2885 GdkScreen * const scrn = gdk_window_get_screen(win);
2886 root_window = gdk_screen_get_root_window(scrn);
2887 }
2888# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 root_window = gtk_widget_get_root_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002890# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891#endif
2892
2893 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2894 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002895#if GTK_CHECK_VERSION(3,0,0)
2896 {
2897 cairo_surface_t *surf;
2898 cairo_t *cr;
2899
2900 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2901 cr = cairo_create(surf);
2902
Bram Moolenaar36edf062016-07-21 22:10:12 +02002903 cairo_set_source_rgba(cr,
2904 color.red,
2905 color.green,
2906 color.blue,
2907 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002908 cairo_rectangle(cr, 0, 0, 1, 1);
2909 cairo_fill(cr);
2910 cairo_destroy(cr);
2911
2912 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2913 cairo_surface_destroy(surf);
2914
2915 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2916 blank_mask, 0, 0);
2917 g_object_unref(blank_mask);
2918 }
2919#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2921 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2922 &color, &color, 0, 0);
2923 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002924#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925
2926 return cursor;
2927}
2928
2929#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 static void
2931mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002932 GdkScreen *previous_screen UNUSED,
2933 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934{
2935 if (!gtk_widget_has_screen(widget))
2936 return;
2937
2938 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002939 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 */
2941 if (gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01002942# if GTK_CHECK_VERSION(3,0,0)
2943 g_object_unref(G_OBJECT(gui.blank_pointer));
2944# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002946# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947
2948 gui.blank_pointer = create_blank_pointer();
2949
Bram Moolenaar98921892016-02-23 17:14:37 +01002950# if GTK_CHECK_VERSION(3,0,0)
2951 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2952 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2953 gui.blank_pointer);
2954# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 if (gui.pointer_hidden && gui.drawarea->window != NULL)
2956 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002957# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958
2959 /*
2960 * Create a new PangoContext for this screen, and initialize it
2961 * with the current font if necessary.
2962 */
2963 if (gui.text_context != NULL)
2964 g_object_unref(gui.text_context);
2965
2966 gui.text_context = gtk_widget_create_pango_context(widget);
2967 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2968
2969 if (gui.norm_font != NULL)
2970 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002971 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar04a9d452006-03-27 21:03:26 +00002972 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 }
2974}
2975#endif /* HAVE_GTK_MULTIHEAD */
2976
2977/*
2978 * After the drawing area comes up, we calculate all colors and create the
2979 * dummy blank cursor.
2980 *
2981 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2982 * fact that the main VIM engine doesn't take them into account anywhere.
2983 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002985drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986{
2987 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002988#if GTK_CHECK_VERSION(3,0,0)
2989 GtkAllocation allocation;
2990#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991
2992#ifdef FEAT_XIM
2993 xim_init();
2994#endif
2995 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002996#if GTK_CHECK_VERSION(3,0,0)
2997 gui.surface = gdk_window_create_similar_surface(
2998 gtk_widget_get_window(widget),
2999 CAIRO_CONTENT_COLOR_ALPHA,
3000 gtk_widget_get_allocated_width(widget),
3001 gtk_widget_get_allocated_height(widget));
3002#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01003004#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005
3006 gui.blank_pointer = create_blank_pointer();
3007 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01003008#if GTK_CHECK_VERSION(3,0,0)
3009 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
3010#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 gdk_window_set_cursor(widget->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003012#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013
3014 /* get the actual size of the scrollbars, if they are realized */
3015 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
3016 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
3017 && firstwin->w_scrollbars[SBAR_RIGHT].id))
3018 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003019#if GTK_CHECK_VERSION(3,0,0)
3020 gtk_widget_get_allocation(sbar, &allocation);
3021 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
3022 gui.scrollbar_width = allocation.width;
3023#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
3025 gui.scrollbar_width = sbar->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003026#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027
3028 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003029#if GTK_CHECK_VERSION(3,0,0)
3030 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
3031 gui.scrollbar_height = allocation.height;
3032#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
3034 gui.scrollbar_height = sbar->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01003035#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036}
3037
3038/*
3039 * Properly clean up on shutdown.
3040 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003042drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043{
3044 /* Don't write messages to the GUI anymore */
3045 full_screen = FALSE;
3046
3047#ifdef FEAT_XIM
3048 im_shutdown();
3049#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 if (gui.ascii_glyphs != NULL)
3051 {
3052 pango_glyph_string_free(gui.ascii_glyphs);
3053 gui.ascii_glyphs = NULL;
3054 }
3055 if (gui.ascii_font != NULL)
3056 {
3057 g_object_unref(gui.ascii_font);
3058 gui.ascii_font = NULL;
3059 }
3060 g_object_unref(gui.text_context);
3061 gui.text_context = NULL;
3062
Bram Moolenaar98921892016-02-23 17:14:37 +01003063#if GTK_CHECK_VERSION(3,0,0)
3064 if (gui.surface != NULL)
3065 {
3066 cairo_surface_destroy(gui.surface);
3067 gui.surface = NULL;
3068 }
3069#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 g_object_unref(gui.text_gc);
3071 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003072#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073
Bram Moolenaar98921892016-02-23 17:14:37 +01003074#if GTK_CHECK_VERSION(3,0,0)
3075 g_object_unref(G_OBJECT(gui.blank_pointer));
3076#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003078#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080}
3081
Bram Moolenaara859f042016-11-17 19:11:55 +01003082#if GTK_CHECK_VERSION(3,22,2)
3083 static void
3084drawarea_style_updated_cb(GtkWidget *widget UNUSED,
3085 gpointer data UNUSED)
3086#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003088drawarea_style_set_cb(GtkWidget *widget UNUSED,
3089 GtkStyle *previous_style UNUSED,
3090 gpointer data UNUSED)
Bram Moolenaara859f042016-11-17 19:11:55 +01003091#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092{
3093 gui_mch_new_colors();
3094}
3095
Bram Moolenaar98921892016-02-23 17:14:37 +01003096#if GTK_CHECK_VERSION(3,0,0)
3097 static gboolean
3098drawarea_configure_event_cb(GtkWidget *widget,
3099 GdkEventConfigure *event,
3100 gpointer data UNUSED)
3101{
3102 static int cur_width = 0;
3103 static int cur_height = 0;
3104
3105 g_return_val_if_fail(event
3106 && event->width >= 1 && event->height >= 1, TRUE);
3107
Bram Moolenaar182707a2016-11-21 20:55:58 +01003108# if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01003109 /* As of 3.22.2, GdkWindows have started distributing configure events to
3110 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
3111 *
3112 * As can be seen from the implementation of move_native_children() and
3113 * configure_native_child() in gdkwindow.c, those functions actually
3114 * propagate configure events to every child, failing to distinguish
3115 * "native" one from non-native one.
3116 *
3117 * Naturally, configure events propagated to here like that are fallacious
3118 * and, as a matter of fact, they trigger a geometric collapse of
3119 * gui.drawarea in fullscreen and miximized modes.
3120 *
3121 * To filter out such nuisance events, we are making use of the fact that
3122 * the field send_event of such GdkEventConfigures is set to FALSE in
3123 * configure_native_child().
3124 *
3125 * Obviously, this is a terrible hack making GVim depend on GTK's
3126 * implementation details. Therefore, watch out any relevant internal
3127 * changes happening in GTK in the feature (sigh).
3128 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01003129 /* Follow-up
3130 * After a few weeks later, the GdkWindow change mentioned above was
3131 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
3132 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01003133 if (event->send_event == FALSE)
3134 return TRUE;
3135# endif
3136
Bram Moolenaar98921892016-02-23 17:14:37 +01003137 if (event->width == cur_width && event->height == cur_height)
3138 return TRUE;
3139
3140 cur_width = event->width;
3141 cur_height = event->height;
3142
3143 if (gui.surface != NULL)
3144 cairo_surface_destroy(gui.surface);
3145
3146 gui.surface = gdk_window_create_similar_surface(
3147 gtk_widget_get_window(widget),
3148 CAIRO_CONTENT_COLOR_ALPHA,
3149 event->width, event->height);
3150
3151 gtk_widget_queue_draw(widget);
3152
3153 return TRUE;
3154}
3155#endif
3156
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157/*
3158 * Callback routine for the "delete_event" signal on the toplevel window.
3159 * Tries to vim gracefully, or refuses to exit with changed buffers.
3160 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003162delete_event_cb(GtkWidget *widget UNUSED,
3163 GdkEventAny *event UNUSED,
3164 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165{
3166 gui_shell_closed();
3167 return TRUE;
3168}
3169
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003170#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
3171 static int
3172get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
3173{
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003174# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003175 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
3176
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003177 if (using_gnome && widget != NULL)
3178 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003179 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003180 BonoboDockItem *dockitem;
3181
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003182 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003183 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
3184 {
3185 /* Only menu & toolbar are dock items. Could tabline be?
3186 * Seem to be only the 2 defined in GNOME */
3187 widget = parent;
3188 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003189
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003190 if (dockitem == NULL || dockitem->is_floating)
3191 return 0;
3192 item_orientation = bonobo_dock_item_get_orientation(dockitem);
3193 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003194 }
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003195# else
3196# define item_orientation GTK_ORIENTATION_HORIZONTAL
Bram Moolenaar98921892016-02-23 17:14:37 +01003197# endif
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003198
Bram Moolenaar98921892016-02-23 17:14:37 +01003199# if GTK_CHECK_VERSION(3,0,0)
3200 if (widget != NULL
3201 && item_orientation == orientation
3202 && gtk_widget_get_realized(widget)
3203 && gtk_widget_get_visible(widget))
3204# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003205 if (widget != NULL
3206 && item_orientation == orientation
3207 && GTK_WIDGET_REALIZED(widget)
3208 && GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01003209# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003210 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003211# if GTK_CHECK_VERSION(3,0,0)
3212 GtkAllocation allocation;
3213
3214 gtk_widget_get_allocation(widget, &allocation);
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003215 return allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01003216# else
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003217# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003218 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3219 return widget->allocation.height;
3220 else
3221 return widget->allocation.width;
Bram Moolenaarc4a249a2017-01-30 22:56:48 +01003222# else
3223 return widget->allocation.height;
3224# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003225# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003226 }
3227 return 0;
3228}
3229#endif
3230
3231 static int
3232get_menu_tool_width(void)
3233{
3234 int width = 0;
3235
3236#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3237# ifdef FEAT_MENU
3238 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3239# endif
3240# ifdef FEAT_TOOLBAR
3241 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3242# endif
3243# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003244 if (gui.tabline != NULL)
3245 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003246# endif
3247#endif
3248
3249 return width;
3250}
3251
3252 static int
3253get_menu_tool_height(void)
3254{
3255 int height = 0;
3256
3257#ifdef FEAT_MENU
3258 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3259#endif
3260#ifdef FEAT_TOOLBAR
3261 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3262#endif
3263#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003264 if (gui.tabline != NULL)
3265 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003266#endif
3267
3268 return height;
3269}
3270
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003271/* This controls whether we can set the real window hints at
3272 * start-up when in a GtkPlug.
3273 * 0 = normal processing (default)
3274 * 1 = init. hints set, no-one's tried to reset since last check
3275 * 2 = init. hints set, attempt made to change hints
3276 */
3277static int init_window_hints_state = 0;
3278
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003279 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003280update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003281{
3282 static int old_width = 0;
3283 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003284 static int old_min_width = 0;
3285 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003286 static int old_char_width = 0;
3287 static int old_char_height = 0;
3288
3289 int width;
3290 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003291 int min_width;
3292 int min_height;
3293
3294 /* At start-up, don't try to set the hints until the initial
3295 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003296 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003297 */
3298 if (!(force_width && force_height) && init_window_hints_state > 0)
3299 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003300 /* Don't do it! */
3301 init_window_hints_state = 2;
3302 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003303 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003304
3305 /* This also needs to be done when the main window isn't there yet,
3306 * otherwise the hints don't work. */
3307 width = gui_get_base_width();
3308 height = gui_get_base_height();
3309# ifdef FEAT_MENU
3310 height += tabline_height() * gui.char_height;
3311# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003312 width += get_menu_tool_width();
3313 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003314
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003315 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003316 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003317 * 'set columns=' or init. -geom) we briefly set the min. to the size
3318 * we wish to be instead of the legitimate minimum so that we actually
3319 * resize correctly.
3320 */
3321 if (force_width && force_height)
3322 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003323 min_width = force_width;
3324 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003325 }
3326 else
3327 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003328 min_width = width + MIN_COLUMNS * gui.char_width;
3329 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003330 }
3331
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003332 /* Avoid an expose event when the size didn't change. */
3333 if (width != old_width
3334 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003335 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003336 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003337 || gui.char_width != old_char_width
3338 || gui.char_height != old_char_height)
3339 {
3340 GdkGeometry geometry;
3341 GdkWindowHints geometry_mask;
3342
3343 geometry.width_inc = gui.char_width;
3344 geometry.height_inc = gui.char_height;
3345 geometry.base_width = width;
3346 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003347 geometry.min_width = min_width;
3348 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003349 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3350 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003351 /* Using gui.formwin as geometry widget doesn't work as expected
3352 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3353 * in Vim confuse GTK+. */
3354 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3355 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003356 old_width = width;
3357 old_height = height;
3358 old_min_width = min_width;
3359 old_min_height = min_height;
3360 old_char_width = gui.char_width;
3361 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003362 }
3363}
3364
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365#ifdef FEAT_TOOLBAR
3366
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367/*
3368 * This extra effort wouldn't be necessary if we only used stock icons in the
3369 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3370 * shouldn't be treated differently, thus we do need this.
3371 */
3372 static void
3373icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3374{
3375 if (GTK_IS_IMAGE(widget))
3376 {
3377 GtkImage *image = (GtkImage *)widget;
3378
Bram Moolenaar98921892016-02-23 17:14:37 +01003379# if GTK_CHECK_VERSION(3,10,0)
3380 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3381 {
3382 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3383 const gchar *icon_name;
3384
3385 gtk_image_get_icon_name(image, &icon_name, NULL);
3386
3387 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3388 }
3389# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 /* User-defined icons are stored in a GtkIconSet */
3391 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3392 {
3393 GtkIconSet *icon_set;
3394 GtkIconSize icon_size;
3395
3396 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3397 icon_size = (GtkIconSize)(long)user_data;
3398
3399 gtk_icon_set_ref(icon_set);
3400 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3401 gtk_icon_set_unref(icon_set);
3402 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003403# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 }
3405 else if (GTK_IS_CONTAINER(widget))
3406 {
3407 gtk_container_foreach((GtkContainer *)widget,
3408 &icon_size_changed_foreach,
3409 user_data);
3410 }
3411}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412
3413 static void
3414set_toolbar_style(GtkToolbar *toolbar)
3415{
3416 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 GtkIconSize size;
3418 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3421 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3422 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003423 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3425 style = GTK_TOOLBAR_BOTH;
3426 else if (toolbar_flags & TOOLBAR_TEXT)
3427 style = GTK_TOOLBAR_TEXT;
3428 else
3429 style = GTK_TOOLBAR_ICONS;
3430
3431 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003432# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003434# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 switch (tbis_flags)
3437 {
3438 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3439 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3440 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3441 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003442 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3443 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 default: size = GTK_ICON_SIZE_INVALID; break;
3445 }
3446 oldsize = gtk_toolbar_get_icon_size(toolbar);
3447
3448 if (size == GTK_ICON_SIZE_INVALID)
3449 {
3450 /* Let global user preferences decide the icon size. */
3451 gtk_toolbar_unset_icon_size(toolbar);
3452 size = gtk_toolbar_get_icon_size(toolbar);
3453 }
3454 if (size != oldsize)
3455 {
3456 gtk_container_foreach(GTK_CONTAINER(toolbar),
3457 &icon_size_changed_foreach,
3458 GINT_TO_POINTER((int)size));
3459 }
3460 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461}
3462
3463#endif /* FEAT_TOOLBAR */
3464
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003465#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3466static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003467static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003468# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003469static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003470# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003471static int clicked_page; /* page clicked in tab line */
3472
3473/*
3474 * Handle selecting an item in the tab line popup menu.
3475 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003476 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003477tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003478{
Bram Moolenaara5621492006-02-25 21:55:24 +00003479 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003480 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003481}
3482
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003483 static void
3484add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3485{
3486 GtkWidget *item;
3487 char_u *utf_text;
3488
3489 utf_text = CONVERT_TO_UTF8(text);
3490 item = gtk_menu_item_new_with_label((const char *)utf_text);
3491 gtk_widget_show(item);
3492 CONVERT_TO_UTF8_FREE(utf_text);
3493
3494 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003495# if GTK_CHECK_VERSION(3,0,0)
3496 g_signal_connect(G_OBJECT(item), "activate",
3497 G_CALLBACK(tabline_menu_handler),
3498 GINT_TO_POINTER(resp));
3499# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003500 gtk_signal_connect(GTK_OBJECT(item), "activate",
3501 GTK_SIGNAL_FUNC(tabline_menu_handler),
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003502 (gpointer)(long)resp);
Bram Moolenaar98921892016-02-23 17:14:37 +01003503# endif
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003504}
3505
Bram Moolenaara5621492006-02-25 21:55:24 +00003506/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003507 * Create a menu for the tab line.
3508 */
3509 static GtkWidget *
3510create_tabline_menu(void)
3511{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003512 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003513
3514 menu = gtk_menu_new();
Bram Moolenaar7098ee52015-06-09 19:14:24 +02003515 if (first_tabpage->tp_next != NULL)
3516 add_tabline_menu_item(menu, (char_u *)_("Close tab"),
3517 TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003518 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3519 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003520
3521 return menu;
3522}
3523
3524 static gboolean
3525on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3526{
3527 /* Was this button press event ? */
3528 if (event->type == GDK_BUTTON_PRESS)
3529 {
3530 GdkEventButton *bevent = (GdkEventButton *)event;
3531 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003532 int y = bevent->y;
3533 GtkWidget *tabwidget;
3534 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003535
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003536 /* When ignoring events return TRUE so that the selected page doesn't
3537 * change. */
3538 if (hold_gui_events
3539# ifdef FEAT_CMDWIN
3540 || cmdwin_type != 0
3541# endif
3542 )
3543 return TRUE;
3544
Bram Moolenaar98921892016-02-23 17:14:37 +01003545# if GTK_CHECK_VERSION(3,0,0)
3546 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
3547# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003548 tabwin = gdk_window_at_pointer(&x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003549# endif
3550
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003551 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003552# if GTK_CHECK_VERSION(3,0,0)
3553 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3554 "tab_num"));
3555# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003556 clicked_page = (int)(long)gtk_object_get_user_data(
3557 GTK_OBJECT(tabwidget));
Bram Moolenaar98921892016-02-23 17:14:37 +01003558# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003559
3560 /* If the event was generated for 3rd button popup the menu. */
3561 if (bevent->button == 3)
3562 {
Bram Moolenaara859f042016-11-17 19:11:55 +01003563# if GTK_CHECK_VERSION(3,22,2)
3564 gtk_menu_popup_at_pointer(GTK_MENU(widget), event);
3565# else
Bram Moolenaara5621492006-02-25 21:55:24 +00003566 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3567 bevent->button, bevent->time);
Bram Moolenaara859f042016-11-17 19:11:55 +01003568# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003569 /* We handled the event. */
3570 return TRUE;
3571 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003572 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003573 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003574 if (clicked_page == 0)
3575 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003576 /* Click after all tabs moves to next tab page. When "x" is
3577 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003578 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003579 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003580 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003581 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003582
Bram Moolenaara5621492006-02-25 21:55:24 +00003583 /* We didn't handle the event. */
3584 return FALSE;
3585}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003586
3587/*
3588 * Handle selecting one of the tabs.
3589 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003590 static void
3591on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003592 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003593# if GTK_CHECK_VERSION(3,0,0)
3594 gpointer *page UNUSED,
3595# else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003596 GtkNotebookPage *page UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003597# endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00003598 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003599 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003600{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003601 if (!ignore_tabline_evt)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003602 {
Bram Moolenaara3f41662010-07-11 19:01:06 +02003603 send_tabline_event(idx + 1);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003604 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003605}
3606
3607/*
3608 * Show or hide the tabline.
3609 */
3610 void
3611gui_mch_show_tabline(int showit)
3612{
3613 if (gui.tabline == NULL)
3614 return;
3615
3616 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3617 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003618 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003619 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003620 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003621 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003622# if GTK_CHECK_VERSION(3,0,0)
3623 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
3624# else
Bram Moolenaar96351572006-05-05 21:16:59 +00003625 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01003626# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003627 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003628
3629 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003630}
3631
3632/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003633 * Return TRUE when tabline is displayed.
3634 */
3635 int
3636gui_mch_showing_tabline(void)
3637{
3638 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003639 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003640}
3641
3642/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003643 * Update the labels of the tabline.
3644 */
3645 void
3646gui_mch_update_tabline(void)
3647{
3648 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003649 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003650 GtkWidget *label;
3651 tabpage_T *tp;
3652 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003653 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003654 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003655 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003656
3657 if (gui.tabline == NULL)
3658 return;
3659
3660 ignore_tabline_evt = TRUE;
3661
3662 /* Add a label for each tab page. They all contain the same text area. */
3663 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3664 {
3665 if (tp == curtab)
3666 curtabidx = nr;
3667
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003668 tab_num = nr + 1;
3669
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003670 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3671 if (page == NULL)
3672 {
3673 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003674# if GTK_CHECK_VERSION(3,2,0)
3675 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3676 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3677# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003678 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003679# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003680 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003681 event_box = gtk_event_box_new();
3682 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003683 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003684# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003685 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003686# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003687 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003688 gtk_widget_show(label);
3689 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3690 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003691 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003692 nr++);
3693 }
3694
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003695 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003696# if GTK_CHECK_VERSION(3,0,0)
3697 g_object_set_data(G_OBJECT(event_box), "tab_num",
3698 GINT_TO_POINTER(tab_num));
3699# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003700 gtk_object_set_user_data(GTK_OBJECT(event_box),
3701 (gpointer)(long)tab_num);
Bram Moolenaar98921892016-02-23 17:14:37 +01003702# endif
3703# if GTK_CHECK_VERSION(3,0,0)
3704 label = gtk_bin_get_child(GTK_BIN(event_box));
3705# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003706 label = GTK_BIN(event_box)->child;
Bram Moolenaar98921892016-02-23 17:14:37 +01003707# endif
Bram Moolenaar57657d82006-04-21 22:12:41 +00003708 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003709 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003710 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003711 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003712
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003713 get_tabline_label(tp, TRUE);
3714 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003715# if GTK_CHECK_VERSION(3,0,0)
3716 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3717# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003718 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3719 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003720# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003721 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003722 }
3723
3724 /* Remove any old labels. */
3725 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3726 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3727
Bram Moolenaar98921892016-02-23 17:14:37 +01003728# if GTK_CHECK_VERSION(3,0,0)
3729 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3730 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3731# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003732 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003733 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar98921892016-02-23 17:14:37 +01003734# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003735
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003736 /* Make sure everything is in place before drawing text. */
3737 gui_mch_update();
3738
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003739 ignore_tabline_evt = FALSE;
3740}
3741
3742/*
3743 * Set the current tab to "nr". First tab is 1.
3744 */
3745 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003746gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003747{
3748 if (gui.tabline == NULL)
3749 return;
3750
3751 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003752# if GTK_CHECK_VERSION(3,0,0)
3753 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3754 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3755# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003756 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003757 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01003758# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003759 ignore_tabline_evt = FALSE;
3760}
3761
3762#endif /* FEAT_GUI_TABLINE */
3763
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003765 * Add selection targets for PRIMARY and CLIPBOARD selections.
3766 */
3767 void
3768gui_gtk_set_selection_targets(void)
3769{
3770 int i, j = 0;
3771 int n_targets = N_SELECTION_TARGETS;
3772 GtkTargetEntry targets[N_SELECTION_TARGETS];
3773
3774 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3775 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003776 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003777 * return something, instead of trying another target. Therefore only
3778 * offer TARGET_HTML when it works. */
3779 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3780 n_targets--;
3781 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003782 targets[j++] = selection_targets[i];
3783 }
3784
3785 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3786 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3787 gtk_selection_add_targets(gui.drawarea,
3788 (GdkAtom)GDK_SELECTION_PRIMARY,
3789 targets, n_targets);
3790 gtk_selection_add_targets(gui.drawarea,
3791 (GdkAtom)clip_plus.gtk_sel_atom,
3792 targets, n_targets);
3793}
3794
3795/*
3796 * Set up for receiving DND items.
3797 */
3798 void
3799gui_gtk_set_dnd_targets(void)
3800{
3801 int i, j = 0;
3802 int n_targets = N_DND_TARGETS;
3803 GtkTargetEntry targets[N_DND_TARGETS];
3804
3805 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3806 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003807 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003808 n_targets--;
3809 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003810 targets[j++] = dnd_targets[i];
3811 }
3812
3813 gtk_drag_dest_unset(gui.drawarea);
3814 gtk_drag_dest_set(gui.drawarea,
3815 GTK_DEST_DEFAULT_ALL,
3816 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003817 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003818}
3819
3820/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3822 * Returns OK for success, FAIL when the GUI can't be started.
3823 */
3824 int
3825gui_mch_init(void)
3826{
3827 GtkWidget *vbox;
3828
3829#ifdef FEAT_GUI_GNOME
3830 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3831 * exits on failure, but that's a non-issue because we already called
3832 * gtk_init_check() in gui_mch_init_check(). */
3833 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003834 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3836 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003837# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003838 {
3839 char *p = setlocale(LC_NUMERIC, NULL);
3840
3841 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3842 * init may change it. */
3843 if (p == NULL || strcmp(p, "C") != 0)
3844 setlocale(LC_NUMERIC, "C");
3845 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003846# endif
3847 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848#endif
3849 vim_free(gui_argv);
3850 gui_argv = NULL;
3851
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003852#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 /* Set the human-readable application name */
3854 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003855#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 /*
3857 * Force UTF-8 output no matter what the value of 'encoding' is.
3858 * did_set_string_option() in option.c prohibits changing 'termencoding'
3859 * to something else than UTF-8 if the GUI is in use.
3860 */
3861 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3862
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003863#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003865#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3867 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003868#if !GTK_CHECK_VERSION(3,0,0)
3869# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003871# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872#endif
3873
3874 /* Initialize values */
3875 gui.border_width = 2;
3876 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3877 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003878#if GTK_CHECK_VERSION(3,0,0)
3879 gui.fgcolor = g_new(GdkRGBA, 1);
3880 gui.bgcolor = g_new(GdkRGBA, 1);
3881 gui.spcolor = g_new(GdkRGBA, 1);
3882#else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003883 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003885 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003887 /* LINTED: avoid warning: conversion to 'unsigned long' */
3888 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003889#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890
3891 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003892 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894
3895 /* Set default foreground and background colors. */
3896 gui.norm_pixel = gui.def_norm_pixel;
3897 gui.back_pixel = gui.def_back_pixel;
3898
3899 if (gtk_socket_id != 0)
3900 {
3901 GtkWidget *plug;
3902
3903 /* Use GtkSocket from another app. */
3904#ifdef HAVE_GTK_MULTIHEAD
3905 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3906 gtk_socket_id);
3907#else
3908 plug = gtk_plug_new(gtk_socket_id);
3909#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003910#if GTK_CHECK_VERSION(3,0,0)
3911 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
3912#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01003914#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 {
3916 gui.mainwin = plug;
3917 }
3918 else
3919 {
3920 g_warning("Connection to GTK+ socket (ID %u) failed",
3921 (unsigned int)gtk_socket_id);
3922 /* Pretend we never wanted it if it failed (get own window) */
3923 gtk_socket_id = 0;
3924 }
3925 }
3926
3927 if (gtk_socket_id == 0)
3928 {
3929#ifdef FEAT_GUI_GNOME
3930 if (using_gnome)
3931 {
3932 gui.mainwin = gnome_app_new("Vim", NULL);
3933# ifdef USE_XSMP
3934 /* Use the GNOME save-yourself functionality now. */
3935 xsmp_close();
3936# endif
3937 }
3938 else
3939#endif
3940 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3941 }
3942
3943 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3944
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 /* Create the PangoContext used for drawing all text. */
3946 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3947 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948
Bram Moolenaar98921892016-02-23 17:14:37 +01003949#if GTK_CHECK_VERSION(3,0,0)
3950 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
3951#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003953#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3955
Bram Moolenaar98921892016-02-23 17:14:37 +01003956#if GTK_CHECK_VERSION(3,0,0)
3957 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3958 G_CALLBACK(&delete_event_cb), NULL);
3959
3960 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3961 G_CALLBACK(&mainwin_realize), NULL);
3962#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003963 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3964 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3965
3966 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3967 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003968#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969#ifdef HAVE_GTK_MULTIHEAD
3970 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
3971 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
3972#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973 gui.accel_group = gtk_accel_group_new();
3974 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003976 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003977#if GTK_CHECK_VERSION(3,2,0)
3978 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3979 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3980#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003982#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983
3984#ifdef FEAT_GUI_GNOME
3985 if (using_gnome)
3986 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003987# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 /* automagically restore menubar/toolbar placement */
3989 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3990# endif
3991 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3992 }
3993 else
3994#endif
3995 {
3996 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3997 gtk_widget_show(vbox);
3998 }
3999
4000#ifdef FEAT_MENU
4001 /*
4002 * Create the menubar and handle
4003 */
4004 gui.menubar = gtk_menu_bar_new();
4005 gtk_widget_set_name(gui.menubar, "vim-menubar");
4006
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004007 /* Avoid that GTK takes <F10> away from us. */
4008 {
4009 GtkSettings *gtk_settings;
4010
4011 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
4012 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
4013 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004014
4015
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016# ifdef FEAT_GUI_GNOME
4017 if (using_gnome)
4018 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 BonoboDockItem *dockitem;
4020
4021 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
4022 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4023 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00004024 /* We don't want the menu to float. */
4025 bonobo_dock_item_set_behavior(dockitem,
4026 bonobo_dock_item_get_behavior(dockitem)
4027 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029 }
4030 else
4031# endif /* FEAT_GUI_GNOME */
4032 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00004033 /* Always show the menubar, otherwise <F10> doesn't work. It may be
4034 * disabled in gui_init() later. */
4035 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
4037 }
4038#endif /* FEAT_MENU */
4039
4040#ifdef FEAT_TOOLBAR
4041 /*
4042 * Create the toolbar and handle
4043 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01004045# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004046 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004047 /* N.B. Since the default value of GtkToolbar::button-relief is
4048 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
4049# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 gtk_rc_parse_string(
4051 "style \"vim-toolbar-style\" {\n"
4052 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
4053 "}\n"
4054 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01004055# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 gui.toolbar = gtk_toolbar_new();
4057 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4059
4060# ifdef FEAT_GUI_GNOME
4061 if (using_gnome)
4062 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 BonoboDockItem *dockitem;
4064
4065 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
4066 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4067 GNOME_APP_TOOLBAR_NAME);
4068 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004069 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00004070 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004071 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00004072 bonobo_dock_item_get_behavior(dockitem)
4073 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 }
4076 else
4077# endif /* FEAT_GUI_GNOME */
4078 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
4080 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4081 gtk_widget_show(gui.toolbar);
4082 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
4083 }
4084#endif /* FEAT_TOOLBAR */
4085
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004086#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004087 /*
4088 * Use a Notebook for the tab pages labels. The labels are hidden by
4089 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004090 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004091 gui.tabline = gtk_notebook_new();
4092 gtk_widget_show(gui.tabline);
4093 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
4094 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
4095 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004096 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004097# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00004098 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004099# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004100
Bram Moolenaar98921892016-02-23 17:14:37 +01004101# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004102 tabline_tooltip = gtk_tooltips_new();
4103 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01004104# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004105
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004106 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004107 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004108
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004109 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004110# if GTK_CHECK_VERSION(3,2,0)
4111 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
4112 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
4113# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004114 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004115# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004116 gtk_widget_show(page);
4117 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
4118 label = gtk_label_new("-Empty-");
4119 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004120 event_box = gtk_event_box_new();
4121 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01004122# if GTK_CHECK_VERSION(3,0,0)
4123 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
4124# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00004125 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L);
Bram Moolenaar98921892016-02-23 17:14:37 +01004126# endif
4127# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00004128 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01004129# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004130 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004131 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004132 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00004133
Bram Moolenaar98921892016-02-23 17:14:37 +01004134# if GTK_CHECK_VERSION(3,0,0)
4135 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
4136 G_CALLBACK(on_select_tab), NULL);
4137# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004138 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004139 GTK_SIGNAL_FUNC(on_select_tab), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004140# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004141
4142 /* Create a popup menu for the tab line and connect it. */
4143 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01004144# if GTK_CHECK_VERSION(3,0,0)
4145 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
4146 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
4147# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004148 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004149 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01004150# endif
4151#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004152
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004154#if GTK_CHECK_VERSION(3,0,0)
4155 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
4156#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004158#endif
4159#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01004161#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162
4163 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaara859f042016-11-17 19:11:55 +01004164#if GTK_CHECK_VERSION(3,22,2)
4165 gtk_widget_set_name(gui.drawarea, "vim-gui-drawarea");
4166#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004167#if GTK_CHECK_VERSION(3,0,0)
4168 gui.surface = NULL;
4169 gui.by_signal = FALSE;
4170#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171
4172 /* Determine which events we will filter. */
4173 gtk_widget_set_events(gui.drawarea,
4174 GDK_EXPOSURE_MASK |
4175 GDK_ENTER_NOTIFY_MASK |
4176 GDK_LEAVE_NOTIFY_MASK |
4177 GDK_BUTTON_PRESS_MASK |
4178 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180 GDK_KEY_PRESS_MASK |
4181 GDK_KEY_RELEASE_MASK |
4182 GDK_POINTER_MOTION_MASK |
4183 GDK_POINTER_MOTION_HINT_MASK);
4184
4185 gtk_widget_show(gui.drawarea);
4186 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
4187 gtk_widget_show(gui.formwin);
4188 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
4189
4190 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
4191 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004192#if GTK_CHECK_VERSION(3,0,0)
4193 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4194 : G_OBJECT(gui.drawarea),
4195 "key-press-event",
4196 G_CALLBACK(key_press_event), NULL);
4197#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
4199 : GTK_OBJECT(gui.drawarea),
4200 "key_press_event",
4201 GTK_SIGNAL_FUNC(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004202#endif
4203#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 /* Also forward key release events for the benefit of GTK+ 2 input
4205 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
4206 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4207 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01004208 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 G_CALLBACK(&key_release_event), NULL);
4210#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004211#if GTK_CHECK_VERSION(3,0,0)
4212 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
4213 G_CALLBACK(drawarea_realize_cb), NULL);
4214 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
4215 G_CALLBACK(drawarea_unrealize_cb), NULL);
4216 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
4217 G_CALLBACK(drawarea_configure_event_cb), NULL);
Bram Moolenaara859f042016-11-17 19:11:55 +01004218# if GTK_CHECK_VERSION(3,22,2)
4219 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-updated",
4220 G_CALLBACK(&drawarea_style_updated_cb), NULL);
4221# else
Bram Moolenaar98921892016-02-23 17:14:37 +01004222 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
4223 G_CALLBACK(&drawarea_style_set_cb), NULL);
Bram Moolenaara859f042016-11-17 19:11:55 +01004224# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004225#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
4227 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
4228 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
4229 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
4230
4231 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
4232 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004233#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234
Bram Moolenaar98921892016-02-23 17:14:37 +01004235#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01004237#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238
4239#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
4240 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
4241 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
4242#endif
4243
4244 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004245 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01004246#if GTK_CHECK_VERSION(3,0,0)
4247 gtk_widget_set_can_focus(gui.drawarea, TRUE);
4248#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01004250#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251
4252 /*
4253 * Set clipboard specific atoms
4254 */
4255 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
4258 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
4259
4260 /*
4261 * Start out by adding the configured border width into the border offset.
4262 */
4263 gui.border_offset = gui.border_width;
4264
Bram Moolenaar98921892016-02-23 17:14:37 +01004265#if GTK_CHECK_VERSION(3,0,0)
4266 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
4267 G_CALLBACK(draw_event), NULL);
4268#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
4270 GTK_SIGNAL_FUNC(visibility_event), NULL);
4271 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
4272 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004273#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274
4275 /*
4276 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
4277 * Only needed for some window managers.
4278 */
4279 if (vim_strchr(p_go, GO_POINTER) != NULL)
4280 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004281#if GTK_CHECK_VERSION(3,0,0)
4282 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4283 G_CALLBACK(leave_notify_event), NULL);
4284 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4285 G_CALLBACK(enter_notify_event), NULL);
4286#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
4288 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
4289 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
4290 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004291#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 }
4293
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004294 /* Real windows can get focus ... GtkPlug, being a mere container can't,
4295 * only its widgets. Arguably, this could be common code and we not use
4296 * the window focus at all, but let's be safe.
4297 */
4298 if (gtk_socket_id == 0)
4299 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004300#if GTK_CHECK_VERSION(3,0,0)
4301 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4302 G_CALLBACK(focus_out_event), NULL);
4303 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4304 G_CALLBACK(focus_in_event), NULL);
4305#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004306 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
4307 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4308 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
4309 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004310#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004311 }
4312 else
4313 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004314#if GTK_CHECK_VERSION(3,0,0)
4315 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4316 G_CALLBACK(focus_out_event), NULL);
4317 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4318 G_CALLBACK(focus_in_event), NULL);
4319#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004320 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
4321 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4322 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
4323 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004324#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004325#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004326# if GTK_CHECK_VERSION(3,0,0)
4327 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4328 G_CALLBACK(focus_out_event), NULL);
4329 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4330 G_CALLBACK(focus_in_event), NULL);
4331# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004332 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
4333 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4334 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
4335 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004336# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004337#endif /* FEAT_GUI_TABLINE */
4338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339
Bram Moolenaar98921892016-02-23 17:14:37 +01004340#if GTK_CHECK_VERSION(3,0,0)
4341 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4342 G_CALLBACK(motion_notify_event), NULL);
4343 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4344 G_CALLBACK(button_press_event), NULL);
4345 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4346 G_CALLBACK(button_release_event), NULL);
4347 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4348 G_CALLBACK(&scroll_event), NULL);
4349#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
4351 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
4352 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
4353 GTK_SIGNAL_FUNC(button_press_event), NULL);
4354 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
4355 GTK_SIGNAL_FUNC(button_release_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
4357 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359
4360 /*
4361 * Add selection handler functions.
4362 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004363#if GTK_CHECK_VERSION(3,0,0)
4364 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4365 G_CALLBACK(selection_clear_event), NULL);
4366 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4367 G_CALLBACK(selection_received_cb), NULL);
4368#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
4370 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
4371 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
4372 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004373#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374
Bram Moolenaara76638f2010-06-05 12:49:46 +02004375 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376
Bram Moolenaar98921892016-02-23 17:14:37 +01004377#if GTK_CHECK_VERSION(3,0,0)
4378 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4379 G_CALLBACK(selection_get_cb), NULL);
4380#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
4382 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004383#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384
4385 /* Pretend we don't have input focus, we will get an event if we do. */
4386 gui.in_focus = FALSE;
4387
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 return OK;
4389}
4390
4391#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4392/*
4393 * This is called from gui_start() after a fork() has been done.
4394 * We have to tell the session manager our new PID.
4395 */
4396 void
4397gui_mch_forked(void)
4398{
4399 if (using_gnome)
4400 {
4401 GnomeClient *client;
4402
4403 client = gnome_master_client();
4404
4405 if (client != NULL)
4406 gnome_client_set_process_id(client, getpid());
4407 }
4408}
4409#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4410
Bram Moolenaar98921892016-02-23 17:14:37 +01004411#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004412 static GdkRGBA
4413color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004414{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004415 GdkRGBA rgba;
4416 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4417 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4418 rgba.blue = ((color & 0xff)) / 255.0;
4419 rgba.alpha = 1.0;
4420 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004421}
4422
4423 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004424set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004425{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004426 const GdkRGBA rgba = color_to_rgba(color);
4427 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004428}
4429#endif /* GTK_CHECK_VERSION(3,0,0) */
4430
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431/*
4432 * Called when the foreground or background color has been changed.
4433 * This used to change the graphics contexts directly but we are
4434 * currently manipulating them where desired.
4435 */
4436 void
4437gui_mch_new_colors(void)
4438{
Bram Moolenaar98921892016-02-23 17:14:37 +01004439#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaara859f042016-11-17 19:11:55 +01004440# if !GTK_CHECK_VERSION(3,22,2)
Bram Moolenaar98921892016-02-23 17:14:37 +01004441 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
Bram Moolenaara859f042016-11-17 19:11:55 +01004442# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004443
4444 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
4445#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01004447#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 {
Bram Moolenaara859f042016-11-17 19:11:55 +01004449#if GTK_CHECK_VERSION(3,22,2)
4450 GtkStyleContext * const context
4451 = gtk_widget_get_style_context(gui.drawarea);
4452 GtkCssProvider * const provider = gtk_css_provider_new();
4453 gchar * const css = g_strdup_printf(
4454 "widget#vim-gui-drawarea {\n"
4455 " background-color: #%.2lx%.2lx%.2lx;\n"
4456 "}\n",
4457 (gui.back_pixel >> 16) & 0xff,
4458 (gui.back_pixel >> 8) & 0xff,
4459 gui.back_pixel & 0xff);
4460
4461 gtk_css_provider_load_from_data(provider, css, -1, NULL);
4462 gtk_style_context_add_provider(context,
4463 GTK_STYLE_PROVIDER(provider), G_MAXUINT);
4464
4465 g_free(css);
4466 g_object_unref(provider);
4467#elif GTK_CHECK_VERSION(3,4,0) /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar36edf062016-07-21 22:10:12 +02004468 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004469
Bram Moolenaar36edf062016-07-21 22:10:12 +02004470 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004471 {
4472 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004473 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004474 if (pat != NULL)
4475 {
4476 gdk_window_set_background_pattern(da_win, pat);
4477 cairo_pattern_destroy(pat);
4478 }
4479 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004480 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004481 }
4482#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 GdkColor color = { 0, 0, 0, 0 };
4484
4485 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004486# if GTK_CHECK_VERSION(3,0,0)
4487 gdk_window_set_background(da_win, &color);
4488# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 gdk_window_set_background(gui.drawarea->window, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01004490# endif
Bram Moolenaara859f042016-11-17 19:11:55 +01004491#endif /* !GTK_CHECK_VERSION(3,22,2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 }
4493}
4494
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495/*
4496 * This signal informs us about the need to rearrange our sub-widgets.
4497 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004499form_configure_event(GtkWidget *widget UNUSED,
4500 GdkEventConfigure *event,
4501 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004503 int usable_height = event->height;
4504
Bram Moolenaar182707a2016-11-21 20:55:58 +01004505#if GTK_CHECK_VERSION(3,22,2) && !GTK_CHECK_VERSION(3,22,4)
Bram Moolenaara859f042016-11-17 19:11:55 +01004506 /* As of 3.22.2, GdkWindows have started distributing configure events to
4507 * their "native" children (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=12579fe71b3b8f79eb9c1b80e429443bcc437dd0).
4508 *
4509 * As can be seen from the implementation of move_native_children() and
4510 * configure_native_child() in gdkwindow.c, those functions actually
4511 * propagate configure events to every child, failing to distinguish
4512 * "native" one from non-native one.
4513 *
4514 * Naturally, configure events propagated to here like that are fallacious
4515 * and, as a matter of fact, they trigger a geometric collapse of
4516 * gui.formwin.
4517 *
4518 * To filter out such fallacious events, check if the given event is the
4519 * one that was sent out to the right place. Ignore it if not.
4520 */
Bram Moolenaar182707a2016-11-21 20:55:58 +01004521 /* Follow-up
4522 * After a few weeks later, the GdkWindow change mentioned above was
4523 * reverted (https://git.gnome.org/browse/gtk+/commit/?h=gtk-3-22&id=f70039cb9603a02d2369fec4038abf40a1711155).
4524 * The corresponding official release is 3.22.4. */
Bram Moolenaara859f042016-11-17 19:11:55 +01004525 if (event->window != gtk_widget_get_window(gui.formwin))
4526 return TRUE;
4527#endif
4528
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004529 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4530 * no. of char-heights), so we have to manually sanitise them.
4531 * Widths seem to sort themselves out, don't ask me why.
4532 */
4533 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004534 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004535
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004537 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 gtk_form_thaw(GTK_FORM(gui.formwin));
4539
4540 return TRUE;
4541}
4542
4543/*
4544 * Function called when window already closed.
4545 * We can't do much more here than to trying to preserve what had been done,
4546 * since the window is already inevitably going away.
4547 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004548#if GTK_CHECK_VERSION(3,0,0)
4549 static void
4550mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
4551#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004553mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar98921892016-02-23 17:14:37 +01004554#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555{
4556 /* Don't write messages to the GUI anymore */
4557 full_screen = FALSE;
4558
4559 gui.mainwin = NULL;
4560 gui.drawarea = NULL;
4561
4562 if (!exiting) /* only do anything if the destroy was unexpected */
4563 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004564 vim_strncpy(IObuff,
4565 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4566 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 preserve_exit();
4568 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004569#ifdef USE_GRESOURCE
4570 gui_gtk_unregister_resource();
4571#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572}
4573
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004574
4575/*
4576 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4577 * hints (and thus the required size from -geom), but that after that we
4578 * put the hints back to normal (the actual minimum size) so we may
4579 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaar49325942007-05-10 19:19:59 +00004580 * plug's window 'min hints to set *it's* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004581 * only way we have of making ourselves bigger (by set lines/columns).
4582 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004583 * second after the final attempt to reset the real minimum hints (done by
4584 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004585 * We'll not let the default hints be set while this timer's active.
4586 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004587 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004588check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004589{
4590 if (init_window_hints_state == 1)
4591 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004592 /* Safe to use normal hints now */
4593 init_window_hints_state = 0;
4594 update_window_manager_hints(0, 0);
4595 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004596 }
4597
4598 /* Keep on trying */
4599 init_window_hints_state = 1;
4600 return TRUE;
4601}
4602
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603/*
4604 * Open the GUI window which was created by a call to gui_mch_init().
4605 */
4606 int
4607gui_mch_open(void)
4608{
4609 guicolor_T fg_pixel = INVALCOLOR;
4610 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004611 guint pixel_width;
4612 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 /*
4615 * Allow setting a window role on the command line, or invent one
4616 * if none was specified. This is mainly useful for GNOME session
4617 * support; allowing the WM to restore window placement.
4618 */
4619 if (role_argument != NULL)
4620 {
4621 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4622 }
4623 else
4624 {
4625 char *role;
4626
4627 /* Invent a unique-enough ID string for the role */
4628 role = g_strdup_printf("vim-%u-%u-%u",
4629 (unsigned)mch_get_pid(),
4630 (unsigned)g_random_int(),
4631 (unsigned)time(NULL));
4632
4633 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4634 g_free(role);
4635 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636
4637 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639
4640 /* Determine user specified geometry, if present. */
4641 if (gui.geom != NULL)
4642 {
4643 int mask;
4644 unsigned int w, h;
4645 int x = 0;
4646 int y = 0;
4647
4648 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4649
4650 if (mask & WidthValue)
4651 Columns = w;
4652 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004653 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004654 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004655 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004657 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004658 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004659
4660 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4661 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4662
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004663 pixel_width += get_menu_tool_width();
4664 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004665
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004667 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004668 int ww, hh;
4669 gui_mch_get_screen_dimensions(&ww, &hh);
4670 hh += p_ghr + get_menu_tool_height();
4671 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004672 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004673 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004674 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004675 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678 vim_free(gui.geom);
4679 gui.geom = NULL;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004680
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004681 /* From now until everyone's stopped trying to set the window hints
4682 * to their correct minimum values, stop them being set as we need
4683 * them to remain at our required size for the parent GtkSocket to
4684 * give us the right initial size.
4685 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004686 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004687 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004688 update_window_manager_hints(pixel_width, pixel_height);
4689 init_window_hints_state = 1;
4690 g_timeout_add(1000, check_startup_plug_hints, NULL);
4691 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 }
4693
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004694 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4695 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004696 /* For GTK2 changing the size of the form widget doesn't cause window
4697 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004698 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004699 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004700 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701
4702 if (foreground_argument != NULL)
4703 fg_pixel = gui_get_color((char_u *)foreground_argument);
4704 if (fg_pixel == INVALCOLOR)
4705 fg_pixel = gui_get_color((char_u *)"Black");
4706
4707 if (background_argument != NULL)
4708 bg_pixel = gui_get_color((char_u *)background_argument);
4709 if (bg_pixel == INVALCOLOR)
4710 bg_pixel = gui_get_color((char_u *)"White");
4711
4712 if (found_reverse_arg)
4713 {
4714 gui.def_norm_pixel = bg_pixel;
4715 gui.def_back_pixel = fg_pixel;
4716 }
4717 else
4718 {
4719 gui.def_norm_pixel = fg_pixel;
4720 gui.def_back_pixel = bg_pixel;
4721 }
4722
4723 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4724 * in a vimrc file) */
4725 set_normal_colors();
4726
4727 /* Check that none of the colors are the same as the background color */
4728 gui_check_colors();
4729
4730 /* Get the colors for the highlight groups (gui_check_colors() might have
4731 * changed them). */
4732 highlight_gui_started(); /* re-init colors and fonts */
4733
Bram Moolenaar98921892016-02-23 17:14:37 +01004734#if GTK_CHECK_VERSION(3,0,0)
4735 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4736 G_CALLBACK(mainwin_destroy_cb), NULL);
4737#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
4739 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004740#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741
4742#ifdef FEAT_HANGULIN
4743 hangul_keyboard_set();
4744#endif
4745
4746 /*
4747 * Notify the fixed area about the need to resize the contents of the
4748 * gui.formwin, which we use for random positioning of the included
4749 * components.
4750 *
4751 * We connect this signal deferred finally after anything is in place,
4752 * since this is intended to handle resizements coming from the window
4753 * manager upon us and should not interfere with what VIM is requesting
4754 * upon startup.
4755 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004756#if GTK_CHECK_VERSION(3,0,0)
4757 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4758 G_CALLBACK(form_configure_event), NULL);
4759#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
4761 GTK_SIGNAL_FUNC(form_configure_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004762#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763
4764#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004765 /* Set up for receiving DND items. */
4766 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767
Bram Moolenaar98921892016-02-23 17:14:37 +01004768# if GTK_CHECK_VERSION(3,0,0)
4769 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4770 G_CALLBACK(drag_data_received_cb), NULL);
4771# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
4773 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004774# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775#endif
4776
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004778 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 if (found_iconic_arg && gtk_socket_id == 0)
4780 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781
4782 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004783#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 unsigned long menu_handler = 0;
4785# ifdef FEAT_TOOLBAR
4786 unsigned long tool_handler = 0;
4787# endif
4788 /*
4789 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4790 * show when restoring the saved layout configuration. We can't just
4791 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4792 * a toplevel window and thus will be realized immediately. Instead,
4793 * connect signal handlers to hide the widgets just after they've been
4794 * marked visible, but before the main window is realized.
4795 */
4796 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4797 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4798 G_CALLBACK(&gtk_widget_hide),
4799 NULL);
4800# ifdef FEAT_TOOLBAR
4801 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4802 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4803 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4804 G_CALLBACK(&gtk_widget_hide),
4805 NULL);
4806# endif
4807#endif
4808 gtk_widget_show(gui.mainwin);
4809
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004810#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 if (menu_handler != 0)
4812 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4813# ifdef FEAT_TOOLBAR
4814 if (tool_handler != 0)
4815 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4816# endif
4817#endif
4818 }
4819
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820 return OK;
4821}
4822
4823
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004825gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826{
4827 if (gui.mainwin != NULL)
4828 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829}
4830
4831/*
4832 * Get the position of the top left corner of the window.
4833 */
4834 int
4835gui_mch_get_winpos(int *x, int *y)
4836{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 return OK;
4839}
4840
4841/*
4842 * Set the position of the top left corner of the window to the given
4843 * coordinates.
4844 */
4845 void
4846gui_mch_set_winpos(int x, int y)
4847{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849}
4850
Bram Moolenaar98921892016-02-23 17:14:37 +01004851#if !GTK_CHECK_VERSION(3,0,0)
4852# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853static int resize_idle_installed = FALSE;
4854/*
4855 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4856 * the shell size doesn't exceed the window size, i.e. if the window manager
4857 * ignored our size request. Usually this happens if the window is maximized.
4858 *
4859 * FIXME: It'd be nice if we could find a little more orthodox solution.
4860 * See also the remark below in gui_mch_set_shellsize().
4861 *
4862 * DISABLED: When doing ":set lines+=1" this function would first invoke
4863 * gui_resize_shell() with the old size, then the normal callback would
4864 * report the new size through form_configure_event(). That caused the window
4865 * layout to be messed up.
4866 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 static gboolean
4868force_shell_resize_idle(gpointer data)
4869{
4870 if (gui.mainwin != NULL
4871 && GTK_WIDGET_REALIZED(gui.mainwin)
4872 && GTK_WIDGET_VISIBLE(gui.mainwin))
4873 {
4874 int width;
4875 int height;
4876
4877 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4878
4879 width -= get_menu_tool_width();
4880 height -= get_menu_tool_height();
4881
4882 gui_resize_shell(width, height);
4883 }
4884
4885 resize_idle_installed = FALSE;
4886 return FALSE; /* don't call me again */
4887}
Bram Moolenaar98921892016-02-23 17:14:37 +01004888# endif
4889#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890
Bram Moolenaar09736232009-09-23 16:14:49 +00004891/*
4892 * Return TRUE if the main window is maximized.
4893 */
4894 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004895gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004896{
Bram Moolenaar98921892016-02-23 17:14:37 +01004897#if GTK_CHECK_VERSION(3,0,0)
4898 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4899 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4900 & GDK_WINDOW_STATE_MAXIMIZED));
4901#else
Bram Moolenaar09736232009-09-23 16:14:49 +00004902 return (gui.mainwin != NULL && gui.mainwin->window != NULL
4903 && (gdk_window_get_state(gui.mainwin->window)
4904 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar98921892016-02-23 17:14:37 +01004905#endif
Bram Moolenaar09736232009-09-23 16:14:49 +00004906}
4907
4908/*
4909 * Unmaximize the main window
4910 */
4911 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004912gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004913{
4914 if (gui.mainwin != NULL)
4915 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4916}
Bram Moolenaar09736232009-09-23 16:14:49 +00004917
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918/*
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004919 * Called when the font changed while the window is maximized. Compute the
4920 * new Rows and Columns. This is like resizing the window.
4921 */
4922 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004923gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004924{
4925 int w, h;
4926
4927 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4928 w -= get_menu_tool_width();
4929 h -= get_menu_tool_height();
4930 gui_resize_shell(w, h);
4931}
4932
4933/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 * Set the windows size.
4935 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 void
4937gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004938 int min_width UNUSED, int min_height UNUSED,
4939 int base_width UNUSED, int base_height UNUSED,
4940 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 /* give GTK+ a chance to put all widget's into place */
4943 gui_mch_update();
4944
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004945 /* this will cause the proper resizement to happen too */
4946 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004947 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004948
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004950 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 * main window instead. */
4952 width += get_menu_tool_width();
4953 height += get_menu_tool_height();
4954
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004955 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004956 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004957 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004958 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959
Bram Moolenaar98921892016-02-23 17:14:37 +01004960# if !GTK_CHECK_VERSION(3,0,0)
4961# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 if (!resize_idle_installed)
4963 {
4964 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4965 &force_shell_resize_idle, NULL, NULL);
4966 resize_idle_installed = TRUE;
4967 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004968# endif
4969# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 /*
4971 * Wait until all events are processed to prevent a crash because the
4972 * real size of the drawing area doesn't reflect Vim's internal ideas.
4973 *
4974 * This is a bit of a hack, since Vim is a terminal application with a GUI
4975 * on top, while the GUI expects to be the boss.
4976 */
4977 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978}
4979
4980
4981/*
4982 * The screen size is used to make sure the initial window doesn't get bigger
4983 * than the screen. This subtracts some room for menubar, toolbar and window
4984 * decorations.
4985 */
4986 void
4987gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4988{
4989#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaara859f042016-11-17 19:11:55 +01004990# if GTK_CHECK_VERSION(3,22,2)
4991 GdkRectangle rect;
4992 GdkMonitor * const mon = gdk_display_get_monitor_at_window(
4993 gtk_widget_get_display(gui.mainwin),
4994 gtk_widget_get_window(gui.mainwin));
4995 gdk_monitor_get_geometry(mon, &rect);
4996
4997 *screen_w = rect.width;
4998 *screen_h = rect.height - p_ghr;
4999# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 GdkScreen* screen;
5001
5002 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
5003 screen = gtk_widget_get_screen(gui.mainwin);
5004 else
5005 screen = gdk_screen_get_default();
5006
5007 *screen_w = gdk_screen_get_width(screen);
5008 *screen_h = gdk_screen_get_height(screen) - p_ghr;
Bram Moolenaara859f042016-11-17 19:11:55 +01005009# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010#else
5011 *screen_w = gdk_screen_width();
5012 /* Subtract 'guiheadroom' from the height to allow some room for the
5013 * window manager (task list and window title bar). */
5014 *screen_h = gdk_screen_height() - p_ghr;
5015#endif
5016
5017 /*
5018 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
5019 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02005020 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 * This should be completely changed later.
5022 */
5023 *screen_w -= get_menu_tool_width();
5024 *screen_h -= get_menu_tool_height();
5025}
5026
5027#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005029gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 if (title != NULL && output_conv.vc_type != CONV_NONE)
5032 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033
5034 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
5035
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 if (output_conv.vc_type != CONV_NONE)
5037 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038}
5039#endif /* FEAT_TITLE */
5040
5041#if defined(FEAT_MENU) || defined(PROTO)
5042 void
5043gui_mch_enable_menu(int showit)
5044{
5045 GtkWidget *widget;
5046
5047# ifdef FEAT_GUI_GNOME
5048 if (using_gnome)
5049 widget = gui.menubar_h;
5050 else
5051# endif
5052 widget = gui.menubar;
5053
Bram Moolenaar18144c82006-04-12 21:52:12 +00005054 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01005055# if GTK_CHECK_VERSION(3,0,0)
5056 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
5057# else
Bram Moolenaar18144c82006-04-12 21:52:12 +00005058 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
Bram Moolenaar98921892016-02-23 17:14:37 +01005059# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 {
5061 if (showit)
5062 gtk_widget_show(widget);
5063 else
5064 gtk_widget_hide(widget);
5065
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005066 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 }
5068}
5069#endif /* FEAT_MENU */
5070
5071#if defined(FEAT_TOOLBAR) || defined(PROTO)
5072 void
5073gui_mch_show_toolbar(int showit)
5074{
5075 GtkWidget *widget;
5076
5077 if (gui.toolbar == NULL)
5078 return;
5079
5080# ifdef FEAT_GUI_GNOME
5081 if (using_gnome)
5082 widget = gui.toolbar_h;
5083 else
5084# endif
5085 widget = gui.toolbar;
5086
5087 if (showit)
5088 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
5089
Bram Moolenaar98921892016-02-23 17:14:37 +01005090# if GTK_CHECK_VERSION(3,0,0)
5091 if (!showit != !gtk_widget_get_visible(widget))
5092# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 if (!showit != !GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01005094# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 {
5096 if (showit)
5097 gtk_widget_show(widget);
5098 else
5099 gtk_widget_hide(widget);
5100
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00005101 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 }
5103}
5104#endif /* FEAT_TOOLBAR */
5105
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106/*
5107 * Check if a given font is a CJK font. This is done in a very crude manner. It
5108 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
5109 * font. Consequently, this function cannot be used as a general purpose check
5110 * for CJK-ness for which fontconfig APIs should be used. This is only used by
5111 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
5112 */
5113 static int
5114is_cjk_font(PangoFontDescription *font_desc)
5115{
5116 static const char * const cjk_langs[] =
5117 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
5118
5119 PangoFont *font;
5120 unsigned i;
5121 int is_cjk = FALSE;
5122
5123 font = pango_context_load_font(gui.text_context, font_desc);
5124
5125 if (font == NULL)
5126 return FALSE;
5127
5128 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
5129 {
5130 PangoCoverage *coverage;
5131 gunichar uc;
5132
5133 coverage = pango_font_get_coverage(
5134 font, pango_language_from_string(cjk_langs[i]));
5135
5136 if (coverage != NULL)
5137 {
5138 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
5139 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
5140 pango_coverage_unref(coverage);
5141 }
5142 }
5143
5144 g_object_unref(font);
5145
5146 return is_cjk;
5147}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148
Bram Moolenaar231334e2005-07-25 20:46:57 +00005149/*
5150 * Adjust gui.char_height (after 'linespace' was changed).
5151 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00005153gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 PangoFontMetrics *metrics;
5156 int ascent;
5157 int descent;
5158
5159 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
5160 pango_context_get_language(gui.text_context));
5161 ascent = pango_font_metrics_get_ascent(metrics);
5162 descent = pango_font_metrics_get_descent(metrics);
5163
5164 pango_font_metrics_unref(metrics);
5165
5166 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00005167 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00005168 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
5170
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 /* A not-positive value of char_height may crash Vim. Only happens
5172 * if 'linespace' is negative (which does make sense sometimes). */
5173 gui.char_ascent = MAX(gui.char_ascent, 0);
5174 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5175
5176 return OK;
5177}
5178
Bram Moolenaar98921892016-02-23 17:14:37 +01005179#if GTK_CHECK_VERSION(3,0,0)
5180/* Callback function used in gui_mch_font_dialog() */
5181 static gboolean
5182font_filter(const PangoFontFamily *family,
5183 const PangoFontFace *face UNUSED,
5184 gpointer data UNUSED)
5185{
5186 return pango_font_family_is_monospace((PangoFontFamily *)family);
5187}
5188#endif
5189
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190/*
5191 * Put up a font dialog and return the selected font name in allocated memory.
5192 * "oldval" is the previous value. Return NULL when cancelled.
5193 * This should probably go into gui_gtk.c. Hmm.
5194 * FIXME:
5195 * The GTK2 font selection dialog has no filtering API. So we could either
5196 * a) implement our own (possibly copying the code from somewhere else) or
5197 * b) just live with it.
5198 */
5199 char_u *
5200gui_mch_font_dialog(char_u *oldval)
5201{
5202 GtkWidget *dialog;
5203 int response;
5204 char_u *fontname = NULL;
5205 char_u *oldname;
5206
Bram Moolenaar98921892016-02-23 17:14:37 +01005207#if GTK_CHECK_VERSION(3,2,0)
5208 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
5209 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
5210 NULL, NULL);
5211#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005213#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214
5215 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
5216 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
5217
5218 if (oldval != NULL && oldval[0] != NUL)
5219 {
5220 if (output_conv.vc_type != CONV_NONE)
5221 oldname = string_convert(&output_conv, oldval, NULL);
5222 else
5223 oldname = oldval;
5224
5225 /* Annoying bug in GTK (or Pango): if the font name does not include a
5226 * size, zero is used. Use default point size ten. */
5227 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
5228 {
5229 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
5230
5231 if (p != NULL)
5232 {
5233 STRCPY(p + STRLEN(p), " 10");
5234 if (oldname != oldval)
5235 vim_free(oldname);
5236 oldname = p;
5237 }
5238 }
5239
Bram Moolenaar98921892016-02-23 17:14:37 +01005240#if GTK_CHECK_VERSION(3,2,0)
5241 gtk_font_chooser_set_font(
5242 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
5243#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 gtk_font_selection_dialog_set_font_name(
5245 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01005246#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247
5248 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005249 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005251 else
Bram Moolenaar98921892016-02-23 17:14:37 +01005252#if GTK_CHECK_VERSION(3,2,0)
5253 gtk_font_chooser_set_font(
5254 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
5255#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005256 gtk_font_selection_dialog_set_font_name(
5257 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01005258#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259
5260 response = gtk_dialog_run(GTK_DIALOG(dialog));
5261
5262 if (response == GTK_RESPONSE_OK)
5263 {
5264 char *name;
5265
Bram Moolenaar98921892016-02-23 17:14:37 +01005266#if GTK_CHECK_VERSION(3,2,0)
5267 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
5268#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 name = gtk_font_selection_dialog_get_font_name(
5270 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01005271#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 if (name != NULL)
5273 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005274 char_u *p;
5275
5276 /* Apparently some font names include a comma, need to escape
5277 * that, because in 'guifont' it separates names. */
5278 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005280 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005281 {
5282 fontname = string_convert(&input_conv, p, NULL);
5283 vim_free(p);
5284 }
5285 else
5286 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 }
5288 }
5289
5290 if (response != GTK_RESPONSE_NONE)
5291 gtk_widget_destroy(dialog);
5292
5293 return fontname;
5294}
5295
5296/*
5297 * Some monospace fonts don't support a bold weight, and fall back
5298 * silently to the regular weight. But this is no good since our text
5299 * drawing function can emulate bold by overstriking. So let's try
5300 * to detect whether bold weight is actually available and emulate it
5301 * otherwise.
5302 *
5303 * Note that we don't need to check for italic style since Xft can
5304 * emulate italic on its own, provided you have a proper fontconfig
5305 * setup. We wouldn't be able to emulate it in Vim anyway.
5306 */
5307 static void
5308get_styled_font_variants(void)
5309{
5310 PangoFontDescription *bold_font_desc;
5311 PangoFont *plain_font;
5312 PangoFont *bold_font;
5313
5314 gui.font_can_bold = FALSE;
5315
5316 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5317
5318 if (plain_font == NULL)
5319 return;
5320
5321 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5322 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5323
5324 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5325 /*
5326 * The comparison relies on the unique handle nature of a PangoFont*,
5327 * i.e. it's assumed that a different PangoFont* won't refer to the
5328 * same font. Seems to work, and failing here isn't critical anyway.
5329 */
5330 if (bold_font != NULL)
5331 {
5332 gui.font_can_bold = (bold_font != plain_font);
5333 g_object_unref(bold_font);
5334 }
5335
5336 pango_font_description_free(bold_font_desc);
5337 g_object_unref(plain_font);
5338}
5339
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340static PangoEngineShape *default_shape_engine = NULL;
5341
5342/*
5343 * Create a map from ASCII characters in the range [32,126] to glyphs
5344 * of the current font. This is used by gui_gtk2_draw_string() to skip
5345 * the itemize and shaping process for the most common case.
5346 */
5347 static void
5348ascii_glyph_table_init(void)
5349{
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005350 char_u ascii_chars[2 * 128];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351 PangoAttrList *attr_list;
5352 GList *item_list;
5353 int i;
5354
5355 if (gui.ascii_glyphs != NULL)
5356 pango_glyph_string_free(gui.ascii_glyphs);
5357 if (gui.ascii_font != NULL)
5358 g_object_unref(gui.ascii_font);
5359
5360 gui.ascii_glyphs = NULL;
5361 gui.ascii_font = NULL;
5362
Bram Moolenaar16350cb2016-08-14 20:27:34 +02005363 /* For safety, fill in question marks for the control characters.
5364 * Put a space between characters to avoid shaping. */
5365 for (i = 0; i < 128; ++i)
5366 {
5367 if (i >= 32 && i < 127)
5368 ascii_chars[2 * i] = i;
5369 else
5370 ascii_chars[2 * i] = '?';
5371 ascii_chars[2 * i + 1] = ' ';
5372 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373
5374 attr_list = pango_attr_list_new();
5375 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5376 0, sizeof(ascii_chars), attr_list, NULL);
5377
5378 if (item_list != NULL && item_list->next == NULL) /* play safe */
5379 {
5380 PangoItem *item;
5381 int width;
5382
5383 item = (PangoItem *)item_list->data;
5384 width = gui.char_width * PANGO_SCALE;
5385
5386 /* Remember the shape engine used for ASCII. */
5387 default_shape_engine = item->analysis.shape_engine;
5388
5389 gui.ascii_font = item->analysis.font;
5390 g_object_ref(gui.ascii_font);
5391
5392 gui.ascii_glyphs = pango_glyph_string_new();
5393
5394 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5395 &item->analysis, gui.ascii_glyphs);
5396
5397 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5398
5399 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5400 {
5401 PangoGlyphGeometry *geom;
5402
5403 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5404 geom->x_offset += MAX(0, width - geom->width) / 2;
5405 geom->width = width;
5406 }
5407 }
5408
5409 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5410 g_list_free(item_list);
5411 pango_attr_list_unref(attr_list);
5412}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413
5414/*
5415 * Initialize Vim to use the font or fontset with the given name.
5416 * Return FAIL if the font could not be loaded, OK otherwise.
5417 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005419gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 PangoFontDescription *font_desc;
5422 PangoLayout *layout;
5423 int width;
5424
5425 /* If font_name is NULL, this means to use the default, which should
5426 * be present on all proper Pango/fontconfig installations. */
5427 if (font_name == NULL)
5428 font_name = (char_u *)DEFAULT_FONT;
5429
5430 font_desc = gui_mch_get_font(font_name, FALSE);
5431
5432 if (font_desc == NULL)
5433 return FAIL;
5434
5435 gui_mch_free_font(gui.norm_font);
5436 gui.norm_font = font_desc;
5437
5438 pango_context_set_font_description(gui.text_context, font_desc);
5439
5440 layout = pango_layout_new(gui.text_context);
5441 pango_layout_set_text(layout, "MW", 2);
5442 pango_layout_get_size(layout, &width, NULL);
5443 /*
5444 * Set char_width to half the width obtained from pango_layout_get_size()
5445 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5446 * Pango to use the same width for both non-CJK characters (e.g. Latin
5447 * letters and numbers) and CJK characters. This results in 's p a c e d
5448 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5449 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5450 * width for CJK fonts.
5451 *
5452 * For related bugs, see:
5453 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5454 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5455 *
5456 * With this, for all four of the following cases, Vim works fine:
5457 * guifont=CJK_fixed_width_font
5458 * guifont=Non_CJK_fixed_font
5459 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5460 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5461 */
5462 if (is_cjk_font(gui.norm_font))
5463 {
5464 int cjk_width;
5465
5466 /* Measure the text extent of U+4E00 and U+4E8C */
5467 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5468 pango_layout_get_size(layout, &cjk_width, NULL);
5469
5470 if (width == cjk_width) /* Xft not patched */
5471 width /= 2;
5472 }
5473 g_object_unref(layout);
5474
5475 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5476
5477 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5478 if (gui.char_width <= 0)
5479 gui.char_width = 8;
5480
Bram Moolenaar231334e2005-07-25 20:46:57 +00005481 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482
5483 /* Set the fontname, which will be used for information purposes */
5484 hl_set_font_name(font_name);
5485
5486 get_styled_font_variants();
5487 ascii_glyph_table_init();
5488
5489 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5490 if (gui.wide_font != NULL
5491 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5492 {
5493 pango_font_description_free(gui.wide_font);
5494 gui.wide_font = NULL;
5495 }
5496
Bram Moolenaare161c792009-11-03 17:13:59 +00005497 if (gui_mch_maximized())
5498 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005499 /* Update lines and columns in accordance with the new font, keep the
5500 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005501 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005502 }
5503 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005504 {
5505 /* Preserve the logical dimensions of the screen. */
5506 update_window_manager_hints(0, 0);
5507 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508
5509 return OK;
5510}
5511
5512/*
5513 * Get a reference to the font "name".
5514 * Return zero for failure.
5515 */
5516 GuiFont
5517gui_mch_get_font(char_u *name, int report_error)
5518{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520
5521 /* can't do this when GUI is not running */
5522 if (!gui.in_use || name == NULL)
5523 return NULL;
5524
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 if (output_conv.vc_type != CONV_NONE)
5526 {
5527 char_u *buf;
5528
5529 buf = string_convert(&output_conv, name, NULL);
5530 if (buf != NULL)
5531 {
5532 font = pango_font_description_from_string((const char *)buf);
5533 vim_free(buf);
5534 }
5535 else
5536 font = NULL;
5537 }
5538 else
5539 font = pango_font_description_from_string((const char *)name);
5540
5541 if (font != NULL)
5542 {
5543 PangoFont *real_font;
5544
5545 /* pango_context_load_font() bails out if no font size is set */
5546 if (pango_font_description_get_size(font) <= 0)
5547 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5548
5549 real_font = pango_context_load_font(gui.text_context, font);
5550
5551 if (real_font == NULL)
5552 {
5553 pango_font_description_free(font);
5554 font = NULL;
5555 }
5556 else
5557 g_object_unref(real_font);
5558 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559
5560 if (font == NULL)
5561 {
5562 if (report_error)
Bram Moolenaarc93e7912008-07-08 10:46:08 +00005563 EMSG2(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 return NULL;
5565 }
5566
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 return font;
5568}
5569
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005570#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005571/*
5572 * Return the name of font "font" in allocated memory.
5573 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005574 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005575gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005576{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005577 if (font != NOFONT)
5578 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005579 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005580
Bram Moolenaar89d40322006-08-29 15:30:07 +00005581 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005582 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005583 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005584
Bram Moolenaar89d40322006-08-29 15:30:07 +00005585 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005586 return s;
5587 }
5588 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005589 return NULL;
5590}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005591#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005592
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593/*
5594 * If a font is not going to be used, free its structure.
5595 */
5596 void
5597gui_mch_free_font(GuiFont font)
5598{
5599 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601}
5602
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005604 * Return the Pixel value (color) for the given color name.
5605 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 * Return INVALCOLOR for error.
5607 */
5608 guicolor_T
5609gui_mch_get_color(char_u *name)
5610{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 if (!gui.in_use) /* can't do this when GUI not running */
5612 return INVALCOLOR;
5613
Bram Moolenaar98921892016-02-23 17:14:37 +01005614#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005615 return name != NULL ? gui_get_color_cmn(name) : INVALCOLOR;
Bram Moolenaar98921892016-02-23 17:14:37 +01005616#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005617 guicolor_T color;
5618 GdkColor gcolor;
5619 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620
Bram Moolenaar36edf062016-07-21 22:10:12 +02005621 color = (name != NULL) ? gui_get_color_cmn(name) : INVALCOLOR;
5622 if (color == INVALCOLOR)
5623 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624
Bram Moolenaar36edf062016-07-21 22:10:12 +02005625 gcolor.red = (guint16)(((color & 0xff0000) >> 16) / 255.0 * 65535 + 0.5);
5626 gcolor.green = (guint16)(((color & 0xff00) >> 8) / 255.0 * 65535 + 0.5);
5627 gcolor.blue = (guint16)((color & 0xff) / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628
Bram Moolenaar36edf062016-07-21 22:10:12 +02005629 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5630 &gcolor, FALSE, TRUE);
5631
5632 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5633#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634}
5635
5636/*
5637 * Set the current text foreground color.
5638 */
5639 void
5640gui_mch_set_fg_color(guicolor_T color)
5641{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005642#if GTK_CHECK_VERSION(3,0,0)
5643 *gui.fgcolor = color_to_rgba(color);
5644#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005645 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005646#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647}
5648
5649/*
5650 * Set the current text background color.
5651 */
5652 void
5653gui_mch_set_bg_color(guicolor_T color)
5654{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005655#if GTK_CHECK_VERSION(3,0,0)
5656 *gui.bgcolor = color_to_rgba(color);
5657#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005659#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660}
5661
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005662/*
5663 * Set the current text special color.
5664 */
5665 void
5666gui_mch_set_sp_color(guicolor_T color)
5667{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005668#if GTK_CHECK_VERSION(3,0,0)
5669 *gui.spcolor = color_to_rgba(color);
5670#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005671 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005672#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005673}
5674
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675/*
5676 * Function-like convenience macro for the sake of efficiency.
5677 */
5678#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5679 G_STMT_START{ \
5680 PangoAttribute *tmp_attr_; \
5681 tmp_attr_ = (Attribute); \
5682 tmp_attr_->start_index = (Start); \
5683 tmp_attr_->end_index = (End); \
5684 pango_attr_list_insert((AttrList), tmp_attr_); \
5685 }G_STMT_END
5686
5687 static void
5688apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5689{
5690 char_u *start = NULL;
5691 char_u *p;
5692 int uc;
5693
5694 for (p = s; p < s + len; p += utf_byte2len(*p))
5695 {
5696 uc = utf_ptr2char(p);
5697
5698 if (start == NULL)
5699 {
5700 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5701 start = p;
5702 }
5703 else if (uc < 0x80 /* optimization shortcut */
5704 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5705 {
5706 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5707 attr_list, start - s, p - s);
5708 start = NULL;
5709 }
5710 }
5711
5712 if (start != NULL)
5713 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5714 attr_list, start - s, len);
5715}
5716
5717 static int
5718count_cluster_cells(char_u *s, PangoItem *item,
5719 PangoGlyphString* glyphs, int i,
5720 int *cluster_width,
5721 int *last_glyph_rbearing)
5722{
5723 char_u *p;
5724 int next; /* glyph start index of next cluster */
5725 int start, end; /* string segment of current cluster */
5726 int width; /* real cluster width in Pango units */
5727 int uc;
5728 int cellcount = 0;
5729
5730 width = glyphs->glyphs[i].geometry.width;
5731
5732 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5733 {
5734 if (glyphs->glyphs[next].attr.is_cluster_start)
5735 break;
5736 else if (glyphs->glyphs[next].geometry.width > width)
5737 width = glyphs->glyphs[next].geometry.width;
5738 }
5739
5740 start = item->offset + glyphs->log_clusters[i];
5741 end = item->offset + ((next < glyphs->num_glyphs) ?
5742 glyphs->log_clusters[next] : item->length);
5743
5744 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5745 {
5746 uc = utf_ptr2char(p);
5747 if (uc < 0x80)
5748 ++cellcount;
5749 else if (!utf_iscomposing(uc))
5750 cellcount += utf_char2cells(uc);
5751 }
5752
5753 if (last_glyph_rbearing != NULL
5754 && cellcount > 0 && next == glyphs->num_glyphs)
5755 {
5756 PangoRectangle ink_rect;
5757 /*
5758 * If a certain combining mark had to be taken from a non-monospace
5759 * font, we have to compensate manually by adapting x_offset according
5760 * to the ink extents of the previous glyph.
5761 */
5762 pango_font_get_glyph_extents(item->analysis.font,
5763 glyphs->glyphs[i].glyph,
5764 &ink_rect, NULL);
5765
5766 if (PANGO_RBEARING(ink_rect) > 0)
5767 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5768 }
5769
5770 if (cellcount > 0)
5771 *cluster_width = width;
5772
5773 return cellcount;
5774}
5775
5776/*
5777 * If there are only combining characters in the cluster, we cannot just
5778 * change the width of the previous glyph since there is none. Therefore
5779 * some guesswork is needed.
5780 *
5781 * If ink_rect.x is negative Pango apparently has taken care of the composing
5782 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5783 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005784 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 *
5786 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5787 * the position of the previous glyph. Apparently this happens only with old
5788 * X fonts which don't provide the special combining information needed by
5789 * Pango.
5790 */
5791 static void
5792setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5793 int last_cellcount, int last_cluster_width,
5794 int last_glyph_rbearing)
5795{
5796 PangoRectangle ink_rect;
5797 PangoRectangle logical_rect;
5798 int width;
5799
5800 width = last_cellcount * gui.char_width * PANGO_SCALE;
5801 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5802 glyph->geometry.width = 0;
5803
5804 pango_font_get_glyph_extents(item->analysis.font,
5805 glyph->glyph,
5806 &ink_rect, &logical_rect);
5807 if (ink_rect.x < 0)
5808 {
5809 glyph->geometry.x_offset += last_glyph_rbearing;
5810 glyph->geometry.y_offset = logical_rect.height
5811 - (gui.char_height - p_linespace) * PANGO_SCALE;
5812 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005813 else
5814 /* If the accent width is smaller than the cluster width, position it
5815 * in the middle. */
5816 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817}
5818
Bram Moolenaar98921892016-02-23 17:14:37 +01005819#if GTK_CHECK_VERSION(3,0,0)
5820 static void
5821draw_glyph_string(int row, int col, int num_cells, int flags,
5822 PangoFont *font, PangoGlyphString *glyphs,
5823 cairo_t *cr)
5824#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825 static void
5826draw_glyph_string(int row, int col, int num_cells, int flags,
5827 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005828#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829{
5830 if (!(flags & DRAW_TRANSP))
5831 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005832#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005833 cairo_set_source_rgba(cr,
5834 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5835 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005836 cairo_rectangle(cr,
5837 FILL_X(col), FILL_Y(row),
5838 num_cells * gui.char_width, gui.char_height);
5839 cairo_fill(cr);
5840#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5842
5843 gdk_draw_rectangle(gui.drawarea->window,
5844 gui.text_gc,
5845 TRUE,
5846 FILL_X(col),
5847 FILL_Y(row),
5848 num_cells * gui.char_width,
5849 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005850#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851 }
5852
Bram Moolenaar98921892016-02-23 17:14:37 +01005853#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005854 cairo_set_source_rgba(cr,
5855 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5856 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005857 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5858 pango_cairo_show_glyph_string(cr, font, glyphs);
5859#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5861
5862 gdk_draw_glyphs(gui.drawarea->window,
5863 gui.text_gc,
5864 font,
5865 TEXT_X(col),
5866 TEXT_Y(row),
5867 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005868#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869
5870 /* redraw the contents with an offset of 1 to emulate bold */
5871 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005872#if GTK_CHECK_VERSION(3,0,0)
5873 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005874 cairo_set_source_rgba(cr,
5875 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5876 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005877 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5878 pango_cairo_show_glyph_string(cr, font, glyphs);
5879 }
5880#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881 gdk_draw_glyphs(gui.drawarea->window,
5882 gui.text_gc,
5883 font,
5884 TEXT_X(col) + 1,
5885 TEXT_Y(row),
5886 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005887#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888}
5889
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005890/*
5891 * Draw underline and undercurl at the bottom of the character cell.
5892 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005893#if GTK_CHECK_VERSION(3,0,0)
5894 static void
5895draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5896#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005897 static void
5898draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005899#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005900{
5901 int i;
5902 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005903 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005904 int y = FILL_Y(row + 1) - 1;
5905
5906 /* Undercurl: draw curl at the bottom of the character cell. */
5907 if (flags & DRAW_UNDERC)
5908 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005909#if GTK_CHECK_VERSION(3,0,0)
5910 cairo_set_line_width(cr, 1.0);
5911 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005912 cairo_set_source_rgba(cr,
5913 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5914 gui.spcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005915 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5916 {
5917 offset = val[i % 8];
5918 cairo_line_to(cr, i, y - offset + 0.5);
5919 }
5920 cairo_stroke(cr);
5921#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005922 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5923 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5924 {
5925 offset = val[i % 8];
5926 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5927 }
5928 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005929#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005930 }
5931
5932 /* Underline: draw a line at the bottom of the character cell. */
5933 if (flags & DRAW_UNDERL)
5934 {
5935 /* When p_linespace is 0, overwrite the bottom row of pixels.
5936 * Otherwise put the line just below the character. */
5937 if (p_linespace > 1)
5938 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005939#if GTK_CHECK_VERSION(3,0,0)
5940 {
5941 cairo_set_line_width(cr, 1.0);
5942 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005943 cairo_set_source_rgba(cr,
5944 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5945 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005946 cairo_move_to(cr, FILL_X(col), y + 0.5);
5947 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5948 cairo_stroke(cr);
5949 }
5950#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005951 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5952 FILL_X(col), y,
5953 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005954#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005955 }
5956}
5957
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958 int
5959gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5960{
5961 GdkRectangle area; /* area for clip mask */
5962 PangoGlyphString *glyphs; /* glyphs of current item */
5963 int column_offset = 0; /* column offset in cells */
5964 int i;
5965 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5966 char_u *new_conv_buf;
5967 int convlen;
5968 char_u *sp, *bp;
5969 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005970#if GTK_CHECK_VERSION(3,0,0)
5971 cairo_t *cr;
5972#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973
Bram Moolenaar98921892016-02-23 17:14:37 +01005974#if GTK_CHECK_VERSION(3,0,0)
5975 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
5976#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 if (gui.text_context == NULL || gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01005978#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 return len;
5980
5981 if (output_conv.vc_type != CONV_NONE)
5982 {
5983 /*
5984 * Convert characters from 'encoding' to 'termencoding', which is set
5985 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5986 * prohibits changing this to something else than UTF-8 if the GUI is
5987 * in use.
5988 */
5989 convlen = len;
5990 conv_buf = string_convert(&output_conv, s, &convlen);
5991 g_return_val_if_fail(conv_buf != NULL, len);
5992
5993 /* Correct for differences in char width: some chars are
5994 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5995 * compensate for that. */
5996 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5997 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005998 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
6000 {
6001 new_conv_buf = alloc(convlen + 2);
6002 if (new_conv_buf == NULL)
6003 return len;
6004 plen += bp - conv_buf;
6005 mch_memmove(new_conv_buf, conv_buf, plen);
6006 new_conv_buf[plen] = ' ';
6007 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
6008 convlen - plen + 1);
6009 vim_free(conv_buf);
6010 conv_buf = new_conv_buf;
6011 ++convlen;
6012 bp = conv_buf + plen;
6013 plen = 1;
6014 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006015 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006016 bp += plen;
6017 }
6018 s = conv_buf;
6019 len = convlen;
6020 }
6021
6022 /*
6023 * Restrict all drawing to the current screen line in order to prevent
6024 * fuzzy font lookups from messing up the screen.
6025 */
6026 area.x = gui.border_offset;
6027 area.y = FILL_Y(row);
6028 area.width = gui.num_cols * gui.char_width;
6029 area.height = gui.char_height;
6030
Bram Moolenaar98921892016-02-23 17:14:37 +01006031#if GTK_CHECK_VERSION(3,0,0)
6032 cr = cairo_create(gui.surface);
6033 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
6034 cairo_clip(cr);
6035#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
6037 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01006038#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039
6040 glyphs = pango_glyph_string_new();
6041
6042 /*
6043 * Optimization hack: If possible, skip the itemize and shaping process
6044 * for pure ASCII strings. This optimization is particularly effective
6045 * because Vim draws space characters to clear parts of the screen.
6046 */
6047 if (!(flags & DRAW_ITALIC)
6048 && !((flags & DRAW_BOLD) && gui.font_can_bold)
6049 && gui.ascii_glyphs != NULL)
6050 {
6051 char_u *p;
6052
6053 for (p = s; p < s + len; ++p)
6054 if (*p & 0x80)
6055 goto not_ascii;
6056
6057 pango_glyph_string_set_size(glyphs, len);
6058
6059 for (i = 0; i < len; ++i)
6060 {
Bram Moolenaar16350cb2016-08-14 20:27:34 +02006061 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[2 * s[i]];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 glyphs->log_clusters[i] = i;
6063 }
6064
Bram Moolenaar98921892016-02-23 17:14:37 +01006065#if GTK_CHECK_VERSION(3,0,0)
6066 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
6067#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006069#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070
6071 column_offset = len;
6072 }
6073 else
6074not_ascii:
6075 {
6076 PangoAttrList *attr_list;
6077 GList *item_list;
6078 int cluster_width;
6079 int last_glyph_rbearing;
6080 int cells = 0; /* cells occupied by current cluster */
6081
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006082 /* Safety check: pango crashes when invoked with invalid utf-8
6083 * characters. */
6084 if (!utf_valid_string(s, s + len))
6085 {
6086 column_offset = len;
6087 goto skipitall;
6088 }
6089
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 /* original width of the current cluster */
6091 cluster_width = PANGO_SCALE * gui.char_width;
6092
6093 /* right bearing of the last non-composing glyph */
6094 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
6095
6096 attr_list = pango_attr_list_new();
6097
6098 /* If 'guifontwide' is set then use that for double-width characters.
6099 * Otherwise just go with 'guifont' and let Pango do its thing. */
6100 if (gui.wide_font != NULL)
6101 apply_wide_font_attr(s, len, attr_list);
6102
6103 if ((flags & DRAW_BOLD) && gui.font_can_bold)
6104 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
6105 attr_list, 0, len);
6106 if (flags & DRAW_ITALIC)
6107 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
6108 attr_list, 0, len);
6109 /*
6110 * Break the text into segments with consistent directional level
6111 * and shaping engine. Pure Latin text needs only a single segment,
6112 * so there's no need to worry about the loop's efficiency. Better
6113 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
6114 */
6115 item_list = pango_itemize(gui.text_context,
6116 (const char *)s, 0, len, attr_list, NULL);
6117
6118 while (item_list != NULL)
6119 {
6120 PangoItem *item;
6121 int item_cells = 0; /* item length in cells */
6122
6123 item = (PangoItem *)item_list->data;
6124 item_list = g_list_delete_link(item_list, item_list);
6125 /*
6126 * Increment the bidirectional embedding level by 1 if it is not
6127 * even. An odd number means the output will be RTL, but we don't
6128 * want that since Vim handles right-to-left text on its own. It
6129 * would probably be sufficient to just set level = 0, but you can
6130 * never know :)
6131 *
6132 * Unfortunately we can't take advantage of Pango's ability to
6133 * render both LTR and RTL at the same time. In order to support
6134 * that, Vim's main screen engine would have to make use of Pango
6135 * functionality.
6136 */
6137 item->analysis.level = (item->analysis.level + 1) & (~1U);
6138
6139 /* HACK: Overrule the shape engine, we don't want shaping to be
6140 * done, because drawing the cursor would change the display. */
6141 item->analysis.shape_engine = default_shape_engine;
6142
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006143#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006144 pango_shape_full((const char *)s + item->offset, item->length,
6145 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006146#else
6147 pango_shape((const char *)s + item->offset, item->length,
6148 &item->analysis, glyphs);
6149#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150 /*
6151 * Fixed-width hack: iterate over the array and assign a fixed
6152 * width to each glyph, thus overriding the choice made by the
6153 * shaping engine. We use utf_char2cells() to determine the
6154 * number of cells needed.
6155 *
6156 * Also perform all kind of dark magic to get composing
6157 * characters right (and pretty too of course).
6158 */
6159 for (i = 0; i < glyphs->num_glyphs; ++i)
6160 {
6161 PangoGlyphInfo *glyph;
6162
6163 glyph = &glyphs->glyphs[i];
6164
6165 if (glyph->attr.is_cluster_start)
6166 {
6167 int cellcount;
6168
6169 cellcount = count_cluster_cells(
6170 s, item, glyphs, i, &cluster_width,
6171 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6172
6173 if (cellcount > 0)
6174 {
6175 int width;
6176
6177 width = cellcount * gui.char_width * PANGO_SCALE;
6178 glyph->geometry.x_offset +=
6179 MAX(0, width - cluster_width) / 2;
6180 glyph->geometry.width = width;
6181 }
6182 else
6183 {
6184 /* If there are only combining characters in the
6185 * cluster, we cannot just change the width of the
6186 * previous glyph since there is none. Therefore
6187 * some guesswork is needed. */
6188 setup_zero_width_cluster(item, glyph, cells,
6189 cluster_width,
6190 last_glyph_rbearing);
6191 }
6192
6193 item_cells += cellcount;
6194 cells = cellcount;
6195 }
6196 else if (i > 0)
6197 {
6198 int width;
6199
6200 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006201 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02006202 * In some circumstances Pango uses a positive x_offset,
6203 * then use the width of the previous glyph for this one
6204 * and set the previous width to zero.
6205 * Otherwise we get a negative x_offset, Pango has already
6206 * positioned the combining char, keep the widths as they
6207 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006208 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02006209 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006210 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006211 {
6212 glyphs->glyphs[i].geometry.width =
6213 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006214 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006215 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216 width = cells * gui.char_width * PANGO_SCALE;
6217 glyph->geometry.x_offset +=
6218 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006219 }
6220 else /* i == 0 "cannot happen" */
6221 {
6222 glyph->geometry.width = 0;
6223 }
6224 }
6225
6226 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01006227#if GTK_CHECK_VERSION(3,0,0)
6228 draw_glyph_string(row, col + column_offset, item_cells,
6229 flags, item->analysis.font, glyphs,
6230 cr);
6231#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232 draw_glyph_string(row, col + column_offset, item_cells,
6233 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006234#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006235
6236 pango_item_free(item);
6237
6238 column_offset += item_cells;
6239 }
6240
6241 pango_attr_list_unref(attr_list);
6242 }
6243
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006244skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006245 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006246#if GTK_CHECK_VERSION(3,0,0)
6247 draw_under(flags, row, col, column_offset, cr);
6248#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006249 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006250#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251
6252 pango_glyph_string_free(glyphs);
6253 vim_free(conv_buf);
6254
Bram Moolenaar98921892016-02-23 17:14:37 +01006255#if GTK_CHECK_VERSION(3,0,0)
6256 cairo_destroy(cr);
6257 if (!gui.by_signal)
6258 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
6259 &area, FALSE);
6260#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006262#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263
6264 return column_offset;
6265}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006266
6267/*
6268 * Return OK if the key with the termcap name "name" is supported.
6269 */
6270 int
6271gui_mch_haskey(char_u *name)
6272{
6273 int i;
6274
6275 for (i = 0; special_keys[i].key_sym != 0; i++)
6276 if (name[0] == special_keys[i].code0
6277 && name[1] == special_keys[i].code1)
6278 return OK;
6279 return FAIL;
6280}
6281
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006282#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283/*
6284 * Return the text window-id and display. Only required for X-based GUI's
6285 */
6286 int
6287gui_get_x11_windis(Window *win, Display **dis)
6288{
Bram Moolenaar98921892016-02-23 17:14:37 +01006289#if GTK_CHECK_VERSION(3,0,0)
6290 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6291#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006293#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006294 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006295#if GTK_CHECK_VERSION(3,0,0)
6296 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6297 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
6298#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006299 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6300 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006301#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006302 return OK;
6303 }
6304
6305 *dis = NULL;
6306 *win = 0;
6307 return FAIL;
6308}
6309#endif
6310
6311#if defined(FEAT_CLIENTSERVER) \
6312 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6313
6314 Display *
6315gui_mch_get_display(void)
6316{
Bram Moolenaar98921892016-02-23 17:14:37 +01006317#if GTK_CHECK_VERSION(3,0,0)
6318 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6319 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6320#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6322 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006323#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324 else
6325 return NULL;
6326}
6327#endif
6328
6329 void
6330gui_mch_beep(void)
6331{
6332#ifdef HAVE_GTK_MULTIHEAD
6333 GdkDisplay *display;
6334
Bram Moolenaar98921892016-02-23 17:14:37 +01006335# if GTK_CHECK_VERSION(3,0,0)
6336 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6337# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006338 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006339# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 display = gtk_widget_get_display(gui.mainwin);
6341 else
6342 display = gdk_display_get_default();
6343
6344 if (display != NULL)
6345 gdk_display_beep(display);
6346#else
6347 gdk_beep();
6348#endif
6349}
6350
6351 void
6352gui_mch_flash(int msec)
6353{
Bram Moolenaar98921892016-02-23 17:14:37 +01006354#if GTK_CHECK_VERSION(3,0,0)
6355 /* TODO Replace GdkGC with Cairo */
6356 (void)msec;
6357#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 GdkGCValues values;
6359 GdkGC *invert_gc;
6360
6361 if (gui.drawarea->window == NULL)
6362 return;
6363
6364 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6365 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6366 values.function = GDK_XOR;
6367 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6368 &values,
6369 GDK_GC_FOREGROUND |
6370 GDK_GC_BACKGROUND |
6371 GDK_GC_FUNCTION);
6372 gdk_gc_set_exposures(invert_gc,
6373 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6374 /*
6375 * Do a visual beep by changing back and forth in some undetermined way,
6376 * the foreground and background colors. This is due to the fact that
6377 * there can't be really any prediction about the effects of XOR on
6378 * arbitrary X11 servers. However this seems to be enough for what we
6379 * intend it to do.
6380 */
6381 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6382 TRUE,
6383 0, 0,
6384 FILL_X((int)Columns) + gui.border_offset,
6385 FILL_Y((int)Rows) + gui.border_offset);
6386
6387 gui_mch_flush();
6388 ui_delay((long)msec, TRUE); /* wait so many msec */
6389
6390 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6391 TRUE,
6392 0, 0,
6393 FILL_X((int)Columns) + gui.border_offset,
6394 FILL_Y((int)Rows) + gui.border_offset);
6395
6396 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006397#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006398}
6399
6400/*
6401 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6402 */
6403 void
6404gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6405{
Bram Moolenaar98921892016-02-23 17:14:37 +01006406#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006407 const GdkRectangle rect = {
6408 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6409 };
6410 cairo_t * const cr = cairo_create(gui.surface);
6411
Bram Moolenaar36edf062016-07-21 22:10:12 +02006412 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006413# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6414 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6415# else
6416 /* Give an implementation for older cairo versions if necessary. */
6417# endif
6418 gdk_cairo_rectangle(cr, &rect);
6419 cairo_fill(cr);
6420
6421 cairo_destroy(cr);
6422
6423 if (!gui.by_signal)
6424 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6425 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006426#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006427 GdkGCValues values;
6428 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429
6430 if (gui.drawarea->window == NULL)
6431 return;
6432
Bram Moolenaar89d40322006-08-29 15:30:07 +00006433 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6434 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006435 values.function = GDK_XOR;
6436 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6437 &values,
6438 GDK_GC_FOREGROUND |
6439 GDK_GC_BACKGROUND |
6440 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006441 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6442 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6444 TRUE,
6445 FILL_X(c), FILL_Y(r),
6446 (nc) * gui.char_width, (nr) * gui.char_height);
6447 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006448#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449}
6450
6451/*
6452 * Iconify the GUI window.
6453 */
6454 void
6455gui_mch_iconify(void)
6456{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006458}
6459
6460#if defined(FEAT_EVAL) || defined(PROTO)
6461/*
6462 * Bring the Vim window to the foreground.
6463 */
6464 void
6465gui_mch_set_foreground(void)
6466{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006467 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468}
6469#endif
6470
6471/*
6472 * Draw a cursor without focus.
6473 */
6474 void
6475gui_mch_draw_hollow_cursor(guicolor_T color)
6476{
6477 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006478#if GTK_CHECK_VERSION(3,0,0)
6479 cairo_t *cr;
6480#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481
Bram Moolenaar98921892016-02-23 17:14:37 +01006482#if GTK_CHECK_VERSION(3,0,0)
6483 if (gtk_widget_get_window(gui.drawarea) == NULL)
6484#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006485 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006486#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487 return;
6488
Bram Moolenaar98921892016-02-23 17:14:37 +01006489#if GTK_CHECK_VERSION(3,0,0)
6490 cr = cairo_create(gui.surface);
6491#endif
6492
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493 gui_mch_set_fg_color(color);
6494
Bram Moolenaar98921892016-02-23 17:14:37 +01006495#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006496 cairo_set_source_rgba(cr,
6497 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6498 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006499#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006501#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006502 if (mb_lefthalve(gui.row, gui.col))
6503 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006504#if GTK_CHECK_VERSION(3,0,0)
6505 cairo_set_line_width(cr, 1.0);
6506 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6507 cairo_rectangle(cr,
6508 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6509 i * gui.char_width - 1, gui.char_height - 1);
6510 cairo_stroke(cr);
6511 cairo_destroy(cr);
6512#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6514 FALSE,
6515 FILL_X(gui.col), FILL_Y(gui.row),
6516 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006517#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006518}
6519
6520/*
6521 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6522 * color "color".
6523 */
6524 void
6525gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6526{
Bram Moolenaar98921892016-02-23 17:14:37 +01006527#if GTK_CHECK_VERSION(3,0,0)
6528 if (gtk_widget_get_window(gui.drawarea) == NULL)
6529#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006531#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532 return;
6533
6534 gui_mch_set_fg_color(color);
6535
Bram Moolenaar98921892016-02-23 17:14:37 +01006536#if GTK_CHECK_VERSION(3,0,0)
6537 {
6538 cairo_t *cr;
6539
6540 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006541 cairo_set_source_rgba(cr,
6542 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6543 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006544 cairo_rectangle(cr,
6545# ifdef FEAT_RIGHTLEFT
6546 /* vertical line should be on the right of current point */
6547 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6548# endif
6549 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6550 w, h);
6551 cairo_fill(cr);
6552 cairo_destroy(cr);
6553 }
6554#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006555 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6556 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6557 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006558# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559 /* vertical line should be on the right of current point */
6560 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006561# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006562 FILL_X(gui.col),
6563 FILL_Y(gui.row) + gui.char_height - h,
6564 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006565#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006566}
6567
6568
6569/*
6570 * Catch up with any queued X11 events. This may put keyboard input into the
6571 * input buffer, call resize call-backs, trigger timers etc. If there is
6572 * nothing in the X11 event queue (& no timers pending), then we return
6573 * immediately.
6574 */
6575 void
6576gui_mch_update(void)
6577{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006578 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6579 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580}
6581
Bram Moolenaar98921892016-02-23 17:14:37 +01006582#if GTK_CHECK_VERSION(3,0,0)
6583 static gboolean
6584#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006585 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01006586#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587input_timer_cb(gpointer data)
6588{
6589 int *timed_out = (int *) data;
6590
Bram Moolenaar49325942007-05-10 19:19:59 +00006591 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592 *timed_out = TRUE;
6593
Bram Moolenaar071d4272004-06-13 20:20:40 +00006594 return FALSE; /* don't happen again */
6595}
6596
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597/*
6598 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6599 * from the keyboard.
6600 * wtime == -1 Wait forever.
6601 * wtime == 0 This should never happen.
6602 * wtime > 0 Wait wtime milliseconds for a character.
6603 * Returns OK if a character was found to be available within the given time,
6604 * or FAIL otherwise.
6605 */
6606 int
6607gui_mch_wait_for_chars(long wtime)
6608{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006609 int focus;
6610 guint timer;
6611 static int timed_out;
6612 int retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613
6614 timed_out = FALSE;
6615
6616 /* this timeout makes sure that we will return if no characters arrived in
6617 * time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006618 if (wtime > 0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006619#if GTK_CHECK_VERSION(3,0,0)
6620 timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out);
6621#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006622 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01006623#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006624 else
6625 timer = 0;
6626
6627 focus = gui.in_focus;
6628
6629 do
6630 {
6631 /* Stop or start blinking when focus changes */
6632 if (gui.in_focus != focus)
6633 {
6634 if (gui.in_focus)
6635 gui_mch_start_blink();
6636 else
6637 gui_mch_stop_blink();
6638 focus = gui.in_focus;
6639 }
6640
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006641#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006642# ifdef FEAT_TIMERS
6643 did_add_timer = FALSE;
6644# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006645 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006646# ifdef FEAT_TIMERS
6647 if (did_add_timer)
6648 /* Need to recompute the waiting time. */
6649 goto theend;
6650# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006651#endif
6652
Bram Moolenaar071d4272004-06-13 20:20:40 +00006653 /*
6654 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006655 * Skip this if input is available anyway (can happen in rare
6656 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006658 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006659 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660
6661 /* Got char, return immediately */
6662 if (input_available())
6663 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006664 retval = OK;
6665 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666 }
6667 } while (wtime < 0 || !timed_out);
6668
6669 /*
6670 * Flush all eventually pending (drawing) events.
6671 */
6672 gui_mch_update();
6673
Bram Moolenaar4231da42016-06-02 14:30:04 +02006674theend:
6675 if (timer != 0 && !timed_out)
6676#if GTK_CHECK_VERSION(3,0,0)
6677 g_source_remove(timer);
6678#else
6679 gtk_timeout_remove(timer);
6680#endif
6681
6682 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006683}
6684
6685
6686/****************************************************************************
6687 * Output drawing routines.
6688 ****************************************************************************/
6689
6690
6691/* Flush any output to the screen */
6692 void
6693gui_mch_flush(void)
6694{
6695#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01006696# if GTK_CHECK_VERSION(3,0,0)
6697 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6698# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006700# endif
Bram Moolenaarfdadad92016-07-15 17:49:58 +02006701 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006702#else
6703 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
6704#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006705}
6706
6707/*
6708 * Clear a rectangular region of the screen from text pos (row1, col1) to
6709 * (row2, col2) inclusive.
6710 */
6711 void
6712gui_mch_clear_block(int row1, int col1, int row2, int col2)
6713{
Bram Moolenaar98921892016-02-23 17:14:37 +01006714#if GTK_CHECK_VERSION(3,0,0)
6715 if (gtk_widget_get_window(gui.drawarea) == NULL)
6716 return;
6717#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718 GdkColor color;
6719
6720 if (gui.drawarea->window == NULL)
6721 return;
6722
6723 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006724#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006725
Bram Moolenaar98921892016-02-23 17:14:37 +01006726#if GTK_CHECK_VERSION(3,0,0)
6727 {
6728 /* Add one pixel to the far right column in case a double-stroked
6729 * bold glyph may sit there. */
6730 const GdkRectangle rect = {
6731 FILL_X(col1), FILL_Y(row1),
6732 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6733 (row2 - row1 + 1) * gui.char_height
6734 };
6735 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6736 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006737# if GTK_CHECK_VERSION(3,22,2)
6738 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6739# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006740 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6741 if (pat != NULL)
6742 cairo_set_source(cr, pat);
6743 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006744 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006745# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006746 gdk_cairo_rectangle(cr, &rect);
6747 cairo_fill(cr);
6748 cairo_destroy(cr);
6749
6750 if (!gui.by_signal)
6751 gdk_window_invalidate_rect(win, &rect, FALSE);
6752 }
6753#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754 gdk_gc_set_foreground(gui.text_gc, &color);
6755
6756 /* Clear one extra pixel at the far right, for when bold characters have
6757 * spilled over to the window border. */
6758 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6759 FILL_X(col1), FILL_Y(row1),
6760 (col2 - col1 + 1) * gui.char_width
6761 + (col2 == Columns - 1),
6762 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006763#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006764}
6765
Bram Moolenaar98921892016-02-23 17:14:37 +01006766#if GTK_CHECK_VERSION(3,0,0)
6767 static void
6768gui_gtk_window_clear(GdkWindow *win)
6769{
6770 const GdkRectangle rect = {
6771 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6772 };
6773 cairo_t * const cr = cairo_create(gui.surface);
Bram Moolenaara859f042016-11-17 19:11:55 +01006774# if GTK_CHECK_VERSION(3,22,2)
6775 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
6776# else
Bram Moolenaar98921892016-02-23 17:14:37 +01006777 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6778 if (pat != NULL)
6779 cairo_set_source(cr, pat);
6780 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006781 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaara859f042016-11-17 19:11:55 +01006782# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01006783 gdk_cairo_rectangle(cr, &rect);
6784 cairo_fill(cr);
6785 cairo_destroy(cr);
6786
6787 if (!gui.by_signal)
6788 gdk_window_invalidate_rect(win, &rect, FALSE);
6789}
6790#endif
6791
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 void
6793gui_mch_clear_all(void)
6794{
Bram Moolenaar98921892016-02-23 17:14:37 +01006795#if GTK_CHECK_VERSION(3,0,0)
6796 if (gtk_widget_get_window(gui.drawarea) != NULL)
6797 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
6798#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006799 if (gui.drawarea->window != NULL)
6800 gdk_window_clear(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006801#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802}
6803
Bram Moolenaar98921892016-02-23 17:14:37 +01006804#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006805/*
6806 * Redraw any text revealed by scrolling up/down.
6807 */
6808 static void
6809check_copy_area(void)
6810{
6811 GdkEvent *event;
6812 int expose_count;
6813
6814 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6815 return;
6816
6817 /* Avoid redrawing the cursor while scrolling or it'll end up where
6818 * we don't want it to be. I'm not sure if it's correct to call
6819 * gui_dont_update_cursor() at this point but it works as a quick
6820 * fix for now. */
Bram Moolenaar107abd22016-08-12 14:08:25 +02006821 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006822
6823 do
6824 {
6825 /* Wait to check whether the scroll worked or not. */
6826 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6827
6828 if (event == NULL)
6829 break; /* received NoExpose event */
6830
6831 gui_redraw(event->expose.area.x, event->expose.area.y,
6832 event->expose.area.width, event->expose.area.height);
6833
6834 expose_count = event->expose.count;
6835 gdk_event_free(event);
6836 }
6837 while (expose_count > 0); /* more events follow */
6838
6839 gui_can_update_cursor();
6840}
Bram Moolenaar98921892016-02-23 17:14:37 +01006841#endif /* !GTK_CHECK_VERSION(3,0,0) */
6842
6843#if GTK_CHECK_VERSION(3,0,0)
6844 static void
6845gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6846 int src_x, int src_y,
6847 int width, int height)
6848{
6849 cairo_t * const cr = cairo_create(gui.surface);
6850
6851 cairo_rectangle(cr, dest_x, dest_y, width, height);
6852 cairo_clip(cr);
6853 cairo_push_group(cr);
6854 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6855 cairo_paint(cr);
6856 cairo_pop_group_to_source(cr);
6857 cairo_paint(cr);
6858
6859 cairo_destroy(cr);
6860}
6861#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006862
6863/*
6864 * Delete the given number of lines from the given row, scrolling up any
6865 * text further down within the scroll region.
6866 */
6867 void
6868gui_mch_delete_lines(int row, int num_lines)
6869{
Bram Moolenaar98921892016-02-23 17:14:37 +01006870#if GTK_CHECK_VERSION(3,0,0)
6871 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6872 const int nrows = gui.scroll_region_bot - row + 1;
6873 const int src_nrows = nrows - num_lines;
6874
6875 gui_gtk_surface_copy_rect(
6876 FILL_X(gui.scroll_region_left), FILL_Y(row),
6877 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6878 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6879 gui_clear_block(
6880 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6881 gui.scroll_region_bot, gui.scroll_region_right);
6882 gui_gtk3_redraw(
6883 FILL_X(gui.scroll_region_left), FILL_Y(row),
6884 gui.char_width * ncols + 1, gui.char_height * nrows);
6885 if (!gui.by_signal)
6886 gtk_widget_queue_draw_area(gui.drawarea,
6887 FILL_X(gui.scroll_region_left), FILL_Y(row),
6888 gui.char_width * ncols + 1, gui.char_height * nrows);
6889#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6891 return; /* Can't see the window */
6892
6893 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6894 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6895
6896 /* copy one extra pixel, for when bold has spilled over */
6897 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6898 FILL_X(gui.scroll_region_left), FILL_Y(row),
6899 gui.drawarea->window,
6900 FILL_X(gui.scroll_region_left),
6901 FILL_Y(row + num_lines),
6902 gui.char_width * (gui.scroll_region_right
6903 - gui.scroll_region_left + 1) + 1,
6904 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6905
6906 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6907 gui.scroll_region_left,
6908 gui.scroll_region_bot, gui.scroll_region_right);
6909 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006910#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006911}
6912
6913/*
6914 * Insert the given number of lines before the given row, scrolling down any
6915 * following text within the scroll region.
6916 */
6917 void
6918gui_mch_insert_lines(int row, int num_lines)
6919{
Bram Moolenaar98921892016-02-23 17:14:37 +01006920#if GTK_CHECK_VERSION(3,0,0)
6921 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6922 const int nrows = gui.scroll_region_bot - row + 1;
6923 const int src_nrows = nrows - num_lines;
6924
6925 gui_gtk_surface_copy_rect(
6926 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6927 FILL_X(gui.scroll_region_left), FILL_Y(row),
6928 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6929 gui_mch_clear_block(
6930 row, gui.scroll_region_left,
6931 row + num_lines - 1, gui.scroll_region_right);
6932 gui_gtk3_redraw(
6933 FILL_X(gui.scroll_region_left), FILL_Y(row),
6934 gui.char_width * ncols + 1, gui.char_height * nrows);
6935 if (!gui.by_signal)
6936 gtk_widget_queue_draw_area(gui.drawarea,
6937 FILL_X(gui.scroll_region_left), FILL_Y(row),
6938 gui.char_width * ncols + 1, gui.char_height * nrows);
6939#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6941 return; /* Can't see the window */
6942
6943 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6944 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6945
6946 /* copy one extra pixel, for when bold has spilled over */
6947 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6948 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6949 gui.drawarea->window,
6950 FILL_X(gui.scroll_region_left), FILL_Y(row),
6951 gui.char_width * (gui.scroll_region_right
6952 - gui.scroll_region_left + 1) + 1,
6953 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6954
6955 gui_clear_block(row, gui.scroll_region_left,
6956 row + num_lines - 1, gui.scroll_region_right);
6957 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006958#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959}
6960
6961/*
6962 * X Selection stuff, for cutting and pasting text to other windows.
6963 */
6964 void
6965clip_mch_request_selection(VimClipboard *cbd)
6966{
6967 GdkAtom target;
6968 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006969 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006970
6971 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6972 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006973 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6974 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975 received_selection = RS_NONE;
6976 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6977
6978 gtk_selection_convert(gui.drawarea,
6979 cbd->gtk_sel_atom, target,
6980 (guint32)GDK_CURRENT_TIME);
6981
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006982 /* Hack: Wait up to three seconds for the selection. A hang was
6983 * noticed here when using the netrw plugin combined with ":gui"
6984 * during the FocusGained event. */
6985 start = time(NULL);
6986 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006987 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006988
6989 if (received_selection != RS_FAIL)
6990 return;
6991 }
6992
6993 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006994#if GTK_CHECK_VERSION(3,0,0)
6995 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6996 cbd);
6997#else
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006998 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd);
Bram Moolenaar98921892016-02-23 17:14:37 +01006999#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007000}
7001
7002/*
7003 * Disown the selection.
7004 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007005 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007006clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007007{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01007008 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007010}
7011
7012/*
7013 * Own the selection and return OK if it worked.
7014 */
7015 int
7016clip_mch_own_selection(VimClipboard *cbd)
7017{
7018 int success;
7019
7020 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02007021 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022 gui_mch_update();
7023 return (success) ? OK : FAIL;
7024}
7025
7026/*
7027 * Send the current selection to the clipboard. Do nothing for X because we
7028 * will fill in the selection only when requested by another app.
7029 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007030 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007031clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032{
7033}
7034
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01007035 int
7036clip_gtk_owner_exists(VimClipboard *cbd)
7037{
7038 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
7039}
7040
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041
7042#if defined(FEAT_MENU) || defined(PROTO)
7043/*
7044 * Make a menu item appear either active or not active (grey or not grey).
7045 */
7046 void
7047gui_mch_menu_grey(vimmenu_T *menu, int grey)
7048{
7049 if (menu->id == NULL)
7050 return;
7051
7052 if (menu_is_separator(menu->name))
7053 grey = TRUE;
7054
7055 gui_mch_menu_hidden(menu, FALSE);
7056 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01007057# if GTK_CHECK_VERSION(3,0,0)
7058 if (!gtk_widget_get_sensitive(menu->id) == !grey)
7059# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
Bram Moolenaar98921892016-02-23 17:14:37 +01007061# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062 {
7063 gtk_widget_set_sensitive(menu->id, !grey);
7064 gui_mch_update();
7065 }
7066}
7067
7068/*
7069 * Make menu item hidden or not hidden.
7070 */
7071 void
7072gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
7073{
7074 if (menu->id == 0)
7075 return;
7076
7077 if (hidden)
7078 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007079# if GTK_CHECK_VERSION(3,0,0)
7080 if (gtk_widget_get_visible(menu->id))
7081# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082 if (GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007083# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084 {
7085 gtk_widget_hide(menu->id);
7086 gui_mch_update();
7087 }
7088 }
7089 else
7090 {
Bram Moolenaar98921892016-02-23 17:14:37 +01007091# if GTK_CHECK_VERSION(3,0,0)
7092 if (!gtk_widget_get_visible(menu->id))
7093# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007094 if (!GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01007095# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007096 {
7097 gtk_widget_show(menu->id);
7098 gui_mch_update();
7099 }
7100 }
7101}
7102
7103/*
7104 * This is called after setting all the menus to grey/hidden or not.
7105 */
7106 void
7107gui_mch_draw_menubar(void)
7108{
7109 /* just make sure that the visual changes get effect immediately */
7110 gui_mch_update();
7111}
7112#endif /* FEAT_MENU */
7113
7114/*
7115 * Scrollbar stuff.
7116 */
7117 void
7118gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
7119{
7120 if (sb->id == NULL)
7121 return;
7122
Bram Moolenaar98921892016-02-23 17:14:37 +01007123#if GTK_CHECK_VERSION(3,0,0)
7124 gtk_widget_set_visible(sb->id, flag);
7125#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 if (flag)
7127 gtk_widget_show(sb->id);
7128 else
7129 gtk_widget_hide(sb->id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007130#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00007132 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007133}
7134
7135
7136/*
7137 * Return the RGB value of a pixel as long.
7138 */
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007139 guicolor_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00007140gui_mch_get_rgb(guicolor_T pixel)
7141{
Bram Moolenaar98921892016-02-23 17:14:37 +01007142#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02007143 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01007144#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02007145 GdkColor color;
7146
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
7148 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007149
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007150 return (guicolor_T)(
7151 (((unsigned)color.red & 0xff00) << 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152 | ((unsigned)color.green & 0xff00)
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +02007153 | (((unsigned)color.blue & 0xff00) >> 8));
Bram Moolenaar36edf062016-07-21 22:10:12 +02007154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155}
7156
7157/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007158 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007160 void
7161gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162{
Bram Moolenaar98921892016-02-23 17:14:37 +01007163#if GTK_CHECK_VERSION(3,0,0)
7164 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
7165#else
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007166 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01007167#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007168}
7169
7170 void
7171gui_mch_setmouse(int x, int y)
7172{
7173 /* Sorry for the Xlib call, but we can't avoid it, since there is no
7174 * internal GDK mechanism present to accomplish this. (and for good
7175 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01007176#if GTK_CHECK_VERSION(3,0,0)
7177 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7178 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7179 0, 0, 0U, 0U, x, y);
7180#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
7182 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
7183 0, 0, 0U, 0U, x, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01007184#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007185}
7186
7187
7188#ifdef FEAT_MOUSESHAPE
7189/* The last set mouse pointer shape is remembered, to be used when it goes
7190 * from hidden to not hidden. */
7191static int last_shape = 0;
7192#endif
7193
7194/*
7195 * Use the blank mouse pointer or not.
7196 *
7197 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7198 */
7199 void
7200gui_mch_mousehide(int hide)
7201{
7202 if (gui.pointer_hidden != hide)
7203 {
7204 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007205#if GTK_CHECK_VERSION(3,0,0)
7206 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
7207#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007208 if (gui.drawarea->window && gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007209#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210 {
7211 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007212#if GTK_CHECK_VERSION(3,0,0)
7213 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7214 gui.blank_pointer);
7215#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007216 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007217#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007218 else
7219#ifdef FEAT_MOUSESHAPE
7220 mch_set_mouse_shape(last_shape);
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01007221#elif GTK_CHECK_VERSION(3,0,0)
7222 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007223#else
7224 gdk_window_set_cursor(gui.drawarea->window, NULL);
7225#endif
7226 }
7227 }
7228}
7229
7230#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7231
7232/* Table for shape IDs. Keep in sync with the mshape_names[] table in
7233 * misc2.c! */
7234static const int mshape_ids[] =
7235{
7236 GDK_LEFT_PTR, /* arrow */
7237 GDK_CURSOR_IS_PIXMAP, /* blank */
7238 GDK_XTERM, /* beam */
7239 GDK_SB_V_DOUBLE_ARROW, /* updown */
7240 GDK_SIZING, /* udsizing */
7241 GDK_SB_H_DOUBLE_ARROW, /* leftright */
7242 GDK_SIZING, /* lrsizing */
7243 GDK_WATCH, /* busy */
7244 GDK_X_CURSOR, /* no */
7245 GDK_CROSSHAIR, /* crosshair */
7246 GDK_HAND1, /* hand1 */
7247 GDK_HAND2, /* hand2 */
7248 GDK_PENCIL, /* pencil */
7249 GDK_QUESTION_ARROW, /* question */
7250 GDK_RIGHT_PTR, /* right-arrow */
7251 GDK_CENTER_PTR, /* up-arrow */
7252 GDK_LEFT_PTR /* last one */
7253};
7254
7255 void
7256mch_set_mouse_shape(int shape)
7257{
7258 int id;
7259 GdkCursor *c;
7260
Bram Moolenaar98921892016-02-23 17:14:37 +01007261# if GTK_CHECK_VERSION(3,0,0)
7262 if (gtk_widget_get_window(gui.drawarea) == NULL)
7263# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007264 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007265# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007266 return;
7267
7268 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007269# if GTK_CHECK_VERSION(3,0,0)
7270 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7271 gui.blank_pointer);
7272# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007273 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007274# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007275 else
7276 {
7277 if (shape >= MSHAPE_NUMBERED)
7278 {
7279 id = shape - MSHAPE_NUMBERED;
7280 if (id >= GDK_LAST_CURSOR)
7281 id = GDK_LEFT_PTR;
7282 else
7283 id &= ~1; /* they are always even (why?) */
7284 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007285 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007286 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007287 else
7288 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007289# ifdef HAVE_GTK_MULTIHEAD
7290 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007291 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007292# else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007293 c = gdk_cursor_new((GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007294# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01007295# if GTK_CHECK_VERSION(3,0,0)
7296 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
7297# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007298 gdk_window_set_cursor(gui.drawarea->window, c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007299# endif
7300# if GTK_CHECK_VERSION(3,0,0)
7301 g_object_unref(G_OBJECT(c));
7302# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007303 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01007304# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007305 }
7306 if (shape != MSHAPE_HIDE)
7307 last_shape = shape;
7308}
7309#endif /* FEAT_MOUSESHAPE */
7310
7311
7312#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7313/*
7314 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7315 * scaled down if the current font is not big enough, or scaled up if the image
7316 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7317 * will be cut off if the current font is not big enough, or centered if it's
7318 * too small.
7319 */
7320# define SIGN_WIDTH (2 * gui.char_width)
7321# define SIGN_HEIGHT (gui.char_height)
7322# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7323
Bram Moolenaar071d4272004-06-13 20:20:40 +00007324 void
7325gui_mch_drawsign(int row, int col, int typenr)
7326{
7327 GdkPixbuf *sign;
7328
7329 sign = (GdkPixbuf *)sign_get_image(typenr);
7330
Bram Moolenaar98921892016-02-23 17:14:37 +01007331# if GTK_CHECK_VERSION(3,0,0)
7332 if (sign != NULL && gui.drawarea != NULL
7333 && gtk_widget_get_window(gui.drawarea) != NULL)
7334# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007335 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007336# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007337 {
7338 int width;
7339 int height;
7340 int xoffset;
7341 int yoffset;
7342 int need_scale;
7343
7344 width = gdk_pixbuf_get_width(sign);
7345 height = gdk_pixbuf_get_height(sign);
7346 /*
7347 * Decide whether we need to scale. Allow one pixel of border
7348 * width to be cut off, in order to avoid excessive scaling for
7349 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007350 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351 */
7352 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007353 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007354 || (width < 3 * SIGN_WIDTH / 4
7355 && height < 3 * SIGN_HEIGHT / 4));
7356 if (need_scale)
7357 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007358 double aspect;
7359 int w = width;
7360 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007361
7362 /* Keep the original aspect ratio */
7363 aspect = (double)height / (double)width;
7364 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7365 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007366 if (((double)(MAX(height, SIGN_HEIGHT)) /
7367 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7368 {
7369 /* Change the aspect ratio by at most 15% to fill the
7370 * available space completly. */
7371 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7372 height = MIN(height, SIGN_HEIGHT);
7373 }
7374 else
7375 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007376
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007377 if (w == width && h == height)
7378 {
7379 /* no change in dimensions; don't decrease reference counter
7380 * (below) */
7381 need_scale = FALSE;
7382 }
7383 else
7384 {
7385 /* This doesn't seem to be worth caching, and doing so would
7386 * complicate the code quite a bit. */
7387 sign = gdk_pixbuf_scale_simple(sign, width, height,
7388 GDK_INTERP_BILINEAR);
7389 if (sign == NULL)
7390 return; /* out of memory */
7391 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007392 }
7393
7394 /* The origin is the upper-left corner of the pixmap. Therefore
7395 * these offset may become negative if the pixmap is smaller than
7396 * the 2x1 cells reserved for the sign icon. */
7397 xoffset = (width - SIGN_WIDTH) / 2;
7398 yoffset = (height - SIGN_HEIGHT) / 2;
7399
Bram Moolenaar98921892016-02-23 17:14:37 +01007400# if GTK_CHECK_VERSION(3,0,0)
7401 {
7402 cairo_t *cr;
7403 cairo_surface_t *bg_surf;
7404 cairo_t *bg_cr;
7405 cairo_surface_t *sign_surf;
7406 cairo_t *sign_cr;
7407
7408 cr = cairo_create(gui.surface);
7409
7410 bg_surf = cairo_surface_create_similar(gui.surface,
7411 cairo_surface_get_content(gui.surface),
7412 SIGN_WIDTH, SIGN_HEIGHT);
7413 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007414 cairo_set_source_rgba(bg_cr,
7415 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7416 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007417 cairo_paint(bg_cr);
7418
7419 sign_surf = cairo_surface_create_similar(gui.surface,
7420 cairo_surface_get_content(gui.surface),
7421 SIGN_WIDTH, SIGN_HEIGHT);
7422 sign_cr = cairo_create(sign_surf);
7423 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7424 cairo_paint(sign_cr);
7425
7426 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7427 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7428 cairo_paint(sign_cr);
7429
7430 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7431 cairo_paint(cr);
7432
7433 cairo_destroy(sign_cr);
7434 cairo_surface_destroy(sign_surf);
7435 cairo_destroy(bg_cr);
7436 cairo_surface_destroy(bg_surf);
7437 cairo_destroy(cr);
7438
7439 if (!gui.by_signal)
7440 gtk_widget_queue_draw_area(gui.drawarea,
7441 FILL_X(col), FILL_Y(col), width, height);
7442
7443 }
7444# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007445 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7446
7447 gdk_draw_rectangle(gui.drawarea->window,
7448 gui.text_gc,
7449 TRUE,
7450 FILL_X(col),
7451 FILL_Y(row),
7452 SIGN_WIDTH,
7453 SIGN_HEIGHT);
7454
Bram Moolenaar071d4272004-06-13 20:20:40 +00007455 gdk_pixbuf_render_to_drawable_alpha(sign,
7456 gui.drawarea->window,
7457 MAX(0, xoffset),
7458 MAX(0, yoffset),
7459 FILL_X(col) - MIN(0, xoffset),
7460 FILL_Y(row) - MIN(0, yoffset),
7461 MIN(width, SIGN_WIDTH),
7462 MIN(height, SIGN_HEIGHT),
7463 GDK_PIXBUF_ALPHA_BILEVEL,
7464 127,
7465 GDK_RGB_DITHER_NORMAL,
7466 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007467# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007468 if (need_scale)
7469 g_object_unref(sign);
7470 }
7471}
7472
7473 void *
7474gui_mch_register_sign(char_u *signfile)
7475{
7476 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7477 {
7478 GdkPixbuf *sign;
7479 GError *error = NULL;
7480 char_u *message;
7481
7482 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7483
7484 if (error == NULL)
7485 return sign;
7486
7487 message = (char_u *)error->message;
7488
7489 if (message != NULL && input_conv.vc_type != CONV_NONE)
7490 message = string_convert(&input_conv, message, NULL);
7491
7492 if (message != NULL)
7493 {
7494 /* The error message is already translated and will be more
7495 * descriptive than anything we could possibly do ourselves. */
7496 EMSG2("E255: %s", message);
7497
7498 if (input_conv.vc_type != CONV_NONE)
7499 vim_free(message);
7500 }
7501 g_error_free(error);
7502 }
7503
7504 return NULL;
7505}
7506
7507 void
7508gui_mch_destroy_sign(void *sign)
7509{
7510 if (sign != NULL)
7511 g_object_unref(sign);
7512}
7513
Bram Moolenaar071d4272004-06-13 20:20:40 +00007514#endif /* FEAT_SIGN_ICONS */