blob: a53fa12d2e0017984d75b59ea10cd95020dafd43 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * Porting to GTK+ was done by:
12 *
Bram Moolenaar0a56cb82005-01-04 21:45:14 +000013 * (C) 1998,1999,2000 by Marcin Dalecki <martin@dalecki.de>
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * With GREAT support and continuous encouragements by Andy Kahn and of
16 * course Bram Moolenaar!
17 *
18 * Support for GTK+ 2 was added by:
19 *
20 * (C) 2002,2003 Jason Hildebrand <jason@peaceworks.ca>
21 * Daniel Elstner <daniel.elstner@gmx.net>
Bram Moolenaar98921892016-02-23 17:14:37 +010022 *
23 * Support for GTK+ 3 was added by:
24 *
25 * 2016 Kazunobu Kuriyama <kazunobu.kuriyama@gmail.com>
Bram Moolenaar071d4272004-06-13 20:20:40 +000026 */
27
28#include "vim.h"
Bram Moolenaar36e294c2015-12-29 18:55:46 +010029#ifdef USE_GRESOURCE
30#include "auto/gui_gtk_gresources.h"
31#endif
Bram Moolenaarc93e7912008-07-08 10:46:08 +000032
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_GUI_GNOME
34/* Gnome redefines _() and N_(). Grrr... */
35# ifdef _
36# undef _
37# endif
38# ifdef N_
39# undef N_
40# endif
41# ifdef textdomain
42# undef textdomain
43# endif
44# ifdef bindtextdomain
45# undef bindtextdomain
46# endif
Bram Moolenaara2dd9002007-05-14 17:38:30 +000047# ifdef bind_textdomain_codeset
48# undef bind_textdomain_codeset
Bram Moolenaar49325942007-05-10 19:19:59 +000049# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000050# if defined(FEAT_GETTEXT) && !defined(ENABLE_NLS)
51# define ENABLE_NLS /* so the texts in the dialog boxes are translated */
52# endif
53# include <gnome.h>
54# include "version.h"
Bram Moolenaardb552d602006-03-23 22:59:57 +000055/* missing prototype in bonobo-dock-item.h */
56extern void bonobo_dock_item_set_behavior(BonoboDockItem *dock_item, BonoboDockItemBehavior beh);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#endif
58
59#if !defined(FEAT_GUI_GTK) && defined(PROTO)
60/* When generating prototypes we don't want syntax errors. */
61# define GdkAtom int
62# define GdkEventExpose int
63# define GdkEventFocus int
64# define GdkEventVisibility int
65# define GdkEventProperty int
66# define GtkContainer int
67# define GtkTargetEntry int
68# define GtkType int
69# define GtkWidget int
70# define gint int
71# define gpointer int
72# define guint int
73# define GdkEventKey int
74# define GdkEventSelection int
75# define GtkSelectionData int
76# define GdkEventMotion int
77# define GdkEventButton int
78# define GdkDragContext int
79# define GdkEventConfigure int
80# define GdkEventClient int
81#else
Bram Moolenaar98921892016-02-23 17:14:37 +010082# if GTK_CHECK_VERSION(3,0,0)
83# include <gdk/gdkkeysyms-compat.h>
84# include <gtk/gtkx.h>
85# else
86# include <gdk/gdkkeysyms.h>
87# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000088# include <gdk/gdk.h>
89# ifdef WIN3264
90# include <gdk/gdkwin32.h>
91# else
92# include <gdk/gdkx.h>
93# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000094# include <gtk/gtk.h>
95# include "gui_gtk_f.h"
96#endif
97
98#ifdef HAVE_X11_SUNKEYSYM_H
99# include <X11/Sunkeysym.h>
100#endif
101
102/*
103 * Easy-to-use macro for multihead support.
104 */
105#ifdef HAVE_GTK_MULTIHEAD
106# define GET_X_ATOM(atom) gdk_x11_atom_to_xatom_for_display( \
107 gtk_widget_get_display(gui.mainwin), atom)
108#else
109# define GET_X_ATOM(atom) ((Atom)(atom))
110#endif
111
112/* Selection type distinguishers */
113enum
114{
115 TARGET_TYPE_NONE,
116 TARGET_UTF8_STRING,
117 TARGET_STRING,
118 TARGET_COMPOUND_TEXT,
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000119 TARGET_HTML,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120 TARGET_TEXT,
121 TARGET_TEXT_URI_LIST,
122 TARGET_TEXT_PLAIN,
123 TARGET_VIM,
124 TARGET_VIMENC
125};
126
127/*
128 * Table of selection targets supported by Vim.
129 * Note: Order matters, preferred types should come first.
130 */
131static const GtkTargetEntry selection_targets[] =
132{
133 {VIMENC_ATOM_NAME, 0, TARGET_VIMENC},
134 {VIM_ATOM_NAME, 0, TARGET_VIM},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000135 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 {"COMPOUND_TEXT", 0, TARGET_COMPOUND_TEXT},
138 {"TEXT", 0, TARGET_TEXT},
139 {"STRING", 0, TARGET_STRING}
140};
141#define N_SELECTION_TARGETS (sizeof(selection_targets) / sizeof(selection_targets[0]))
142
143#ifdef FEAT_DND
144/*
145 * Table of DnD targets supported by Vim.
146 * Note: Order matters, preferred types should come first.
147 */
148static const GtkTargetEntry dnd_targets[] =
149{
150 {"text/uri-list", 0, TARGET_TEXT_URI_LIST},
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000151 {"text/html", 0, TARGET_HTML},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 {"UTF8_STRING", 0, TARGET_UTF8_STRING},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 {"STRING", 0, TARGET_STRING},
154 {"text/plain", 0, TARGET_TEXT_PLAIN}
155};
156# define N_DND_TARGETS (sizeof(dnd_targets) / sizeof(dnd_targets[0]))
157#endif
158
159
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160/*
161 * "Monospace" is a standard font alias that should be present
162 * on all proper Pango/fontconfig installations.
163 */
164# define DEFAULT_FONT "Monospace 10"
165
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
167/*
168 * Atoms used to communicate save-yourself from the X11 session manager. There
169 * is no need to move them into the GUI struct, since they should be constant.
170 */
171static GdkAtom wm_protocols_atom = GDK_NONE;
172static GdkAtom save_yourself_atom = GDK_NONE;
173#endif
174
175/*
176 * Atoms used to control/reference X11 selections.
177 */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000178static GdkAtom html_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179static GdkAtom utf8_string_atom = GDK_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180static GdkAtom vim_atom = GDK_NONE; /* Vim's own special selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181static GdkAtom vimenc_atom = GDK_NONE; /* Vim's extended selection format */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182
183/*
184 * Keycodes recognized by vim.
185 * NOTE: when changing this, the table in gui_x11.c probably needs the same
186 * change!
187 */
188static struct special_key
189{
190 guint key_sym;
191 char_u code0;
192 char_u code1;
193}
194const special_keys[] =
195{
196 {GDK_Up, 'k', 'u'},
197 {GDK_Down, 'k', 'd'},
198 {GDK_Left, 'k', 'l'},
199 {GDK_Right, 'k', 'r'},
200 {GDK_F1, 'k', '1'},
201 {GDK_F2, 'k', '2'},
202 {GDK_F3, 'k', '3'},
203 {GDK_F4, 'k', '4'},
204 {GDK_F5, 'k', '5'},
205 {GDK_F6, 'k', '6'},
206 {GDK_F7, 'k', '7'},
207 {GDK_F8, 'k', '8'},
208 {GDK_F9, 'k', '9'},
209 {GDK_F10, 'k', ';'},
210 {GDK_F11, 'F', '1'},
211 {GDK_F12, 'F', '2'},
212 {GDK_F13, 'F', '3'},
213 {GDK_F14, 'F', '4'},
214 {GDK_F15, 'F', '5'},
215 {GDK_F16, 'F', '6'},
216 {GDK_F17, 'F', '7'},
217 {GDK_F18, 'F', '8'},
218 {GDK_F19, 'F', '9'},
219 {GDK_F20, 'F', 'A'},
220 {GDK_F21, 'F', 'B'},
221 {GDK_Pause, 'F', 'B'}, /* Pause == F21 according to netbeans.txt */
222 {GDK_F22, 'F', 'C'},
223 {GDK_F23, 'F', 'D'},
224 {GDK_F24, 'F', 'E'},
225 {GDK_F25, 'F', 'F'},
226 {GDK_F26, 'F', 'G'},
227 {GDK_F27, 'F', 'H'},
228 {GDK_F28, 'F', 'I'},
229 {GDK_F29, 'F', 'J'},
230 {GDK_F30, 'F', 'K'},
231 {GDK_F31, 'F', 'L'},
232 {GDK_F32, 'F', 'M'},
233 {GDK_F33, 'F', 'N'},
234 {GDK_F34, 'F', 'O'},
235 {GDK_F35, 'F', 'P'},
236#ifdef SunXK_F36
237 {SunXK_F36, 'F', 'Q'},
238 {SunXK_F37, 'F', 'R'},
239#endif
240 {GDK_Help, '%', '1'},
241 {GDK_Undo, '&', '8'},
242 {GDK_BackSpace, 'k', 'b'},
243 {GDK_Insert, 'k', 'I'},
244 {GDK_Delete, 'k', 'D'},
245 {GDK_3270_BackTab, 'k', 'B'},
246 {GDK_Clear, 'k', 'C'},
247 {GDK_Home, 'k', 'h'},
248 {GDK_End, '@', '7'},
249 {GDK_Prior, 'k', 'P'},
250 {GDK_Next, 'k', 'N'},
251 {GDK_Print, '%', '9'},
252 /* Keypad keys: */
253 {GDK_KP_Left, 'k', 'l'},
254 {GDK_KP_Right, 'k', 'r'},
255 {GDK_KP_Up, 'k', 'u'},
256 {GDK_KP_Down, 'k', 'd'},
257 {GDK_KP_Insert, KS_EXTRA, (char_u)KE_KINS},
258 {GDK_KP_Delete, KS_EXTRA, (char_u)KE_KDEL},
259 {GDK_KP_Home, 'K', '1'},
260 {GDK_KP_End, 'K', '4'},
261 {GDK_KP_Prior, 'K', '3'}, /* page up */
262 {GDK_KP_Next, 'K', '5'}, /* page down */
263
264 {GDK_KP_Add, 'K', '6'},
265 {GDK_KP_Subtract, 'K', '7'},
266 {GDK_KP_Divide, 'K', '8'},
267 {GDK_KP_Multiply, 'K', '9'},
268 {GDK_KP_Enter, 'K', 'A'},
269 {GDK_KP_Decimal, 'K', 'B'},
270
271 {GDK_KP_0, 'K', 'C'},
272 {GDK_KP_1, 'K', 'D'},
273 {GDK_KP_2, 'K', 'E'},
274 {GDK_KP_3, 'K', 'F'},
275 {GDK_KP_4, 'K', 'G'},
276 {GDK_KP_5, 'K', 'H'},
277 {GDK_KP_6, 'K', 'I'},
278 {GDK_KP_7, 'K', 'J'},
279 {GDK_KP_8, 'K', 'K'},
280 {GDK_KP_9, 'K', 'L'},
281
282 /* End of list marker: */
283 {0, 0, 0}
284};
285
286/*
287 * Flags for command line options table below.
288 */
289#define ARG_FONT 1
290#define ARG_GEOMETRY 2
291#define ARG_REVERSE 3
292#define ARG_NOREVERSE 4
293#define ARG_BACKGROUND 5
294#define ARG_FOREGROUND 6
295#define ARG_ICONIC 7
296#define ARG_ROLE 8
297#define ARG_NETBEANS 9
298#define ARG_XRM 10 /* ignored */
299#define ARG_MENUFONT 11 /* ignored */
300#define ARG_INDEX_MASK 0x00ff
301#define ARG_HAS_VALUE 0x0100 /* a value is expected after the argument */
302#define ARG_NEEDS_GUI 0x0200 /* need to initialize the GUI for this */
303#define ARG_FOR_GTK 0x0400 /* argument is handled by GTK+ or GNOME */
304#define ARG_COMPAT_LONG 0x0800 /* accept -foo but substitute with --foo */
305#define ARG_KEEP 0x1000 /* don't remove argument from argv[] */
306
307/*
308 * This table holds all the X GUI command line options allowed. This includes
309 * the standard ones so that we can skip them when Vim is started without the
310 * GUI (but the GUI might start up later).
311 *
312 * When changing this, also update doc/gui_x11.txt and the usage message!!!
313 */
314typedef struct
315{
316 const char *name;
317 unsigned int flags;
318}
319cmdline_option_T;
320
321static const cmdline_option_T cmdline_options[] =
322{
323 /* We handle these options ourselves */
324 {"-fn", ARG_FONT|ARG_HAS_VALUE},
325 {"-font", ARG_FONT|ARG_HAS_VALUE},
326 {"-geom", ARG_GEOMETRY|ARG_HAS_VALUE},
327 {"-geometry", ARG_GEOMETRY|ARG_HAS_VALUE},
328 {"-rv", ARG_REVERSE},
329 {"-reverse", ARG_REVERSE},
330 {"+rv", ARG_NOREVERSE},
331 {"+reverse", ARG_NOREVERSE},
332 {"-bg", ARG_BACKGROUND|ARG_HAS_VALUE},
333 {"-background", ARG_BACKGROUND|ARG_HAS_VALUE},
334 {"-fg", ARG_FOREGROUND|ARG_HAS_VALUE},
335 {"-foreground", ARG_FOREGROUND|ARG_HAS_VALUE},
336 {"-iconic", ARG_ICONIC},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 {"--role", ARG_ROLE|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338#ifdef FEAT_NETBEANS_INTG
339 {"-nb", ARG_NETBEANS}, /* non-standard value format */
340 {"-xrm", ARG_XRM|ARG_HAS_VALUE}, /* not implemented */
341 {"-mf", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
342 {"-menufont", ARG_MENUFONT|ARG_HAS_VALUE}, /* not implemented */
343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 /* Arguments handled by GTK (and GNOME) internally. */
345 {"--g-fatal-warnings", ARG_FOR_GTK},
346 {"--gdk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
347 {"--gdk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
348 {"--gtk-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
349 {"--gtk-no-debug", ARG_FOR_GTK|ARG_HAS_VALUE},
350 {"--gtk-module", ARG_FOR_GTK|ARG_HAS_VALUE},
351 {"--sync", ARG_FOR_GTK},
352 {"--display", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
353 {"--name", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
354 {"--class", ARG_FOR_GTK|ARG_HAS_VALUE|ARG_COMPAT_LONG},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 {"--screen", ARG_FOR_GTK|ARG_HAS_VALUE},
356 {"--gxid-host", ARG_FOR_GTK|ARG_HAS_VALUE},
357 {"--gxid-port", ARG_FOR_GTK|ARG_HAS_VALUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358#ifdef FEAT_GUI_GNOME
359 {"--load-modules", ARG_FOR_GTK|ARG_HAS_VALUE},
360 {"--sm-client-id", ARG_FOR_GTK|ARG_HAS_VALUE},
361 {"--sm-config-prefix", ARG_FOR_GTK|ARG_HAS_VALUE},
362 {"--sm-disable", ARG_FOR_GTK},
363 {"--oaf-ior-fd", ARG_FOR_GTK|ARG_HAS_VALUE},
364 {"--oaf-activate-iid", ARG_FOR_GTK|ARG_HAS_VALUE},
365 {"--oaf-private", ARG_FOR_GTK},
366 {"--enable-sound", ARG_FOR_GTK},
367 {"--disable-sound", ARG_FOR_GTK},
368 {"--espeaker", ARG_FOR_GTK|ARG_HAS_VALUE},
369 {"-?", ARG_FOR_GTK|ARG_NEEDS_GUI},
370 {"--help", ARG_FOR_GTK|ARG_NEEDS_GUI|ARG_KEEP},
371 {"--usage", ARG_FOR_GTK|ARG_NEEDS_GUI},
372# if 0 /* conflicts with Vim's own --version argument */
373 {"--version", ARG_FOR_GTK|ARG_NEEDS_GUI},
374# endif
375 {"--disable-crash-dialog", ARG_FOR_GTK},
376#endif
377 {NULL, 0}
378};
379
380static int gui_argc = 0;
381static char **gui_argv = NULL;
382
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383static const char *role_argument = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
385static const char *restart_command = NULL;
Bram Moolenaar9085f802009-06-03 14:20:21 +0000386static char *abs_restart_command = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387#endif
388static int found_iconic_arg = FALSE;
389
390#ifdef FEAT_GUI_GNOME
391/*
392 * Can't use Gnome if --socketid given
393 */
394static int using_gnome = 0;
395#else
396# define using_gnome 0
397#endif
398
399/*
400 * Parse the GUI related command-line arguments. Any arguments used are
401 * deleted from argv, and *argc is decremented accordingly. This is called
402 * when vim is started, whether or not the GUI has been started.
403 */
404 void
405gui_mch_prepare(int *argc, char **argv)
406{
407 const cmdline_option_T *option;
408 int i = 0;
409 int len = 0;
410
411#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
412 /*
413 * Determine the command used to invoke Vim, to be passed as restart
414 * command to the session manager. If argv[0] contains any directory
415 * components try building an absolute path, otherwise leave it as is.
416 */
417 restart_command = argv[0];
418
419 if (strchr(argv[0], G_DIR_SEPARATOR) != NULL)
420 {
421 char_u buf[MAXPATHL];
422
423 if (mch_FullName((char_u *)argv[0], buf, (int)sizeof(buf), TRUE) == OK)
Bram Moolenaar9085f802009-06-03 14:20:21 +0000424 {
425 abs_restart_command = (char *)vim_strsave(buf);
426 restart_command = abs_restart_command;
427 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 }
429#endif
430
431 /*
432 * Move all the entries in argv which are relevant to GTK+ and GNOME
433 * into gui_argv. Freed later in gui_mch_init().
434 */
435 gui_argc = 0;
436 gui_argv = (char **)alloc((unsigned)((*argc + 1) * sizeof(char *)));
437
438 g_return_if_fail(gui_argv != NULL);
439
440 gui_argv[gui_argc++] = argv[i++];
441
442 while (i < *argc)
443 {
444 /* Don't waste CPU cycles on non-option arguments. */
445 if (argv[i][0] != '-' && argv[i][0] != '+')
446 {
447 ++i;
448 continue;
449 }
450
451 /* Look for argv[i] in cmdline_options[] table. */
452 for (option = &cmdline_options[0]; option->name != NULL; ++option)
453 {
454 len = strlen(option->name);
455
456 if (strncmp(argv[i], option->name, len) == 0)
457 {
458 if (argv[i][len] == '\0')
459 break;
460 /* allow --foo=bar style */
461 if (argv[i][len] == '=' && (option->flags & ARG_HAS_VALUE))
462 break;
463#ifdef FEAT_NETBEANS_INTG
464 /* darn, -nb has non-standard syntax */
465 if (vim_strchr((char_u *)":=", argv[i][len]) != NULL
466 && (option->flags & ARG_INDEX_MASK) == ARG_NETBEANS)
467 break;
468#endif
469 }
470 else if ((option->flags & ARG_COMPAT_LONG)
471 && strcmp(argv[i], option->name + 1) == 0)
472 {
473 /* Replace the standard X arguments "-name" and "-display"
474 * with their GNU-style long option counterparts. */
475 argv[i] = (char *)option->name;
476 break;
477 }
478 }
479 if (option->name == NULL) /* no match */
480 {
481 ++i;
482 continue;
483 }
484
485 if (option->flags & ARG_FOR_GTK)
486 {
487 /* Move the argument into gui_argv, which
488 * will later be passed to gtk_init_check() */
489 gui_argv[gui_argc++] = argv[i];
490 }
491 else
492 {
493 char *value = NULL;
494
495 /* Extract the option's value if there is one.
496 * Accept both "--foo bar" and "--foo=bar" style. */
497 if (option->flags & ARG_HAS_VALUE)
498 {
499 if (argv[i][len] == '=')
500 value = &argv[i][len + 1];
501 else if (i + 1 < *argc && strcmp(argv[i + 1], "--") != 0)
502 value = argv[i + 1];
503 }
504
505 /* Check for options handled by Vim itself */
506 switch (option->flags & ARG_INDEX_MASK)
507 {
508 case ARG_REVERSE:
509 found_reverse_arg = TRUE;
510 break;
511 case ARG_NOREVERSE:
512 found_reverse_arg = FALSE;
513 break;
514 case ARG_FONT:
515 font_argument = value;
516 break;
517 case ARG_GEOMETRY:
518 if (value != NULL)
519 gui.geom = vim_strsave((char_u *)value);
520 break;
521 case ARG_BACKGROUND:
522 background_argument = value;
523 break;
524 case ARG_FOREGROUND:
525 foreground_argument = value;
526 break;
527 case ARG_ICONIC:
528 found_iconic_arg = TRUE;
529 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 case ARG_ROLE:
531 role_argument = value; /* used later in gui_mch_open() */
532 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533#ifdef FEAT_NETBEANS_INTG
534 case ARG_NETBEANS:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 gui.dofork = FALSE; /* don't fork() when starting GUI */
536 netbeansArg = argv[i];
537 break;
538#endif
539 default:
540 break;
541 }
542 }
543
544 /* These arguments make gnome_program_init() print a message and exit.
Bram Moolenaar717e1962016-08-10 21:28:44 +0200545 * Must start the GUI for this, otherwise ":gui" will exit later!
546 * Only when the GUI can start. */
547 if ((option->flags & ARG_NEEDS_GUI)
548 && gui_mch_early_init_check(FALSE) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 gui.starting = TRUE;
550
551 if (option->flags & ARG_KEEP)
552 ++i;
553 else
554 {
555 /* Remove the flag from the argument vector. */
556 if (--*argc > i)
557 {
558 int n_strip = 1;
559
560 /* Move the argument's value as well, if there is one. */
561 if ((option->flags & ARG_HAS_VALUE)
562 && argv[i][len] != '='
563 && strcmp(argv[i + 1], "--") != 0)
564 {
565 ++n_strip;
566 --*argc;
567 if (option->flags & ARG_FOR_GTK)
568 gui_argv[gui_argc++] = argv[i + 1];
569 }
570
571 if (*argc > i)
572 mch_memmove(&argv[i], &argv[i + n_strip],
573 (*argc - i) * sizeof(char *));
574 }
575 argv[*argc] = NULL;
576 }
577 }
578
579 gui_argv[gui_argc] = NULL;
580}
581
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000582#if defined(EXITFREE) || defined(PROTO)
583 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +0100584gui_mch_free_all(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000585{
586 vim_free(gui_argv);
Bram Moolenaar9085f802009-06-03 14:20:21 +0000587#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
588 vim_free(abs_restart_command);
589#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000590}
591#endif
592
Bram Moolenaar98921892016-02-23 17:14:37 +0100593#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594/*
595 * This should be maybe completely removed.
596 * Doesn't seem possible, since check_copy_area() relies on
597 * this information. --danielk
598 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000600visibility_event(GtkWidget *widget UNUSED,
601 GdkEventVisibility *event,
602 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603{
604 gui.visibility = event->state;
605 /*
606 * When we do an gdk_window_copy_area(), and the window is partially
607 * obscured, we want to receive an event to tell us whether it worked
608 * or not.
609 */
610 if (gui.text_gc != NULL)
611 gdk_gc_set_exposures(gui.text_gc,
612 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
613 return FALSE;
614}
Bram Moolenaar98921892016-02-23 17:14:37 +0100615#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616
617/*
618 * Redraw the corresponding portions of the screen.
619 */
Bram Moolenaar98921892016-02-23 17:14:37 +0100620#if GTK_CHECK_VERSION(3,0,0)
621static gboolean is_key_pressed = FALSE;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100622static gboolean blink_mode = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100623
624static gboolean gui_gtk_is_blink_on(void);
Bram Moolenaar98921892016-02-23 17:14:37 +0100625static void gui_gtk_window_clear(GdkWindow *win);
626
627 static void
628gui_gtk3_redraw(int x, int y, int width, int height)
629{
630 gui_redraw_block(Y_2_ROW(y), X_2_COL(x),
631 Y_2_ROW(y + height - 1), X_2_COL(x + width - 1),
632 GUI_MON_NOCLEAR);
633}
634
635 static void
636gui_gtk3_update_cursor(cairo_t *cr)
637{
638 if (gui.row == gui.cursor_row)
639 {
640 gui.by_signal = TRUE;
Bram Moolenaar4fc563b2016-03-12 12:40:58 +0100641 if (State & CMDLINE)
642 gui_update_cursor(TRUE, FALSE);
643 else
644 gui_update_cursor(TRUE, TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +0100645 gui.by_signal = FALSE;
646 cairo_paint(cr);
647 }
648}
649
650 static gboolean
651gui_gtk3_should_draw_cursor(void)
652{
653 unsigned int cond = 0;
654 cond |= gui_gtk_is_blink_on();
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100655 if (gui.cursor_col >= gui.col)
656 cond |= is_key_pressed;
Bram Moolenaar98921892016-02-23 17:14:37 +0100657 cond |= gui.in_focus == FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +0100658 return cond;
659}
660
661 static gboolean
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200662draw_event(GtkWidget *widget UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +0100663 cairo_t *cr,
664 gpointer user_data UNUSED)
665{
666 /* Skip this when the GUI isn't set up yet, will redraw later. */
667 if (gui.starting)
668 return FALSE;
669
670 out_flush(); /* make sure all output has been processed */
671 /* for GTK+ 3, may induce other draw events. */
672
673 cairo_set_source_surface(cr, gui.surface, 0, 0);
674
675 /* Draw the window without the cursor. */
676 gui.by_signal = TRUE;
677 {
678 cairo_rectangle_list_t *list = NULL;
679
Bram Moolenaar98921892016-02-23 17:14:37 +0100680 list = cairo_copy_clip_rectangle_list(cr);
681 if (list->status != CAIRO_STATUS_CLIP_NOT_REPRESENTABLE)
682 {
683 int i;
684 for (i = 0; i < list->num_rectangles; i++)
685 {
686 const cairo_rectangle_t rect = list->rectangles[i];
Bram Moolenaar8e31fd52016-06-04 22:18:13 +0200687
688 gui_mch_clear_block(Y_2_ROW(rect.y), 1,
689 Y_2_ROW(rect.y + rect.height - 1), Columns);
690
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100691 if (blink_mode)
692 gui_gtk3_redraw(rect.x, rect.y, rect.width, rect.height);
693 else
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100694 {
695 if (get_real_state() & VISUAL)
696 gui_gtk3_redraw(rect.x, rect.y,
697 rect.width, rect.height);
698 else
699 gui_redraw(rect.x, rect.y, rect.width, rect.height);
700 }
Bram Moolenaar98921892016-02-23 17:14:37 +0100701 }
702 }
703 cairo_rectangle_list_destroy(list);
704
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100705 if (get_real_state() & VISUAL)
706 {
707 if (gui.cursor_row == gui.row && gui.cursor_col >= gui.col)
708 gui_update_cursor(TRUE, TRUE);
709 }
710
Bram Moolenaar98921892016-02-23 17:14:37 +0100711 cairo_paint(cr);
712 }
713 gui.by_signal = FALSE;
714
715 /* Add the cursor to the window if necessary.*/
Bram Moolenaarb4ebf9a2016-03-12 16:28:18 +0100716 if (gui_gtk3_should_draw_cursor() && blink_mode)
Bram Moolenaar98921892016-02-23 17:14:37 +0100717 gui_gtk3_update_cursor(cr);
718
719 return FALSE;
720}
721#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000723expose_event(GtkWidget *widget UNUSED,
724 GdkEventExpose *event,
725 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726{
727 /* Skip this when the GUI isn't set up yet, will redraw later. */
728 if (gui.starting)
729 return FALSE;
730
731 out_flush(); /* make sure all output has been processed */
732 gui_redraw(event->area.x, event->area.y,
733 event->area.width, event->area.height);
734
735 /* Clear the border areas if needed */
736 if (event->area.x < FILL_X(0))
737 gdk_window_clear_area(gui.drawarea->window, 0, 0, FILL_X(0), 0);
738 if (event->area.y < FILL_Y(0))
739 gdk_window_clear_area(gui.drawarea->window, 0, 0, 0, FILL_Y(0));
740 if (event->area.x > FILL_X(Columns))
741 gdk_window_clear_area(gui.drawarea->window,
742 FILL_X((int)Columns), 0, 0, 0);
743 if (event->area.y > FILL_Y(Rows))
744 gdk_window_clear_area(gui.drawarea->window, 0, FILL_Y((int)Rows), 0, 0);
745
746 return FALSE;
747}
Bram Moolenaar98921892016-02-23 17:14:37 +0100748#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749
750#ifdef FEAT_CLIENTSERVER
751/*
752 * Handle changes to the "Comm" property
753 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000755property_event(GtkWidget *widget,
756 GdkEventProperty *event,
757 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758{
759 if (event->type == GDK_PROPERTY_NOTIFY
760 && event->state == (int)GDK_PROPERTY_NEW_VALUE
Bram Moolenaar98921892016-02-23 17:14:37 +0100761# if GTK_CHECK_VERSION(3,0,0)
762 && GDK_WINDOW_XID(event->window) == commWindow
763# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 && GDK_WINDOW_XWINDOW(event->window) == commWindow
Bram Moolenaar98921892016-02-23 17:14:37 +0100765# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 && GET_X_ATOM(event->atom) == commProperty)
767 {
768 XEvent xev;
769
770 /* Translate to XLib */
771 xev.xproperty.type = PropertyNotify;
772 xev.xproperty.atom = commProperty;
773 xev.xproperty.window = commWindow;
774 xev.xproperty.state = PropertyNewValue;
Bram Moolenaar98921892016-02-23 17:14:37 +0100775# if GTK_CHECK_VERSION(3,0,0)
776 serverEventProc(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(widget)),
777 &xev, 0);
778# else
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200779 serverEventProc(GDK_WINDOW_XDISPLAY(widget->window), &xev, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +0100780# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 }
782 return FALSE;
783}
Bram Moolenaar98921892016-02-23 17:14:37 +0100784#endif /* defined(FEAT_CLIENTSERVER) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785
786
787/****************************************************************************
788 * Focus handlers:
789 */
790
791
792/*
793 * This is a simple state machine:
794 * BLINK_NONE not blinking at all
795 * BLINK_OFF blinking, cursor is not shown
796 * BLINK_ON blinking, cursor is shown
797 */
798
799#define BLINK_NONE 0
800#define BLINK_OFF 1
801#define BLINK_ON 2
802
803static int blink_state = BLINK_NONE;
804static long_u blink_waittime = 700;
805static long_u blink_ontime = 400;
806static long_u blink_offtime = 250;
807static guint blink_timer = 0;
808
Bram Moolenaar98921892016-02-23 17:14:37 +0100809#if GTK_CHECK_VERSION(3,0,0)
810 static gboolean
811gui_gtk_is_blink_on(void)
812{
813 return blink_state == BLINK_ON;
814}
Bram Moolenaar98921892016-02-23 17:14:37 +0100815#endif
816
Bram Moolenaar703a8042016-06-04 16:24:32 +0200817 int
818gui_mch_is_blinking(void)
819{
820 return blink_state != BLINK_NONE;
821}
822
Bram Moolenaar9d5d3c92016-07-07 16:43:02 +0200823 int
824gui_mch_is_blink_off(void)
825{
826 return blink_state == BLINK_OFF;
827}
828
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 void
830gui_mch_set_blinking(long waittime, long on, long off)
831{
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100832#if GTK_CHECK_VERSION(3,0,0)
833 if (waittime == 0 || on == 0 || off == 0)
834 {
835 blink_mode = FALSE;
836
837 blink_waittime = 700;
838 blink_ontime = 400;
839 blink_offtime = 250;
840 }
841 else
842 {
843 blink_mode = TRUE;
844
845 blink_waittime = waittime;
846 blink_ontime = on;
847 blink_offtime = off;
848 }
849#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 blink_waittime = waittime;
851 blink_ontime = on;
852 blink_offtime = off;
Bram Moolenaar0ecbe332016-03-05 22:40:52 +0100853#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854}
855
856/*
857 * Stop the cursor blinking. Show the cursor if it wasn't shown.
858 */
859 void
860gui_mch_stop_blink(void)
861{
862 if (blink_timer)
863 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100864#if GTK_CHECK_VERSION(3,0,0)
865 g_source_remove(blink_timer);
866#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100868#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 blink_timer = 0;
870 }
871 if (blink_state == BLINK_OFF)
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200872 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200874 gui_mch_flush();
875 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 blink_state = BLINK_NONE;
877}
878
Bram Moolenaar98921892016-02-23 17:14:37 +0100879#if GTK_CHECK_VERSION(3,0,0)
880 static gboolean
881#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +0100883#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000884blink_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885{
886 if (blink_state == BLINK_ON)
887 {
888 gui_undraw_cursor();
889 blink_state = BLINK_OFF;
Bram Moolenaar98921892016-02-23 17:14:37 +0100890#if GTK_CHECK_VERSION(3,0,0)
891 blink_timer = g_timeout_add((guint)blink_offtime,
892 (GSourceFunc) blink_cb, NULL);
893#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 blink_timer = gtk_timeout_add((guint32)blink_offtime,
895 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100896#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 }
898 else
899 {
900 gui_update_cursor(TRUE, FALSE);
901 blink_state = BLINK_ON;
Bram Moolenaar98921892016-02-23 17:14:37 +0100902#if GTK_CHECK_VERSION(3,0,0)
903 blink_timer = g_timeout_add((guint)blink_ontime,
904 (GSourceFunc) blink_cb, NULL);
905#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 blink_timer = gtk_timeout_add((guint32)blink_ontime,
907 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100908#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 }
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200910 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911
912 return FALSE; /* don't happen again */
913}
914
915/*
916 * Start the cursor blinking. If it was already blinking, this restarts the
917 * waiting time and shows the cursor.
918 */
919 void
920gui_mch_start_blink(void)
921{
922 if (blink_timer)
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200923 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100924#if GTK_CHECK_VERSION(3,0,0)
925 g_source_remove(blink_timer);
926#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 gtk_timeout_remove(blink_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +0100928#endif
Bram Moolenaar7bcdb7d2014-04-06 21:08:45 +0200929 blink_timer = 0;
930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 /* Only switch blinking on if none of the times is zero */
932 if (blink_waittime && blink_ontime && blink_offtime && gui.in_focus)
933 {
Bram Moolenaar98921892016-02-23 17:14:37 +0100934#if GTK_CHECK_VERSION(3,0,0)
935 blink_timer = g_timeout_add((guint)blink_waittime,
936 (GSourceFunc) blink_cb, NULL);
937#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 blink_timer = gtk_timeout_add((guint32)blink_waittime,
939 (GtkFunction) blink_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +0100940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 blink_state = BLINK_ON;
942 gui_update_cursor(TRUE, FALSE);
Bram Moolenaarda3a77d2016-07-10 23:16:09 +0200943 gui_mch_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 }
945}
946
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000948enter_notify_event(GtkWidget *widget UNUSED,
949 GdkEventCrossing *event UNUSED,
950 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951{
952 if (blink_state == BLINK_NONE)
953 gui_mch_start_blink();
954
955 /* make sure keyboard input goes there */
Bram Moolenaar98921892016-02-23 17:14:37 +0100956#if GTK_CHECK_VERSION(3,0,0)
957 if (gtk_socket_id == 0 || !gtk_widget_has_focus(gui.drawarea))
958#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 if (gtk_socket_id == 0 || !GTK_WIDGET_HAS_FOCUS(gui.drawarea))
Bram Moolenaar98921892016-02-23 17:14:37 +0100960#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 gtk_widget_grab_focus(gui.drawarea);
962
963 return FALSE;
964}
965
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000967leave_notify_event(GtkWidget *widget UNUSED,
968 GdkEventCrossing *event UNUSED,
969 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970{
971 if (blink_state != BLINK_NONE)
972 gui_mch_stop_blink();
973
974 return FALSE;
975}
976
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000978focus_in_event(GtkWidget *widget,
979 GdkEventFocus *event UNUSED,
980 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981{
982 gui_focus_change(TRUE);
983
984 if (blink_state == BLINK_NONE)
985 gui_mch_start_blink();
986
Bram Moolenaar9c8791f2007-09-05 19:47:23 +0000987 /* make sure keyboard input goes to the draw area (if this is focus for a
988 * window) */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +0000989 if (widget != gui.drawarea)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000990 gtk_widget_grab_focus(gui.drawarea);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991
992 return TRUE;
993}
994
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000996focus_out_event(GtkWidget *widget UNUSED,
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200997 GdkEventFocus *event UNUSED,
Bram Moolenaarb85cb212009-05-17 14:24:23 +0000998 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999{
1000 gui_focus_change(FALSE);
1001
1002 if (blink_state != BLINK_NONE)
1003 gui_mch_stop_blink();
1004
1005 return TRUE;
1006}
1007
1008
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009/*
1010 * Translate a GDK key value to UTF-8 independently of the current locale.
1011 * The output is written to string, which must have room for at least 6 bytes
1012 * plus the NUL terminator. Returns the length in bytes.
1013 *
1014 * This function is used in the GTK+ 2 GUI only. The GTK+ 1 code makes use
1015 * of GdkEventKey::string instead. But event->string is evil; see here why:
1016 * http://developer.gnome.org/doc/API/2.0/gdk/gdk-Event-Structures.html#GdkEventKey
1017 */
1018 static int
1019keyval_to_string(unsigned int keyval, unsigned int state, char_u *string)
1020{
1021 int len;
1022 guint32 uc;
1023
1024 uc = gdk_keyval_to_unicode(keyval);
1025 if (uc != 0)
1026 {
1027 /* Check for CTRL-foo */
1028 if ((state & GDK_CONTROL_MASK) && uc >= 0x20 && uc < 0x80)
1029 {
1030 /* These mappings look arbitrary at the first glance, but in fact
1031 * resemble quite exactly the behaviour of the GTK+ 1.2 GUI on my
1032 * machine. The only difference is BS vs. DEL for CTRL-8 (makes
1033 * more sense and is consistent with usual terminal behaviour). */
1034 if (uc >= '@')
1035 string[0] = uc & 0x1F;
1036 else if (uc == '2')
1037 string[0] = NUL;
1038 else if (uc >= '3' && uc <= '7')
1039 string[0] = uc ^ 0x28;
1040 else if (uc == '8')
1041 string[0] = BS;
1042 else if (uc == '?')
1043 string[0] = DEL;
1044 else
1045 string[0] = uc;
1046 len = 1;
1047 }
1048 else
1049 {
1050 /* Translate a normal key to UTF-8. This doesn't work for dead
1051 * keys of course, you _have_ to use an input method for that. */
1052 len = utf_char2bytes((int)uc, string);
1053 }
1054 }
1055 else
1056 {
1057 /* Translate keys which are represented by ASCII control codes in Vim.
1058 * There are only a few of those; most control keys are translated to
1059 * special terminal-like control sequences. */
1060 len = 1;
1061 switch (keyval)
1062 {
1063 case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab:
1064 string[0] = TAB;
1065 break;
1066 case GDK_Linefeed:
1067 string[0] = NL;
1068 break;
1069 case GDK_Return: case GDK_ISO_Enter: case GDK_3270_Enter:
1070 string[0] = CAR;
1071 break;
1072 case GDK_Escape:
1073 string[0] = ESC;
1074 break;
1075 default:
1076 len = 0;
1077 break;
1078 }
1079 }
1080 string[len] = NUL;
1081
1082 return len;
1083}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001085 static int
1086modifiers_gdk2vim(guint state)
1087{
1088 int modifiers = 0;
1089
1090 if (state & GDK_SHIFT_MASK)
1091 modifiers |= MOD_MASK_SHIFT;
1092 if (state & GDK_CONTROL_MASK)
1093 modifiers |= MOD_MASK_CTRL;
1094 if (state & GDK_MOD1_MASK)
1095 modifiers |= MOD_MASK_ALT;
Bram Moolenaar580061a2010-08-13 13:57:13 +02001096#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001097 if (state & GDK_SUPER_MASK)
1098 modifiers |= MOD_MASK_META;
1099#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001100 if (state & GDK_MOD4_MASK)
1101 modifiers |= MOD_MASK_META;
1102
1103 return modifiers;
1104}
1105
1106 static int
1107modifiers_gdk2mouse(guint state)
1108{
1109 int modifiers = 0;
1110
1111 if (state & GDK_SHIFT_MASK)
1112 modifiers |= MOUSE_SHIFT;
1113 if (state & GDK_CONTROL_MASK)
1114 modifiers |= MOUSE_CTRL;
1115 if (state & GDK_MOD1_MASK)
1116 modifiers |= MOUSE_ALT;
1117
1118 return modifiers;
1119}
1120
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121/*
1122 * Main keyboard handler:
1123 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001125key_press_event(GtkWidget *widget UNUSED,
1126 GdkEventKey *event,
1127 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128{
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001129 /* For GTK+ 2 we know for sure how large the string might get.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 * (That is, up to 6 bytes + NUL + CSI escapes + safety measure.) */
1131 char_u string[32], string2[32];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 guint key_sym;
1133 int len;
1134 int i;
1135 int modifiers;
1136 int key;
1137 guint state;
1138 char_u *s, *d;
1139
Bram Moolenaar98921892016-02-23 17:14:37 +01001140#if GTK_CHECK_VERSION(3,0,0)
1141 is_key_pressed = TRUE;
1142 gui_mch_stop_blink();
1143#endif
1144
Bram Moolenaar20892c12011-06-26 04:49:00 +02001145 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 key_sym = event->keyval;
1147 state = event->state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148
1149#ifdef FEAT_XIM
1150 if (xim_queue_key_press_event(event, TRUE))
1151 return TRUE;
1152#endif
1153
1154#ifdef FEAT_HANGULIN
1155 if (key_sym == GDK_space && (state & GDK_SHIFT_MASK))
1156 {
1157 hangul_input_state_toggle();
1158 return TRUE;
1159 }
1160#endif
1161
1162#ifdef SunXK_F36
1163 /*
1164 * These keys have bogus lookup strings, and trapping them here is
1165 * easier than trying to XRebindKeysym() on them with every possible
1166 * combination of modifiers.
1167 */
1168 if (key_sym == SunXK_F36 || key_sym == SunXK_F37)
1169 len = 0;
1170 else
1171#endif
1172 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 len = keyval_to_string(key_sym, state, string2);
1174
1175 /* Careful: convert_input() doesn't handle the NUL character.
1176 * No need to convert pure ASCII anyway, thus the len > 1 check. */
1177 if (len > 1 && input_conv.vc_type != CONV_NONE)
1178 len = convert_input(string2, len, sizeof(string2));
1179
1180 s = string2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 d = string;
1182 for (i = 0; i < len; ++i)
1183 {
1184 *d++ = s[i];
1185 if (d[-1] == CSI && d + 2 < string + sizeof(string))
1186 {
1187 /* Turn CSI into K_CSI. */
1188 *d++ = KS_EXTRA;
1189 *d++ = (int)KE_CSI;
1190 }
1191 }
1192 len = d - string;
1193 }
1194
1195 /* Shift-Tab results in Left_Tab, but we want <S-Tab> */
1196 if (key_sym == GDK_ISO_Left_Tab)
1197 {
1198 key_sym = GDK_Tab;
1199 state |= GDK_SHIFT_MASK;
1200 }
1201
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202#ifdef FEAT_MENU
1203 /* If there is a menu and 'wak' is "yes", or 'wak' is "menu" and the key
1204 * is a menu shortcut, we ignore everything with the ALT modifier. */
1205 if ((state & GDK_MOD1_MASK)
1206 && gui.menu_is_active
1207 && (*p_wak == 'y'
1208 || (*p_wak == 'm'
1209 && len == 1
1210 && gui_is_menu_shortcut(string[0]))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 /* For GTK2 we return false to signify that we haven't handled the
1212 * keypress, so that gtk will handle the mnemonic or accelerator. */
1213 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214#endif
1215
1216 /* Check for Alt/Meta key (Mod1Mask), but not for a BS, DEL or character
1217 * that already has the 8th bit set.
1218 * Don't do this for <S-M-Tab>, that should become K_S_TAB with ALT.
1219 * Don't do this for double-byte encodings, it turns the char into a lead
1220 * byte. */
1221 if (len == 1
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001222 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001223#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001224 || (state & GDK_SUPER_MASK)
1225#endif
1226 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 && !(key_sym == GDK_BackSpace || key_sym == GDK_Delete)
1228 && (string[0] & 0x80) == 0
1229 && !(key_sym == GDK_Tab && (state & GDK_SHIFT_MASK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 )
1232 {
1233 string[0] |= 0x80;
1234 state &= ~GDK_MOD1_MASK; /* don't use it again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 if (enc_utf8) /* convert to utf-8 */
1236 {
1237 string[1] = string[0] & 0xbf;
1238 string[0] = ((unsigned)string[0] >> 6) + 0xc0;
1239 if (string[1] == CSI)
1240 {
1241 string[2] = KS_EXTRA;
1242 string[3] = (int)KE_CSI;
1243 len = 4;
1244 }
1245 else
1246 len = 2;
1247 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 }
1249
1250 /* Check for special keys. Also do this when len == 1 (key has an ASCII
1251 * value) to detect backspace, delete and keypad keys. */
1252 if (len == 0 || len == 1)
1253 {
1254 for (i = 0; special_keys[i].key_sym != 0; i++)
1255 {
1256 if (special_keys[i].key_sym == key_sym)
1257 {
1258 string[0] = CSI;
1259 string[1] = special_keys[i].code0;
1260 string[2] = special_keys[i].code1;
1261 len = -3;
1262 break;
1263 }
1264 }
1265 }
1266
1267 if (len == 0) /* Unrecognized key */
1268 return TRUE;
1269
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 /* Special keys (and a few others) may have modifiers. Also when using a
1271 * double-byte encoding (can't set the 8th bit). */
1272 if (len == -3 || key_sym == GDK_space || key_sym == GDK_Tab
1273 || key_sym == GDK_Return || key_sym == GDK_Linefeed
1274 || key_sym == GDK_Escape || key_sym == GDK_KP_Tab
1275 || key_sym == GDK_ISO_Enter || key_sym == GDK_3270_Enter
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001276 || (enc_dbcs && len == 1 && ((state & GDK_MOD1_MASK)
Bram Moolenaar35f330c2010-08-15 13:53:58 +02001277#if GTK_CHECK_VERSION(2,10,0)
Bram Moolenaar30bb4142010-05-17 22:07:15 +02001278 || (state & GDK_SUPER_MASK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279#endif
Bram Moolenaar182c5be2010-06-25 05:37:59 +02001280 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001282 modifiers = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283
1284 /*
1285 * For some keys a shift modifier is translated into another key
1286 * code.
1287 */
1288 if (len == -3)
1289 key = TO_SPECIAL(string[1], string[2]);
1290 else
1291 key = string[0];
1292
1293 key = simplify_key(key, &modifiers);
1294 if (key == CSI)
1295 key = K_CSI;
1296 if (IS_SPECIAL(key))
1297 {
1298 string[0] = CSI;
1299 string[1] = K_SECOND(key);
1300 string[2] = K_THIRD(key);
1301 len = 3;
1302 }
1303 else
1304 {
1305 string[0] = key;
1306 len = 1;
1307 }
1308
1309 if (modifiers != 0)
1310 {
1311 string2[0] = CSI;
1312 string2[1] = KS_MODIFIER;
1313 string2[2] = modifiers;
1314 add_to_input_buf(string2, 3);
1315 }
1316 }
1317
1318 if (len == 1 && ((string[0] == Ctrl_C && ctrl_c_interrupts)
1319 || (string[0] == intr_char && intr_char != Ctrl_C)))
1320 {
1321 trash_input_buf();
1322 got_int = TRUE;
1323 }
1324
1325 add_to_input_buf(string, len);
1326
1327 /* blank out the pointer if necessary */
1328 if (p_mh)
1329 gui_mch_mousehide(TRUE);
1330
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 return TRUE;
1332}
1333
Bram Moolenaar98921892016-02-23 17:14:37 +01001334#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001336key_release_event(GtkWidget *widget UNUSED,
1337 GdkEventKey *event,
1338 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339{
Bram Moolenaar98921892016-02-23 17:14:37 +01001340# if GTK_CHECK_VERSION(3,0,0)
1341 is_key_pressed = FALSE;
1342 gui_mch_start_blink();
1343# endif
1344# if defined(FEAT_XIM)
Bram Moolenaar20892c12011-06-26 04:49:00 +02001345 gui.event_time = event->time;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 /*
1347 * GTK+ 2 input methods may do fancy stuff on key release events too.
1348 * With the default IM for instance, you can enter any UCS code point
1349 * by holding down CTRL-SHIFT and typing hexadecimal digits.
1350 */
1351 return xim_queue_key_press_event(event, FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01001352# else
1353 return TRUE;
1354# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355}
1356#endif
1357
1358
1359/****************************************************************************
1360 * Selection handlers:
1361 */
1362
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001364selection_clear_event(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 GdkEventSelection *event,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001366 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367{
1368 if (event->selection == clip_plus.gtk_sel_atom)
1369 clip_lose_selection(&clip_plus);
1370 else
1371 clip_lose_selection(&clip_star);
1372
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 return TRUE;
1374}
1375
1376#define RS_NONE 0 /* selection_received_cb() not called yet */
1377#define RS_OK 1 /* selection_received_cb() called and OK */
1378#define RS_FAIL 2 /* selection_received_cb() called and failed */
1379static int received_selection = RS_NONE;
1380
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001382selection_received_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 GtkSelectionData *data,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001384 guint time_ UNUSED,
1385 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386{
1387 VimClipboard *cbd;
1388 char_u *text;
1389 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 guchar *tmpbuf_utf8 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 int len;
Bram Moolenaard44347f2011-06-19 01:14:29 +02001392 int motion_type = MAUTO;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393
Bram Moolenaar98921892016-02-23 17:14:37 +01001394#if GTK_CHECK_VERSION(3,0,0)
1395 if (gtk_selection_data_get_selection(data) == clip_plus.gtk_sel_atom)
1396#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 if (data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001398#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 cbd = &clip_plus;
1400 else
1401 cbd = &clip_star;
1402
Bram Moolenaar98921892016-02-23 17:14:37 +01001403#if GTK_CHECK_VERSION(3,0,0)
1404 text = (char_u *)gtk_selection_data_get_data(data);
1405 len = gtk_selection_data_get_length(data);
1406#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 text = (char_u *)data->data;
1408 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01001409#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410
1411 if (text == NULL || len <= 0)
1412 {
1413 received_selection = RS_FAIL;
1414 /* clip_free_selection(cbd); ??? */
1415
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416 return;
1417 }
1418
Bram Moolenaar98921892016-02-23 17:14:37 +01001419#if GTK_CHECK_VERSION(3,0,0)
1420 if (gtk_selection_data_get_data_type(data) == vim_atom)
1421#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 if (data->type == vim_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001423#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 {
1425 motion_type = *text++;
1426 --len;
1427 }
Bram Moolenaar98921892016-02-23 17:14:37 +01001428#if GTK_CHECK_VERSION(3,0,0)
1429 else if (gtk_selection_data_get_data_type(data) == vimenc_atom)
1430#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 else if (data->type == vimenc_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001432#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 {
1434 char_u *enc;
1435 vimconv_T conv;
1436
1437 motion_type = *text++;
1438 --len;
1439
1440 enc = text;
1441 text += STRLEN(text) + 1;
1442 len -= text - enc;
1443
1444 /* If the encoding of the text is different from 'encoding', attempt
1445 * converting it. */
1446 conv.vc_type = CONV_NONE;
1447 convert_setup(&conv, enc, p_enc);
1448 if (conv.vc_type != CONV_NONE)
1449 {
1450 tmpbuf = string_convert(&conv, text, &len);
1451 if (tmpbuf != NULL)
1452 text = tmpbuf;
1453 convert_setup(&conv, NULL, NULL);
1454 }
1455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457 /* gtk_selection_data_get_text() handles all the nasty details
1458 * and targets and encodings etc. This rocks so hard. */
1459 else
1460 {
1461 tmpbuf_utf8 = gtk_selection_data_get_text(data);
1462 if (tmpbuf_utf8 != NULL)
1463 {
1464 len = STRLEN(tmpbuf_utf8);
1465 if (input_conv.vc_type != CONV_NONE)
1466 {
1467 tmpbuf = string_convert(&input_conv, tmpbuf_utf8, &len);
1468 if (tmpbuf != NULL)
1469 text = tmpbuf;
1470 }
1471 else
1472 text = tmpbuf_utf8;
1473 }
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001474 else if (len >= 2 && text[0] == 0xff && text[1] == 0xfe)
1475 {
1476 vimconv_T conv;
1477
1478 /* UTF-16, we get this for HTML */
1479 conv.vc_type = CONV_NONE;
1480 convert_setup_ext(&conv, (char_u *)"utf-16le", FALSE, p_enc, TRUE);
1481
1482 if (conv.vc_type != CONV_NONE)
1483 {
1484 text += 2;
1485 len -= 2;
1486 tmpbuf = string_convert(&conv, text, &len);
1487 convert_setup(&conv, NULL, NULL);
1488 }
1489 if (tmpbuf != NULL)
1490 text = tmpbuf;
1491 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001494 /* Chop off any trailing NUL bytes. OpenOffice sends these. */
Bram Moolenaara76638f2010-06-05 12:49:46 +02001495 while (len > 0 && text[len - 1] == NUL)
1496 --len;
1497
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 clip_yank_selection(motion_type, text, (long)len, cbd);
1499 received_selection = RS_OK;
1500 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501 g_free(tmpbuf_utf8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502}
1503
1504/*
1505 * Prepare our selection data for passing it to the external selection
1506 * client.
1507 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001509selection_get_cb(GtkWidget *widget UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 GtkSelectionData *selection_data,
1511 guint info,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001512 guint time_ UNUSED,
1513 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514{
1515 char_u *string;
1516 char_u *tmpbuf;
1517 long_u tmplen;
1518 int length;
1519 int motion_type;
1520 GdkAtom type;
1521 VimClipboard *cbd;
1522
Bram Moolenaar98921892016-02-23 17:14:37 +01001523#if GTK_CHECK_VERSION(3,0,0)
1524 if (gtk_selection_data_get_selection(selection_data)
1525 == clip_plus.gtk_sel_atom)
1526#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 if (selection_data->selection == clip_plus.gtk_sel_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01001528#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 cbd = &clip_plus;
1530 else
1531 cbd = &clip_star;
1532
1533 if (!cbd->owned)
1534 return; /* Shouldn't ever happen */
1535
1536 if (info != (guint)TARGET_STRING
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001537 && (!clip_html || info != (guint)TARGET_HTML)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 && info != (guint)TARGET_UTF8_STRING
1539 && info != (guint)TARGET_VIMENC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 && info != (guint)TARGET_VIM
1541 && info != (guint)TARGET_COMPOUND_TEXT
1542 && info != (guint)TARGET_TEXT)
1543 return;
1544
1545 /* get the selection from the '*'/'+' register */
1546 clip_get_selection(cbd);
1547
1548 motion_type = clip_convert_selection(&string, &tmplen, cbd);
1549 if (motion_type < 0 || string == NULL)
1550 return;
1551 /* Due to int arguments we can't handle more than G_MAXINT. Also
1552 * reserve one extra byte for NUL or the motion type; just in case.
1553 * (Not that pasting 2G of text is ever going to work, but... ;-) */
1554 length = MIN(tmplen, (long_u)(G_MAXINT - 1));
1555
1556 if (info == (guint)TARGET_VIM)
1557 {
1558 tmpbuf = alloc((unsigned)length + 1);
1559 if (tmpbuf != NULL)
1560 {
1561 tmpbuf[0] = motion_type;
1562 mch_memmove(tmpbuf + 1, string, (size_t)length);
1563 }
1564 /* For our own format, the first byte contains the motion type */
1565 ++length;
1566 vim_free(string);
1567 string = tmpbuf;
1568 type = vim_atom;
1569 }
1570
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001571 else if (info == (guint)TARGET_HTML)
1572 {
1573 vimconv_T conv;
1574
1575 /* Since we get utf-16, we probably should set it as well. */
1576 conv.vc_type = CONV_NONE;
1577 convert_setup_ext(&conv, p_enc, TRUE, (char_u *)"utf-16le", FALSE);
1578 if (conv.vc_type != CONV_NONE)
1579 {
1580 tmpbuf = string_convert(&conv, string, &length);
1581 convert_setup(&conv, NULL, NULL);
1582 vim_free(string);
1583 string = tmpbuf;
1584 }
1585
1586 /* Prepend the BOM: "fffe" */
1587 if (string != NULL)
1588 {
1589 tmpbuf = alloc(length + 2);
1590 tmpbuf[0] = 0xff;
1591 tmpbuf[1] = 0xfe;
1592 mch_memmove(tmpbuf + 2, string, (size_t)length);
1593 vim_free(string);
1594 string = tmpbuf;
1595 length += 2;
1596
Bram Moolenaar98921892016-02-23 17:14:37 +01001597#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001598 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001599 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001600 selection_data->type = selection_data->target;
1601 selection_data->format = 16; /* 16 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001602#endif
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00001603 gtk_selection_data_set(selection_data, html_atom, 16,
1604 string, length);
1605 vim_free(string);
1606 }
1607 return;
1608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 else if (info == (guint)TARGET_VIMENC)
1610 {
1611 int l = STRLEN(p_enc);
1612
1613 /* contents: motion_type 'encoding' NUL text */
1614 tmpbuf = alloc((unsigned)length + l + 2);
1615 if (tmpbuf != NULL)
1616 {
1617 tmpbuf[0] = motion_type;
1618 STRCPY(tmpbuf + 1, p_enc);
1619 mch_memmove(tmpbuf + l + 2, string, (size_t)length);
1620 }
1621 length += l + 2;
1622 vim_free(string);
1623 string = tmpbuf;
1624 type = vimenc_atom;
1625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 /* gtk_selection_data_set_text() handles everything for us. This is
1628 * so easy and simple and cool, it'd be insane not to use it. */
1629 else
1630 {
1631 if (output_conv.vc_type != CONV_NONE)
1632 {
1633 tmpbuf = string_convert(&output_conv, string, &length);
1634 vim_free(string);
1635 if (tmpbuf == NULL)
1636 return;
1637 string = tmpbuf;
1638 }
1639 /* Validate the string to avoid runtime warnings */
1640 if (g_utf8_validate((const char *)string, (gssize)length, NULL))
1641 {
1642 gtk_selection_data_set_text(selection_data,
1643 (const char *)string, length);
1644 }
1645 vim_free(string);
1646 return;
1647 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648
1649 if (string != NULL)
1650 {
Bram Moolenaar98921892016-02-23 17:14:37 +01001651#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01001652 /* Looks redundant even for GTK2 because these values are
Bram Moolenaar98921892016-02-23 17:14:37 +01001653 * overwritten by gtk_selection_data_set() that follows. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 selection_data->type = selection_data->target;
1655 selection_data->format = 8; /* 8 bits per char */
Bram Moolenaar98921892016-02-23 17:14:37 +01001656#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 gtk_selection_data_set(selection_data, type, 8, string, length);
1658 vim_free(string);
1659 }
1660}
1661
1662/*
Bram Moolenaar29695702012-05-18 17:03:18 +02001663 * Check if the GUI can be started. Called before gvimrc is sourced and
1664 * before fork().
1665 * Return OK or FAIL.
1666 */
1667 int
Bram Moolenaar717e1962016-08-10 21:28:44 +02001668gui_mch_early_init_check(int give_message)
Bram Moolenaar29695702012-05-18 17:03:18 +02001669{
1670 char_u *p;
1671
1672 /* Guess that when $DISPLAY isn't set the GUI can't start. */
1673 p = mch_getenv((char_u *)"DISPLAY");
1674 if (p == NULL || *p == NUL)
1675 {
1676 gui.dying = TRUE;
Bram Moolenaar717e1962016-08-10 21:28:44 +02001677 if (give_message)
1678 EMSG(_((char *)e_opendisp));
Bram Moolenaar29695702012-05-18 17:03:18 +02001679 return FAIL;
1680 }
1681 return OK;
1682}
1683
1684/*
1685 * Check if the GUI can be started. Called before gvimrc is sourced but after
1686 * fork().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 * Return OK or FAIL.
1688 */
1689 int
1690gui_mch_init_check(void)
1691{
Bram Moolenaar3a466a82016-01-19 17:47:25 +01001692#ifdef USE_GRESOURCE
1693 static int res_registered = FALSE;
1694
1695 if (!res_registered)
1696 {
1697 /* Call this function in the GUI process; otherwise, the resources
1698 * won't be available. Don't call it twice. */
1699 res_registered = TRUE;
1700 gui_gtk_register_resource();
1701 }
1702#endif
1703
Bram Moolenaarf80663f2016-04-05 21:56:06 +02001704#if GTK_CHECK_VERSION(3,10,0)
1705 /* Vim currently assumes that Gtk means X11, so it cannot use native Gtk
1706 * support for other backends such as Wayland. */
1707 gdk_set_allowed_backends ("x11");
1708#endif
1709
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710#ifdef FEAT_GUI_GNOME
1711 if (gtk_socket_id == 0)
1712 using_gnome = 1;
1713#endif
1714
Bram Moolenaar8dd79012013-05-21 12:52:04 +02001715 /* This defaults to argv[0], but we want it to match the name of the
1716 * shipped gvim.desktop so that Vim's windows can be associated with this
1717 * file. */
1718 g_set_prgname("gvim");
1719
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 /* Don't use gtk_init() or gnome_init(), it exits on failure. */
1721 if (!gtk_init_check(&gui_argc, &gui_argv))
1722 {
1723 gui.dying = TRUE;
Bram Moolenaarc93e7912008-07-08 10:46:08 +00001724 EMSG(_((char *)e_opendisp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 return FAIL;
1726 }
1727
1728 return OK;
1729}
1730
1731
1732/****************************************************************************
1733 * Mouse handling callbacks
1734 */
1735
1736
1737static guint mouse_click_timer = 0;
1738static int mouse_timed_out = TRUE;
1739
1740/*
1741 * Timer used to recognize multiple clicks of the mouse button
1742 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001743#if GTK_CHECK_VERSION(3,0,0)
1744 static gboolean
1745#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748mouse_click_timer_cb(gpointer data)
1749{
1750 /* we don't use this information currently */
1751 int *timed_out = (int *) data;
1752
1753 *timed_out = TRUE;
1754 return FALSE; /* don't happen again */
1755}
1756
1757static guint motion_repeat_timer = 0;
1758static int motion_repeat_offset = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01001759#ifdef GTK_DEST_DEFAULT_ALL
1760static gboolean motion_repeat_timer_cb(gpointer);
1761#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762static gint motion_repeat_timer_cb(gpointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01001763#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764
1765 static void
1766process_motion_notify(int x, int y, GdkModifierType state)
1767{
1768 int button;
1769 int_u vim_modifiers;
Bram Moolenaar98921892016-02-23 17:14:37 +01001770#if GTK_CHECK_VERSION(3,0,0)
1771 GtkAllocation allocation;
1772#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773
1774 button = (state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1775 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1776 GDK_BUTTON5_MASK))
1777 ? MOUSE_DRAG : ' ';
1778
1779 /* If our pointer is currently hidden, then we should show it. */
1780 gui_mch_mousehide(FALSE);
1781
1782 /* Just moving the rodent above the drawing area without any button
1783 * being pressed. */
1784 if (button != MOUSE_DRAG)
1785 {
1786 gui_mouse_moved(x, y);
1787 return;
1788 }
1789
1790 /* translate modifier coding between the main engine and GTK */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001791 vim_modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792
Bram Moolenaar49325942007-05-10 19:19:59 +00001793 /* inform the editor engine about the occurrence of this event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 gui_send_mouse_event(button, x, y, FALSE, vim_modifiers);
1795
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 /*
1797 * Auto repeat timer handling.
1798 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001799#if GTK_CHECK_VERSION(3,0,0)
1800 gtk_widget_get_allocation(gui.drawarea, &allocation);
1801
1802 if (x < 0 || y < 0
1803 || x >= allocation.width
1804 || y >= allocation.height)
1805#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 if (x < 0 || y < 0
1807 || x >= gui.drawarea->allocation.width
1808 || y >= gui.drawarea->allocation.height)
Bram Moolenaar98921892016-02-23 17:14:37 +01001809#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 {
1811
1812 int dx;
1813 int dy;
1814 int offshoot;
1815 int delay = 10;
1816
1817 /* Calculate the maximal distance of the cursor from the drawing area.
1818 * (offshoot can't become negative here!).
1819 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001820#if GTK_CHECK_VERSION(3,0,0)
1821 dx = x < 0 ? -x : x - allocation.width;
1822 dy = y < 0 ? -y : y - allocation.height;
1823#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 dx = x < 0 ? -x : x - gui.drawarea->allocation.width;
1825 dy = y < 0 ? -y : y - gui.drawarea->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01001826#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827
1828 offshoot = dx > dy ? dx : dy;
1829
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001830 /* Make a linearly decaying timer delay with a threshold of 5 at a
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 * distance of 127 pixels from the main window.
1832 *
1833 * One could think endlessly about the most ergonomic variant here.
1834 * For example it could make sense to calculate the distance from the
1835 * drags start instead...
1836 *
1837 * Maybe a parabolic interpolation would suite us better here too...
1838 */
1839 if (offshoot > 127)
1840 {
1841 /* 5 appears to be somehow near to my perceptual limits :-). */
1842 delay = 5;
1843 }
1844 else
1845 {
1846 delay = (130 * (127 - offshoot)) / 127 + 5;
1847 }
1848
1849 /* shoot again */
1850 if (!motion_repeat_timer)
Bram Moolenaar98921892016-02-23 17:14:37 +01001851#if GTK_CHECK_VERSION(3,0,0)
1852 motion_repeat_timer = g_timeout_add((guint)delay,
1853 motion_repeat_timer_cb, NULL);
1854#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 motion_repeat_timer = gtk_timeout_add((guint32)delay,
1856 motion_repeat_timer_cb, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01001857#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 }
1859}
1860
Bram Moolenaar98921892016-02-23 17:14:37 +01001861#if GTK_CHECK_VERSION(3,0,0)
1862 static GdkDevice *
1863gui_gtk_get_pointer_device(GtkWidget *widget)
1864{
1865 GdkWindow * const win = gtk_widget_get_window(widget);
1866 GdkDisplay * const dpy = gdk_window_get_display(win);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001867# if GTK_CHECK_VERSION(3,20,0)
1868 GdkSeat * const seat = gdk_display_get_default_seat(dpy);
1869 return gdk_seat_get_pointer(seat);
1870# else
Bram Moolenaar98921892016-02-23 17:14:37 +01001871 GdkDeviceManager * const mngr = gdk_display_get_device_manager(dpy);
1872 return gdk_device_manager_get_client_pointer(mngr);
Bram Moolenaar30e12d22016-04-17 20:49:53 +02001873# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001874}
1875
1876 static GdkWindow *
1877gui_gtk_get_pointer(GtkWidget *widget,
1878 gint *x,
1879 gint *y,
1880 GdkModifierType *state)
1881{
1882 GdkWindow * const win = gtk_widget_get_window(widget);
1883 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1884 return gdk_window_get_device_position(win, dev , x, y, state);
1885}
1886
Bram Moolenaar2369c152016-03-04 23:08:25 +01001887# if defined(FEAT_GUI_TABLINE) || defined(PROTO)
Bram Moolenaar98921892016-02-23 17:14:37 +01001888 static GdkWindow *
1889gui_gtk_window_at_position(GtkWidget *widget,
1890 gint *x,
1891 gint *y)
1892{
1893 GdkDevice * const dev = gui_gtk_get_pointer_device(widget);
1894 return gdk_device_get_window_at_position(dev, x, y);
1895}
Bram Moolenaar2369c152016-03-04 23:08:25 +01001896# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01001897#endif
1898
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899/*
1900 * Timer used to recognize multiple clicks of the mouse button.
1901 */
Bram Moolenaar98921892016-02-23 17:14:37 +01001902#if GTK_CHECK_VERSION(3,0,0)
1903 static gboolean
1904#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01001906#endif
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001907motion_repeat_timer_cb(gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908{
1909 int x;
1910 int y;
1911 GdkModifierType state;
1912
Bram Moolenaar98921892016-02-23 17:14:37 +01001913#if GTK_CHECK_VERSION(3,0,0)
1914 gui_gtk_get_pointer(gui.drawarea, &x, &y, &state);
1915#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 gdk_window_get_pointer(gui.drawarea->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918
1919 if (!(state & (GDK_BUTTON1_MASK | GDK_BUTTON2_MASK |
1920 GDK_BUTTON3_MASK | GDK_BUTTON4_MASK |
1921 GDK_BUTTON5_MASK)))
1922 {
1923 motion_repeat_timer = 0;
1924 return FALSE;
1925 }
1926
1927 /* If there already is a mouse click in the input buffer, wait another
1928 * time (otherwise we would create a backlog of clicks) */
1929 if (vim_used_in_input_buf() > 10)
1930 return TRUE;
1931
1932 motion_repeat_timer = 0;
1933
1934 /*
1935 * Fake a motion event.
1936 * Trick: Pretend the mouse moved to the next character on every other
1937 * event, otherwise drag events will be discarded, because they are still
1938 * in the same character.
1939 */
1940 if (motion_repeat_offset)
1941 x += gui.char_width;
1942
1943 motion_repeat_offset = !motion_repeat_offset;
1944 process_motion_notify(x, y, state);
1945
1946 /* Don't happen again. We will get reinstalled in the synthetic event
1947 * if needed -- thus repeating should still work. */
1948 return FALSE;
1949}
1950
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001952motion_notify_event(GtkWidget *widget,
1953 GdkEventMotion *event,
1954 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955{
1956 if (event->is_hint)
1957 {
1958 int x;
1959 int y;
1960 GdkModifierType state;
1961
Bram Moolenaar98921892016-02-23 17:14:37 +01001962#if GTK_CHECK_VERSION(3,0,0)
1963 gui_gtk_get_pointer(widget, &x, &y, &state);
1964#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 gdk_window_get_pointer(widget->window, &x, &y, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01001966#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 process_motion_notify(x, y, state);
1968 }
1969 else
1970 {
1971 process_motion_notify((int)event->x, (int)event->y,
1972 (GdkModifierType)event->state);
1973 }
1974
1975 return TRUE; /* handled */
1976}
1977
1978
1979/*
1980 * Mouse button handling. Note please that we are capturing multiple click's
1981 * by our own timeout mechanism instead of the one provided by GTK+ itself.
1982 * This is due to the way the generic VIM code is recognizing multiple clicks.
1983 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00001985button_press_event(GtkWidget *widget,
1986 GdkEventButton *event,
1987 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988{
1989 int button;
1990 int repeated_click = FALSE;
1991 int x, y;
1992 int_u vim_modifiers;
1993
Bram Moolenaar20892c12011-06-26 04:49:00 +02001994 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02001995
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 /* Make sure we have focus now we've been selected */
Bram Moolenaar98921892016-02-23 17:14:37 +01001997#if GTK_CHECK_VERSION(3,0,0)
1998 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
1999#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002001#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 gtk_widget_grab_focus(widget);
2003
2004 /*
2005 * Don't let additional events about multiple clicks send by GTK to us
2006 * after the initial button press event confuse us.
2007 */
2008 if (event->type != GDK_BUTTON_PRESS)
2009 return FALSE;
2010
2011 x = event->x;
2012 y = event->y;
2013
2014 /* Handle multiple clicks */
2015 if (!mouse_timed_out && mouse_click_timer)
2016 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002017#if GTK_CHECK_VERSION(3,0,0)
2018 g_source_remove(mouse_click_timer);
2019#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 gtk_timeout_remove(mouse_click_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002021#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 mouse_click_timer = 0;
2023 repeated_click = TRUE;
2024 }
2025
2026 mouse_timed_out = FALSE;
Bram Moolenaar98921892016-02-23 17:14:37 +01002027#if GTK_CHECK_VERSION(3,0,0)
2028 mouse_click_timer = g_timeout_add((guint)p_mouset,
2029 mouse_click_timer_cb, &mouse_timed_out);
2030#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 mouse_click_timer = gtk_timeout_add((guint32)p_mouset,
2032 mouse_click_timer_cb, &mouse_timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01002033#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034
2035 switch (event->button)
2036 {
Bram Moolenaar88e484b2015-11-24 15:38:44 +01002037 /* Keep in sync with gui_x11.c.
2038 * Buttons 4-7 are handled in scroll_event() */
2039 case 1: button = MOUSE_LEFT; break;
2040 case 2: button = MOUSE_MIDDLE; break;
2041 case 3: button = MOUSE_RIGHT; break;
2042 case 8: button = MOUSE_X1; break;
2043 case 9: button = MOUSE_X2; break;
2044 default:
2045 return FALSE; /* Unknown button */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 }
2047
2048#ifdef FEAT_XIM
2049 /* cancel any preediting */
2050 if (im_is_preediting())
2051 xim_reset();
2052#endif
2053
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002054 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055
2056 gui_send_mouse_event(button, x, y, repeated_click, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057
2058 return TRUE;
2059}
2060
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061/*
Bram Moolenaar182c5be2010-06-25 05:37:59 +02002062 * GTK+ 2 abstracts scrolling via the GdkEventScroll.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002065scroll_event(GtkWidget *widget,
2066 GdkEventScroll *event,
2067 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068{
2069 int button;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002070 int_u vim_modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071
Bram Moolenaar98921892016-02-23 17:14:37 +01002072#if GTK_CHECK_VERSION(3,0,0)
2073 if (gtk_socket_id != 0 && !gtk_widget_has_focus(widget))
2074#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 if (gtk_socket_id != 0 && !GTK_WIDGET_HAS_FOCUS(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01002076#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 gtk_widget_grab_focus(widget);
2078
2079 switch (event->direction)
2080 {
2081 case GDK_SCROLL_UP:
2082 button = MOUSE_4;
2083 break;
2084 case GDK_SCROLL_DOWN:
2085 button = MOUSE_5;
2086 break;
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002087 case GDK_SCROLL_LEFT:
2088 button = MOUSE_7;
2089 break;
2090 case GDK_SCROLL_RIGHT:
2091 button = MOUSE_6;
2092 break;
2093 default: /* This shouldn't happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 return FALSE;
2095 }
2096
2097# ifdef FEAT_XIM
2098 /* cancel any preediting */
2099 if (im_is_preediting())
2100 xim_reset();
2101# endif
2102
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002103 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104
2105 gui_send_mouse_event(button, (int)event->x, (int)event->y,
2106 FALSE, vim_modifiers);
2107
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 return TRUE;
2109}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110
2111
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002113button_release_event(GtkWidget *widget UNUSED,
2114 GdkEventButton *event,
2115 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116{
2117 int x, y;
2118 int_u vim_modifiers;
2119
Bram Moolenaar20892c12011-06-26 04:49:00 +02002120 gui.event_time = event->time;
Bram Moolenaar7cfea752010-06-22 06:07:12 +02002121
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 /* Remove any motion "machine gun" timers used for automatic further
2123 extension of allocation areas if outside of the applications window
2124 area .*/
2125 if (motion_repeat_timer)
2126 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002127#if GTK_CHECK_VERSION(3,0,0)
2128 g_source_remove(motion_repeat_timer);
2129#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 gtk_timeout_remove(motion_repeat_timer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 motion_repeat_timer = 0;
2133 }
2134
2135 x = event->x;
2136 y = event->y;
2137
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002138 vim_modifiers = modifiers_gdk2mouse(event->state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139
2140 gui_send_mouse_event(MOUSE_RELEASE, x, y, FALSE, vim_modifiers);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141
2142 return TRUE;
2143}
2144
2145
2146#ifdef FEAT_DND
2147/****************************************************************************
2148 * Drag aNd Drop support handlers.
2149 */
2150
2151/*
2152 * Count how many items there may be and separate them with a NUL.
2153 * Apparently the items are separated with \r\n. This is not documented,
2154 * thus be careful not to go past the end. Also allow separation with
2155 * NUL characters.
2156 */
2157 static int
2158count_and_decode_uri_list(char_u *out, char_u *raw, int len)
2159{
2160 int i;
2161 char_u *p = out;
2162 int count = 0;
2163
2164 for (i = 0; i < len; ++i)
2165 {
2166 if (raw[i] == NUL || raw[i] == '\n' || raw[i] == '\r')
2167 {
2168 if (p > out && p[-1] != NUL)
2169 {
2170 ++count;
2171 *p++ = NUL;
2172 }
2173 }
2174 else if (raw[i] == '%' && i + 2 < len && hexhex2nr(raw + i + 1) > 0)
2175 {
2176 *p++ = hexhex2nr(raw + i + 1);
2177 i += 2;
2178 }
2179 else
2180 *p++ = raw[i];
2181 }
2182 if (p > out && p[-1] != NUL)
2183 {
2184 *p = NUL; /* last item didn't have \r or \n */
2185 ++count;
2186 }
2187 return count;
2188}
2189
2190/*
2191 * Parse NUL separated "src" strings. Make it an array "outlist" form. On
2192 * this process, URI which protocol is not "file:" are removed. Return
2193 * length of array (less than "max").
2194 */
2195 static int
2196filter_uri_list(char_u **outlist, int max, char_u *src)
2197{
2198 int i, j;
2199
2200 for (i = j = 0; i < max; ++i)
2201 {
2202 outlist[i] = NULL;
2203 if (STRNCMP(src, "file:", 5) == 0)
2204 {
2205 src += 5;
2206 if (STRNCMP(src, "//localhost", 11) == 0)
2207 src += 11;
2208 while (src[0] == '/' && src[1] == '/')
2209 ++src;
2210 outlist[j++] = vim_strsave(src);
2211 }
2212 src += STRLEN(src) + 1;
2213 }
2214 return j;
2215}
2216
2217 static char_u **
2218parse_uri_list(int *count, char_u *data, int len)
2219{
2220 int n = 0;
2221 char_u *tmp = NULL;
Bram Moolenaar945ec092016-06-08 21:17:43 +02002222 char_u **array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223
2224 if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
2225 {
2226 n = count_and_decode_uri_list(tmp, data, len);
2227 if (n > 0 && (array = (char_u **)alloc(n * sizeof(char_u *))) != NULL)
2228 n = filter_uri_list(array, n, tmp);
2229 }
2230 vim_free(tmp);
2231 *count = n;
2232 return array;
2233}
2234
2235 static void
2236drag_handle_uri_list(GdkDragContext *context,
2237 GtkSelectionData *data,
2238 guint time_,
2239 GdkModifierType state,
2240 gint x,
2241 gint y)
2242{
2243 char_u **fnames;
2244 int nfiles = 0;
2245
Bram Moolenaar98921892016-02-23 17:14:37 +01002246# if GTK_CHECK_VERSION(3,0,0)
2247 fnames = parse_uri_list(&nfiles,
2248 (char_u *)gtk_selection_data_get_data(data),
2249 gtk_selection_data_get_length(data));
2250# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 fnames = parse_uri_list(&nfiles, data->data, data->length);
Bram Moolenaar98921892016-02-23 17:14:37 +01002252# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253
2254 if (fnames != NULL && nfiles > 0)
2255 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002256 int_u modifiers;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257
2258 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
2259
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002260 modifiers = modifiers_gdk2mouse(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261
2262 gui_handle_drop(x, y, modifiers, fnames, nfiles);
2263 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002264 else
2265 vim_free(fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266}
2267
2268 static void
2269drag_handle_text(GdkDragContext *context,
2270 GtkSelectionData *data,
2271 guint time_,
2272 GdkModifierType state)
2273{
2274 char_u dropkey[6] = {CSI, KS_MODIFIER, 0, CSI, KS_EXTRA, (char_u)KE_DROP};
2275 char_u *text;
2276 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 char_u *tmpbuf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278
Bram Moolenaar98921892016-02-23 17:14:37 +01002279# if GTK_CHECK_VERSION(3,0,0)
2280 text = (char_u *)gtk_selection_data_get_data(data);
2281 len = gtk_selection_data_get_length(data);
2282# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 text = data->data;
2284 len = data->length;
Bram Moolenaar98921892016-02-23 17:14:37 +01002285# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286
Bram Moolenaar98921892016-02-23 17:14:37 +01002287# if GTK_CHECK_VERSION(3,0,0)
2288 if (gtk_selection_data_get_data_type(data) == utf8_string_atom)
2289# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 if (data->type == utf8_string_atom)
Bram Moolenaar98921892016-02-23 17:14:37 +01002291# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 if (input_conv.vc_type != CONV_NONE)
2294 tmpbuf = string_convert(&input_conv, text, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 if (tmpbuf != NULL)
2296 text = tmpbuf;
2297 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298
2299 dnd_yank_drag_data(text, (long)len);
2300 gtk_drag_finish(context, TRUE, FALSE, time_); /* accept */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 vim_free(tmpbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002303 dropkey[2] = modifiers_gdk2vim(state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304
2305 if (dropkey[2] != 0)
2306 add_to_input_buf(dropkey, (int)sizeof(dropkey));
2307 else
2308 add_to_input_buf(dropkey + 3, (int)(sizeof(dropkey) - 3));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309}
2310
2311/*
2312 * DND receiver.
2313 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 static void
2315drag_data_received_cb(GtkWidget *widget,
2316 GdkDragContext *context,
2317 gint x,
2318 gint y,
2319 GtkSelectionData *data,
2320 guint info,
2321 guint time_,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002322 gpointer user_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323{
2324 GdkModifierType state;
2325
2326 /* Guard against trash */
Bram Moolenaar98921892016-02-23 17:14:37 +01002327# if GTK_CHECK_VERSION(3,0,0)
2328 const guchar * const data_data = gtk_selection_data_get_data(data);
2329 const gint data_length = gtk_selection_data_get_length(data);
2330 const gint data_format = gtk_selection_data_get_format(data);
2331
2332 if (data_data == NULL
2333 || data_length <= 0
2334 || data_format != 8
2335 || data_data[data_length] != '\0')
2336# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 if (data->data == NULL
2338 || data->length <= 0
2339 || data->format != 8
2340 || data->data[data->length] != '\0')
Bram Moolenaar98921892016-02-23 17:14:37 +01002341# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002342 {
2343 gtk_drag_finish(context, FALSE, FALSE, time_);
2344 return;
2345 }
2346
2347 /* Get the current modifier state for proper distinguishment between
2348 * different operations later. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002349#if GTK_CHECK_VERSION(3,0,0)
2350 gui_gtk_get_pointer(widget, NULL, NULL, &state);
2351# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 gdk_window_get_pointer(widget->window, NULL, NULL, &state);
Bram Moolenaar98921892016-02-23 17:14:37 +01002353# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354
2355 /* Not sure about the role of "text/plain" here... */
2356 if (info == (guint)TARGET_TEXT_URI_LIST)
2357 drag_handle_uri_list(context, data, time_, state, x, y);
2358 else
2359 drag_handle_text(context, data, time_, state);
2360
2361}
2362#endif /* FEAT_DND */
2363
2364
2365#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2366/*
2367 * GnomeClient interact callback. Check for unsaved buffers that cannot
2368 * be abandoned and pop up a dialog asking the user for confirmation if
2369 * necessary.
2370 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002372sm_client_check_changed_any(GnomeClient *client UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 gint key,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002374 GnomeDialogType type UNUSED,
2375 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376{
2377 cmdmod_T save_cmdmod;
2378 gboolean shutdown_cancelled;
2379
2380 save_cmdmod = cmdmod;
2381
2382# ifdef FEAT_BROWSE
2383 cmdmod.browse = TRUE;
2384# endif
2385# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2386 cmdmod.confirm = TRUE;
2387# endif
2388 /*
2389 * If there are changed buffers, present the user with
2390 * a dialog if possible, otherwise give an error message.
2391 */
Bram Moolenaar027387f2016-01-02 22:25:52 +01002392 shutdown_cancelled = check_changed_any(FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393
2394 exiting = FALSE;
2395 cmdmod = save_cmdmod;
2396 setcursor(); /* position the cursor */
2397 out_flush();
2398 /*
2399 * If the user hit the [Cancel] button the whole shutdown
2400 * will be cancelled. Wow, quite powerful feature (:
2401 */
2402 gnome_interaction_key_return(key, shutdown_cancelled);
2403}
2404
2405/*
2406 * Generate a script that can be used to restore the current editing session.
2407 * Save the value of v:this_session before running :mksession in order to make
2408 * automagic session save fully transparent. Return TRUE on success.
2409 */
2410 static int
2411write_session_file(char_u *filename)
2412{
2413 char_u *escaped_filename;
2414 char *mksession_cmdline;
2415 unsigned int save_ssop_flags;
2416 int failed;
2417
2418 /*
2419 * Build an ex command line to create a script that restores the current
2420 * session if executed. Escape the filename to avoid nasty surprises.
2421 */
2422 escaped_filename = vim_strsave_escaped(filename, escape_chars);
2423 if (escaped_filename == NULL)
2424 return FALSE;
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002425 mksession_cmdline = g_strconcat("mksession ", (char *)escaped_filename,
2426 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 vim_free(escaped_filename);
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002428
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 /*
2430 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
2431 * unpredictable effects when the session is saved automatically. Also,
2432 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
2433 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
2434 * enormously large if the GNOME session feature is used regularly.
2435 */
2436 save_ssop_flags = ssop_flags;
2437 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
Bram Moolenaardc3213d2007-06-19 16:03:50 +00002438 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439
2440 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
2441 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
2442 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
Bram Moolenaar485db9b2005-01-31 19:23:41 +00002443 do_unlet((char_u *)"Save_VV_this_session", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444
2445 ssop_flags = save_ssop_flags;
2446 g_free(mksession_cmdline);
Bram Moolenaar24dc2302014-05-13 20:19:58 +02002447
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 /*
2449 * Reopen the file and append a command to restore v:this_session,
2450 * as if this save never happened. This is to avoid conflicts with
2451 * the user's own sessions. FIXME: It's probably less hackish to add
2452 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
2453 */
2454 if (!failed)
2455 {
2456 FILE *fd;
2457
2458 fd = open_exfile(filename, TRUE, APPENDBIN);
2459
2460 failed = (fd == NULL
2461 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
2462 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
2463
2464 if (fd != NULL && fclose(fd) != 0)
2465 failed = TRUE;
2466
2467 if (failed)
2468 mch_remove(filename);
2469 }
2470
2471 return !failed;
2472}
2473
2474/*
2475 * "save_yourself" signal handler. Initiate an interaction to ask the user
2476 * for confirmation if necessary. Save the current editing session and tell
2477 * the session manager how to restart Vim.
2478 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 static gboolean
2480sm_client_save_yourself(GnomeClient *client,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002481 gint phase UNUSED,
2482 GnomeSaveStyle save_style UNUSED,
2483 gboolean shutdown UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 GnomeInteractStyle interact_style,
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002485 gboolean fast UNUSED,
2486 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487{
2488 static const char suffix[] = "-session.vim";
2489 char *session_file;
2490 unsigned int len;
2491 gboolean success;
2492
2493 /* Always request an interaction if possible. check_changed_any()
2494 * won't actually show a dialog unless any buffers have been modified.
2495 * There doesn't seem to be an obvious way to check that without
2496 * automatically firing the dialog. Anyway, it works just fine. */
2497 if (interact_style == GNOME_INTERACT_ANY)
2498 gnome_client_request_interaction(client, GNOME_DIALOG_NORMAL,
2499 &sm_client_check_changed_any,
2500 NULL);
2501 out_flush();
2502 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2503
2504 /* The path is unique for each session save. We do neither know nor care
2505 * which session script will actually be used later. This decision is in
2506 * the domain of the session manager. */
2507 session_file = gnome_config_get_real_path(
2508 gnome_client_get_config_prefix(client));
2509 len = strlen(session_file);
2510
2511 if (len > 0 && session_file[len-1] == G_DIR_SEPARATOR)
2512 --len; /* get rid of the superfluous trailing '/' */
2513
2514 session_file = g_renew(char, session_file, len + sizeof(suffix));
2515 memcpy(session_file + len, suffix, sizeof(suffix));
2516
2517 success = write_session_file((char_u *)session_file);
2518
2519 if (success)
2520 {
2521 const char *argv[8];
2522 int i;
2523
2524 /* Tell the session manager how to wipe out the stored session data.
2525 * This isn't as dangerous as it looks, don't worry :) session_file
2526 * is a unique absolute filename. Usually it'll be something like
2527 * `/home/user/.gnome2/vim-XXXXXX-session.vim'. */
2528 i = 0;
2529 argv[i++] = "rm";
2530 argv[i++] = session_file;
2531 argv[i] = NULL;
2532
2533 gnome_client_set_discard_command(client, i, (char **)argv);
2534
2535 /* Tell the session manager how to restore the just saved session.
2536 * This is easily done thanks to Vim's -S option. Pass the -f flag
2537 * since there's no need to fork -- it might even cause confusion.
2538 * Also pass the window role to give the WM something to match on.
2539 * The role is set in gui_mch_open(), thus should _never_ be NULL. */
2540 i = 0;
2541 argv[i++] = restart_command;
2542 argv[i++] = "-f";
2543 argv[i++] = "-g";
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 argv[i++] = "--role";
2545 argv[i++] = gtk_window_get_role(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 argv[i++] = "-S";
2547 argv[i++] = session_file;
2548 argv[i] = NULL;
2549
2550 gnome_client_set_restart_command(client, i, (char **)argv);
2551 gnome_client_set_clone_command(client, 0, NULL);
2552 }
2553
2554 g_free(session_file);
2555
2556 return success;
2557}
2558
2559/*
2560 * Called when the session manager wants us to die. There isn't much to save
2561 * here since "save_yourself" has been emitted before (unless serious trouble
2562 * is happening).
2563 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 static void
Bram Moolenaar30bb4142010-05-17 22:07:15 +02002565sm_client_die(GnomeClient *client UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566{
2567 /* Don't write messages to the GUI anymore */
2568 full_screen = FALSE;
2569
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002570 vim_strncpy(IObuff, (char_u *)
Bram Moolenaarce0842a2005-07-18 21:58:11 +00002571 _("Vim: Received \"die\" request from session manager\n"),
Bram Moolenaarc93e7912008-07-08 10:46:08 +00002572 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 preserve_exit();
2574}
2575
2576/*
2577 * Connect our signal handlers to be notified on session save and shutdown.
2578 */
2579 static void
2580setup_save_yourself(void)
2581{
2582 GnomeClient *client;
2583
2584 client = gnome_master_client();
2585
2586 if (client != NULL)
2587 {
2588 /* Must use the deprecated gtk_signal_connect() for compatibility
2589 * with GNOME 1. Arrgh, zombies! */
2590 gtk_signal_connect(GTK_OBJECT(client), "save_yourself",
2591 GTK_SIGNAL_FUNC(&sm_client_save_yourself), NULL);
2592 gtk_signal_connect(GTK_OBJECT(client), "die",
2593 GTK_SIGNAL_FUNC(&sm_client_die), NULL);
2594 }
2595}
2596
2597#else /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2598
2599# ifdef USE_XSMP
2600/*
2601 * GTK tells us that XSMP needs attention
2602 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 static gboolean
Bram Moolenaar66f948e2016-01-30 16:39:25 +01002604local_xsmp_handle_requests(
2605 GIOChannel *source UNUSED,
2606 GIOCondition condition,
2607 gpointer data)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608{
2609 if (condition == G_IO_IN)
2610 {
2611 /* Do stuff; maybe close connection */
2612 if (xsmp_handle_requests() == FAIL)
2613 g_io_channel_unref((GIOChannel *)data);
2614 return TRUE;
2615 }
2616 /* Error */
2617 g_io_channel_unref((GIOChannel *)data);
2618 xsmp_close();
2619 return TRUE;
2620}
2621# endif /* USE_XSMP */
2622
2623/*
2624 * Setup the WM_PROTOCOLS to indicate we want the WM_SAVE_YOURSELF event.
2625 * This is an ugly use of X functions. GTK doesn't offer an alternative.
2626 */
2627 static void
2628setup_save_yourself(void)
2629{
2630 Atom *existing_atoms = NULL;
2631 int count = 0;
2632
Bram Moolenaar98921892016-02-23 17:14:37 +01002633# ifdef USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 if (xsmp_icefd != -1)
2635 {
2636 /*
2637 * Use XSMP is preference to legacy WM_SAVE_YOURSELF;
2638 * set up GTK IO monitor
2639 */
2640 GIOChannel *g_io = g_io_channel_unix_new(xsmp_icefd);
2641
2642 g_io_add_watch(g_io, G_IO_IN | G_IO_ERR | G_IO_HUP,
2643 local_xsmp_handle_requests, (gpointer)g_io);
Bram Moolenaar98921892016-02-23 17:14:37 +01002644 g_io_channel_unref(g_io);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 }
2646 else
Bram Moolenaar98921892016-02-23 17:14:37 +01002647# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 {
2649 /* Fall back to old method */
2650
2651 /* first get the existing value */
Bram Moolenaar98921892016-02-23 17:14:37 +01002652# if GTK_CHECK_VERSION(3,0,0)
2653 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2654
2655 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2656 GDK_WINDOW_XID(mainwin_win),
2657 &existing_atoms, &count))
2658# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 if (XGetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2660 GDK_WINDOW_XWINDOW(gui.mainwin->window),
2661 &existing_atoms, &count))
Bram Moolenaar98921892016-02-23 17:14:37 +01002662# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 {
2664 Atom *new_atoms;
2665 Atom save_yourself_xatom;
2666 int i;
2667
2668 save_yourself_xatom = GET_X_ATOM(save_yourself_atom);
2669
2670 /* check if WM_SAVE_YOURSELF isn't there yet */
2671 for (i = 0; i < count; ++i)
2672 if (existing_atoms[i] == save_yourself_xatom)
2673 break;
2674
2675 if (i == count)
2676 {
2677 /* allocate an Atoms array which is one item longer */
2678 new_atoms = (Atom *)alloc((unsigned)((count + 1)
2679 * sizeof(Atom)));
2680 if (new_atoms != NULL)
2681 {
2682 memcpy(new_atoms, existing_atoms, count * sizeof(Atom));
2683 new_atoms[count] = save_yourself_xatom;
Bram Moolenaar98921892016-02-23 17:14:37 +01002684# if GTK_CHECK_VERSION(3,0,0)
2685 XSetWMProtocols(GDK_WINDOW_XDISPLAY(mainwin_win),
2686 GDK_WINDOW_XID(mainwin_win),
2687# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 XSetWMProtocols(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2689 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002690# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691 new_atoms, count + 1);
2692 vim_free(new_atoms);
2693 }
2694 }
2695 XFree(existing_atoms);
2696 }
2697 }
2698}
2699
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700/*
2701 * Installing a global event filter seems to be the only way to catch
2702 * client messages of type WM_PROTOCOLS without overriding GDK's own
2703 * client message event filter. Well, that's still better than trying
2704 * to guess what the GDK filter had done if it had been invoked instead
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 *
2706 * GTK2_FIXME: This doesn't seem to work. For some reason we never
2707 * receive WM_SAVE_YOURSELF even though everything is set up correctly.
2708 * I have the nasty feeling modern session managers just don't send this
2709 * deprecated message anymore. Addition: confirmed by several people.
2710 *
2711 * The GNOME session support is much cooler anyway. Unlike this ugly
2712 * WM_SAVE_YOURSELF hack it actually stores the session... And yes,
2713 * it should work with KDE as well.
2714 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715 static GdkFilterReturn
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002716global_event_filter(GdkXEvent *xev,
2717 GdkEvent *event UNUSED,
2718 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719{
2720 XEvent *xevent = (XEvent *)xev;
2721
2722 if (xevent != NULL
2723 && xevent->type == ClientMessage
2724 && xevent->xclient.message_type == GET_X_ATOM(wm_protocols_atom)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002725 && (long_u)xevent->xclient.data.l[0]
2726 == GET_X_ATOM(save_yourself_atom))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 {
2728 out_flush();
2729 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
2730 /*
2731 * Set the window's WM_COMMAND property, to let the window manager
2732 * know we are done saving ourselves. We don't want to be
2733 * restarted, thus set argv to NULL.
2734 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002735# if GTK_CHECK_VERSION(3,0,0)
2736 XSetCommand(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
2737 GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin)),
2738# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 XSetCommand(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2740 GDK_WINDOW_XWINDOW(gui.mainwin->window),
Bram Moolenaar98921892016-02-23 17:14:37 +01002741# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 NULL, 0);
2743 return GDK_FILTER_REMOVE;
2744 }
2745
2746 return GDK_FILTER_CONTINUE;
2747}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748#endif /* !(FEAT_GUI_GNOME && FEAT_SESSION) */
2749
2750
2751/*
2752 * Setup the window icon & xcmdsrv comm after the main window has been realized.
2753 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002755mainwin_realize(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756{
2757/* If you get an error message here, you still need to unpack the runtime
2758 * archive! */
2759#ifdef magick
2760# undef magick
2761#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 /* A bit hackish, but avoids casting later and allows optimization */
2763# define static static const
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764#define magick vim32x32
2765#include "../runtime/vim32x32.xpm"
2766#undef magick
2767#define magick vim16x16
2768#include "../runtime/vim16x16.xpm"
2769#undef magick
2770#define magick vim48x48
2771#include "../runtime/vim48x48.xpm"
2772#undef magick
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773# undef static
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774
Bram Moolenaar98921892016-02-23 17:14:37 +01002775#if GTK_CHECK_VERSION(3,0,0)
2776 GdkWindow * const mainwin_win = gtk_widget_get_window(gui.mainwin);
2777#endif
2778
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 /* When started with "--echo-wid" argument, write window ID on stdout. */
2780 if (echo_wid_arg)
2781 {
Bram Moolenaar98921892016-02-23 17:14:37 +01002782#if GTK_CHECK_VERSION(3,0,0)
2783 printf("WID: %ld\n", (long)GDK_WINDOW_XID(mainwin_win));
2784#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 printf("WID: %ld\n", (long)GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002786#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 fflush(stdout);
2788 }
2789
2790 if (vim_strchr(p_go, GO_ICON) != NULL)
2791 {
2792 /*
2793 * Add an icon to the main window. For fun and convenience of the user.
2794 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 GList *icons = NULL;
2796
2797 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim16x16));
2798 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim32x32));
2799 icons = g_list_prepend(icons, gdk_pixbuf_new_from_xpm_data(vim48x48));
2800
2801 gtk_window_set_icon_list(GTK_WINDOW(gui.mainwin), icons);
2802
2803 g_list_foreach(icons, (GFunc)&g_object_unref, NULL);
2804 g_list_free(icons);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 }
2806
2807#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
2808 /* Register a handler for WM_SAVE_YOURSELF with GDK's low-level X I/F */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002809 gdk_window_add_filter(NULL, &global_event_filter, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810#endif
2811 /* Setup to indicate to the window manager that we want to catch the
2812 * WM_SAVE_YOURSELF event. For GNOME, this connects to the session
2813 * manager instead. */
2814#if defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)
2815 if (using_gnome)
2816#endif
2817 setup_save_yourself();
2818
2819#ifdef FEAT_CLIENTSERVER
2820 if (serverName == NULL && serverDelayedStartName != NULL)
2821 {
2822 /* This is a :gui command in a plain vim with no previous server */
Bram Moolenaar98921892016-02-23 17:14:37 +01002823# if GTK_CHECK_VERSION(3,0,0)
2824 commWindow = GDK_WINDOW_XID(mainwin_win);
2825
2826 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(mainwin_win),
2827 serverDelayedStartName);
2828# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 commWindow = GDK_WINDOW_XWINDOW(gui.mainwin->window);
2830
2831 (void)serverRegisterName(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2832 serverDelayedStartName);
Bram Moolenaar98921892016-02-23 17:14:37 +01002833# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 }
2835 else
2836 {
2837 /*
2838 * Cannot handle "XLib-only" windows with gtk event routines, we'll
2839 * have to change the "server" registration to that of the main window
2840 * If we have not registered a name yet, remember the window
2841 */
Bram Moolenaar98921892016-02-23 17:14:37 +01002842# if GTK_CHECK_VERSION(3,0,0)
2843 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(mainwin_win),
2844 GDK_WINDOW_XID(mainwin_win));
2845# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 serverChangeRegisteredWindow(GDK_WINDOW_XDISPLAY(gui.mainwin->window),
2847 GDK_WINDOW_XWINDOW(gui.mainwin->window));
Bram Moolenaar98921892016-02-23 17:14:37 +01002848# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 }
2850 gtk_widget_add_events(gui.mainwin, GDK_PROPERTY_CHANGE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01002851# if GTK_CHECK_VERSION(3,0,0)
2852 g_signal_connect(G_OBJECT(gui.mainwin), "property-notify-event",
2853 G_CALLBACK(property_event), NULL);
2854# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "property_notify_event",
2856 GTK_SIGNAL_FUNC(property_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01002857# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858#endif
2859}
2860
2861 static GdkCursor *
2862create_blank_pointer(void)
2863{
2864 GdkWindow *root_window = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01002865#if GTK_CHECK_VERSION(3,0,0)
2866 GdkPixbuf *blank_mask;
2867#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 GdkPixmap *blank_mask;
Bram Moolenaar98921892016-02-23 17:14:37 +01002869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 GdkCursor *cursor;
Bram Moolenaar36edf062016-07-21 22:10:12 +02002871#if GTK_CHECK_VERSION(3,0,0)
2872 GdkRGBA color = { 0.0, 0.0, 0.0, 1.0 };
2873#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 GdkColor color = { 0, 0, 0, 0 };
2875 char blank_data[] = { 0x0 };
Bram Moolenaar98921892016-02-23 17:14:37 +01002876#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877
2878#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01002879# if GTK_CHECK_VERSION(3,12,0)
2880 {
2881 GdkWindow * const win = gtk_widget_get_window(gui.mainwin);
2882 GdkScreen * const scrn = gdk_window_get_screen(win);
2883 root_window = gdk_screen_get_root_window(scrn);
2884 }
2885# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 root_window = gtk_widget_get_root_window(gui.mainwin);
Bram Moolenaar98921892016-02-23 17:14:37 +01002887# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888#endif
2889
2890 /* Create a pseudo blank pointer, which is in fact one pixel by one pixel
2891 * in size. */
Bram Moolenaar98921892016-02-23 17:14:37 +01002892#if GTK_CHECK_VERSION(3,0,0)
2893 {
2894 cairo_surface_t *surf;
2895 cairo_t *cr;
2896
2897 surf = cairo_image_surface_create(CAIRO_FORMAT_A1, 1, 1);
2898 cr = cairo_create(surf);
2899
Bram Moolenaar36edf062016-07-21 22:10:12 +02002900 cairo_set_source_rgba(cr,
2901 color.red,
2902 color.green,
2903 color.blue,
2904 color.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01002905 cairo_rectangle(cr, 0, 0, 1, 1);
2906 cairo_fill(cr);
2907 cairo_destroy(cr);
2908
2909 blank_mask = gdk_pixbuf_get_from_surface(surf, 0, 0, 1, 1);
2910 cairo_surface_destroy(surf);
2911
2912 cursor = gdk_cursor_new_from_pixbuf(gdk_window_get_display(root_window),
2913 blank_mask, 0, 0);
2914 g_object_unref(blank_mask);
2915 }
2916#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 blank_mask = gdk_bitmap_create_from_data(root_window, blank_data, 1, 1);
2918 cursor = gdk_cursor_new_from_pixmap(blank_mask, blank_mask,
2919 &color, &color, 0, 0);
2920 gdk_bitmap_unref(blank_mask);
Bram Moolenaar98921892016-02-23 17:14:37 +01002921#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922
2923 return cursor;
2924}
2925
2926#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 static void
2928mainwin_screen_changed_cb(GtkWidget *widget,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002929 GdkScreen *previous_screen UNUSED,
2930 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931{
2932 if (!gtk_widget_has_screen(widget))
2933 return;
2934
2935 /*
Bram Moolenaar49325942007-05-10 19:19:59 +00002936 * Recreate the invisible mouse cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 */
2938 if (gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01002939# if GTK_CHECK_VERSION(3,0,0)
2940 g_object_unref(G_OBJECT(gui.blank_pointer));
2941# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002943# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944
2945 gui.blank_pointer = create_blank_pointer();
2946
Bram Moolenaar98921892016-02-23 17:14:37 +01002947# if GTK_CHECK_VERSION(3,0,0)
2948 if (gui.pointer_hidden && gtk_widget_get_window(gui.drawarea) != NULL)
2949 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
2950 gui.blank_pointer);
2951# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 if (gui.pointer_hidden && gui.drawarea->window != NULL)
2953 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01002954# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955
2956 /*
2957 * Create a new PangoContext for this screen, and initialize it
2958 * with the current font if necessary.
2959 */
2960 if (gui.text_context != NULL)
2961 g_object_unref(gui.text_context);
2962
2963 gui.text_context = gtk_widget_create_pango_context(widget);
2964 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
2965
2966 if (gui.norm_font != NULL)
2967 {
Bram Moolenaar46c9c732004-12-12 11:37:09 +00002968 gui_mch_init_font(p_guifont, FALSE);
Bram Moolenaar04a9d452006-03-27 21:03:26 +00002969 gui_set_shellsize(FALSE, FALSE, RESIZE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970 }
2971}
2972#endif /* HAVE_GTK_MULTIHEAD */
2973
2974/*
2975 * After the drawing area comes up, we calculate all colors and create the
2976 * dummy blank cursor.
2977 *
2978 * Don't try to set any VIM scrollbar sizes anywhere here. I'm relying on the
2979 * fact that the main VIM engine doesn't take them into account anywhere.
2980 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00002982drawarea_realize_cb(GtkWidget *widget, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983{
2984 GtkWidget *sbar;
Bram Moolenaar98921892016-02-23 17:14:37 +01002985#if GTK_CHECK_VERSION(3,0,0)
2986 GtkAllocation allocation;
2987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988
2989#ifdef FEAT_XIM
2990 xim_init();
2991#endif
2992 gui_mch_new_colors();
Bram Moolenaar98921892016-02-23 17:14:37 +01002993#if GTK_CHECK_VERSION(3,0,0)
2994 gui.surface = gdk_window_create_similar_surface(
2995 gtk_widget_get_window(widget),
2996 CAIRO_CONTENT_COLOR_ALPHA,
2997 gtk_widget_get_allocated_width(widget),
2998 gtk_widget_get_allocated_height(widget));
2999#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 gui.text_gc = gdk_gc_new(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01003001#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002
3003 gui.blank_pointer = create_blank_pointer();
3004 if (gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01003005#if GTK_CHECK_VERSION(3,0,0)
3006 gdk_window_set_cursor(gtk_widget_get_window(widget), gui.blank_pointer);
3007#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 gdk_window_set_cursor(widget->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003009#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010
3011 /* get the actual size of the scrollbars, if they are realized */
3012 sbar = firstwin->w_scrollbars[SBAR_LEFT].id;
3013 if (!sbar || (!gui.which_scrollbars[SBAR_LEFT]
3014 && firstwin->w_scrollbars[SBAR_RIGHT].id))
3015 sbar = firstwin->w_scrollbars[SBAR_RIGHT].id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003016#if GTK_CHECK_VERSION(3,0,0)
3017 gtk_widget_get_allocation(sbar, &allocation);
3018 if (sbar && gtk_widget_get_realized(sbar) && allocation.width)
3019 gui.scrollbar_width = allocation.width;
3020#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.width)
3022 gui.scrollbar_width = sbar->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003023#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024
3025 sbar = gui.bottom_sbar.id;
Bram Moolenaar98921892016-02-23 17:14:37 +01003026#if GTK_CHECK_VERSION(3,0,0)
3027 if (sbar && gtk_widget_get_realized(sbar) && allocation.height)
3028 gui.scrollbar_height = allocation.height;
3029#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 if (sbar && GTK_WIDGET_REALIZED(sbar) && sbar->allocation.height)
3031 gui.scrollbar_height = sbar->allocation.height;
Bram Moolenaar98921892016-02-23 17:14:37 +01003032#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033}
3034
3035/*
3036 * Properly clean up on shutdown.
3037 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003039drawarea_unrealize_cb(GtkWidget *widget UNUSED, gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040{
3041 /* Don't write messages to the GUI anymore */
3042 full_screen = FALSE;
3043
3044#ifdef FEAT_XIM
3045 im_shutdown();
3046#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 if (gui.ascii_glyphs != NULL)
3048 {
3049 pango_glyph_string_free(gui.ascii_glyphs);
3050 gui.ascii_glyphs = NULL;
3051 }
3052 if (gui.ascii_font != NULL)
3053 {
3054 g_object_unref(gui.ascii_font);
3055 gui.ascii_font = NULL;
3056 }
3057 g_object_unref(gui.text_context);
3058 gui.text_context = NULL;
3059
Bram Moolenaar98921892016-02-23 17:14:37 +01003060#if GTK_CHECK_VERSION(3,0,0)
3061 if (gui.surface != NULL)
3062 {
3063 cairo_surface_destroy(gui.surface);
3064 gui.surface = NULL;
3065 }
3066#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067 g_object_unref(gui.text_gc);
3068 gui.text_gc = NULL;
Bram Moolenaar98921892016-02-23 17:14:37 +01003069#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070
Bram Moolenaar98921892016-02-23 17:14:37 +01003071#if GTK_CHECK_VERSION(3,0,0)
3072 g_object_unref(G_OBJECT(gui.blank_pointer));
3073#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074 gdk_cursor_unref(gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01003075#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 gui.blank_pointer = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077}
3078
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003080drawarea_style_set_cb(GtkWidget *widget UNUSED,
3081 GtkStyle *previous_style UNUSED,
3082 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083{
3084 gui_mch_new_colors();
3085}
3086
Bram Moolenaar98921892016-02-23 17:14:37 +01003087#if GTK_CHECK_VERSION(3,0,0)
3088 static gboolean
3089drawarea_configure_event_cb(GtkWidget *widget,
3090 GdkEventConfigure *event,
3091 gpointer data UNUSED)
3092{
3093 static int cur_width = 0;
3094 static int cur_height = 0;
3095
3096 g_return_val_if_fail(event
3097 && event->width >= 1 && event->height >= 1, TRUE);
3098
3099 if (event->width == cur_width && event->height == cur_height)
3100 return TRUE;
3101
3102 cur_width = event->width;
3103 cur_height = event->height;
3104
3105 if (gui.surface != NULL)
3106 cairo_surface_destroy(gui.surface);
3107
3108 gui.surface = gdk_window_create_similar_surface(
3109 gtk_widget_get_window(widget),
3110 CAIRO_CONTENT_COLOR_ALPHA,
3111 event->width, event->height);
3112
3113 gtk_widget_queue_draw(widget);
3114
3115 return TRUE;
3116}
3117#endif
3118
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119/*
3120 * Callback routine for the "delete_event" signal on the toplevel window.
3121 * Tries to vim gracefully, or refuses to exit with changed buffers.
3122 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003124delete_event_cb(GtkWidget *widget UNUSED,
3125 GdkEventAny *event UNUSED,
3126 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127{
3128 gui_shell_closed();
3129 return TRUE;
3130}
3131
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003132#if defined(FEAT_MENU) || defined(FEAT_TOOLBAR) || defined(FEAT_GUI_TABLINE)
3133 static int
3134get_item_dimensions(GtkWidget *widget, GtkOrientation orientation)
3135{
3136 GtkOrientation item_orientation = GTK_ORIENTATION_HORIZONTAL;
3137
Bram Moolenaar98921892016-02-23 17:14:37 +01003138# ifdef FEAT_GUI_GNOME
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003139 if (using_gnome && widget != NULL)
3140 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003141 GtkWidget *parent;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003142 BonoboDockItem *dockitem;
3143
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003144 parent = gtk_widget_get_parent(widget);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003145 if (G_TYPE_FROM_INSTANCE(parent) == BONOBO_TYPE_DOCK_ITEM)
3146 {
3147 /* Only menu & toolbar are dock items. Could tabline be?
3148 * Seem to be only the 2 defined in GNOME */
3149 widget = parent;
3150 dockitem = BONOBO_DOCK_ITEM(widget);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003151
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003152 if (dockitem == NULL || dockitem->is_floating)
3153 return 0;
3154 item_orientation = bonobo_dock_item_get_orientation(dockitem);
3155 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003156 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003157# endif
3158# if GTK_CHECK_VERSION(3,0,0)
3159 if (widget != NULL
3160 && item_orientation == orientation
3161 && gtk_widget_get_realized(widget)
3162 && gtk_widget_get_visible(widget))
3163# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003164 if (widget != NULL
3165 && item_orientation == orientation
3166 && GTK_WIDGET_REALIZED(widget)
3167 && GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01003168# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003169 {
Bram Moolenaar98921892016-02-23 17:14:37 +01003170# if GTK_CHECK_VERSION(3,0,0)
3171 GtkAllocation allocation;
3172
3173 gtk_widget_get_allocation(widget, &allocation);
3174
3175 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3176 return allocation.height;
3177 else
3178 return allocation.width;
3179# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003180 if (orientation == GTK_ORIENTATION_HORIZONTAL)
3181 return widget->allocation.height;
3182 else
3183 return widget->allocation.width;
Bram Moolenaar98921892016-02-23 17:14:37 +01003184# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003185 }
3186 return 0;
3187}
3188#endif
3189
3190 static int
3191get_menu_tool_width(void)
3192{
3193 int width = 0;
3194
3195#ifdef FEAT_GUI_GNOME /* these are never vertical without GNOME */
3196# ifdef FEAT_MENU
3197 width += get_item_dimensions(gui.menubar, GTK_ORIENTATION_VERTICAL);
3198# endif
3199# ifdef FEAT_TOOLBAR
3200 width += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_VERTICAL);
3201# endif
3202# ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003203 if (gui.tabline != NULL)
3204 width += get_item_dimensions(gui.tabline, GTK_ORIENTATION_VERTICAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003205# endif
3206#endif
3207
3208 return width;
3209}
3210
3211 static int
3212get_menu_tool_height(void)
3213{
3214 int height = 0;
3215
3216#ifdef FEAT_MENU
3217 height += get_item_dimensions(gui.menubar, GTK_ORIENTATION_HORIZONTAL);
3218#endif
3219#ifdef FEAT_TOOLBAR
3220 height += get_item_dimensions(gui.toolbar, GTK_ORIENTATION_HORIZONTAL);
3221#endif
3222#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00003223 if (gui.tabline != NULL)
3224 height += get_item_dimensions(gui.tabline, GTK_ORIENTATION_HORIZONTAL);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003225#endif
3226
3227 return height;
3228}
3229
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003230/* This controls whether we can set the real window hints at
3231 * start-up when in a GtkPlug.
3232 * 0 = normal processing (default)
3233 * 1 = init. hints set, no-one's tried to reset since last check
3234 * 2 = init. hints set, attempt made to change hints
3235 */
3236static int init_window_hints_state = 0;
3237
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003238 static void
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003239update_window_manager_hints(int force_width, int force_height)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003240{
3241 static int old_width = 0;
3242 static int old_height = 0;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003243 static int old_min_width = 0;
3244 static int old_min_height = 0;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003245 static int old_char_width = 0;
3246 static int old_char_height = 0;
3247
3248 int width;
3249 int height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003250 int min_width;
3251 int min_height;
3252
3253 /* At start-up, don't try to set the hints until the initial
3254 * values have been used (those that dictate our initial size)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003255 * Let forced (i.e., correct) values through always.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003256 */
3257 if (!(force_width && force_height) && init_window_hints_state > 0)
3258 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003259 /* Don't do it! */
3260 init_window_hints_state = 2;
3261 return;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003262 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003263
3264 /* This also needs to be done when the main window isn't there yet,
3265 * otherwise the hints don't work. */
3266 width = gui_get_base_width();
3267 height = gui_get_base_height();
3268# ifdef FEAT_MENU
3269 height += tabline_height() * gui.char_height;
3270# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003271 width += get_menu_tool_width();
3272 height += get_menu_tool_height();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003273
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003274 /* GtkSockets use GtkPlug's [gui,mainwin] min-size hints to determine
Bram Moolenaar49325942007-05-10 19:19:59 +00003275 * their actual widget size. When we set our size ourselves (e.g.,
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003276 * 'set columns=' or init. -geom) we briefly set the min. to the size
3277 * we wish to be instead of the legitimate minimum so that we actually
3278 * resize correctly.
3279 */
3280 if (force_width && force_height)
3281 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003282 min_width = force_width;
3283 min_height = force_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003284 }
3285 else
3286 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003287 min_width = width + MIN_COLUMNS * gui.char_width;
3288 min_height = height + MIN_LINES * gui.char_height;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003289 }
3290
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003291 /* Avoid an expose event when the size didn't change. */
3292 if (width != old_width
3293 || height != old_height
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003294 || min_width != old_min_width
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003295 || min_height != old_min_height
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003296 || gui.char_width != old_char_width
3297 || gui.char_height != old_char_height)
3298 {
3299 GdkGeometry geometry;
3300 GdkWindowHints geometry_mask;
3301
3302 geometry.width_inc = gui.char_width;
3303 geometry.height_inc = gui.char_height;
3304 geometry.base_width = width;
3305 geometry.base_height = height;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003306 geometry.min_width = min_width;
3307 geometry.min_height = min_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003308 geometry_mask = GDK_HINT_BASE_SIZE|GDK_HINT_RESIZE_INC
3309 |GDK_HINT_MIN_SIZE;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003310 /* Using gui.formwin as geometry widget doesn't work as expected
3311 * with GTK+ 2 -- dunno why. Presumably all the resizing hacks
3312 * in Vim confuse GTK+. */
3313 gtk_window_set_geometry_hints(GTK_WINDOW(gui.mainwin), gui.mainwin,
3314 &geometry, geometry_mask);
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003315 old_width = width;
3316 old_height = height;
3317 old_min_width = min_width;
3318 old_min_height = min_height;
3319 old_char_width = gui.char_width;
3320 old_char_height = gui.char_height;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003321 }
3322}
3323
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324#ifdef FEAT_TOOLBAR
3325
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326/*
3327 * This extra effort wouldn't be necessary if we only used stock icons in the
3328 * toolbar, as we do for all builtin icons. But user-defined toolbar icons
3329 * shouldn't be treated differently, thus we do need this.
3330 */
3331 static void
3332icon_size_changed_foreach(GtkWidget *widget, gpointer user_data)
3333{
3334 if (GTK_IS_IMAGE(widget))
3335 {
3336 GtkImage *image = (GtkImage *)widget;
3337
Bram Moolenaar98921892016-02-23 17:14:37 +01003338# if GTK_CHECK_VERSION(3,10,0)
3339 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_NAME)
3340 {
3341 const GtkIconSize icon_size = GPOINTER_TO_INT(user_data);
3342 const gchar *icon_name;
3343
3344 gtk_image_get_icon_name(image, &icon_name, NULL);
3345
3346 gtk_image_set_from_icon_name(image, icon_name, icon_size);
3347 }
3348# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 /* User-defined icons are stored in a GtkIconSet */
3350 if (gtk_image_get_storage_type(image) == GTK_IMAGE_ICON_SET)
3351 {
3352 GtkIconSet *icon_set;
3353 GtkIconSize icon_size;
3354
3355 gtk_image_get_icon_set(image, &icon_set, &icon_size);
3356 icon_size = (GtkIconSize)(long)user_data;
3357
3358 gtk_icon_set_ref(icon_set);
3359 gtk_image_set_from_icon_set(image, icon_set, icon_size);
3360 gtk_icon_set_unref(icon_set);
3361 }
Bram Moolenaar98921892016-02-23 17:14:37 +01003362# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 }
3364 else if (GTK_IS_CONTAINER(widget))
3365 {
3366 gtk_container_foreach((GtkContainer *)widget,
3367 &icon_size_changed_foreach,
3368 user_data);
3369 }
3370}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371
3372 static void
3373set_toolbar_style(GtkToolbar *toolbar)
3374{
3375 GtkToolbarStyle style;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 GtkIconSize size;
3377 GtkIconSize oldsize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3380 == (TOOLBAR_TEXT | TOOLBAR_ICONS | TOOLBAR_HORIZ))
3381 style = GTK_TOOLBAR_BOTH_HORIZ;
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003382 else if ((toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 == (TOOLBAR_TEXT | TOOLBAR_ICONS))
3384 style = GTK_TOOLBAR_BOTH;
3385 else if (toolbar_flags & TOOLBAR_TEXT)
3386 style = GTK_TOOLBAR_TEXT;
3387 else
3388 style = GTK_TOOLBAR_ICONS;
3389
3390 gtk_toolbar_set_style(toolbar, style);
Bram Moolenaar98921892016-02-23 17:14:37 +01003391# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392 gtk_toolbar_set_tooltips(toolbar, (toolbar_flags & TOOLBAR_TOOLTIPS) != 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003393# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 switch (tbis_flags)
3396 {
3397 case TBIS_TINY: size = GTK_ICON_SIZE_MENU; break;
3398 case TBIS_SMALL: size = GTK_ICON_SIZE_SMALL_TOOLBAR; break;
3399 case TBIS_MEDIUM: size = GTK_ICON_SIZE_BUTTON; break;
3400 case TBIS_LARGE: size = GTK_ICON_SIZE_LARGE_TOOLBAR; break;
Bram Moolenaarbeb003b2016-03-08 22:47:17 +01003401 case TBIS_HUGE: size = GTK_ICON_SIZE_DND; break;
3402 case TBIS_GIANT: size = GTK_ICON_SIZE_DIALOG; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 default: size = GTK_ICON_SIZE_INVALID; break;
3404 }
3405 oldsize = gtk_toolbar_get_icon_size(toolbar);
3406
3407 if (size == GTK_ICON_SIZE_INVALID)
3408 {
3409 /* Let global user preferences decide the icon size. */
3410 gtk_toolbar_unset_icon_size(toolbar);
3411 size = gtk_toolbar_get_icon_size(toolbar);
3412 }
3413 if (size != oldsize)
3414 {
3415 gtk_container_foreach(GTK_CONTAINER(toolbar),
3416 &icon_size_changed_foreach,
3417 GINT_TO_POINTER((int)size));
3418 }
3419 gtk_toolbar_set_icon_size(toolbar, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420}
3421
3422#endif /* FEAT_TOOLBAR */
3423
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003424#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
3425static int ignore_tabline_evt = FALSE;
Bram Moolenaara5621492006-02-25 21:55:24 +00003426static GtkWidget *tabline_menu;
Bram Moolenaar98921892016-02-23 17:14:37 +01003427# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003428static GtkTooltips *tabline_tooltip;
Bram Moolenaar98921892016-02-23 17:14:37 +01003429# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003430static int clicked_page; /* page clicked in tab line */
3431
3432/*
3433 * Handle selecting an item in the tab line popup menu.
3434 */
Bram Moolenaara5621492006-02-25 21:55:24 +00003435 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003436tabline_menu_handler(GtkMenuItem *item UNUSED, gpointer user_data)
Bram Moolenaara5621492006-02-25 21:55:24 +00003437{
Bram Moolenaara5621492006-02-25 21:55:24 +00003438 /* Add the string cmd into input buffer */
Bram Moolenaarc6fe9192006-04-09 21:54:49 +00003439 send_tabline_menu_event(clicked_page, (int)(long)user_data);
Bram Moolenaara5621492006-02-25 21:55:24 +00003440}
3441
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003442 static void
3443add_tabline_menu_item(GtkWidget *menu, char_u *text, int resp)
3444{
3445 GtkWidget *item;
3446 char_u *utf_text;
3447
3448 utf_text = CONVERT_TO_UTF8(text);
3449 item = gtk_menu_item_new_with_label((const char *)utf_text);
3450 gtk_widget_show(item);
3451 CONVERT_TO_UTF8_FREE(utf_text);
3452
3453 gtk_container_add(GTK_CONTAINER(menu), item);
Bram Moolenaar98921892016-02-23 17:14:37 +01003454# if GTK_CHECK_VERSION(3,0,0)
3455 g_signal_connect(G_OBJECT(item), "activate",
3456 G_CALLBACK(tabline_menu_handler),
3457 GINT_TO_POINTER(resp));
3458# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003459 gtk_signal_connect(GTK_OBJECT(item), "activate",
3460 GTK_SIGNAL_FUNC(tabline_menu_handler),
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003461 (gpointer)(long)resp);
Bram Moolenaar98921892016-02-23 17:14:37 +01003462# endif
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003463}
3464
Bram Moolenaara5621492006-02-25 21:55:24 +00003465/*
Bram Moolenaara5621492006-02-25 21:55:24 +00003466 * Create a menu for the tab line.
3467 */
3468 static GtkWidget *
3469create_tabline_menu(void)
3470{
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003471 GtkWidget *menu;
Bram Moolenaara5621492006-02-25 21:55:24 +00003472
3473 menu = gtk_menu_new();
Bram Moolenaar7098ee52015-06-09 19:14:24 +02003474 if (first_tabpage->tp_next != NULL)
3475 add_tabline_menu_item(menu, (char_u *)_("Close tab"),
3476 TABLINE_MENU_CLOSE);
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003477 add_tabline_menu_item(menu, (char_u *)_("New tab"), TABLINE_MENU_NEW);
3478 add_tabline_menu_item(menu, (char_u *)_("Open Tab..."), TABLINE_MENU_OPEN);
Bram Moolenaara5621492006-02-25 21:55:24 +00003479
3480 return menu;
3481}
3482
3483 static gboolean
3484on_tabline_menu(GtkWidget *widget, GdkEvent *event)
3485{
3486 /* Was this button press event ? */
3487 if (event->type == GDK_BUTTON_PRESS)
3488 {
3489 GdkEventButton *bevent = (GdkEventButton *)event;
3490 int x = bevent->x;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003491 int y = bevent->y;
3492 GtkWidget *tabwidget;
3493 GdkWindow *tabwin;
Bram Moolenaara5621492006-02-25 21:55:24 +00003494
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003495 /* When ignoring events return TRUE so that the selected page doesn't
3496 * change. */
3497 if (hold_gui_events
3498# ifdef FEAT_CMDWIN
3499 || cmdwin_type != 0
3500# endif
3501 )
3502 return TRUE;
3503
Bram Moolenaar98921892016-02-23 17:14:37 +01003504# if GTK_CHECK_VERSION(3,0,0)
3505 tabwin = gui_gtk_window_at_position(gui.mainwin, &x, &y);
3506# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003507 tabwin = gdk_window_at_pointer(&x, &y);
Bram Moolenaar98921892016-02-23 17:14:37 +01003508# endif
3509
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003510 gdk_window_get_user_data(tabwin, (gpointer)&tabwidget);
Bram Moolenaar98921892016-02-23 17:14:37 +01003511# if GTK_CHECK_VERSION(3,0,0)
3512 clicked_page = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tabwidget),
3513 "tab_num"));
3514# else
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003515 clicked_page = (int)(long)gtk_object_get_user_data(
3516 GTK_OBJECT(tabwidget));
Bram Moolenaar98921892016-02-23 17:14:37 +01003517# endif
Bram Moolenaara5621492006-02-25 21:55:24 +00003518
3519 /* If the event was generated for 3rd button popup the menu. */
3520 if (bevent->button == 3)
3521 {
3522 gtk_menu_popup(GTK_MENU(widget), NULL, NULL, NULL, NULL,
3523 bevent->button, bevent->time);
3524 /* We handled the event. */
3525 return TRUE;
3526 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003527 else if (bevent->button == 1)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003528 {
Bram Moolenaar96351572006-05-05 21:16:59 +00003529 if (clicked_page == 0)
3530 {
Bram Moolenaar07354542007-09-15 12:07:46 +00003531 /* Click after all tabs moves to next tab page. When "x" is
3532 * small guess it's the left button. */
Bram Moolenaara3f41662010-07-11 19:01:06 +02003533 send_tabline_event(x < 50 ? -1 : 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003534 }
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003535 }
Bram Moolenaara5621492006-02-25 21:55:24 +00003536 }
Bram Moolenaarf193fff2006-04-27 00:02:13 +00003537
Bram Moolenaara5621492006-02-25 21:55:24 +00003538 /* We didn't handle the event. */
3539 return FALSE;
3540}
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003541
3542/*
3543 * Handle selecting one of the tabs.
3544 */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003545 static void
3546on_select_tab(
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003547 GtkNotebook *notebook UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003548# if GTK_CHECK_VERSION(3,0,0)
3549 gpointer *page UNUSED,
3550# else
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003551 GtkNotebookPage *page UNUSED,
Bram Moolenaar98921892016-02-23 17:14:37 +01003552# endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00003553 gint idx,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00003554 gpointer data UNUSED)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003555{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003556 if (!ignore_tabline_evt)
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003557 {
Bram Moolenaara3f41662010-07-11 19:01:06 +02003558 send_tabline_event(idx + 1);
Bram Moolenaareddf53b2006-02-27 00:11:10 +00003559 }
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003560}
3561
3562/*
3563 * Show or hide the tabline.
3564 */
3565 void
3566gui_mch_show_tabline(int showit)
3567{
3568 if (gui.tabline == NULL)
3569 return;
3570
3571 if (!showit != !gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline)))
3572 {
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003573 /* Note: this may cause a resize event */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003574 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), showit);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00003575 update_window_manager_hints(0, 0);
Bram Moolenaar96351572006-05-05 21:16:59 +00003576 if (showit)
Bram Moolenaar98921892016-02-23 17:14:37 +01003577# if GTK_CHECK_VERSION(3,0,0)
3578 gtk_widget_set_can_focus(GTK_WIDGET(gui.tabline), FALSE);
3579# else
Bram Moolenaar96351572006-05-05 21:16:59 +00003580 GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(gui.tabline), GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01003581# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003582 }
Bram Moolenaar96351572006-05-05 21:16:59 +00003583
3584 gui_mch_update();
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003585}
3586
3587/*
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003588 * Return TRUE when tabline is displayed.
3589 */
3590 int
3591gui_mch_showing_tabline(void)
3592{
3593 return gui.tabline != NULL
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003594 && gtk_notebook_get_show_tabs(GTK_NOTEBOOK(gui.tabline));
Bram Moolenaar3517bb12006-03-03 22:58:45 +00003595}
3596
3597/*
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003598 * Update the labels of the tabline.
3599 */
3600 void
3601gui_mch_update_tabline(void)
3602{
3603 GtkWidget *page;
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003604 GtkWidget *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003605 GtkWidget *label;
3606 tabpage_T *tp;
3607 int nr = 0;
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003608 int tab_num;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003609 int curtabidx = 0;
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003610 char_u *labeltext;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003611
3612 if (gui.tabline == NULL)
3613 return;
3614
3615 ignore_tabline_evt = TRUE;
3616
3617 /* Add a label for each tab page. They all contain the same text area. */
3618 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, ++nr)
3619 {
3620 if (tp == curtab)
3621 curtabidx = nr;
3622
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003623 tab_num = nr + 1;
3624
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003625 page = gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr);
3626 if (page == NULL)
3627 {
3628 /* Add notebook page */
Bram Moolenaar98921892016-02-23 17:14:37 +01003629# if GTK_CHECK_VERSION(3,2,0)
3630 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3631 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
3632# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003633 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003634# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003635 gtk_widget_show(page);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003636 event_box = gtk_event_box_new();
3637 gtk_widget_show(event_box);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003638 label = gtk_label_new("-Empty-");
Bram Moolenaar98921892016-02-23 17:14:37 +01003639# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003640 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01003641# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003642 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003643 gtk_widget_show(label);
3644 gtk_notebook_insert_page(GTK_NOTEBOOK(gui.tabline),
3645 page,
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003646 event_box,
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003647 nr++);
3648 }
3649
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003650 event_box = gtk_notebook_get_tab_label(GTK_NOTEBOOK(gui.tabline), page);
Bram Moolenaar98921892016-02-23 17:14:37 +01003651# if GTK_CHECK_VERSION(3,0,0)
3652 g_object_set_data(G_OBJECT(event_box), "tab_num",
3653 GINT_TO_POINTER(tab_num));
3654# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00003655 gtk_object_set_user_data(GTK_OBJECT(event_box),
3656 (gpointer)(long)tab_num);
Bram Moolenaar98921892016-02-23 17:14:37 +01003657# endif
3658# if GTK_CHECK_VERSION(3,0,0)
3659 label = gtk_bin_get_child(GTK_BIN(event_box));
3660# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003661 label = GTK_BIN(event_box)->child;
Bram Moolenaar98921892016-02-23 17:14:37 +01003662# endif
Bram Moolenaar57657d82006-04-21 22:12:41 +00003663 get_tabline_label(tp, FALSE);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003664 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003665 gtk_label_set_text(GTK_LABEL(label), (const char *)labeltext);
Bram Moolenaarc1e37902006-04-18 21:55:01 +00003666 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003667
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003668 get_tabline_label(tp, TRUE);
3669 labeltext = CONVERT_TO_UTF8(NameBuff);
Bram Moolenaar98921892016-02-23 17:14:37 +01003670# if GTK_CHECK_VERSION(3,0,0)
3671 gtk_widget_set_tooltip_text(event_box, (const gchar *)labeltext);
3672# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003673 gtk_tooltips_set_tip(GTK_TOOLTIPS(tabline_tooltip), event_box,
3674 (const char *)labeltext, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003675# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00003676 CONVERT_TO_UTF8_FREE(labeltext);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003677 }
3678
3679 /* Remove any old labels. */
3680 while (gtk_notebook_get_nth_page(GTK_NOTEBOOK(gui.tabline), nr) != NULL)
3681 gtk_notebook_remove_page(GTK_NOTEBOOK(gui.tabline), nr);
3682
Bram Moolenaar98921892016-02-23 17:14:37 +01003683# if GTK_CHECK_VERSION(3,0,0)
3684 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
3685 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
3686# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003687 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != curtabidx)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003688 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), curtabidx);
Bram Moolenaar98921892016-02-23 17:14:37 +01003689# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003690
Bram Moolenaar8ea91232006-04-28 22:41:43 +00003691 /* Make sure everything is in place before drawing text. */
3692 gui_mch_update();
3693
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003694 ignore_tabline_evt = FALSE;
3695}
3696
3697/*
3698 * Set the current tab to "nr". First tab is 1.
3699 */
3700 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01003701gui_mch_set_curtab(int nr)
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003702{
3703 if (gui.tabline == NULL)
3704 return;
3705
3706 ignore_tabline_evt = TRUE;
Bram Moolenaar98921892016-02-23 17:14:37 +01003707# if GTK_CHECK_VERSION(3,0,0)
3708 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
3709 gtk_notebook_set_current_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
3710# else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003711 if (gtk_notebook_current_page(GTK_NOTEBOOK(gui.tabline)) != nr - 1)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003712 gtk_notebook_set_page(GTK_NOTEBOOK(gui.tabline), nr - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01003713# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003714 ignore_tabline_evt = FALSE;
3715}
3716
3717#endif /* FEAT_GUI_TABLINE */
3718
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719/*
Bram Moolenaara76638f2010-06-05 12:49:46 +02003720 * Add selection targets for PRIMARY and CLIPBOARD selections.
3721 */
3722 void
3723gui_gtk_set_selection_targets(void)
3724{
3725 int i, j = 0;
3726 int n_targets = N_SELECTION_TARGETS;
3727 GtkTargetEntry targets[N_SELECTION_TARGETS];
3728
3729 for (i = 0; i < (int)N_SELECTION_TARGETS; ++i)
3730 {
Bram Moolenaar29695702012-05-18 17:03:18 +02003731 /* OpenOffice tries to use TARGET_HTML and fails when we don't
Bram Moolenaara76638f2010-06-05 12:49:46 +02003732 * return something, instead of trying another target. Therefore only
3733 * offer TARGET_HTML when it works. */
3734 if (!clip_html && selection_targets[i].info == TARGET_HTML)
3735 n_targets--;
3736 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003737 targets[j++] = selection_targets[i];
3738 }
3739
3740 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)GDK_SELECTION_PRIMARY);
3741 gtk_selection_clear_targets(gui.drawarea, (GdkAtom)clip_plus.gtk_sel_atom);
3742 gtk_selection_add_targets(gui.drawarea,
3743 (GdkAtom)GDK_SELECTION_PRIMARY,
3744 targets, n_targets);
3745 gtk_selection_add_targets(gui.drawarea,
3746 (GdkAtom)clip_plus.gtk_sel_atom,
3747 targets, n_targets);
3748}
3749
3750/*
3751 * Set up for receiving DND items.
3752 */
3753 void
3754gui_gtk_set_dnd_targets(void)
3755{
3756 int i, j = 0;
3757 int n_targets = N_DND_TARGETS;
3758 GtkTargetEntry targets[N_DND_TARGETS];
3759
3760 for (i = 0; i < (int)N_DND_TARGETS; ++i)
3761 {
Bram Moolenaarb931d742011-10-26 11:36:25 +02003762 if (!clip_html && dnd_targets[i].info == TARGET_HTML)
Bram Moolenaara76638f2010-06-05 12:49:46 +02003763 n_targets--;
3764 else
Bram Moolenaara76638f2010-06-05 12:49:46 +02003765 targets[j++] = dnd_targets[i];
3766 }
3767
3768 gtk_drag_dest_unset(gui.drawarea);
3769 gtk_drag_dest_set(gui.drawarea,
3770 GTK_DEST_DEFAULT_ALL,
3771 targets, n_targets,
Bram Moolenaarba7cc9f2011-02-25 17:10:27 +01003772 GDK_ACTION_COPY | GDK_ACTION_MOVE);
Bram Moolenaara76638f2010-06-05 12:49:46 +02003773}
3774
3775/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 * Initialize the GUI. Create all the windows, set up all the callbacks etc.
3777 * Returns OK for success, FAIL when the GUI can't be started.
3778 */
3779 int
3780gui_mch_init(void)
3781{
3782 GtkWidget *vbox;
3783
3784#ifdef FEAT_GUI_GNOME
3785 /* Initialize the GNOME libraries. gnome_program_init()/gnome_init()
3786 * exits on failure, but that's a non-issue because we already called
3787 * gtk_init_check() in gui_mch_init_check(). */
3788 if (using_gnome)
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003789 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
3791 LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003792# if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
Bram Moolenaar1ff32c52014-04-29 15:11:43 +02003793 {
3794 char *p = setlocale(LC_NUMERIC, NULL);
3795
3796 /* Make sure strtod() uses a decimal point, not a comma. Gnome
3797 * init may change it. */
3798 if (p == NULL || strcmp(p, "C") != 0)
3799 setlocale(LC_NUMERIC, "C");
3800 }
Bram Moolenaar3be71ce2013-01-23 16:00:11 +01003801# endif
3802 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803#endif
3804 vim_free(gui_argv);
3805 gui_argv = NULL;
3806
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003807#if GLIB_CHECK_VERSION(2,1,3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 /* Set the human-readable application name */
3809 g_set_application_name("Vim");
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 /*
3812 * Force UTF-8 output no matter what the value of 'encoding' is.
3813 * did_set_string_option() in option.c prohibits changing 'termencoding'
3814 * to something else than UTF-8 if the GUI is in use.
3815 */
3816 set_option_value((char_u *)"termencoding", 0L, (char_u *)"utf-8", 0);
3817
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003818#ifdef FEAT_TOOLBAR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 gui_gtk_register_stock_icons();
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003820#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 /* FIXME: Need to install the classic icons and a gtkrc.classic file.
3822 * The hard part is deciding install locations and the Makefile magic. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003823#if !GTK_CHECK_VERSION(3,0,0)
3824# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 gtk_rc_parse("gtkrc");
Bram Moolenaar98921892016-02-23 17:14:37 +01003826# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827#endif
3828
3829 /* Initialize values */
3830 gui.border_width = 2;
3831 gui.scrollbar_width = SB_DEFAULT_WIDTH;
3832 gui.scrollbar_height = SB_DEFAULT_WIDTH;
Bram Moolenaar36edf062016-07-21 22:10:12 +02003833#if GTK_CHECK_VERSION(3,0,0)
3834 gui.fgcolor = g_new(GdkRGBA, 1);
3835 gui.bgcolor = g_new(GdkRGBA, 1);
3836 gui.spcolor = g_new(GdkRGBA, 1);
3837#else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003838 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 gui.fgcolor = g_new0(GdkColor, 1);
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00003840 /* LINTED: avoid warning: conversion to 'unsigned long' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 gui.bgcolor = g_new0(GdkColor, 1);
Bram Moolenaarf36d3692005-03-15 22:48:14 +00003842 /* LINTED: avoid warning: conversion to 'unsigned long' */
3843 gui.spcolor = g_new0(GdkColor, 1);
Bram Moolenaar36edf062016-07-21 22:10:12 +02003844#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845
3846 /* Initialise atoms */
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00003847 html_atom = gdk_atom_intern("text/html", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 utf8_string_atom = gdk_atom_intern("UTF8_STRING", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849
3850 /* Set default foreground and background colors. */
3851 gui.norm_pixel = gui.def_norm_pixel;
3852 gui.back_pixel = gui.def_back_pixel;
3853
3854 if (gtk_socket_id != 0)
3855 {
3856 GtkWidget *plug;
3857
3858 /* Use GtkSocket from another app. */
3859#ifdef HAVE_GTK_MULTIHEAD
3860 plug = gtk_plug_new_for_display(gdk_display_get_default(),
3861 gtk_socket_id);
3862#else
3863 plug = gtk_plug_new(gtk_socket_id);
3864#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01003865#if GTK_CHECK_VERSION(3,0,0)
3866 if (plug != NULL && gtk_plug_get_socket_window(GTK_PLUG(plug)) != NULL)
3867#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 if (plug != NULL && GTK_PLUG(plug)->socket_window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01003869#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 {
3871 gui.mainwin = plug;
3872 }
3873 else
3874 {
3875 g_warning("Connection to GTK+ socket (ID %u) failed",
3876 (unsigned int)gtk_socket_id);
3877 /* Pretend we never wanted it if it failed (get own window) */
3878 gtk_socket_id = 0;
3879 }
3880 }
3881
3882 if (gtk_socket_id == 0)
3883 {
3884#ifdef FEAT_GUI_GNOME
3885 if (using_gnome)
3886 {
3887 gui.mainwin = gnome_app_new("Vim", NULL);
3888# ifdef USE_XSMP
3889 /* Use the GNOME save-yourself functionality now. */
3890 xsmp_close();
3891# endif
3892 }
3893 else
3894#endif
3895 gui.mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
3896 }
3897
3898 gtk_widget_set_name(gui.mainwin, "vim-main-window");
3899
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 /* Create the PangoContext used for drawing all text. */
3901 gui.text_context = gtk_widget_create_pango_context(gui.mainwin);
3902 pango_context_set_base_dir(gui.text_context, PANGO_DIRECTION_LTR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903
Bram Moolenaar98921892016-02-23 17:14:37 +01003904#if GTK_CHECK_VERSION(3,0,0)
3905 gtk_container_set_border_width(GTK_CONTAINER(gui.mainwin), 0);
3906#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 gtk_container_border_width(GTK_CONTAINER(gui.mainwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003908#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 gtk_widget_add_events(gui.mainwin, GDK_VISIBILITY_NOTIFY_MASK);
3910
Bram Moolenaar98921892016-02-23 17:14:37 +01003911#if GTK_CHECK_VERSION(3,0,0)
3912 g_signal_connect(G_OBJECT(gui.mainwin), "delete-event",
3913 G_CALLBACK(&delete_event_cb), NULL);
3914
3915 g_signal_connect(G_OBJECT(gui.mainwin), "realize",
3916 G_CALLBACK(&mainwin_realize), NULL);
3917#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "delete_event",
3919 GTK_SIGNAL_FUNC(&delete_event_cb), NULL);
3920
3921 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "realize",
3922 GTK_SIGNAL_FUNC(&mainwin_realize), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01003923#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924#ifdef HAVE_GTK_MULTIHEAD
3925 g_signal_connect(G_OBJECT(gui.mainwin), "screen_changed",
3926 G_CALLBACK(&mainwin_screen_changed_cb), NULL);
3927#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 gui.accel_group = gtk_accel_group_new();
3929 gtk_window_add_accel_group(GTK_WINDOW(gui.mainwin), gui.accel_group);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930
Bram Moolenaar32466aa2006-02-24 23:53:04 +00003931 /* A vertical box holds the menubar, toolbar and main text window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01003932#if GTK_CHECK_VERSION(3,2,0)
3933 vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
3934 gtk_box_set_homogeneous(GTK_BOX(vbox), FALSE);
3935#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 vbox = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01003937#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938
3939#ifdef FEAT_GUI_GNOME
3940 if (using_gnome)
3941 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02003942# if defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 /* automagically restore menubar/toolbar placement */
3944 gnome_app_enable_layout_config(GNOME_APP(gui.mainwin), TRUE);
3945# endif
3946 gnome_app_set_contents(GNOME_APP(gui.mainwin), vbox);
3947 }
3948 else
3949#endif
3950 {
3951 gtk_container_add(GTK_CONTAINER(gui.mainwin), vbox);
3952 gtk_widget_show(vbox);
3953 }
3954
3955#ifdef FEAT_MENU
3956 /*
3957 * Create the menubar and handle
3958 */
3959 gui.menubar = gtk_menu_bar_new();
3960 gtk_widget_set_name(gui.menubar, "vim-menubar");
3961
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003962 /* Avoid that GTK takes <F10> away from us. */
3963 {
3964 GtkSettings *gtk_settings;
3965
3966 gtk_settings = gtk_settings_get_for_screen(gdk_screen_get_default());
3967 g_object_set(gtk_settings, "gtk-menu-bar-accel", NULL, NULL);
3968 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003969
3970
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971# ifdef FEAT_GUI_GNOME
3972 if (using_gnome)
3973 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 BonoboDockItem *dockitem;
3975
3976 gnome_app_set_menus(GNOME_APP(gui.mainwin), GTK_MENU_BAR(gui.menubar));
3977 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
3978 GNOME_APP_MENUBAR_NAME);
Bram Moolenaardb552d602006-03-23 22:59:57 +00003979 /* We don't want the menu to float. */
3980 bonobo_dock_item_set_behavior(dockitem,
3981 bonobo_dock_item_get_behavior(dockitem)
3982 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 gui.menubar_h = GTK_WIDGET(dockitem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 }
3985 else
3986# endif /* FEAT_GUI_GNOME */
3987 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00003988 /* Always show the menubar, otherwise <F10> doesn't work. It may be
3989 * disabled in gui_init() later. */
3990 gtk_widget_show(gui.menubar);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 gtk_box_pack_start(GTK_BOX(vbox), gui.menubar, FALSE, FALSE, 0);
3992 }
3993#endif /* FEAT_MENU */
3994
3995#ifdef FEAT_TOOLBAR
3996 /*
3997 * Create the toolbar and handle
3998 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 /* some aesthetics on the toolbar */
Bram Moolenaar98921892016-02-23 17:14:37 +01004000# ifdef USE_GTK3
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004001 /* TODO: Add GTK+ 3 code here using GtkCssProvider if necessary. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004002 /* N.B. Since the default value of GtkToolbar::button-relief is
4003 * GTK_RELIEF_NONE, there's no need to specify that, probably. */
4004# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 gtk_rc_parse_string(
4006 "style \"vim-toolbar-style\" {\n"
4007 " GtkToolbar::button_relief = GTK_RELIEF_NONE\n"
4008 "}\n"
4009 "widget \"*.vim-toolbar\" style \"vim-toolbar-style\"\n");
Bram Moolenaar98921892016-02-23 17:14:37 +01004010# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 gui.toolbar = gtk_toolbar_new();
4012 gtk_widget_set_name(gui.toolbar, "vim-toolbar");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4014
4015# ifdef FEAT_GUI_GNOME
4016 if (using_gnome)
4017 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 BonoboDockItem *dockitem;
4019
4020 gnome_app_set_toolbar(GNOME_APP(gui.mainwin), GTK_TOOLBAR(gui.toolbar));
4021 dockitem = gnome_app_get_dock_item_by_name(GNOME_APP(gui.mainwin),
4022 GNOME_APP_TOOLBAR_NAME);
4023 gui.toolbar_h = GTK_WIDGET(dockitem);
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004024 /* When the toolbar is floating it gets stuck. So long as that isn't
Bram Moolenaardb552d602006-03-23 22:59:57 +00004025 * fixed let's disallow floating. */
Bram Moolenaare580b0c2006-03-21 21:33:03 +00004026 bonobo_dock_item_set_behavior(dockitem,
Bram Moolenaardb552d602006-03-23 22:59:57 +00004027 bonobo_dock_item_get_behavior(dockitem)
4028 | BONOBO_DOCK_ITEM_BEH_NEVER_FLOATING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029 gtk_container_set_border_width(GTK_CONTAINER(gui.toolbar), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 }
4031 else
4032# endif /* FEAT_GUI_GNOME */
4033 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 if (vim_strchr(p_go, GO_TOOLBAR) != NULL
4035 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4036 gtk_widget_show(gui.toolbar);
4037 gtk_box_pack_start(GTK_BOX(vbox), gui.toolbar, FALSE, FALSE, 0);
4038 }
4039#endif /* FEAT_TOOLBAR */
4040
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004041#ifdef FEAT_GUI_TABLINE
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004042 /*
4043 * Use a Notebook for the tab pages labels. The labels are hidden by
4044 * default.
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004045 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004046 gui.tabline = gtk_notebook_new();
4047 gtk_widget_show(gui.tabline);
4048 gtk_box_pack_start(GTK_BOX(vbox), gui.tabline, FALSE, FALSE, 0);
4049 gtk_notebook_set_show_border(GTK_NOTEBOOK(gui.tabline), FALSE);
4050 gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar4a85b412006-04-23 22:40:29 +00004051 gtk_notebook_set_scrollable(GTK_NOTEBOOK(gui.tabline), TRUE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004052# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar96351572006-05-05 21:16:59 +00004053 gtk_notebook_set_tab_border(GTK_NOTEBOOK(gui.tabline), FALSE);
Bram Moolenaar98921892016-02-23 17:14:37 +01004054# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004055
Bram Moolenaar98921892016-02-23 17:14:37 +01004056# if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004057 tabline_tooltip = gtk_tooltips_new();
4058 gtk_tooltips_enable(GTK_TOOLTIPS(tabline_tooltip));
Bram Moolenaar98921892016-02-23 17:14:37 +01004059# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004060
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004061 {
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004062 GtkWidget *page, *label, *event_box;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004063
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004064 /* Add the first tab. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004065# if GTK_CHECK_VERSION(3,2,0)
4066 page = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
4067 gtk_box_set_homogeneous(GTK_BOX(page), FALSE);
4068# else
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004069 page = gtk_vbox_new(FALSE, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004070# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004071 gtk_widget_show(page);
4072 gtk_container_add(GTK_CONTAINER(gui.tabline), page);
4073 label = gtk_label_new("-Empty-");
4074 gtk_widget_show(label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004075 event_box = gtk_event_box_new();
4076 gtk_widget_show(event_box);
Bram Moolenaar98921892016-02-23 17:14:37 +01004077# if GTK_CHECK_VERSION(3,0,0)
4078 g_object_set_data(G_OBJECT(event_box), "tab_num", GINT_TO_POINTER(1L));
4079# else
Bram Moolenaar47b46d72008-07-02 19:05:48 +00004080 gtk_object_set_user_data(GTK_OBJECT(event_box), (gpointer)1L);
Bram Moolenaar98921892016-02-23 17:14:37 +01004081# endif
4082# if !GTK_CHECK_VERSION(3,14,0)
Bram Moolenaar8ea91232006-04-28 22:41:43 +00004083 gtk_misc_set_padding(GTK_MISC(label), 2, 2);
Bram Moolenaar98921892016-02-23 17:14:37 +01004084# endif
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004085 gtk_container_add(GTK_CONTAINER(event_box), label);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00004086 gtk_notebook_set_tab_label(GTK_NOTEBOOK(gui.tabline), page, event_box);
Bram Moolenaar97b2ad32006-03-18 21:40:56 +00004087 }
Bram Moolenaar54a709e2006-05-04 21:57:11 +00004088
Bram Moolenaar98921892016-02-23 17:14:37 +01004089# if GTK_CHECK_VERSION(3,0,0)
4090 g_signal_connect(G_OBJECT(gui.tabline), "switch-page",
4091 G_CALLBACK(on_select_tab), NULL);
4092# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004093 gtk_signal_connect(GTK_OBJECT(gui.tabline), "switch_page",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004094 GTK_SIGNAL_FUNC(on_select_tab), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004095# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004096
4097 /* Create a popup menu for the tab line and connect it. */
4098 tabline_menu = create_tabline_menu();
Bram Moolenaar98921892016-02-23 17:14:37 +01004099# if GTK_CHECK_VERSION(3,0,0)
4100 g_signal_connect_swapped(G_OBJECT(gui.tabline), "button-press-event",
4101 G_CALLBACK(on_tabline_menu), G_OBJECT(tabline_menu));
4102# else
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004103 gtk_signal_connect_object(GTK_OBJECT(gui.tabline), "button_press_event",
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004104 GTK_SIGNAL_FUNC(on_tabline_menu), GTK_OBJECT(tabline_menu));
Bram Moolenaar98921892016-02-23 17:14:37 +01004105# endif
4106#endif /* FEAT_GUI_TABLINE */
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004107
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 gui.formwin = gtk_form_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004109#if GTK_CHECK_VERSION(3,0,0)
4110 gtk_container_set_border_width(GTK_CONTAINER(gui.formwin), 0);
4111#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 gtk_container_border_width(GTK_CONTAINER(gui.formwin), 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01004113#endif
4114#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 gtk_widget_set_events(gui.formwin, GDK_EXPOSURE_MASK);
Bram Moolenaar98921892016-02-23 17:14:37 +01004116#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117
4118 gui.drawarea = gtk_drawing_area_new();
Bram Moolenaar98921892016-02-23 17:14:37 +01004119#if GTK_CHECK_VERSION(3,0,0)
4120 gui.surface = NULL;
4121 gui.by_signal = FALSE;
4122#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123
4124 /* Determine which events we will filter. */
4125 gtk_widget_set_events(gui.drawarea,
4126 GDK_EXPOSURE_MASK |
4127 GDK_ENTER_NOTIFY_MASK |
4128 GDK_LEAVE_NOTIFY_MASK |
4129 GDK_BUTTON_PRESS_MASK |
4130 GDK_BUTTON_RELEASE_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 GDK_SCROLL_MASK |
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 GDK_KEY_PRESS_MASK |
4133 GDK_KEY_RELEASE_MASK |
4134 GDK_POINTER_MOTION_MASK |
4135 GDK_POINTER_MOTION_HINT_MASK);
4136
4137 gtk_widget_show(gui.drawarea);
4138 gtk_form_put(GTK_FORM(gui.formwin), gui.drawarea, 0, 0);
4139 gtk_widget_show(gui.formwin);
4140 gtk_box_pack_start(GTK_BOX(vbox), gui.formwin, TRUE, TRUE, 0);
4141
4142 /* For GtkSockets, key-presses must go to the focus widget (drawarea)
4143 * and not the window. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004144#if GTK_CHECK_VERSION(3,0,0)
4145 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4146 : G_OBJECT(gui.drawarea),
4147 "key-press-event",
4148 G_CALLBACK(key_press_event), NULL);
4149#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 gtk_signal_connect((gtk_socket_id == 0) ? GTK_OBJECT(gui.mainwin)
4151 : GTK_OBJECT(gui.drawarea),
4152 "key_press_event",
4153 GTK_SIGNAL_FUNC(key_press_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004154#endif
4155#if defined(FEAT_XIM) || GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 /* Also forward key release events for the benefit of GTK+ 2 input
4157 * modules. Try CTRL-SHIFT-xdigits to enter a Unicode code point. */
4158 g_signal_connect((gtk_socket_id == 0) ? G_OBJECT(gui.mainwin)
4159 : G_OBJECT(gui.drawarea),
Bram Moolenaar98921892016-02-23 17:14:37 +01004160 "key-release-event",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 G_CALLBACK(&key_release_event), NULL);
4162#endif
Bram Moolenaar98921892016-02-23 17:14:37 +01004163#if GTK_CHECK_VERSION(3,0,0)
4164 g_signal_connect(G_OBJECT(gui.drawarea), "realize",
4165 G_CALLBACK(drawarea_realize_cb), NULL);
4166 g_signal_connect(G_OBJECT(gui.drawarea), "unrealize",
4167 G_CALLBACK(drawarea_unrealize_cb), NULL);
4168 g_signal_connect(G_OBJECT(gui.drawarea), "configure-event",
4169 G_CALLBACK(drawarea_configure_event_cb), NULL);
4170 g_signal_connect_after(G_OBJECT(gui.drawarea), "style-set",
4171 G_CALLBACK(&drawarea_style_set_cb), NULL);
4172#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "realize",
4174 GTK_SIGNAL_FUNC(drawarea_realize_cb), NULL);
4175 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "unrealize",
4176 GTK_SIGNAL_FUNC(drawarea_unrealize_cb), NULL);
4177
4178 gtk_signal_connect_after(GTK_OBJECT(gui.drawarea), "style_set",
4179 GTK_SIGNAL_FUNC(&drawarea_style_set_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004180#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181
Bram Moolenaar98921892016-02-23 17:14:37 +01004182#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 gui.visibility = GDK_VISIBILITY_UNOBSCURED;
Bram Moolenaar98921892016-02-23 17:14:37 +01004184#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185
4186#if !(defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION))
4187 wm_protocols_atom = gdk_atom_intern("WM_PROTOCOLS", FALSE);
4188 save_yourself_atom = gdk_atom_intern("WM_SAVE_YOURSELF", FALSE);
4189#endif
4190
4191 if (gtk_socket_id != 0)
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004192 /* make sure keyboard input can go to the drawarea */
Bram Moolenaar98921892016-02-23 17:14:37 +01004193#if GTK_CHECK_VERSION(3,0,0)
4194 gtk_widget_set_can_focus(gui.drawarea, TRUE);
4195#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 GTK_WIDGET_SET_FLAGS(gui.drawarea, GTK_CAN_FOCUS);
Bram Moolenaar98921892016-02-23 17:14:37 +01004197#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198
4199 /*
4200 * Set clipboard specific atoms
4201 */
4202 vim_atom = gdk_atom_intern(VIM_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004203 vimenc_atom = gdk_atom_intern(VIMENC_ATOM_NAME, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 clip_star.gtk_sel_atom = GDK_SELECTION_PRIMARY;
4205 clip_plus.gtk_sel_atom = gdk_atom_intern("CLIPBOARD", FALSE);
4206
4207 /*
4208 * Start out by adding the configured border width into the border offset.
4209 */
4210 gui.border_offset = gui.border_width;
4211
Bram Moolenaar98921892016-02-23 17:14:37 +01004212#if GTK_CHECK_VERSION(3,0,0)
4213 g_signal_connect(G_OBJECT(gui.drawarea), "draw",
4214 G_CALLBACK(draw_event), NULL);
4215#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "visibility_notify_event",
4217 GTK_SIGNAL_FUNC(visibility_event), NULL);
4218 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "expose_event",
4219 GTK_SIGNAL_FUNC(expose_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004220#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221
4222 /*
4223 * Only install these enter/leave callbacks when 'p' in 'guioptions'.
4224 * Only needed for some window managers.
4225 */
4226 if (vim_strchr(p_go, GO_POINTER) != NULL)
4227 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004228#if GTK_CHECK_VERSION(3,0,0)
4229 g_signal_connect(G_OBJECT(gui.drawarea), "leave-notify-event",
4230 G_CALLBACK(leave_notify_event), NULL);
4231 g_signal_connect(G_OBJECT(gui.drawarea), "enter-notify-event",
4232 G_CALLBACK(enter_notify_event), NULL);
4233#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "leave_notify_event",
4235 GTK_SIGNAL_FUNC(leave_notify_event), NULL);
4236 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "enter_notify_event",
4237 GTK_SIGNAL_FUNC(enter_notify_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004238#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 }
4240
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004241 /* Real windows can get focus ... GtkPlug, being a mere container can't,
4242 * only its widgets. Arguably, this could be common code and we not use
4243 * the window focus at all, but let's be safe.
4244 */
4245 if (gtk_socket_id == 0)
4246 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004247#if GTK_CHECK_VERSION(3,0,0)
4248 g_signal_connect(G_OBJECT(gui.mainwin), "focus-out-event",
4249 G_CALLBACK(focus_out_event), NULL);
4250 g_signal_connect(G_OBJECT(gui.mainwin), "focus-in-event",
4251 G_CALLBACK(focus_in_event), NULL);
4252#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004253 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_out_event",
4254 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4255 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "focus_in_event",
4256 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004257#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004258 }
4259 else
4260 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004261#if GTK_CHECK_VERSION(3,0,0)
4262 g_signal_connect(G_OBJECT(gui.drawarea), "focus-out-event",
4263 G_CALLBACK(focus_out_event), NULL);
4264 g_signal_connect(G_OBJECT(gui.drawarea), "focus-in-event",
4265 G_CALLBACK(focus_in_event), NULL);
4266#else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004267 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_out_event",
4268 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4269 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "focus_in_event",
4270 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004271#endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004272#ifdef FEAT_GUI_TABLINE
Bram Moolenaar98921892016-02-23 17:14:37 +01004273# if GTK_CHECK_VERSION(3,0,0)
4274 g_signal_connect(G_OBJECT(gui.tabline), "focus-out-event",
4275 G_CALLBACK(focus_out_event), NULL);
4276 g_signal_connect(G_OBJECT(gui.tabline), "focus-in-event",
4277 G_CALLBACK(focus_in_event), NULL);
4278# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004279 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_out_event",
4280 GTK_SIGNAL_FUNC(focus_out_event), NULL);
4281 gtk_signal_connect(GTK_OBJECT(gui.tabline), "focus_in_event",
4282 GTK_SIGNAL_FUNC(focus_in_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004283# endif
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004284#endif /* FEAT_GUI_TABLINE */
4285 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286
Bram Moolenaar98921892016-02-23 17:14:37 +01004287#if GTK_CHECK_VERSION(3,0,0)
4288 g_signal_connect(G_OBJECT(gui.drawarea), "motion-notify-event",
4289 G_CALLBACK(motion_notify_event), NULL);
4290 g_signal_connect(G_OBJECT(gui.drawarea), "button-press-event",
4291 G_CALLBACK(button_press_event), NULL);
4292 g_signal_connect(G_OBJECT(gui.drawarea), "button-release-event",
4293 G_CALLBACK(button_release_event), NULL);
4294 g_signal_connect(G_OBJECT(gui.drawarea), "scroll-event",
4295 G_CALLBACK(&scroll_event), NULL);
4296#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "motion_notify_event",
4298 GTK_SIGNAL_FUNC(motion_notify_event), NULL);
4299 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_press_event",
4300 GTK_SIGNAL_FUNC(button_press_event), NULL);
4301 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "button_release_event",
4302 GTK_SIGNAL_FUNC(button_release_event), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 g_signal_connect(G_OBJECT(gui.drawarea), "scroll_event",
4304 G_CALLBACK(&scroll_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004305#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306
4307 /*
4308 * Add selection handler functions.
4309 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004310#if GTK_CHECK_VERSION(3,0,0)
4311 g_signal_connect(G_OBJECT(gui.drawarea), "selection-clear-event",
4312 G_CALLBACK(selection_clear_event), NULL);
4313 g_signal_connect(G_OBJECT(gui.drawarea), "selection-received",
4314 G_CALLBACK(selection_received_cb), NULL);
4315#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_clear_event",
4317 GTK_SIGNAL_FUNC(selection_clear_event), NULL);
4318 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_received",
4319 GTK_SIGNAL_FUNC(selection_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004320#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321
Bram Moolenaara76638f2010-06-05 12:49:46 +02004322 gui_gtk_set_selection_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323
Bram Moolenaar98921892016-02-23 17:14:37 +01004324#if GTK_CHECK_VERSION(3,0,0)
4325 g_signal_connect(G_OBJECT(gui.drawarea), "selection-get",
4326 G_CALLBACK(selection_get_cb), NULL);
4327#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "selection_get",
4329 GTK_SIGNAL_FUNC(selection_get_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004330#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331
4332 /* Pretend we don't have input focus, we will get an event if we do. */
4333 gui.in_focus = FALSE;
4334
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 return OK;
4336}
4337
4338#if (defined(FEAT_GUI_GNOME) && defined(FEAT_SESSION)) || defined(PROTO)
4339/*
4340 * This is called from gui_start() after a fork() has been done.
4341 * We have to tell the session manager our new PID.
4342 */
4343 void
4344gui_mch_forked(void)
4345{
4346 if (using_gnome)
4347 {
4348 GnomeClient *client;
4349
4350 client = gnome_master_client();
4351
4352 if (client != NULL)
4353 gnome_client_set_process_id(client, getpid());
4354 }
4355}
4356#endif /* FEAT_GUI_GNOME && FEAT_SESSION */
4357
Bram Moolenaar98921892016-02-23 17:14:37 +01004358#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004359 static GdkRGBA
4360color_to_rgba(guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004361{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004362 GdkRGBA rgba;
4363 rgba.red = ((color & 0xff0000) >> 16) / 255.0;
4364 rgba.green = ((color & 0xff00) >> 8) / 255.0;
4365 rgba.blue = ((color & 0xff)) / 255.0;
4366 rgba.alpha = 1.0;
4367 return rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004368}
4369
4370 static void
Bram Moolenaar36edf062016-07-21 22:10:12 +02004371set_cairo_source_rgba_from_color(cairo_t *cr, guicolor_T color)
Bram Moolenaar98921892016-02-23 17:14:37 +01004372{
Bram Moolenaar36edf062016-07-21 22:10:12 +02004373 const GdkRGBA rgba = color_to_rgba(color);
4374 cairo_set_source_rgba(cr, rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004375}
4376#endif /* GTK_CHECK_VERSION(3,0,0) */
4377
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378/*
4379 * Called when the foreground or background color has been changed.
4380 * This used to change the graphics contexts directly but we are
4381 * currently manipulating them where desired.
4382 */
4383 void
4384gui_mch_new_colors(void)
4385{
Bram Moolenaar98921892016-02-23 17:14:37 +01004386#if GTK_CHECK_VERSION(3,0,0)
4387 GdkWindow * const da_win = gtk_widget_get_window(gui.drawarea);
4388
4389 if (gui.drawarea != NULL && gtk_widget_get_window(gui.drawarea) != NULL)
4390#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 if (gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01004392#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 {
Bram Moolenaar98921892016-02-23 17:14:37 +01004394#if GTK_CHECK_VERSION(3,4,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02004395 GdkRGBA rgba;
Bram Moolenaar98921892016-02-23 17:14:37 +01004396
Bram Moolenaar36edf062016-07-21 22:10:12 +02004397 rgba = color_to_rgba(gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01004398 {
4399 cairo_pattern_t * const pat = cairo_pattern_create_rgba(
Bram Moolenaar36edf062016-07-21 22:10:12 +02004400 rgba.red, rgba.green, rgba.blue, rgba.alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01004401 if (pat != NULL)
4402 {
4403 gdk_window_set_background_pattern(da_win, pat);
4404 cairo_pattern_destroy(pat);
4405 }
4406 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02004407 gdk_window_set_background_rgba(da_win, &rgba);
Bram Moolenaar98921892016-02-23 17:14:37 +01004408 }
4409#else /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 GdkColor color = { 0, 0, 0, 0 };
4411
4412 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01004413# if GTK_CHECK_VERSION(3,0,0)
4414 gdk_window_set_background(da_win, &color);
4415# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 gdk_window_set_background(gui.drawarea->window, &color);
Bram Moolenaar98921892016-02-23 17:14:37 +01004417# endif
4418#endif /* !GTK_CHECK_VERSION(3,4,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419 }
4420}
4421
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422/*
4423 * This signal informs us about the need to rearrange our sub-widgets.
4424 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 static gint
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004426form_configure_event(GtkWidget *widget UNUSED,
4427 GdkEventConfigure *event,
4428 gpointer data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429{
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004430 int usable_height = event->height;
4431
4432 /* When in a GtkPlug, we can't guarantee valid heights (as a round
4433 * no. of char-heights), so we have to manually sanitise them.
4434 * Widths seem to sort themselves out, don't ask me why.
4435 */
4436 if (gtk_socket_id != 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004437 usable_height -= (gui.char_height - (gui.char_height/2)); /* sic. */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004438
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 gtk_form_freeze(GTK_FORM(gui.formwin));
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004440 gui_resize_shell(event->width, usable_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 gtk_form_thaw(GTK_FORM(gui.formwin));
4442
4443 return TRUE;
4444}
4445
4446/*
4447 * Function called when window already closed.
4448 * We can't do much more here than to trying to preserve what had been done,
4449 * since the window is already inevitably going away.
4450 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004451#if GTK_CHECK_VERSION(3,0,0)
4452 static void
4453mainwin_destroy_cb(GObject *object UNUSED, gpointer data UNUSED)
4454#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 static void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004456mainwin_destroy_cb(GtkObject *object UNUSED, gpointer data UNUSED)
Bram Moolenaar98921892016-02-23 17:14:37 +01004457#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458{
4459 /* Don't write messages to the GUI anymore */
4460 full_screen = FALSE;
4461
4462 gui.mainwin = NULL;
4463 gui.drawarea = NULL;
4464
4465 if (!exiting) /* only do anything if the destroy was unexpected */
4466 {
Bram Moolenaarce0842a2005-07-18 21:58:11 +00004467 vim_strncpy(IObuff,
4468 (char_u *)_("Vim: Main window unexpectedly destroyed\n"),
4469 IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 preserve_exit();
4471 }
Bram Moolenaar36e294c2015-12-29 18:55:46 +01004472#ifdef USE_GRESOURCE
4473 gui_gtk_unregister_resource();
4474#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475}
4476
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004477
4478/*
4479 * Bit of a hack to ensure we start GtkPlug windows with the correct window
4480 * hints (and thus the required size from -geom), but that after that we
4481 * put the hints back to normal (the actual minimum size) so we may
4482 * subsequently be resized smaller. GtkSocket (the parent end) uses the
Bram Moolenaar49325942007-05-10 19:19:59 +00004483 * plug's window 'min hints to set *it's* minimum size, but that's also the
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004484 * only way we have of making ourselves bigger (by set lines/columns).
4485 * Thus set hints at start-up to ensure correct init. size, then a
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01004486 * second after the final attempt to reset the real minimum hints (done by
4487 * scrollbar init.), actually do the standard hints and stop the timer.
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004488 * We'll not let the default hints be set while this timer's active.
4489 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004490 static gboolean
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004491check_startup_plug_hints(gpointer data UNUSED)
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004492{
4493 if (init_window_hints_state == 1)
4494 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004495 /* Safe to use normal hints now */
4496 init_window_hints_state = 0;
4497 update_window_manager_hints(0, 0);
4498 return FALSE; /* stop timer */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004499 }
4500
4501 /* Keep on trying */
4502 init_window_hints_state = 1;
4503 return TRUE;
4504}
4505
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506/*
4507 * Open the GUI window which was created by a call to gui_mch_init().
4508 */
4509 int
4510gui_mch_open(void)
4511{
4512 guicolor_T fg_pixel = INVALCOLOR;
4513 guicolor_T bg_pixel = INVALCOLOR;
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004514 guint pixel_width;
4515 guint pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 /*
4518 * Allow setting a window role on the command line, or invent one
4519 * if none was specified. This is mainly useful for GNOME session
4520 * support; allowing the WM to restore window placement.
4521 */
4522 if (role_argument != NULL)
4523 {
4524 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role_argument);
4525 }
4526 else
4527 {
4528 char *role;
4529
4530 /* Invent a unique-enough ID string for the role */
4531 role = g_strdup_printf("vim-%u-%u-%u",
4532 (unsigned)mch_get_pid(),
4533 (unsigned)g_random_int(),
4534 (unsigned)time(NULL));
4535
4536 gtk_window_set_role(GTK_WINDOW(gui.mainwin), role);
4537 g_free(role);
4538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539
4540 if (gui_win_x != -1 && gui_win_y != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 gtk_window_move(GTK_WINDOW(gui.mainwin), gui_win_x, gui_win_y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542
4543 /* Determine user specified geometry, if present. */
4544 if (gui.geom != NULL)
4545 {
4546 int mask;
4547 unsigned int w, h;
4548 int x = 0;
4549 int y = 0;
4550
4551 mask = XParseGeometry((char *)gui.geom, &x, &y, &w, &h);
4552
4553 if (mask & WidthValue)
4554 Columns = w;
4555 if (mask & HeightValue)
Bram Moolenaard68071d2006-05-02 22:08:30 +00004556 {
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004557 if (p_window > (long)h - 1 || !option_was_set((char_u *)"window"))
Bram Moolenaard68071d2006-05-02 22:08:30 +00004558 p_window = h - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 Rows = h;
Bram Moolenaard68071d2006-05-02 22:08:30 +00004560 }
Bram Moolenaare057d402013-06-30 17:51:51 +02004561 limit_screen_size();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004562
4563 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4564 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
4565
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004566 pixel_width += get_menu_tool_width();
4567 pixel_height += get_menu_tool_height();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004568
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 if (mask & (XValue | YValue))
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004570 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004571 int ww, hh;
4572 gui_mch_get_screen_dimensions(&ww, &hh);
4573 hh += p_ghr + get_menu_tool_height();
4574 ww += get_menu_tool_width();
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004575 if (mask & XNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004576 x += ww - pixel_width;
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004577 if (mask & YNegative)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004578 y += hh - pixel_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar2dd8b522007-10-19 12:33:44 +00004580 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 vim_free(gui.geom);
4582 gui.geom = NULL;
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004583
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004584 /* From now until everyone's stopped trying to set the window hints
4585 * to their correct minimum values, stop them being set as we need
4586 * them to remain at our required size for the parent GtkSocket to
4587 * give us the right initial size.
4588 */
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004589 if (gtk_socket_id != 0 && (mask & WidthValue || mask & HeightValue))
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004590 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004591 update_window_manager_hints(pixel_width, pixel_height);
4592 init_window_hints_state = 1;
4593 g_timeout_add(1000, check_startup_plug_hints, NULL);
4594 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 }
4596
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004597 pixel_width = (guint)(gui_get_base_width() + Columns * gui.char_width);
4598 pixel_height = (guint)(gui_get_base_height() + Rows * gui.char_height);
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004599 /* For GTK2 changing the size of the form widget doesn't cause window
4600 * resizing. */
Bram Moolenaardebe25a2010-06-06 17:41:24 +02004601 if (gtk_socket_id == 0)
Bram Moolenaar79ef6d62009-09-23 15:35:48 +00004602 gtk_window_resize(GTK_WINDOW(gui.mainwin), pixel_width, pixel_height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004603 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604
4605 if (foreground_argument != NULL)
4606 fg_pixel = gui_get_color((char_u *)foreground_argument);
4607 if (fg_pixel == INVALCOLOR)
4608 fg_pixel = gui_get_color((char_u *)"Black");
4609
4610 if (background_argument != NULL)
4611 bg_pixel = gui_get_color((char_u *)background_argument);
4612 if (bg_pixel == INVALCOLOR)
4613 bg_pixel = gui_get_color((char_u *)"White");
4614
4615 if (found_reverse_arg)
4616 {
4617 gui.def_norm_pixel = bg_pixel;
4618 gui.def_back_pixel = fg_pixel;
4619 }
4620 else
4621 {
4622 gui.def_norm_pixel = fg_pixel;
4623 gui.def_back_pixel = bg_pixel;
4624 }
4625
4626 /* Get the colors from the "Normal" and "Menu" group (set in syntax.c or
4627 * in a vimrc file) */
4628 set_normal_colors();
4629
4630 /* Check that none of the colors are the same as the background color */
4631 gui_check_colors();
4632
4633 /* Get the colors for the highlight groups (gui_check_colors() might have
4634 * changed them). */
4635 highlight_gui_started(); /* re-init colors and fonts */
4636
Bram Moolenaar98921892016-02-23 17:14:37 +01004637#if GTK_CHECK_VERSION(3,0,0)
4638 g_signal_connect(G_OBJECT(gui.mainwin), "destroy",
4639 G_CALLBACK(mainwin_destroy_cb), NULL);
4640#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 gtk_signal_connect(GTK_OBJECT(gui.mainwin), "destroy",
4642 GTK_SIGNAL_FUNC(mainwin_destroy_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004643#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644
4645#ifdef FEAT_HANGULIN
4646 hangul_keyboard_set();
4647#endif
4648
4649 /*
4650 * Notify the fixed area about the need to resize the contents of the
4651 * gui.formwin, which we use for random positioning of the included
4652 * components.
4653 *
4654 * We connect this signal deferred finally after anything is in place,
4655 * since this is intended to handle resizements coming from the window
4656 * manager upon us and should not interfere with what VIM is requesting
4657 * upon startup.
4658 */
Bram Moolenaar98921892016-02-23 17:14:37 +01004659#if GTK_CHECK_VERSION(3,0,0)
4660 g_signal_connect(G_OBJECT(gui.formwin), "configure-event",
4661 G_CALLBACK(form_configure_event), NULL);
4662#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 gtk_signal_connect(GTK_OBJECT(gui.formwin), "configure_event",
4664 GTK_SIGNAL_FUNC(form_configure_event), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004665#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666
4667#ifdef FEAT_DND
Bram Moolenaara76638f2010-06-05 12:49:46 +02004668 /* Set up for receiving DND items. */
4669 gui_gtk_set_dnd_targets();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670
Bram Moolenaar98921892016-02-23 17:14:37 +01004671# if GTK_CHECK_VERSION(3,0,0)
4672 g_signal_connect(G_OBJECT(gui.drawarea), "drag-data-received",
4673 G_CALLBACK(drag_data_received_cb), NULL);
4674# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 gtk_signal_connect(GTK_OBJECT(gui.drawarea), "drag_data_received",
4676 GTK_SIGNAL_FUNC(drag_data_received_cb), NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01004677# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678#endif
4679
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 /* With GTK+ 2, we need to iconify the window before calling show()
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004681 * to avoid mapping the window for a short time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 if (found_iconic_arg && gtk_socket_id == 0)
4683 gui_mch_iconify();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684
4685 {
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004686#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 unsigned long menu_handler = 0;
4688# ifdef FEAT_TOOLBAR
4689 unsigned long tool_handler = 0;
4690# endif
4691 /*
4692 * Urgh hackish :/ For some reason BonoboDockLayout always forces a
4693 * show when restoring the saved layout configuration. We can't just
4694 * hide the widgets again after gtk_widget_show(gui.mainwin) since it's
4695 * a toplevel window and thus will be realized immediately. Instead,
4696 * connect signal handlers to hide the widgets just after they've been
4697 * marked visible, but before the main window is realized.
4698 */
4699 if (using_gnome && vim_strchr(p_go, GO_MENUS) == NULL)
4700 menu_handler = g_signal_connect_after(gui.menubar_h, "show",
4701 G_CALLBACK(&gtk_widget_hide),
4702 NULL);
4703# ifdef FEAT_TOOLBAR
4704 if (using_gnome && vim_strchr(p_go, GO_TOOLBAR) == NULL
4705 && (toolbar_flags & (TOOLBAR_TEXT | TOOLBAR_ICONS)))
4706 tool_handler = g_signal_connect_after(gui.toolbar_h, "show",
4707 G_CALLBACK(&gtk_widget_hide),
4708 NULL);
4709# endif
4710#endif
4711 gtk_widget_show(gui.mainwin);
4712
Bram Moolenaar182c5be2010-06-25 05:37:59 +02004713#if defined(FEAT_GUI_GNOME) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 if (menu_handler != 0)
4715 g_signal_handler_disconnect(gui.menubar_h, menu_handler);
4716# ifdef FEAT_TOOLBAR
4717 if (tool_handler != 0)
4718 g_signal_handler_disconnect(gui.toolbar_h, tool_handler);
4719# endif
4720#endif
4721 }
4722
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 return OK;
4724}
4725
4726
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004728gui_mch_exit(int rc UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729{
4730 if (gui.mainwin != NULL)
4731 gtk_widget_destroy(gui.mainwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732}
4733
4734/*
4735 * Get the position of the top left corner of the window.
4736 */
4737 int
4738gui_mch_get_winpos(int *x, int *y)
4739{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 gtk_window_get_position(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 return OK;
4742}
4743
4744/*
4745 * Set the position of the top left corner of the window to the given
4746 * coordinates.
4747 */
4748 void
4749gui_mch_set_winpos(int x, int y)
4750{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 gtk_window_move(GTK_WINDOW(gui.mainwin), x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752}
4753
Bram Moolenaar98921892016-02-23 17:14:37 +01004754#if !GTK_CHECK_VERSION(3,0,0)
4755# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756static int resize_idle_installed = FALSE;
4757/*
4758 * Idle handler to force resize. Used by gui_mch_set_shellsize() to ensure
4759 * the shell size doesn't exceed the window size, i.e. if the window manager
4760 * ignored our size request. Usually this happens if the window is maximized.
4761 *
4762 * FIXME: It'd be nice if we could find a little more orthodox solution.
4763 * See also the remark below in gui_mch_set_shellsize().
4764 *
4765 * DISABLED: When doing ":set lines+=1" this function would first invoke
4766 * gui_resize_shell() with the old size, then the normal callback would
4767 * report the new size through form_configure_event(). That caused the window
4768 * layout to be messed up.
4769 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 static gboolean
4771force_shell_resize_idle(gpointer data)
4772{
4773 if (gui.mainwin != NULL
4774 && GTK_WIDGET_REALIZED(gui.mainwin)
4775 && GTK_WIDGET_VISIBLE(gui.mainwin))
4776 {
4777 int width;
4778 int height;
4779
4780 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &width, &height);
4781
4782 width -= get_menu_tool_width();
4783 height -= get_menu_tool_height();
4784
4785 gui_resize_shell(width, height);
4786 }
4787
4788 resize_idle_installed = FALSE;
4789 return FALSE; /* don't call me again */
4790}
Bram Moolenaar98921892016-02-23 17:14:37 +01004791# endif
4792#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793
Bram Moolenaar09736232009-09-23 16:14:49 +00004794/*
4795 * Return TRUE if the main window is maximized.
4796 */
4797 int
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004798gui_mch_maximized(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004799{
Bram Moolenaar98921892016-02-23 17:14:37 +01004800#if GTK_CHECK_VERSION(3,0,0)
4801 return (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL
4802 && (gdk_window_get_state(gtk_widget_get_window(gui.mainwin))
4803 & GDK_WINDOW_STATE_MAXIMIZED));
4804#else
Bram Moolenaar09736232009-09-23 16:14:49 +00004805 return (gui.mainwin != NULL && gui.mainwin->window != NULL
4806 && (gdk_window_get_state(gui.mainwin->window)
4807 & GDK_WINDOW_STATE_MAXIMIZED));
Bram Moolenaar98921892016-02-23 17:14:37 +01004808#endif
Bram Moolenaar09736232009-09-23 16:14:49 +00004809}
4810
4811/*
4812 * Unmaximize the main window
4813 */
4814 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004815gui_mch_unmaximize(void)
Bram Moolenaar09736232009-09-23 16:14:49 +00004816{
4817 if (gui.mainwin != NULL)
4818 gtk_window_unmaximize(GTK_WINDOW(gui.mainwin));
4819}
Bram Moolenaar09736232009-09-23 16:14:49 +00004820
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821/*
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004822 * Called when the font changed while the window is maximized. Compute the
4823 * new Rows and Columns. This is like resizing the window.
4824 */
4825 void
Bram Moolenaar66f948e2016-01-30 16:39:25 +01004826gui_mch_newfont(void)
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02004827{
4828 int w, h;
4829
4830 gtk_window_get_size(GTK_WINDOW(gui.mainwin), &w, &h);
4831 w -= get_menu_tool_width();
4832 h -= get_menu_tool_height();
4833 gui_resize_shell(w, h);
4834}
4835
4836/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837 * Set the windows size.
4838 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839 void
4840gui_mch_set_shellsize(int width, int height,
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004841 int min_width UNUSED, int min_height UNUSED,
4842 int base_width UNUSED, int base_height UNUSED,
4843 int direction UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 /* give GTK+ a chance to put all widget's into place */
4846 gui_mch_update();
4847
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004848 /* this will cause the proper resizement to happen too */
4849 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004850 update_window_manager_hints(0, 0);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004851
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 /* With GTK+ 2, changing the size of the form widget doesn't resize
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004853 * the window. So let's do it the other way around and resize the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 * main window instead. */
4855 width += get_menu_tool_width();
4856 height += get_menu_tool_height();
4857
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004858 if (gtk_socket_id == 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004859 gtk_window_resize(GTK_WINDOW(gui.mainwin), width, height);
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004860 else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00004861 update_window_manager_hints(width, height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862
Bram Moolenaar98921892016-02-23 17:14:37 +01004863# if !GTK_CHECK_VERSION(3,0,0)
4864# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 if (!resize_idle_installed)
4866 {
4867 g_idle_add_full(GDK_PRIORITY_EVENTS + 10,
4868 &force_shell_resize_idle, NULL, NULL);
4869 resize_idle_installed = TRUE;
4870 }
Bram Moolenaar98921892016-02-23 17:14:37 +01004871# endif
4872# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 /*
4874 * Wait until all events are processed to prevent a crash because the
4875 * real size of the drawing area doesn't reflect Vim's internal ideas.
4876 *
4877 * This is a bit of a hack, since Vim is a terminal application with a GUI
4878 * on top, while the GUI expects to be the boss.
4879 */
4880 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881}
4882
4883
4884/*
4885 * The screen size is used to make sure the initial window doesn't get bigger
4886 * than the screen. This subtracts some room for menubar, toolbar and window
4887 * decorations.
4888 */
4889 void
4890gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
4891{
4892#ifdef HAVE_GTK_MULTIHEAD
4893 GdkScreen* screen;
4894
4895 if (gui.mainwin != NULL && gtk_widget_has_screen(gui.mainwin))
4896 screen = gtk_widget_get_screen(gui.mainwin);
4897 else
4898 screen = gdk_screen_get_default();
4899
4900 *screen_w = gdk_screen_get_width(screen);
4901 *screen_h = gdk_screen_get_height(screen) - p_ghr;
4902#else
4903 *screen_w = gdk_screen_width();
4904 /* Subtract 'guiheadroom' from the height to allow some room for the
4905 * window manager (task list and window title bar). */
4906 *screen_h = gdk_screen_height() - p_ghr;
4907#endif
4908
4909 /*
4910 * FIXME: dirty trick: Because the gui_get_base_height() doesn't include
4911 * the toolbar and menubar for GTK, we subtract them from the screen
Bram Moolenaar64404472010-06-26 06:24:45 +02004912 * height, so that the window size can be made to fit on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 * This should be completely changed later.
4914 */
4915 *screen_w -= get_menu_tool_width();
4916 *screen_h -= get_menu_tool_height();
4917}
4918
4919#if defined(FEAT_TITLE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00004921gui_mch_settitle(char_u *title, char_u *icon UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 if (title != NULL && output_conv.vc_type != CONV_NONE)
4924 title = string_convert(&output_conv, title, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925
4926 gtk_window_set_title(GTK_WINDOW(gui.mainwin), (const char *)title);
4927
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 if (output_conv.vc_type != CONV_NONE)
4929 vim_free(title);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930}
4931#endif /* FEAT_TITLE */
4932
4933#if defined(FEAT_MENU) || defined(PROTO)
4934 void
4935gui_mch_enable_menu(int showit)
4936{
4937 GtkWidget *widget;
4938
4939# ifdef FEAT_GUI_GNOME
4940 if (using_gnome)
4941 widget = gui.menubar_h;
4942 else
4943# endif
4944 widget = gui.menubar;
4945
Bram Moolenaar18144c82006-04-12 21:52:12 +00004946 /* Do not disable the menu while starting up, otherwise F10 doesn't work. */
Bram Moolenaar98921892016-02-23 17:14:37 +01004947# if GTK_CHECK_VERSION(3,0,0)
4948 if (!showit != !gtk_widget_get_visible(widget) && !gui.starting)
4949# else
Bram Moolenaar18144c82006-04-12 21:52:12 +00004950 if (!showit != !GTK_WIDGET_VISIBLE(widget) && !gui.starting)
Bram Moolenaar98921892016-02-23 17:14:37 +01004951# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 {
4953 if (showit)
4954 gtk_widget_show(widget);
4955 else
4956 gtk_widget_hide(widget);
4957
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004958 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 }
4960}
4961#endif /* FEAT_MENU */
4962
4963#if defined(FEAT_TOOLBAR) || defined(PROTO)
4964 void
4965gui_mch_show_toolbar(int showit)
4966{
4967 GtkWidget *widget;
4968
4969 if (gui.toolbar == NULL)
4970 return;
4971
4972# ifdef FEAT_GUI_GNOME
4973 if (using_gnome)
4974 widget = gui.toolbar_h;
4975 else
4976# endif
4977 widget = gui.toolbar;
4978
4979 if (showit)
4980 set_toolbar_style(GTK_TOOLBAR(gui.toolbar));
4981
Bram Moolenaar98921892016-02-23 17:14:37 +01004982# if GTK_CHECK_VERSION(3,0,0)
4983 if (!showit != !gtk_widget_get_visible(widget))
4984# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 if (!showit != !GTK_WIDGET_VISIBLE(widget))
Bram Moolenaar98921892016-02-23 17:14:37 +01004986# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 {
4988 if (showit)
4989 gtk_widget_show(widget);
4990 else
4991 gtk_widget_hide(widget);
4992
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00004993 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 }
4995}
4996#endif /* FEAT_TOOLBAR */
4997
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998/*
4999 * Check if a given font is a CJK font. This is done in a very crude manner. It
5000 * just see if U+04E00 for zh and ja and U+AC00 for ko are covered in a given
5001 * font. Consequently, this function cannot be used as a general purpose check
5002 * for CJK-ness for which fontconfig APIs should be used. This is only used by
5003 * gui_mch_init_font() to deal with 'CJK fixed width fonts'.
5004 */
5005 static int
5006is_cjk_font(PangoFontDescription *font_desc)
5007{
5008 static const char * const cjk_langs[] =
5009 {"zh_CN", "zh_TW", "zh_HK", "ja", "ko"};
5010
5011 PangoFont *font;
5012 unsigned i;
5013 int is_cjk = FALSE;
5014
5015 font = pango_context_load_font(gui.text_context, font_desc);
5016
5017 if (font == NULL)
5018 return FALSE;
5019
5020 for (i = 0; !is_cjk && i < G_N_ELEMENTS(cjk_langs); ++i)
5021 {
5022 PangoCoverage *coverage;
5023 gunichar uc;
5024
5025 coverage = pango_font_get_coverage(
5026 font, pango_language_from_string(cjk_langs[i]));
5027
5028 if (coverage != NULL)
5029 {
5030 uc = (cjk_langs[i][0] == 'k') ? 0xAC00 : 0x4E00;
5031 is_cjk = (pango_coverage_get(coverage, uc) == PANGO_COVERAGE_EXACT);
5032 pango_coverage_unref(coverage);
5033 }
5034 }
5035
5036 g_object_unref(font);
5037
5038 return is_cjk;
5039}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040
Bram Moolenaar231334e2005-07-25 20:46:57 +00005041/*
5042 * Adjust gui.char_height (after 'linespace' was changed).
5043 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 int
Bram Moolenaar231334e2005-07-25 20:46:57 +00005045gui_mch_adjust_charheight(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 PangoFontMetrics *metrics;
5048 int ascent;
5049 int descent;
5050
5051 metrics = pango_context_get_metrics(gui.text_context, gui.norm_font,
5052 pango_context_get_language(gui.text_context));
5053 ascent = pango_font_metrics_get_ascent(metrics);
5054 descent = pango_font_metrics_get_descent(metrics);
5055
5056 pango_font_metrics_unref(metrics);
5057
5058 gui.char_height = (ascent + descent + PANGO_SCALE - 1) / PANGO_SCALE
Bram Moolenaar231334e2005-07-25 20:46:57 +00005059 + p_linespace;
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00005060 /* LINTED: avoid warning: bitwise operation on signed value */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 gui.char_ascent = PANGO_PIXELS(ascent + p_linespace * PANGO_SCALE / 2);
5062
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 /* A not-positive value of char_height may crash Vim. Only happens
5064 * if 'linespace' is negative (which does make sense sometimes). */
5065 gui.char_ascent = MAX(gui.char_ascent, 0);
5066 gui.char_height = MAX(gui.char_height, gui.char_ascent + 1);
5067
5068 return OK;
5069}
5070
Bram Moolenaar98921892016-02-23 17:14:37 +01005071#if GTK_CHECK_VERSION(3,0,0)
5072/* Callback function used in gui_mch_font_dialog() */
5073 static gboolean
5074font_filter(const PangoFontFamily *family,
5075 const PangoFontFace *face UNUSED,
5076 gpointer data UNUSED)
5077{
5078 return pango_font_family_is_monospace((PangoFontFamily *)family);
5079}
5080#endif
5081
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082/*
5083 * Put up a font dialog and return the selected font name in allocated memory.
5084 * "oldval" is the previous value. Return NULL when cancelled.
5085 * This should probably go into gui_gtk.c. Hmm.
5086 * FIXME:
5087 * The GTK2 font selection dialog has no filtering API. So we could either
5088 * a) implement our own (possibly copying the code from somewhere else) or
5089 * b) just live with it.
5090 */
5091 char_u *
5092gui_mch_font_dialog(char_u *oldval)
5093{
5094 GtkWidget *dialog;
5095 int response;
5096 char_u *fontname = NULL;
5097 char_u *oldname;
5098
Bram Moolenaar98921892016-02-23 17:14:37 +01005099#if GTK_CHECK_VERSION(3,2,0)
5100 dialog = gtk_font_chooser_dialog_new(NULL, NULL);
5101 gtk_font_chooser_set_filter_func(GTK_FONT_CHOOSER(dialog), font_filter,
5102 NULL, NULL);
5103#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 dialog = gtk_font_selection_dialog_new(NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01005105#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106
5107 gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(gui.mainwin));
5108 gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
5109
5110 if (oldval != NULL && oldval[0] != NUL)
5111 {
5112 if (output_conv.vc_type != CONV_NONE)
5113 oldname = string_convert(&output_conv, oldval, NULL);
5114 else
5115 oldname = oldval;
5116
5117 /* Annoying bug in GTK (or Pango): if the font name does not include a
5118 * size, zero is used. Use default point size ten. */
5119 if (!vim_isdigit(oldname[STRLEN(oldname) - 1]))
5120 {
5121 char_u *p = vim_strnsave(oldname, STRLEN(oldname) + 3);
5122
5123 if (p != NULL)
5124 {
5125 STRCPY(p + STRLEN(p), " 10");
5126 if (oldname != oldval)
5127 vim_free(oldname);
5128 oldname = p;
5129 }
5130 }
5131
Bram Moolenaar98921892016-02-23 17:14:37 +01005132#if GTK_CHECK_VERSION(3,2,0)
5133 gtk_font_chooser_set_font(
5134 GTK_FONT_CHOOSER(dialog), (const gchar *)oldname);
5135#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 gtk_font_selection_dialog_set_font_name(
5137 GTK_FONT_SELECTION_DIALOG(dialog), (const char *)oldname);
Bram Moolenaar98921892016-02-23 17:14:37 +01005138#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139
5140 if (oldname != oldval)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005141 vim_free(oldname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 }
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005143 else
Bram Moolenaar98921892016-02-23 17:14:37 +01005144#if GTK_CHECK_VERSION(3,2,0)
5145 gtk_font_chooser_set_font(
5146 GTK_FONT_CHOOSER(dialog), DEFAULT_FONT);
5147#else
Bram Moolenaarbef9d832009-09-11 13:46:41 +00005148 gtk_font_selection_dialog_set_font_name(
5149 GTK_FONT_SELECTION_DIALOG(dialog), DEFAULT_FONT);
Bram Moolenaar98921892016-02-23 17:14:37 +01005150#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151
5152 response = gtk_dialog_run(GTK_DIALOG(dialog));
5153
5154 if (response == GTK_RESPONSE_OK)
5155 {
5156 char *name;
5157
Bram Moolenaar98921892016-02-23 17:14:37 +01005158#if GTK_CHECK_VERSION(3,2,0)
5159 name = gtk_font_chooser_get_font(GTK_FONT_CHOOSER(dialog));
5160#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 name = gtk_font_selection_dialog_get_font_name(
5162 GTK_FONT_SELECTION_DIALOG(dialog));
Bram Moolenaar98921892016-02-23 17:14:37 +01005163#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164 if (name != NULL)
5165 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005166 char_u *p;
5167
5168 /* Apparently some font names include a comma, need to escape
5169 * that, because in 'guifont' it separates names. */
5170 p = vim_strsave_escaped((char_u *)name, (char_u *)",");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 g_free(name);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005172 if (p != NULL && input_conv.vc_type != CONV_NONE)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005173 {
5174 fontname = string_convert(&input_conv, p, NULL);
5175 vim_free(p);
5176 }
5177 else
5178 fontname = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 }
5180 }
5181
5182 if (response != GTK_RESPONSE_NONE)
5183 gtk_widget_destroy(dialog);
5184
5185 return fontname;
5186}
5187
5188/*
5189 * Some monospace fonts don't support a bold weight, and fall back
5190 * silently to the regular weight. But this is no good since our text
5191 * drawing function can emulate bold by overstriking. So let's try
5192 * to detect whether bold weight is actually available and emulate it
5193 * otherwise.
5194 *
5195 * Note that we don't need to check for italic style since Xft can
5196 * emulate italic on its own, provided you have a proper fontconfig
5197 * setup. We wouldn't be able to emulate it in Vim anyway.
5198 */
5199 static void
5200get_styled_font_variants(void)
5201{
5202 PangoFontDescription *bold_font_desc;
5203 PangoFont *plain_font;
5204 PangoFont *bold_font;
5205
5206 gui.font_can_bold = FALSE;
5207
5208 plain_font = pango_context_load_font(gui.text_context, gui.norm_font);
5209
5210 if (plain_font == NULL)
5211 return;
5212
5213 bold_font_desc = pango_font_description_copy_static(gui.norm_font);
5214 pango_font_description_set_weight(bold_font_desc, PANGO_WEIGHT_BOLD);
5215
5216 bold_font = pango_context_load_font(gui.text_context, bold_font_desc);
5217 /*
5218 * The comparison relies on the unique handle nature of a PangoFont*,
5219 * i.e. it's assumed that a different PangoFont* won't refer to the
5220 * same font. Seems to work, and failing here isn't critical anyway.
5221 */
5222 if (bold_font != NULL)
5223 {
5224 gui.font_can_bold = (bold_font != plain_font);
5225 g_object_unref(bold_font);
5226 }
5227
5228 pango_font_description_free(bold_font_desc);
5229 g_object_unref(plain_font);
5230}
5231
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232static PangoEngineShape *default_shape_engine = NULL;
5233
5234/*
5235 * Create a map from ASCII characters in the range [32,126] to glyphs
5236 * of the current font. This is used by gui_gtk2_draw_string() to skip
5237 * the itemize and shaping process for the most common case.
5238 */
5239 static void
5240ascii_glyph_table_init(void)
5241{
5242 char_u ascii_chars[128];
5243 PangoAttrList *attr_list;
5244 GList *item_list;
5245 int i;
5246
5247 if (gui.ascii_glyphs != NULL)
5248 pango_glyph_string_free(gui.ascii_glyphs);
5249 if (gui.ascii_font != NULL)
5250 g_object_unref(gui.ascii_font);
5251
5252 gui.ascii_glyphs = NULL;
5253 gui.ascii_font = NULL;
5254
5255 /* For safety, fill in question marks for the control characters. */
5256 for (i = 0; i < 32; ++i)
5257 ascii_chars[i] = '?';
5258 for (; i < 127; ++i)
5259 ascii_chars[i] = i;
5260 ascii_chars[i] = '?';
5261
5262 attr_list = pango_attr_list_new();
5263 item_list = pango_itemize(gui.text_context, (const char *)ascii_chars,
5264 0, sizeof(ascii_chars), attr_list, NULL);
5265
5266 if (item_list != NULL && item_list->next == NULL) /* play safe */
5267 {
5268 PangoItem *item;
5269 int width;
5270
5271 item = (PangoItem *)item_list->data;
5272 width = gui.char_width * PANGO_SCALE;
5273
5274 /* Remember the shape engine used for ASCII. */
5275 default_shape_engine = item->analysis.shape_engine;
5276
5277 gui.ascii_font = item->analysis.font;
5278 g_object_ref(gui.ascii_font);
5279
5280 gui.ascii_glyphs = pango_glyph_string_new();
5281
5282 pango_shape((const char *)ascii_chars, sizeof(ascii_chars),
5283 &item->analysis, gui.ascii_glyphs);
5284
5285 g_return_if_fail(gui.ascii_glyphs->num_glyphs == sizeof(ascii_chars));
5286
5287 for (i = 0; i < gui.ascii_glyphs->num_glyphs; ++i)
5288 {
5289 PangoGlyphGeometry *geom;
5290
5291 geom = &gui.ascii_glyphs->glyphs[i].geometry;
5292 geom->x_offset += MAX(0, width - geom->width) / 2;
5293 geom->width = width;
5294 }
5295 }
5296
5297 g_list_foreach(item_list, (GFunc)&pango_item_free, NULL);
5298 g_list_free(item_list);
5299 pango_attr_list_unref(attr_list);
5300}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301
5302/*
5303 * Initialize Vim to use the font or fontset with the given name.
5304 * Return FAIL if the font could not be loaded, OK otherwise.
5305 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 int
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005307gui_mch_init_font(char_u *font_name, int fontset UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 PangoFontDescription *font_desc;
5310 PangoLayout *layout;
5311 int width;
5312
5313 /* If font_name is NULL, this means to use the default, which should
5314 * be present on all proper Pango/fontconfig installations. */
5315 if (font_name == NULL)
5316 font_name = (char_u *)DEFAULT_FONT;
5317
5318 font_desc = gui_mch_get_font(font_name, FALSE);
5319
5320 if (font_desc == NULL)
5321 return FAIL;
5322
5323 gui_mch_free_font(gui.norm_font);
5324 gui.norm_font = font_desc;
5325
5326 pango_context_set_font_description(gui.text_context, font_desc);
5327
5328 layout = pango_layout_new(gui.text_context);
5329 pango_layout_set_text(layout, "MW", 2);
5330 pango_layout_get_size(layout, &width, NULL);
5331 /*
5332 * Set char_width to half the width obtained from pango_layout_get_size()
5333 * for CJK fixed_width/bi-width fonts. An unpatched version of Xft leads
5334 * Pango to use the same width for both non-CJK characters (e.g. Latin
5335 * letters and numbers) and CJK characters. This results in 's p a c e d
5336 * o u t' rendering when a CJK 'fixed width' font is used. To work around
5337 * that, divide the width returned by Pango by 2 if cjk_width is equal to
5338 * width for CJK fonts.
5339 *
5340 * For related bugs, see:
5341 * http://bugzilla.gnome.org/show_bug.cgi?id=106618
5342 * http://bugzilla.gnome.org/show_bug.cgi?id=106624
5343 *
5344 * With this, for all four of the following cases, Vim works fine:
5345 * guifont=CJK_fixed_width_font
5346 * guifont=Non_CJK_fixed_font
5347 * guifont=Non_CJK_fixed_font,CJK_Fixed_font
5348 * guifont=Non_CJK_fixed_font guifontwide=CJK_fixed_font
5349 */
5350 if (is_cjk_font(gui.norm_font))
5351 {
5352 int cjk_width;
5353
5354 /* Measure the text extent of U+4E00 and U+4E8C */
5355 pango_layout_set_text(layout, "\344\270\200\344\272\214", -1);
5356 pango_layout_get_size(layout, &cjk_width, NULL);
5357
5358 if (width == cjk_width) /* Xft not patched */
5359 width /= 2;
5360 }
5361 g_object_unref(layout);
5362
5363 gui.char_width = (width / 2 + PANGO_SCALE - 1) / PANGO_SCALE;
5364
5365 /* A zero width may cause a crash. Happens for semi-invalid fontsets. */
5366 if (gui.char_width <= 0)
5367 gui.char_width = 8;
5368
Bram Moolenaar231334e2005-07-25 20:46:57 +00005369 gui_mch_adjust_charheight();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370
5371 /* Set the fontname, which will be used for information purposes */
5372 hl_set_font_name(font_name);
5373
5374 get_styled_font_variants();
5375 ascii_glyph_table_init();
5376
5377 /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */
5378 if (gui.wide_font != NULL
5379 && pango_font_description_equal(gui.norm_font, gui.wide_font))
5380 {
5381 pango_font_description_free(gui.wide_font);
5382 gui.wide_font = NULL;
5383 }
5384
Bram Moolenaare161c792009-11-03 17:13:59 +00005385 if (gui_mch_maximized())
5386 {
Bram Moolenaare161c792009-11-03 17:13:59 +00005387 /* Update lines and columns in accordance with the new font, keep the
5388 * window maximized. */
Bram Moolenaar12bc1b52011-08-10 17:44:45 +02005389 gui_mch_newfont();
Bram Moolenaare161c792009-11-03 17:13:59 +00005390 }
5391 else
Bram Moolenaare161c792009-11-03 17:13:59 +00005392 {
5393 /* Preserve the logical dimensions of the screen. */
5394 update_window_manager_hints(0, 0);
5395 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396
5397 return OK;
5398}
5399
5400/*
5401 * Get a reference to the font "name".
5402 * Return zero for failure.
5403 */
5404 GuiFont
5405gui_mch_get_font(char_u *name, int report_error)
5406{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 PangoFontDescription *font;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408
5409 /* can't do this when GUI is not running */
5410 if (!gui.in_use || name == NULL)
5411 return NULL;
5412
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 if (output_conv.vc_type != CONV_NONE)
5414 {
5415 char_u *buf;
5416
5417 buf = string_convert(&output_conv, name, NULL);
5418 if (buf != NULL)
5419 {
5420 font = pango_font_description_from_string((const char *)buf);
5421 vim_free(buf);
5422 }
5423 else
5424 font = NULL;
5425 }
5426 else
5427 font = pango_font_description_from_string((const char *)name);
5428
5429 if (font != NULL)
5430 {
5431 PangoFont *real_font;
5432
5433 /* pango_context_load_font() bails out if no font size is set */
5434 if (pango_font_description_get_size(font) <= 0)
5435 pango_font_description_set_size(font, 10 * PANGO_SCALE);
5436
5437 real_font = pango_context_load_font(gui.text_context, font);
5438
5439 if (real_font == NULL)
5440 {
5441 pango_font_description_free(font);
5442 font = NULL;
5443 }
5444 else
5445 g_object_unref(real_font);
5446 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447
5448 if (font == NULL)
5449 {
5450 if (report_error)
Bram Moolenaarc93e7912008-07-08 10:46:08 +00005451 EMSG2(_((char *)e_font), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 return NULL;
5453 }
5454
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 return font;
5456}
5457
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005458#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005459/*
5460 * Return the name of font "font" in allocated memory.
5461 */
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005462 char_u *
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005463gui_mch_get_fontname(GuiFont font, char_u *name UNUSED)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005464{
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005465 if (font != NOFONT)
5466 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005467 char *pangoname = pango_font_description_to_string(font);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005468
Bram Moolenaar89d40322006-08-29 15:30:07 +00005469 if (pangoname != NULL)
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005470 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00005471 char_u *s = vim_strsave((char_u *)pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005472
Bram Moolenaar89d40322006-08-29 15:30:07 +00005473 g_free(pangoname);
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005474 return s;
5475 }
5476 }
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005477 return NULL;
5478}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005479#endif
Bram Moolenaar46c9c732004-12-12 11:37:09 +00005480
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481/*
5482 * If a font is not going to be used, free its structure.
5483 */
5484 void
5485gui_mch_free_font(GuiFont font)
5486{
5487 if (font != NOFONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488 pango_font_description_free(font);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489}
5490
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491/*
Bram Moolenaar36edf062016-07-21 22:10:12 +02005492 * Return the Pixel value (color) for the given color name.
5493 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 * Return INVALCOLOR for error.
5495 */
5496 guicolor_T
5497gui_mch_get_color(char_u *name)
5498{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 if (!gui.in_use) /* can't do this when GUI not running */
5500 return INVALCOLOR;
5501
Bram Moolenaar98921892016-02-23 17:14:37 +01005502#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005503 return name != NULL ? gui_get_color_cmn(name) : INVALCOLOR;
Bram Moolenaar98921892016-02-23 17:14:37 +01005504#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02005505 guicolor_T color;
5506 GdkColor gcolor;
5507 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508
Bram Moolenaar36edf062016-07-21 22:10:12 +02005509 color = (name != NULL) ? gui_get_color_cmn(name) : INVALCOLOR;
5510 if (color == INVALCOLOR)
5511 return INVALCOLOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512
Bram Moolenaar36edf062016-07-21 22:10:12 +02005513 gcolor.red = (guint16)(((color & 0xff0000) >> 16) / 255.0 * 65535 + 0.5);
5514 gcolor.green = (guint16)(((color & 0xff00) >> 8) / 255.0 * 65535 + 0.5);
5515 gcolor.blue = (guint16)((color & 0xff) / 255.0 * 65535 + 0.5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516
Bram Moolenaar36edf062016-07-21 22:10:12 +02005517 ret = gdk_colormap_alloc_color(gtk_widget_get_colormap(gui.drawarea),
5518 &gcolor, FALSE, TRUE);
5519
5520 return ret != 0 ? (guicolor_T)gcolor.pixel : INVALCOLOR;
5521#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522}
5523
5524/*
5525 * Set the current text foreground color.
5526 */
5527 void
5528gui_mch_set_fg_color(guicolor_T color)
5529{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005530#if GTK_CHECK_VERSION(3,0,0)
5531 *gui.fgcolor = color_to_rgba(color);
5532#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533 gui.fgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005534#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535}
5536
5537/*
5538 * Set the current text background color.
5539 */
5540 void
5541gui_mch_set_bg_color(guicolor_T color)
5542{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005543#if GTK_CHECK_VERSION(3,0,0)
5544 *gui.bgcolor = color_to_rgba(color);
5545#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 gui.bgcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005547#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548}
5549
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005550/*
5551 * Set the current text special color.
5552 */
5553 void
5554gui_mch_set_sp_color(guicolor_T color)
5555{
Bram Moolenaar36edf062016-07-21 22:10:12 +02005556#if GTK_CHECK_VERSION(3,0,0)
5557 *gui.spcolor = color_to_rgba(color);
5558#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005559 gui.spcolor->pixel = (unsigned long)color;
Bram Moolenaar36edf062016-07-21 22:10:12 +02005560#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005561}
5562
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563/*
5564 * Function-like convenience macro for the sake of efficiency.
5565 */
5566#define INSERT_PANGO_ATTR(Attribute, AttrList, Start, End) \
5567 G_STMT_START{ \
5568 PangoAttribute *tmp_attr_; \
5569 tmp_attr_ = (Attribute); \
5570 tmp_attr_->start_index = (Start); \
5571 tmp_attr_->end_index = (End); \
5572 pango_attr_list_insert((AttrList), tmp_attr_); \
5573 }G_STMT_END
5574
5575 static void
5576apply_wide_font_attr(char_u *s, int len, PangoAttrList *attr_list)
5577{
5578 char_u *start = NULL;
5579 char_u *p;
5580 int uc;
5581
5582 for (p = s; p < s + len; p += utf_byte2len(*p))
5583 {
5584 uc = utf_ptr2char(p);
5585
5586 if (start == NULL)
5587 {
5588 if (uc >= 0x80 && utf_char2cells(uc) == 2)
5589 start = p;
5590 }
5591 else if (uc < 0x80 /* optimization shortcut */
5592 || (utf_char2cells(uc) != 2 && !utf_iscomposing(uc)))
5593 {
5594 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5595 attr_list, start - s, p - s);
5596 start = NULL;
5597 }
5598 }
5599
5600 if (start != NULL)
5601 INSERT_PANGO_ATTR(pango_attr_font_desc_new(gui.wide_font),
5602 attr_list, start - s, len);
5603}
5604
5605 static int
5606count_cluster_cells(char_u *s, PangoItem *item,
5607 PangoGlyphString* glyphs, int i,
5608 int *cluster_width,
5609 int *last_glyph_rbearing)
5610{
5611 char_u *p;
5612 int next; /* glyph start index of next cluster */
5613 int start, end; /* string segment of current cluster */
5614 int width; /* real cluster width in Pango units */
5615 int uc;
5616 int cellcount = 0;
5617
5618 width = glyphs->glyphs[i].geometry.width;
5619
5620 for (next = i + 1; next < glyphs->num_glyphs; ++next)
5621 {
5622 if (glyphs->glyphs[next].attr.is_cluster_start)
5623 break;
5624 else if (glyphs->glyphs[next].geometry.width > width)
5625 width = glyphs->glyphs[next].geometry.width;
5626 }
5627
5628 start = item->offset + glyphs->log_clusters[i];
5629 end = item->offset + ((next < glyphs->num_glyphs) ?
5630 glyphs->log_clusters[next] : item->length);
5631
5632 for (p = s + start; p < s + end; p += utf_byte2len(*p))
5633 {
5634 uc = utf_ptr2char(p);
5635 if (uc < 0x80)
5636 ++cellcount;
5637 else if (!utf_iscomposing(uc))
5638 cellcount += utf_char2cells(uc);
5639 }
5640
5641 if (last_glyph_rbearing != NULL
5642 && cellcount > 0 && next == glyphs->num_glyphs)
5643 {
5644 PangoRectangle ink_rect;
5645 /*
5646 * If a certain combining mark had to be taken from a non-monospace
5647 * font, we have to compensate manually by adapting x_offset according
5648 * to the ink extents of the previous glyph.
5649 */
5650 pango_font_get_glyph_extents(item->analysis.font,
5651 glyphs->glyphs[i].glyph,
5652 &ink_rect, NULL);
5653
5654 if (PANGO_RBEARING(ink_rect) > 0)
5655 *last_glyph_rbearing = PANGO_RBEARING(ink_rect);
5656 }
5657
5658 if (cellcount > 0)
5659 *cluster_width = width;
5660
5661 return cellcount;
5662}
5663
5664/*
5665 * If there are only combining characters in the cluster, we cannot just
5666 * change the width of the previous glyph since there is none. Therefore
5667 * some guesswork is needed.
5668 *
5669 * If ink_rect.x is negative Pango apparently has taken care of the composing
5670 * by itself. Actually setting x_offset = 0 should be sufficient then, but due
5671 * to problems with composing from different fonts we still need to fine-tune
Bram Moolenaar64404472010-06-26 06:24:45 +02005672 * x_offset to avoid ugliness.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673 *
5674 * If ink_rect.x is not negative, force overstriking by pointing x_offset to
5675 * the position of the previous glyph. Apparently this happens only with old
5676 * X fonts which don't provide the special combining information needed by
5677 * Pango.
5678 */
5679 static void
5680setup_zero_width_cluster(PangoItem *item, PangoGlyphInfo *glyph,
5681 int last_cellcount, int last_cluster_width,
5682 int last_glyph_rbearing)
5683{
5684 PangoRectangle ink_rect;
5685 PangoRectangle logical_rect;
5686 int width;
5687
5688 width = last_cellcount * gui.char_width * PANGO_SCALE;
5689 glyph->geometry.x_offset = -width + MAX(0, width - last_cluster_width) / 2;
5690 glyph->geometry.width = 0;
5691
5692 pango_font_get_glyph_extents(item->analysis.font,
5693 glyph->glyph,
5694 &ink_rect, &logical_rect);
5695 if (ink_rect.x < 0)
5696 {
5697 glyph->geometry.x_offset += last_glyph_rbearing;
5698 glyph->geometry.y_offset = logical_rect.height
5699 - (gui.char_height - p_linespace) * PANGO_SCALE;
5700 }
Bram Moolenaar706e84b2010-08-07 15:46:45 +02005701 else
5702 /* If the accent width is smaller than the cluster width, position it
5703 * in the middle. */
5704 glyph->geometry.x_offset = -width + MAX(0, width - ink_rect.width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705}
5706
Bram Moolenaar98921892016-02-23 17:14:37 +01005707#if GTK_CHECK_VERSION(3,0,0)
5708 static void
5709draw_glyph_string(int row, int col, int num_cells, int flags,
5710 PangoFont *font, PangoGlyphString *glyphs,
5711 cairo_t *cr)
5712#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 static void
5714draw_glyph_string(int row, int col, int num_cells, int flags,
5715 PangoFont *font, PangoGlyphString *glyphs)
Bram Moolenaar98921892016-02-23 17:14:37 +01005716#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717{
5718 if (!(flags & DRAW_TRANSP))
5719 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005720#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005721 cairo_set_source_rgba(cr,
5722 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
5723 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005724 cairo_rectangle(cr,
5725 FILL_X(col), FILL_Y(row),
5726 num_cells * gui.char_width, gui.char_height);
5727 cairo_fill(cr);
5728#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
5730
5731 gdk_draw_rectangle(gui.drawarea->window,
5732 gui.text_gc,
5733 TRUE,
5734 FILL_X(col),
5735 FILL_Y(row),
5736 num_cells * gui.char_width,
5737 gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01005738#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 }
5740
Bram Moolenaar98921892016-02-23 17:14:37 +01005741#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02005742 cairo_set_source_rgba(cr,
5743 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5744 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005745 cairo_move_to(cr, TEXT_X(col), TEXT_Y(row));
5746 pango_cairo_show_glyph_string(cr, font, glyphs);
5747#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
5749
5750 gdk_draw_glyphs(gui.drawarea->window,
5751 gui.text_gc,
5752 font,
5753 TEXT_X(col),
5754 TEXT_Y(row),
5755 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005756#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757
5758 /* redraw the contents with an offset of 1 to emulate bold */
5759 if ((flags & DRAW_BOLD) && !gui.font_can_bold)
Bram Moolenaar98921892016-02-23 17:14:37 +01005760#if GTK_CHECK_VERSION(3,0,0)
5761 {
Bram Moolenaar36edf062016-07-21 22:10:12 +02005762 cairo_set_source_rgba(cr,
5763 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5764 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005765 cairo_move_to(cr, TEXT_X(col) + 1, TEXT_Y(row));
5766 pango_cairo_show_glyph_string(cr, font, glyphs);
5767 }
5768#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 gdk_draw_glyphs(gui.drawarea->window,
5770 gui.text_gc,
5771 font,
5772 TEXT_X(col) + 1,
5773 TEXT_Y(row),
5774 glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776}
5777
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005778/*
5779 * Draw underline and undercurl at the bottom of the character cell.
5780 */
Bram Moolenaar98921892016-02-23 17:14:37 +01005781#if GTK_CHECK_VERSION(3,0,0)
5782 static void
5783draw_under(int flags, int row, int col, int cells, cairo_t *cr)
5784#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005785 static void
5786draw_under(int flags, int row, int col, int cells)
Bram Moolenaar98921892016-02-23 17:14:37 +01005787#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005788{
5789 int i;
5790 int offset;
Bram Moolenaarb85cb212009-05-17 14:24:23 +00005791 static const int val[8] = {1, 0, 0, 0, 1, 2, 2, 2 };
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005792 int y = FILL_Y(row + 1) - 1;
5793
5794 /* Undercurl: draw curl at the bottom of the character cell. */
5795 if (flags & DRAW_UNDERC)
5796 {
Bram Moolenaar98921892016-02-23 17:14:37 +01005797#if GTK_CHECK_VERSION(3,0,0)
5798 cairo_set_line_width(cr, 1.0);
5799 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005800 cairo_set_source_rgba(cr,
5801 gui.spcolor->red, gui.spcolor->green, gui.spcolor->blue,
5802 gui.spcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005803 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5804 {
5805 offset = val[i % 8];
5806 cairo_line_to(cr, i, y - offset + 0.5);
5807 }
5808 cairo_stroke(cr);
5809#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005810 gdk_gc_set_foreground(gui.text_gc, gui.spcolor);
5811 for (i = FILL_X(col); i < FILL_X(col + cells); ++i)
5812 {
5813 offset = val[i % 8];
5814 gdk_draw_point(gui.drawarea->window, gui.text_gc, i, y - offset);
5815 }
5816 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01005817#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005818 }
5819
5820 /* Underline: draw a line at the bottom of the character cell. */
5821 if (flags & DRAW_UNDERL)
5822 {
5823 /* When p_linespace is 0, overwrite the bottom row of pixels.
5824 * Otherwise put the line just below the character. */
5825 if (p_linespace > 1)
5826 y -= p_linespace - 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01005827#if GTK_CHECK_VERSION(3,0,0)
5828 {
5829 cairo_set_line_width(cr, 1.0);
5830 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
Bram Moolenaar36edf062016-07-21 22:10:12 +02005831 cairo_set_source_rgba(cr,
5832 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
5833 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01005834 cairo_move_to(cr, FILL_X(col), y + 0.5);
5835 cairo_line_to(cr, FILL_X(col + cells), y + 0.5);
5836 cairo_stroke(cr);
5837 }
5838#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005839 gdk_draw_line(gui.drawarea->window, gui.text_gc,
5840 FILL_X(col), y,
5841 FILL_X(col + cells) - 1, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01005842#endif
Bram Moolenaarf36d3692005-03-15 22:48:14 +00005843 }
5844}
5845
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 int
5847gui_gtk2_draw_string(int row, int col, char_u *s, int len, int flags)
5848{
5849 GdkRectangle area; /* area for clip mask */
5850 PangoGlyphString *glyphs; /* glyphs of current item */
5851 int column_offset = 0; /* column offset in cells */
5852 int i;
5853 char_u *conv_buf = NULL; /* result of UTF-8 conversion */
5854 char_u *new_conv_buf;
5855 int convlen;
5856 char_u *sp, *bp;
5857 int plen;
Bram Moolenaar98921892016-02-23 17:14:37 +01005858#if GTK_CHECK_VERSION(3,0,0)
5859 cairo_t *cr;
5860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861
Bram Moolenaar98921892016-02-23 17:14:37 +01005862#if GTK_CHECK_VERSION(3,0,0)
5863 if (gui.text_context == NULL || gtk_widget_get_window(gui.drawarea) == NULL)
5864#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865 if (gui.text_context == NULL || gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01005866#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 return len;
5868
5869 if (output_conv.vc_type != CONV_NONE)
5870 {
5871 /*
5872 * Convert characters from 'encoding' to 'termencoding', which is set
5873 * to UTF-8 by gui_mch_init(). did_set_string_option() in option.c
5874 * prohibits changing this to something else than UTF-8 if the GUI is
5875 * in use.
5876 */
5877 convlen = len;
5878 conv_buf = string_convert(&output_conv, s, &convlen);
5879 g_return_val_if_fail(conv_buf != NULL, len);
5880
5881 /* Correct for differences in char width: some chars are
5882 * double-wide in 'encoding' but single-wide in utf-8. Add a space to
5883 * compensate for that. */
5884 for (sp = s, bp = conv_buf; sp < s + len && bp < conv_buf + convlen; )
5885 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005886 plen = utf_ptr2len(bp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 if ((*mb_ptr2cells)(sp) == 2 && utf_ptr2cells(bp) == 1)
5888 {
5889 new_conv_buf = alloc(convlen + 2);
5890 if (new_conv_buf == NULL)
5891 return len;
5892 plen += bp - conv_buf;
5893 mch_memmove(new_conv_buf, conv_buf, plen);
5894 new_conv_buf[plen] = ' ';
5895 mch_memmove(new_conv_buf + plen + 1, conv_buf + plen,
5896 convlen - plen + 1);
5897 vim_free(conv_buf);
5898 conv_buf = new_conv_buf;
5899 ++convlen;
5900 bp = conv_buf + plen;
5901 plen = 1;
5902 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005903 sp += (*mb_ptr2len)(sp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 bp += plen;
5905 }
5906 s = conv_buf;
5907 len = convlen;
5908 }
5909
5910 /*
5911 * Restrict all drawing to the current screen line in order to prevent
5912 * fuzzy font lookups from messing up the screen.
5913 */
5914 area.x = gui.border_offset;
5915 area.y = FILL_Y(row);
5916 area.width = gui.num_cols * gui.char_width;
5917 area.height = gui.char_height;
5918
Bram Moolenaar98921892016-02-23 17:14:37 +01005919#if GTK_CHECK_VERSION(3,0,0)
5920 cr = cairo_create(gui.surface);
5921 cairo_rectangle(cr, area.x, area.y, area.width, area.height);
5922 cairo_clip(cr);
5923#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924 gdk_gc_set_clip_origin(gui.text_gc, 0, 0);
5925 gdk_gc_set_clip_rectangle(gui.text_gc, &area);
Bram Moolenaar98921892016-02-23 17:14:37 +01005926#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927
5928 glyphs = pango_glyph_string_new();
5929
5930 /*
5931 * Optimization hack: If possible, skip the itemize and shaping process
5932 * for pure ASCII strings. This optimization is particularly effective
5933 * because Vim draws space characters to clear parts of the screen.
5934 */
5935 if (!(flags & DRAW_ITALIC)
5936 && !((flags & DRAW_BOLD) && gui.font_can_bold)
5937 && gui.ascii_glyphs != NULL)
5938 {
5939 char_u *p;
5940
5941 for (p = s; p < s + len; ++p)
5942 if (*p & 0x80)
5943 goto not_ascii;
5944
5945 pango_glyph_string_set_size(glyphs, len);
5946
5947 for (i = 0; i < len; ++i)
5948 {
5949 glyphs->glyphs[i] = gui.ascii_glyphs->glyphs[s[i]];
5950 glyphs->log_clusters[i] = i;
5951 }
5952
Bram Moolenaar98921892016-02-23 17:14:37 +01005953#if GTK_CHECK_VERSION(3,0,0)
5954 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs, cr);
5955#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005956 draw_glyph_string(row, col, len, flags, gui.ascii_font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01005957#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958
5959 column_offset = len;
5960 }
5961 else
5962not_ascii:
5963 {
5964 PangoAttrList *attr_list;
5965 GList *item_list;
5966 int cluster_width;
5967 int last_glyph_rbearing;
5968 int cells = 0; /* cells occupied by current cluster */
5969
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005970 /* Safety check: pango crashes when invoked with invalid utf-8
5971 * characters. */
5972 if (!utf_valid_string(s, s + len))
5973 {
5974 column_offset = len;
5975 goto skipitall;
5976 }
5977
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978 /* original width of the current cluster */
5979 cluster_width = PANGO_SCALE * gui.char_width;
5980
5981 /* right bearing of the last non-composing glyph */
5982 last_glyph_rbearing = PANGO_SCALE * gui.char_width;
5983
5984 attr_list = pango_attr_list_new();
5985
5986 /* If 'guifontwide' is set then use that for double-width characters.
5987 * Otherwise just go with 'guifont' and let Pango do its thing. */
5988 if (gui.wide_font != NULL)
5989 apply_wide_font_attr(s, len, attr_list);
5990
5991 if ((flags & DRAW_BOLD) && gui.font_can_bold)
5992 INSERT_PANGO_ATTR(pango_attr_weight_new(PANGO_WEIGHT_BOLD),
5993 attr_list, 0, len);
5994 if (flags & DRAW_ITALIC)
5995 INSERT_PANGO_ATTR(pango_attr_style_new(PANGO_STYLE_ITALIC),
5996 attr_list, 0, len);
5997 /*
5998 * Break the text into segments with consistent directional level
5999 * and shaping engine. Pure Latin text needs only a single segment,
6000 * so there's no need to worry about the loop's efficiency. Better
6001 * try to optimize elsewhere, e.g. reducing exposes and stuff :)
6002 */
6003 item_list = pango_itemize(gui.text_context,
6004 (const char *)s, 0, len, attr_list, NULL);
6005
6006 while (item_list != NULL)
6007 {
6008 PangoItem *item;
6009 int item_cells = 0; /* item length in cells */
6010
6011 item = (PangoItem *)item_list->data;
6012 item_list = g_list_delete_link(item_list, item_list);
6013 /*
6014 * Increment the bidirectional embedding level by 1 if it is not
6015 * even. An odd number means the output will be RTL, but we don't
6016 * want that since Vim handles right-to-left text on its own. It
6017 * would probably be sufficient to just set level = 0, but you can
6018 * never know :)
6019 *
6020 * Unfortunately we can't take advantage of Pango's ability to
6021 * render both LTR and RTL at the same time. In order to support
6022 * that, Vim's main screen engine would have to make use of Pango
6023 * functionality.
6024 */
6025 item->analysis.level = (item->analysis.level + 1) & (~1U);
6026
6027 /* HACK: Overrule the shape engine, we don't want shaping to be
6028 * done, because drawing the cursor would change the display. */
6029 item->analysis.shape_engine = default_shape_engine;
6030
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006031#ifdef HAVE_PANGO_SHAPE_FULL
Bram Moolenaar7e2ec002015-09-08 16:31:06 +02006032 pango_shape_full((const char *)s + item->offset, item->length,
6033 (const char *)s, len, &item->analysis, glyphs);
Bram Moolenaar3cbe0c02015-09-08 20:00:22 +02006034#else
6035 pango_shape((const char *)s + item->offset, item->length,
6036 &item->analysis, glyphs);
6037#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038 /*
6039 * Fixed-width hack: iterate over the array and assign a fixed
6040 * width to each glyph, thus overriding the choice made by the
6041 * shaping engine. We use utf_char2cells() to determine the
6042 * number of cells needed.
6043 *
6044 * Also perform all kind of dark magic to get composing
6045 * characters right (and pretty too of course).
6046 */
6047 for (i = 0; i < glyphs->num_glyphs; ++i)
6048 {
6049 PangoGlyphInfo *glyph;
6050
6051 glyph = &glyphs->glyphs[i];
6052
6053 if (glyph->attr.is_cluster_start)
6054 {
6055 int cellcount;
6056
6057 cellcount = count_cluster_cells(
6058 s, item, glyphs, i, &cluster_width,
6059 (item_list != NULL) ? &last_glyph_rbearing : NULL);
6060
6061 if (cellcount > 0)
6062 {
6063 int width;
6064
6065 width = cellcount * gui.char_width * PANGO_SCALE;
6066 glyph->geometry.x_offset +=
6067 MAX(0, width - cluster_width) / 2;
6068 glyph->geometry.width = width;
6069 }
6070 else
6071 {
6072 /* If there are only combining characters in the
6073 * cluster, we cannot just change the width of the
6074 * previous glyph since there is none. Therefore
6075 * some guesswork is needed. */
6076 setup_zero_width_cluster(item, glyph, cells,
6077 cluster_width,
6078 last_glyph_rbearing);
6079 }
6080
6081 item_cells += cellcount;
6082 cells = cellcount;
6083 }
6084 else if (i > 0)
6085 {
6086 int width;
6087
6088 /* There is a previous glyph, so we deal with combining
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006089 * characters the canonical way.
Bram Moolenaar96118f32010-08-08 14:40:37 +02006090 * In some circumstances Pango uses a positive x_offset,
6091 * then use the width of the previous glyph for this one
6092 * and set the previous width to zero.
6093 * Otherwise we get a negative x_offset, Pango has already
6094 * positioned the combining char, keep the widths as they
6095 * are.
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006096 * For both adjust the x_offset to position the glyph in
Bram Moolenaar96118f32010-08-08 14:40:37 +02006097 * the middle. */
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006098 if (glyph->geometry.x_offset >= 0)
Bram Moolenaar96118f32010-08-08 14:40:37 +02006099 {
6100 glyphs->glyphs[i].geometry.width =
6101 glyphs->glyphs[i - 1].geometry.width;
Bram Moolenaar706e84b2010-08-07 15:46:45 +02006102 glyphs->glyphs[i - 1].geometry.width = 0;
Bram Moolenaar96118f32010-08-08 14:40:37 +02006103 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006104 width = cells * gui.char_width * PANGO_SCALE;
6105 glyph->geometry.x_offset +=
6106 MAX(0, width - cluster_width) / 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107 }
6108 else /* i == 0 "cannot happen" */
6109 {
6110 glyph->geometry.width = 0;
6111 }
6112 }
6113
6114 /*** Aaaaand action! ***/
Bram Moolenaar98921892016-02-23 17:14:37 +01006115#if GTK_CHECK_VERSION(3,0,0)
6116 draw_glyph_string(row, col + column_offset, item_cells,
6117 flags, item->analysis.font, glyphs,
6118 cr);
6119#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006120 draw_glyph_string(row, col + column_offset, item_cells,
6121 flags, item->analysis.font, glyphs);
Bram Moolenaar98921892016-02-23 17:14:37 +01006122#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123
6124 pango_item_free(item);
6125
6126 column_offset += item_cells;
6127 }
6128
6129 pango_attr_list_unref(attr_list);
6130 }
6131
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006132skipitall:
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006133 /* Draw underline and undercurl. */
Bram Moolenaar98921892016-02-23 17:14:37 +01006134#if GTK_CHECK_VERSION(3,0,0)
6135 draw_under(flags, row, col, column_offset, cr);
6136#else
Bram Moolenaarf36d3692005-03-15 22:48:14 +00006137 draw_under(flags, row, col, column_offset);
Bram Moolenaar98921892016-02-23 17:14:37 +01006138#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139
6140 pango_glyph_string_free(glyphs);
6141 vim_free(conv_buf);
6142
Bram Moolenaar98921892016-02-23 17:14:37 +01006143#if GTK_CHECK_VERSION(3,0,0)
6144 cairo_destroy(cr);
6145 if (!gui.by_signal)
6146 gdk_window_invalidate_rect(gtk_widget_get_window(gui.drawarea),
6147 &area, FALSE);
6148#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006149 gdk_gc_set_clip_rectangle(gui.text_gc, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01006150#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151
6152 return column_offset;
6153}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154
6155/*
6156 * Return OK if the key with the termcap name "name" is supported.
6157 */
6158 int
6159gui_mch_haskey(char_u *name)
6160{
6161 int i;
6162
6163 for (i = 0; special_keys[i].key_sym != 0; i++)
6164 if (name[0] == special_keys[i].code0
6165 && name[1] == special_keys[i].code1)
6166 return OK;
6167 return FAIL;
6168}
6169
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006170#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171/*
6172 * Return the text window-id and display. Only required for X-based GUI's
6173 */
6174 int
6175gui_get_x11_windis(Window *win, Display **dis)
6176{
Bram Moolenaar98921892016-02-23 17:14:37 +01006177#if GTK_CHECK_VERSION(3,0,0)
6178 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6179#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006181#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006183#if GTK_CHECK_VERSION(3,0,0)
6184 *dis = GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6185 *win = GDK_WINDOW_XID(gtk_widget_get_window(gui.mainwin));
6186#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187 *dis = GDK_WINDOW_XDISPLAY(gui.mainwin->window);
6188 *win = GDK_WINDOW_XWINDOW(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006189#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190 return OK;
6191 }
6192
6193 *dis = NULL;
6194 *win = 0;
6195 return FAIL;
6196}
6197#endif
6198
6199#if defined(FEAT_CLIENTSERVER) \
6200 || (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
6201
6202 Display *
6203gui_mch_get_display(void)
6204{
Bram Moolenaar98921892016-02-23 17:14:37 +01006205#if GTK_CHECK_VERSION(3,0,0)
6206 if (gui.mainwin != NULL && gtk_widget_get_window(gui.mainwin) != NULL)
6207 return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin));
6208#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006209 if (gui.mainwin != NULL && gui.mainwin->window != NULL)
6210 return GDK_WINDOW_XDISPLAY(gui.mainwin->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006211#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212 else
6213 return NULL;
6214}
6215#endif
6216
6217 void
6218gui_mch_beep(void)
6219{
6220#ifdef HAVE_GTK_MULTIHEAD
6221 GdkDisplay *display;
6222
Bram Moolenaar98921892016-02-23 17:14:37 +01006223# if GTK_CHECK_VERSION(3,0,0)
6224 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6225# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006226 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006227# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228 display = gtk_widget_get_display(gui.mainwin);
6229 else
6230 display = gdk_display_get_default();
6231
6232 if (display != NULL)
6233 gdk_display_beep(display);
6234#else
6235 gdk_beep();
6236#endif
6237}
6238
6239 void
6240gui_mch_flash(int msec)
6241{
Bram Moolenaar98921892016-02-23 17:14:37 +01006242#if GTK_CHECK_VERSION(3,0,0)
6243 /* TODO Replace GdkGC with Cairo */
6244 (void)msec;
6245#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246 GdkGCValues values;
6247 GdkGC *invert_gc;
6248
6249 if (gui.drawarea->window == NULL)
6250 return;
6251
6252 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6253 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
6254 values.function = GDK_XOR;
6255 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6256 &values,
6257 GDK_GC_FOREGROUND |
6258 GDK_GC_BACKGROUND |
6259 GDK_GC_FUNCTION);
6260 gdk_gc_set_exposures(invert_gc,
6261 gui.visibility != GDK_VISIBILITY_UNOBSCURED);
6262 /*
6263 * Do a visual beep by changing back and forth in some undetermined way,
6264 * the foreground and background colors. This is due to the fact that
6265 * there can't be really any prediction about the effects of XOR on
6266 * arbitrary X11 servers. However this seems to be enough for what we
6267 * intend it to do.
6268 */
6269 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6270 TRUE,
6271 0, 0,
6272 FILL_X((int)Columns) + gui.border_offset,
6273 FILL_Y((int)Rows) + gui.border_offset);
6274
6275 gui_mch_flush();
6276 ui_delay((long)msec, TRUE); /* wait so many msec */
6277
6278 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6279 TRUE,
6280 0, 0,
6281 FILL_X((int)Columns) + gui.border_offset,
6282 FILL_Y((int)Rows) + gui.border_offset);
6283
6284 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006285#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286}
6287
6288/*
6289 * Invert a rectangle from row r, column c, for nr rows and nc columns.
6290 */
6291 void
6292gui_mch_invert_rectangle(int r, int c, int nr, int nc)
6293{
Bram Moolenaar98921892016-02-23 17:14:37 +01006294#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006295 const GdkRectangle rect = {
6296 FILL_X(c), FILL_Y(r), nc * gui.char_width, nr * gui.char_height
6297 };
6298 cairo_t * const cr = cairo_create(gui.surface);
6299
Bram Moolenaar36edf062016-07-21 22:10:12 +02006300 set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
Bram Moolenaar4fc563b2016-03-12 12:40:58 +01006301# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
6302 cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
6303# else
6304 /* Give an implementation for older cairo versions if necessary. */
6305# endif
6306 gdk_cairo_rectangle(cr, &rect);
6307 cairo_fill(cr);
6308
6309 cairo_destroy(cr);
6310
6311 if (!gui.by_signal)
6312 gtk_widget_queue_draw_area(gui.drawarea, rect.x, rect.y,
6313 rect.width, rect.height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006314#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 GdkGCValues values;
6316 GdkGC *invert_gc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317
6318 if (gui.drawarea->window == NULL)
6319 return;
6320
Bram Moolenaar89d40322006-08-29 15:30:07 +00006321 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
6322 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323 values.function = GDK_XOR;
6324 invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
6325 &values,
6326 GDK_GC_FOREGROUND |
6327 GDK_GC_BACKGROUND |
6328 GDK_GC_FUNCTION);
Bram Moolenaar89d40322006-08-29 15:30:07 +00006329 gdk_gc_set_exposures(invert_gc, gui.visibility !=
6330 GDK_VISIBILITY_UNOBSCURED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331 gdk_draw_rectangle(gui.drawarea->window, invert_gc,
6332 TRUE,
6333 FILL_X(c), FILL_Y(r),
6334 (nc) * gui.char_width, (nr) * gui.char_height);
6335 gdk_gc_destroy(invert_gc);
Bram Moolenaar98921892016-02-23 17:14:37 +01006336#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337}
6338
6339/*
6340 * Iconify the GUI window.
6341 */
6342 void
6343gui_mch_iconify(void)
6344{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006345 gtk_window_iconify(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346}
6347
6348#if defined(FEAT_EVAL) || defined(PROTO)
6349/*
6350 * Bring the Vim window to the foreground.
6351 */
6352 void
6353gui_mch_set_foreground(void)
6354{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 gtk_window_present(GTK_WINDOW(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356}
6357#endif
6358
6359/*
6360 * Draw a cursor without focus.
6361 */
6362 void
6363gui_mch_draw_hollow_cursor(guicolor_T color)
6364{
6365 int i = 1;
Bram Moolenaar98921892016-02-23 17:14:37 +01006366#if GTK_CHECK_VERSION(3,0,0)
6367 cairo_t *cr;
6368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369
Bram Moolenaar98921892016-02-23 17:14:37 +01006370#if GTK_CHECK_VERSION(3,0,0)
6371 if (gtk_widget_get_window(gui.drawarea) == NULL)
6372#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006373 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006374#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375 return;
6376
Bram Moolenaar98921892016-02-23 17:14:37 +01006377#if GTK_CHECK_VERSION(3,0,0)
6378 cr = cairo_create(gui.surface);
6379#endif
6380
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381 gui_mch_set_fg_color(color);
6382
Bram Moolenaar98921892016-02-23 17:14:37 +01006383#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02006384 cairo_set_source_rgba(cr,
6385 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6386 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006387#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
Bram Moolenaar98921892016-02-23 17:14:37 +01006389#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 if (mb_lefthalve(gui.row, gui.col))
6391 i = 2;
Bram Moolenaar98921892016-02-23 17:14:37 +01006392#if GTK_CHECK_VERSION(3,0,0)
6393 cairo_set_line_width(cr, 1.0);
6394 cairo_set_line_cap(cr, CAIRO_LINE_CAP_BUTT);
6395 cairo_rectangle(cr,
6396 FILL_X(gui.col) + 0.5, FILL_Y(gui.row) + 0.5,
6397 i * gui.char_width - 1, gui.char_height - 1);
6398 cairo_stroke(cr);
6399 cairo_destroy(cr);
6400#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6402 FALSE,
6403 FILL_X(gui.col), FILL_Y(gui.row),
6404 i * gui.char_width - 1, gui.char_height - 1);
Bram Moolenaar98921892016-02-23 17:14:37 +01006405#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406}
6407
6408/*
6409 * Draw part of a cursor, "w" pixels wide, and "h" pixels high, using
6410 * color "color".
6411 */
6412 void
6413gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
6414{
Bram Moolenaar98921892016-02-23 17:14:37 +01006415#if GTK_CHECK_VERSION(3,0,0)
6416 if (gtk_widget_get_window(gui.drawarea) == NULL)
6417#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01006419#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420 return;
6421
6422 gui_mch_set_fg_color(color);
6423
Bram Moolenaar98921892016-02-23 17:14:37 +01006424#if GTK_CHECK_VERSION(3,0,0)
6425 {
6426 cairo_t *cr;
6427
6428 cr = cairo_create(gui.surface);
Bram Moolenaar36edf062016-07-21 22:10:12 +02006429 cairo_set_source_rgba(cr,
6430 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue,
6431 gui.fgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01006432 cairo_rectangle(cr,
6433# ifdef FEAT_RIGHTLEFT
6434 /* vertical line should be on the right of current point */
6435 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
6436# endif
6437 FILL_X(gui.col), FILL_Y(gui.row) + gui.char_height - h,
6438 w, h);
6439 cairo_fill(cr);
6440 cairo_destroy(cr);
6441 }
6442#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6444 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc,
6445 TRUE,
Bram Moolenaar98921892016-02-23 17:14:37 +01006446# ifdef FEAT_RIGHTLEFT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447 /* vertical line should be on the right of current point */
6448 CURSOR_BAR_RIGHT ? FILL_X(gui.col + 1) - w :
Bram Moolenaar98921892016-02-23 17:14:37 +01006449# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450 FILL_X(gui.col),
6451 FILL_Y(gui.row) + gui.char_height - h,
6452 w, h);
Bram Moolenaar98921892016-02-23 17:14:37 +01006453#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454}
6455
6456
6457/*
6458 * Catch up with any queued X11 events. This may put keyboard input into the
6459 * input buffer, call resize call-backs, trigger timers etc. If there is
6460 * nothing in the X11 event queue (& no timers pending), then we return
6461 * immediately.
6462 */
6463 void
6464gui_mch_update(void)
6465{
Bram Moolenaara3f41662010-07-11 19:01:06 +02006466 while (g_main_context_pending(NULL) && !vim_is_input_buf_full())
6467 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468}
6469
Bram Moolenaar98921892016-02-23 17:14:37 +01006470#if GTK_CHECK_VERSION(3,0,0)
6471 static gboolean
6472#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006473 static gint
Bram Moolenaar98921892016-02-23 17:14:37 +01006474#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475input_timer_cb(gpointer data)
6476{
6477 int *timed_out = (int *) data;
6478
Bram Moolenaar49325942007-05-10 19:19:59 +00006479 /* Just inform the caller about the occurrence of it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480 *timed_out = TRUE;
6481
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482 return FALSE; /* don't happen again */
6483}
6484
Bram Moolenaar071d4272004-06-13 20:20:40 +00006485/*
6486 * GUI input routine called by gui_wait_for_chars(). Waits for a character
6487 * from the keyboard.
6488 * wtime == -1 Wait forever.
6489 * wtime == 0 This should never happen.
6490 * wtime > 0 Wait wtime milliseconds for a character.
6491 * Returns OK if a character was found to be available within the given time,
6492 * or FAIL otherwise.
6493 */
6494 int
6495gui_mch_wait_for_chars(long wtime)
6496{
Bram Moolenaar4231da42016-06-02 14:30:04 +02006497 int focus;
6498 guint timer;
6499 static int timed_out;
6500 int retval = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501
6502 timed_out = FALSE;
6503
6504 /* this timeout makes sure that we will return if no characters arrived in
6505 * time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 if (wtime > 0)
Bram Moolenaar98921892016-02-23 17:14:37 +01006507#if GTK_CHECK_VERSION(3,0,0)
6508 timer = g_timeout_add((guint)wtime, input_timer_cb, &timed_out);
6509#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006510 timer = gtk_timeout_add((guint32)wtime, input_timer_cb, &timed_out);
Bram Moolenaar98921892016-02-23 17:14:37 +01006511#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006512 else
6513 timer = 0;
6514
6515 focus = gui.in_focus;
6516
6517 do
6518 {
6519 /* Stop or start blinking when focus changes */
6520 if (gui.in_focus != focus)
6521 {
6522 if (gui.in_focus)
6523 gui_mch_start_blink();
6524 else
6525 gui_mch_stop_blink();
6526 focus = gui.in_focus;
6527 }
6528
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006529#ifdef MESSAGE_QUEUE
Bram Moolenaar4231da42016-06-02 14:30:04 +02006530# ifdef FEAT_TIMERS
6531 did_add_timer = FALSE;
6532# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006533 parse_queued_messages();
Bram Moolenaar4231da42016-06-02 14:30:04 +02006534# ifdef FEAT_TIMERS
6535 if (did_add_timer)
6536 /* Need to recompute the waiting time. */
6537 goto theend;
6538# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00006539#endif
6540
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541 /*
6542 * Loop in GTK+ processing until a timeout or input occurs.
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006543 * Skip this if input is available anyway (can happen in rare
6544 * situations, sort of race condition).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006546 if (!input_available())
Bram Moolenaara3f41662010-07-11 19:01:06 +02006547 g_main_context_iteration(NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006548
6549 /* Got char, return immediately */
6550 if (input_available())
6551 {
Bram Moolenaar4231da42016-06-02 14:30:04 +02006552 retval = OK;
6553 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006554 }
6555 } while (wtime < 0 || !timed_out);
6556
6557 /*
6558 * Flush all eventually pending (drawing) events.
6559 */
6560 gui_mch_update();
6561
Bram Moolenaar4231da42016-06-02 14:30:04 +02006562theend:
6563 if (timer != 0 && !timed_out)
6564#if GTK_CHECK_VERSION(3,0,0)
6565 g_source_remove(timer);
6566#else
6567 gtk_timeout_remove(timer);
6568#endif
6569
6570 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571}
6572
6573
6574/****************************************************************************
6575 * Output drawing routines.
6576 ****************************************************************************/
6577
6578
6579/* Flush any output to the screen */
6580 void
6581gui_mch_flush(void)
6582{
6583#ifdef HAVE_GTK_MULTIHEAD
Bram Moolenaar98921892016-02-23 17:14:37 +01006584# if GTK_CHECK_VERSION(3,0,0)
6585 if (gui.mainwin != NULL && gtk_widget_get_realized(gui.mainwin))
6586# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587 if (gui.mainwin != NULL && GTK_WIDGET_REALIZED(gui.mainwin))
Bram Moolenaar98921892016-02-23 17:14:37 +01006588# endif
Bram Moolenaarfdadad92016-07-15 17:49:58 +02006589 gdk_display_flush(gtk_widget_get_display(gui.mainwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006590#else
6591 gdk_flush(); /* historical misnomer: calls XSync(), not XFlush() */
6592#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593}
6594
6595/*
6596 * Clear a rectangular region of the screen from text pos (row1, col1) to
6597 * (row2, col2) inclusive.
6598 */
6599 void
6600gui_mch_clear_block(int row1, int col1, int row2, int col2)
6601{
Bram Moolenaar98921892016-02-23 17:14:37 +01006602#if GTK_CHECK_VERSION(3,0,0)
6603 if (gtk_widget_get_window(gui.drawarea) == NULL)
6604 return;
6605#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606 GdkColor color;
6607
6608 if (gui.drawarea->window == NULL)
6609 return;
6610
6611 color.pixel = gui.back_pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01006612#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613
Bram Moolenaar98921892016-02-23 17:14:37 +01006614#if GTK_CHECK_VERSION(3,0,0)
6615 {
6616 /* Add one pixel to the far right column in case a double-stroked
6617 * bold glyph may sit there. */
6618 const GdkRectangle rect = {
6619 FILL_X(col1), FILL_Y(row1),
6620 (col2 - col1 + 1) * gui.char_width + (col2 == Columns - 1),
6621 (row2 - row1 + 1) * gui.char_height
6622 };
6623 GdkWindow * const win = gtk_widget_get_window(gui.drawarea);
6624 cairo_t * const cr = cairo_create(gui.surface);
6625 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6626 if (pat != NULL)
6627 cairo_set_source(cr, pat);
6628 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006629 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01006630 gdk_cairo_rectangle(cr, &rect);
6631 cairo_fill(cr);
6632 cairo_destroy(cr);
6633
6634 if (!gui.by_signal)
6635 gdk_window_invalidate_rect(win, &rect, FALSE);
6636 }
6637#else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638 gdk_gc_set_foreground(gui.text_gc, &color);
6639
6640 /* Clear one extra pixel at the far right, for when bold characters have
6641 * spilled over to the window border. */
6642 gdk_draw_rectangle(gui.drawarea->window, gui.text_gc, TRUE,
6643 FILL_X(col1), FILL_Y(row1),
6644 (col2 - col1 + 1) * gui.char_width
6645 + (col2 == Columns - 1),
6646 (row2 - row1 + 1) * gui.char_height);
Bram Moolenaar98921892016-02-23 17:14:37 +01006647#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006648}
6649
Bram Moolenaar98921892016-02-23 17:14:37 +01006650#if GTK_CHECK_VERSION(3,0,0)
6651 static void
6652gui_gtk_window_clear(GdkWindow *win)
6653{
6654 const GdkRectangle rect = {
6655 0, 0, gdk_window_get_width(win), gdk_window_get_height(win)
6656 };
6657 cairo_t * const cr = cairo_create(gui.surface);
6658 cairo_pattern_t * const pat = gdk_window_get_background_pattern(win);
6659 if (pat != NULL)
6660 cairo_set_source(cr, pat);
6661 else
Bram Moolenaar36edf062016-07-21 22:10:12 +02006662 set_cairo_source_rgba_from_color(cr, gui.back_pixel);
Bram Moolenaar98921892016-02-23 17:14:37 +01006663 gdk_cairo_rectangle(cr, &rect);
6664 cairo_fill(cr);
6665 cairo_destroy(cr);
6666
6667 if (!gui.by_signal)
6668 gdk_window_invalidate_rect(win, &rect, FALSE);
6669}
6670#endif
6671
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 void
6673gui_mch_clear_all(void)
6674{
Bram Moolenaar98921892016-02-23 17:14:37 +01006675#if GTK_CHECK_VERSION(3,0,0)
6676 if (gtk_widget_get_window(gui.drawarea) != NULL)
6677 gui_gtk_window_clear(gtk_widget_get_window(gui.drawarea));
6678#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006679 if (gui.drawarea->window != NULL)
6680 gdk_window_clear(gui.drawarea->window);
Bram Moolenaar98921892016-02-23 17:14:37 +01006681#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006682}
6683
Bram Moolenaar98921892016-02-23 17:14:37 +01006684#if !GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006685/*
6686 * Redraw any text revealed by scrolling up/down.
6687 */
6688 static void
6689check_copy_area(void)
6690{
6691 GdkEvent *event;
6692 int expose_count;
6693
6694 if (gui.visibility != GDK_VISIBILITY_PARTIAL)
6695 return;
6696
6697 /* Avoid redrawing the cursor while scrolling or it'll end up where
6698 * we don't want it to be. I'm not sure if it's correct to call
6699 * gui_dont_update_cursor() at this point but it works as a quick
6700 * fix for now. */
Bram Moolenaar107abd22016-08-12 14:08:25 +02006701 gui_dont_update_cursor(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006702
6703 do
6704 {
6705 /* Wait to check whether the scroll worked or not. */
6706 event = gdk_event_get_graphics_expose(gui.drawarea->window);
6707
6708 if (event == NULL)
6709 break; /* received NoExpose event */
6710
6711 gui_redraw(event->expose.area.x, event->expose.area.y,
6712 event->expose.area.width, event->expose.area.height);
6713
6714 expose_count = event->expose.count;
6715 gdk_event_free(event);
6716 }
6717 while (expose_count > 0); /* more events follow */
6718
6719 gui_can_update_cursor();
6720}
Bram Moolenaar98921892016-02-23 17:14:37 +01006721#endif /* !GTK_CHECK_VERSION(3,0,0) */
6722
6723#if GTK_CHECK_VERSION(3,0,0)
6724 static void
6725gui_gtk_surface_copy_rect(int dest_x, int dest_y,
6726 int src_x, int src_y,
6727 int width, int height)
6728{
6729 cairo_t * const cr = cairo_create(gui.surface);
6730
6731 cairo_rectangle(cr, dest_x, dest_y, width, height);
6732 cairo_clip(cr);
6733 cairo_push_group(cr);
6734 cairo_set_source_surface(cr, gui.surface, dest_x - src_x, dest_y - src_y);
6735 cairo_paint(cr);
6736 cairo_pop_group_to_source(cr);
6737 cairo_paint(cr);
6738
6739 cairo_destroy(cr);
6740}
6741#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006742
6743/*
6744 * Delete the given number of lines from the given row, scrolling up any
6745 * text further down within the scroll region.
6746 */
6747 void
6748gui_mch_delete_lines(int row, int num_lines)
6749{
Bram Moolenaar98921892016-02-23 17:14:37 +01006750#if GTK_CHECK_VERSION(3,0,0)
6751 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6752 const int nrows = gui.scroll_region_bot - row + 1;
6753 const int src_nrows = nrows - num_lines;
6754
6755 gui_gtk_surface_copy_rect(
6756 FILL_X(gui.scroll_region_left), FILL_Y(row),
6757 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6758 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6759 gui_clear_block(
6760 gui.scroll_region_bot - num_lines + 1, gui.scroll_region_left,
6761 gui.scroll_region_bot, gui.scroll_region_right);
6762 gui_gtk3_redraw(
6763 FILL_X(gui.scroll_region_left), FILL_Y(row),
6764 gui.char_width * ncols + 1, gui.char_height * nrows);
6765 if (!gui.by_signal)
6766 gtk_widget_queue_draw_area(gui.drawarea,
6767 FILL_X(gui.scroll_region_left), FILL_Y(row),
6768 gui.char_width * ncols + 1, gui.char_height * nrows);
6769#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6771 return; /* Can't see the window */
6772
6773 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6774 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6775
6776 /* copy one extra pixel, for when bold has spilled over */
6777 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6778 FILL_X(gui.scroll_region_left), FILL_Y(row),
6779 gui.drawarea->window,
6780 FILL_X(gui.scroll_region_left),
6781 FILL_Y(row + num_lines),
6782 gui.char_width * (gui.scroll_region_right
6783 - gui.scroll_region_left + 1) + 1,
6784 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6785
6786 gui_clear_block(gui.scroll_region_bot - num_lines + 1,
6787 gui.scroll_region_left,
6788 gui.scroll_region_bot, gui.scroll_region_right);
6789 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006790#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791}
6792
6793/*
6794 * Insert the given number of lines before the given row, scrolling down any
6795 * following text within the scroll region.
6796 */
6797 void
6798gui_mch_insert_lines(int row, int num_lines)
6799{
Bram Moolenaar98921892016-02-23 17:14:37 +01006800#if GTK_CHECK_VERSION(3,0,0)
6801 const int ncols = gui.scroll_region_right - gui.scroll_region_left + 1;
6802 const int nrows = gui.scroll_region_bot - row + 1;
6803 const int src_nrows = nrows - num_lines;
6804
6805 gui_gtk_surface_copy_rect(
6806 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6807 FILL_X(gui.scroll_region_left), FILL_Y(row),
6808 gui.char_width * ncols + 1, gui.char_height * src_nrows);
6809 gui_mch_clear_block(
6810 row, gui.scroll_region_left,
6811 row + num_lines - 1, gui.scroll_region_right);
6812 gui_gtk3_redraw(
6813 FILL_X(gui.scroll_region_left), FILL_Y(row),
6814 gui.char_width * ncols + 1, gui.char_height * nrows);
6815 if (!gui.by_signal)
6816 gtk_widget_queue_draw_area(gui.drawarea,
6817 FILL_X(gui.scroll_region_left), FILL_Y(row),
6818 gui.char_width * ncols + 1, gui.char_height * nrows);
6819#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006820 if (gui.visibility == GDK_VISIBILITY_FULLY_OBSCURED)
6821 return; /* Can't see the window */
6822
6823 gdk_gc_set_foreground(gui.text_gc, gui.fgcolor);
6824 gdk_gc_set_background(gui.text_gc, gui.bgcolor);
6825
6826 /* copy one extra pixel, for when bold has spilled over */
6827 gdk_window_copy_area(gui.drawarea->window, gui.text_gc,
6828 FILL_X(gui.scroll_region_left), FILL_Y(row + num_lines),
6829 gui.drawarea->window,
6830 FILL_X(gui.scroll_region_left), FILL_Y(row),
6831 gui.char_width * (gui.scroll_region_right
6832 - gui.scroll_region_left + 1) + 1,
6833 gui.char_height * (gui.scroll_region_bot - row - num_lines + 1));
6834
6835 gui_clear_block(row, gui.scroll_region_left,
6836 row + num_lines - 1, gui.scroll_region_right);
6837 check_copy_area();
Bram Moolenaar98921892016-02-23 17:14:37 +01006838#endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006839}
6840
6841/*
6842 * X Selection stuff, for cutting and pasting text to other windows.
6843 */
6844 void
6845clip_mch_request_selection(VimClipboard *cbd)
6846{
6847 GdkAtom target;
6848 unsigned i;
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006849 time_t start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006850
6851 for (i = 0; i < N_SELECTION_TARGETS; ++i)
6852 {
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +00006853 if (!clip_html && selection_targets[i].info == TARGET_HTML)
6854 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006855 received_selection = RS_NONE;
6856 target = gdk_atom_intern(selection_targets[i].target, FALSE);
6857
6858 gtk_selection_convert(gui.drawarea,
6859 cbd->gtk_sel_atom, target,
6860 (guint32)GDK_CURRENT_TIME);
6861
Bram Moolenaar51b5ab92008-01-06 14:17:07 +00006862 /* Hack: Wait up to three seconds for the selection. A hang was
6863 * noticed here when using the netrw plugin combined with ":gui"
6864 * during the FocusGained event. */
6865 start = time(NULL);
6866 while (received_selection == RS_NONE && time(NULL) < start + 3)
Bram Moolenaara3f41662010-07-11 19:01:06 +02006867 g_main_context_iteration(NULL, TRUE); /* wait for selection_received_cb */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868
6869 if (received_selection != RS_FAIL)
6870 return;
6871 }
6872
6873 /* Final fallback position - use the X CUT_BUFFER0 store */
Bram Moolenaar98921892016-02-23 17:14:37 +01006874#if GTK_CHECK_VERSION(3,0,0)
6875 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.mainwin)),
6876 cbd);
6877#else
Bram Moolenaarbbc936b2009-07-01 16:04:58 +00006878 yank_cut_buffer0(GDK_WINDOW_XDISPLAY(gui.mainwin->window), cbd);
Bram Moolenaar98921892016-02-23 17:14:37 +01006879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006880}
6881
6882/*
6883 * Disown the selection.
6884 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006886clip_mch_lose_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006887{
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006888 gtk_selection_owner_set(NULL, cbd->gtk_sel_atom, gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006889 gui_mch_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890}
6891
6892/*
6893 * Own the selection and return OK if it worked.
6894 */
6895 int
6896clip_mch_own_selection(VimClipboard *cbd)
6897{
6898 int success;
6899
6900 success = gtk_selection_owner_set(gui.drawarea, cbd->gtk_sel_atom,
Bram Moolenaar20892c12011-06-26 04:49:00 +02006901 gui.event_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006902 gui_mch_update();
6903 return (success) ? OK : FAIL;
6904}
6905
6906/*
6907 * Send the current selection to the clipboard. Do nothing for X because we
6908 * will fill in the selection only when requested by another app.
6909 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910 void
Bram Moolenaarb85cb212009-05-17 14:24:23 +00006911clip_mch_set_selection(VimClipboard *cbd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006912{
6913}
6914
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01006915 int
6916clip_gtk_owner_exists(VimClipboard *cbd)
6917{
6918 return gdk_selection_owner_get(cbd->gtk_sel_atom) != NULL;
6919}
6920
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921
6922#if defined(FEAT_MENU) || defined(PROTO)
6923/*
6924 * Make a menu item appear either active or not active (grey or not grey).
6925 */
6926 void
6927gui_mch_menu_grey(vimmenu_T *menu, int grey)
6928{
6929 if (menu->id == NULL)
6930 return;
6931
6932 if (menu_is_separator(menu->name))
6933 grey = TRUE;
6934
6935 gui_mch_menu_hidden(menu, FALSE);
6936 /* Be clever about bitfields versus true booleans here! */
Bram Moolenaar98921892016-02-23 17:14:37 +01006937# if GTK_CHECK_VERSION(3,0,0)
6938 if (!gtk_widget_get_sensitive(menu->id) == !grey)
6939# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940 if (!GTK_WIDGET_SENSITIVE(menu->id) == !grey)
Bram Moolenaar98921892016-02-23 17:14:37 +01006941# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942 {
6943 gtk_widget_set_sensitive(menu->id, !grey);
6944 gui_mch_update();
6945 }
6946}
6947
6948/*
6949 * Make menu item hidden or not hidden.
6950 */
6951 void
6952gui_mch_menu_hidden(vimmenu_T *menu, int hidden)
6953{
6954 if (menu->id == 0)
6955 return;
6956
6957 if (hidden)
6958 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006959# if GTK_CHECK_VERSION(3,0,0)
6960 if (gtk_widget_get_visible(menu->id))
6961# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962 if (GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01006963# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006964 {
6965 gtk_widget_hide(menu->id);
6966 gui_mch_update();
6967 }
6968 }
6969 else
6970 {
Bram Moolenaar98921892016-02-23 17:14:37 +01006971# if GTK_CHECK_VERSION(3,0,0)
6972 if (!gtk_widget_get_visible(menu->id))
6973# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 if (!GTK_WIDGET_VISIBLE(menu->id))
Bram Moolenaar98921892016-02-23 17:14:37 +01006975# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006976 {
6977 gtk_widget_show(menu->id);
6978 gui_mch_update();
6979 }
6980 }
6981}
6982
6983/*
6984 * This is called after setting all the menus to grey/hidden or not.
6985 */
6986 void
6987gui_mch_draw_menubar(void)
6988{
6989 /* just make sure that the visual changes get effect immediately */
6990 gui_mch_update();
6991}
6992#endif /* FEAT_MENU */
6993
6994/*
6995 * Scrollbar stuff.
6996 */
6997 void
6998gui_mch_enable_scrollbar(scrollbar_T *sb, int flag)
6999{
7000 if (sb->id == NULL)
7001 return;
7002
Bram Moolenaar98921892016-02-23 17:14:37 +01007003#if GTK_CHECK_VERSION(3,0,0)
7004 gtk_widget_set_visible(sb->id, flag);
7005#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006 if (flag)
7007 gtk_widget_show(sb->id);
7008 else
7009 gtk_widget_hide(sb->id);
Bram Moolenaar98921892016-02-23 17:14:37 +01007010#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007011
Bram Moolenaarb3656ed2006-03-20 21:59:49 +00007012 update_window_manager_hints(0, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013}
7014
7015
7016/*
7017 * Return the RGB value of a pixel as long.
7018 */
7019 long_u
7020gui_mch_get_rgb(guicolor_T pixel)
7021{
Bram Moolenaar98921892016-02-23 17:14:37 +01007022#if GTK_CHECK_VERSION(3,0,0)
Bram Moolenaar36edf062016-07-21 22:10:12 +02007023 return (long_u)pixel;
Bram Moolenaar98921892016-02-23 17:14:37 +01007024#else
Bram Moolenaar36edf062016-07-21 22:10:12 +02007025 GdkColor color;
7026
Bram Moolenaar071d4272004-06-13 20:20:40 +00007027 gdk_colormap_query_color(gtk_widget_get_colormap(gui.drawarea),
7028 (unsigned long)pixel, &color);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029
7030 return (((unsigned)color.red & 0xff00) << 8)
7031 | ((unsigned)color.green & 0xff00)
7032 | (((unsigned)color.blue & 0xff00) >> 8);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007033#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034}
7035
7036/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007037 * Get current mouse coordinates in text window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038 */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007039 void
7040gui_mch_getmouse(int *x, int *y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041{
Bram Moolenaar98921892016-02-23 17:14:37 +01007042#if GTK_CHECK_VERSION(3,0,0)
7043 gui_gtk_get_pointer(gui.drawarea, x, y, NULL);
7044#else
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007045 gdk_window_get_pointer(gui.drawarea->window, x, y, NULL);
Bram Moolenaar98921892016-02-23 17:14:37 +01007046#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047}
7048
7049 void
7050gui_mch_setmouse(int x, int y)
7051{
7052 /* Sorry for the Xlib call, but we can't avoid it, since there is no
7053 * internal GDK mechanism present to accomplish this. (and for good
7054 * reason...) */
Bram Moolenaar98921892016-02-23 17:14:37 +01007055#if GTK_CHECK_VERSION(3,0,0)
7056 XWarpPointer(GDK_WINDOW_XDISPLAY(gtk_widget_get_window(gui.drawarea)),
7057 (Window)0, GDK_WINDOW_XID(gtk_widget_get_window(gui.drawarea)),
7058 0, 0, 0U, 0U, x, y);
7059#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060 XWarpPointer(GDK_WINDOW_XDISPLAY(gui.drawarea->window),
7061 (Window)0, GDK_WINDOW_XWINDOW(gui.drawarea->window),
7062 0, 0, 0U, 0U, x, y);
Bram Moolenaar98921892016-02-23 17:14:37 +01007063#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064}
7065
7066
7067#ifdef FEAT_MOUSESHAPE
7068/* The last set mouse pointer shape is remembered, to be used when it goes
7069 * from hidden to not hidden. */
7070static int last_shape = 0;
7071#endif
7072
7073/*
7074 * Use the blank mouse pointer or not.
7075 *
7076 * hide: TRUE = use blank ptr, FALSE = use parent ptr
7077 */
7078 void
7079gui_mch_mousehide(int hide)
7080{
7081 if (gui.pointer_hidden != hide)
7082 {
7083 gui.pointer_hidden = hide;
Bram Moolenaar98921892016-02-23 17:14:37 +01007084#if GTK_CHECK_VERSION(3,0,0)
7085 if (gtk_widget_get_window(gui.drawarea) && gui.blank_pointer != NULL)
7086#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087 if (gui.drawarea->window && gui.blank_pointer != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007088#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089 {
7090 if (hide)
Bram Moolenaar98921892016-02-23 17:14:37 +01007091#if GTK_CHECK_VERSION(3,0,0)
7092 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7093 gui.blank_pointer);
7094#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007096#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097 else
7098#ifdef FEAT_MOUSESHAPE
7099 mch_set_mouse_shape(last_shape);
Bram Moolenaar3f2a5d82016-02-27 22:08:16 +01007100#elif GTK_CHECK_VERSION(3,0,0)
7101 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102#else
7103 gdk_window_set_cursor(gui.drawarea->window, NULL);
7104#endif
7105 }
7106 }
7107}
7108
7109#if defined(FEAT_MOUSESHAPE) || defined(PROTO)
7110
7111/* Table for shape IDs. Keep in sync with the mshape_names[] table in
7112 * misc2.c! */
7113static const int mshape_ids[] =
7114{
7115 GDK_LEFT_PTR, /* arrow */
7116 GDK_CURSOR_IS_PIXMAP, /* blank */
7117 GDK_XTERM, /* beam */
7118 GDK_SB_V_DOUBLE_ARROW, /* updown */
7119 GDK_SIZING, /* udsizing */
7120 GDK_SB_H_DOUBLE_ARROW, /* leftright */
7121 GDK_SIZING, /* lrsizing */
7122 GDK_WATCH, /* busy */
7123 GDK_X_CURSOR, /* no */
7124 GDK_CROSSHAIR, /* crosshair */
7125 GDK_HAND1, /* hand1 */
7126 GDK_HAND2, /* hand2 */
7127 GDK_PENCIL, /* pencil */
7128 GDK_QUESTION_ARROW, /* question */
7129 GDK_RIGHT_PTR, /* right-arrow */
7130 GDK_CENTER_PTR, /* up-arrow */
7131 GDK_LEFT_PTR /* last one */
7132};
7133
7134 void
7135mch_set_mouse_shape(int shape)
7136{
7137 int id;
7138 GdkCursor *c;
7139
Bram Moolenaar98921892016-02-23 17:14:37 +01007140# if GTK_CHECK_VERSION(3,0,0)
7141 if (gtk_widget_get_window(gui.drawarea) == NULL)
7142# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007143 if (gui.drawarea->window == NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007144# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007145 return;
7146
7147 if (shape == MSHAPE_HIDE || gui.pointer_hidden)
Bram Moolenaar98921892016-02-23 17:14:37 +01007148# if GTK_CHECK_VERSION(3,0,0)
7149 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea),
7150 gui.blank_pointer);
7151# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152 gdk_window_set_cursor(gui.drawarea->window, gui.blank_pointer);
Bram Moolenaar98921892016-02-23 17:14:37 +01007153# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154 else
7155 {
7156 if (shape >= MSHAPE_NUMBERED)
7157 {
7158 id = shape - MSHAPE_NUMBERED;
7159 if (id >= GDK_LAST_CURSOR)
7160 id = GDK_LEFT_PTR;
7161 else
7162 id &= ~1; /* they are always even (why?) */
7163 }
Bram Moolenaarb85cb212009-05-17 14:24:23 +00007164 else if (shape < (int)(sizeof(mshape_ids) / sizeof(int)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165 id = mshape_ids[shape];
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007166 else
7167 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007168# ifdef HAVE_GTK_MULTIHEAD
7169 c = gdk_cursor_new_for_display(
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007170 gtk_widget_get_display(gui.drawarea), (GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171# else
Bram Moolenaarb71ec9f2005-01-25 22:22:02 +00007172 c = gdk_cursor_new((GdkCursorType)id);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007173# endif
Bram Moolenaar98921892016-02-23 17:14:37 +01007174# if GTK_CHECK_VERSION(3,0,0)
7175 gdk_window_set_cursor(gtk_widget_get_window(gui.drawarea), c);
7176# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007177 gdk_window_set_cursor(gui.drawarea->window, c);
Bram Moolenaar98921892016-02-23 17:14:37 +01007178# endif
7179# if GTK_CHECK_VERSION(3,0,0)
7180 g_object_unref(G_OBJECT(c));
7181# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007182 gdk_cursor_destroy(c); /* Unref, actually. Bloody GTK+ 1. */
Bram Moolenaar98921892016-02-23 17:14:37 +01007183# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007184 }
7185 if (shape != MSHAPE_HIDE)
7186 last_shape = shape;
7187}
7188#endif /* FEAT_MOUSESHAPE */
7189
7190
7191#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7192/*
7193 * Signs are currently always 2 chars wide. With GTK+ 2, the image will be
7194 * scaled down if the current font is not big enough, or scaled up if the image
7195 * size is less than 3/4 of the maximum sign size. With GTK+ 1, the pixmap
7196 * will be cut off if the current font is not big enough, or centered if it's
7197 * too small.
7198 */
7199# define SIGN_WIDTH (2 * gui.char_width)
7200# define SIGN_HEIGHT (gui.char_height)
7201# define SIGN_ASPECT ((double)SIGN_HEIGHT / (double)SIGN_WIDTH)
7202
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203 void
7204gui_mch_drawsign(int row, int col, int typenr)
7205{
7206 GdkPixbuf *sign;
7207
7208 sign = (GdkPixbuf *)sign_get_image(typenr);
7209
Bram Moolenaar98921892016-02-23 17:14:37 +01007210# if GTK_CHECK_VERSION(3,0,0)
7211 if (sign != NULL && gui.drawarea != NULL
7212 && gtk_widget_get_window(gui.drawarea) != NULL)
7213# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007214 if (sign != NULL && gui.drawarea != NULL && gui.drawarea->window != NULL)
Bram Moolenaar98921892016-02-23 17:14:37 +01007215# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007216 {
7217 int width;
7218 int height;
7219 int xoffset;
7220 int yoffset;
7221 int need_scale;
7222
7223 width = gdk_pixbuf_get_width(sign);
7224 height = gdk_pixbuf_get_height(sign);
7225 /*
7226 * Decide whether we need to scale. Allow one pixel of border
7227 * width to be cut off, in order to avoid excessive scaling for
7228 * tiny differences in font size.
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007229 * Do scale to fit the height to avoid gaps because of linespacing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 */
7231 need_scale = (width > SIGN_WIDTH + 2
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007232 || height != SIGN_HEIGHT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007233 || (width < 3 * SIGN_WIDTH / 4
7234 && height < 3 * SIGN_HEIGHT / 4));
7235 if (need_scale)
7236 {
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007237 double aspect;
7238 int w = width;
7239 int h = height;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240
7241 /* Keep the original aspect ratio */
7242 aspect = (double)height / (double)width;
7243 width = (double)SIGN_WIDTH * SIGN_ASPECT / aspect;
7244 width = MIN(width, SIGN_WIDTH);
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007245 if (((double)(MAX(height, SIGN_HEIGHT)) /
7246 (double)(MIN(height, SIGN_HEIGHT))) < 1.15)
7247 {
7248 /* Change the aspect ratio by at most 15% to fill the
7249 * available space completly. */
7250 height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
7251 height = MIN(height, SIGN_HEIGHT);
7252 }
7253 else
7254 height = (double)width * aspect;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007255
Bram Moolenaar58cbc912014-06-17 18:47:02 +02007256 if (w == width && h == height)
7257 {
7258 /* no change in dimensions; don't decrease reference counter
7259 * (below) */
7260 need_scale = FALSE;
7261 }
7262 else
7263 {
7264 /* This doesn't seem to be worth caching, and doing so would
7265 * complicate the code quite a bit. */
7266 sign = gdk_pixbuf_scale_simple(sign, width, height,
7267 GDK_INTERP_BILINEAR);
7268 if (sign == NULL)
7269 return; /* out of memory */
7270 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007271 }
7272
7273 /* The origin is the upper-left corner of the pixmap. Therefore
7274 * these offset may become negative if the pixmap is smaller than
7275 * the 2x1 cells reserved for the sign icon. */
7276 xoffset = (width - SIGN_WIDTH) / 2;
7277 yoffset = (height - SIGN_HEIGHT) / 2;
7278
Bram Moolenaar98921892016-02-23 17:14:37 +01007279# if GTK_CHECK_VERSION(3,0,0)
7280 {
7281 cairo_t *cr;
7282 cairo_surface_t *bg_surf;
7283 cairo_t *bg_cr;
7284 cairo_surface_t *sign_surf;
7285 cairo_t *sign_cr;
7286
7287 cr = cairo_create(gui.surface);
7288
7289 bg_surf = cairo_surface_create_similar(gui.surface,
7290 cairo_surface_get_content(gui.surface),
7291 SIGN_WIDTH, SIGN_HEIGHT);
7292 bg_cr = cairo_create(bg_surf);
Bram Moolenaar36edf062016-07-21 22:10:12 +02007293 cairo_set_source_rgba(bg_cr,
7294 gui.bgcolor->red, gui.bgcolor->green, gui.bgcolor->blue,
7295 gui.bgcolor->alpha);
Bram Moolenaar98921892016-02-23 17:14:37 +01007296 cairo_paint(bg_cr);
7297
7298 sign_surf = cairo_surface_create_similar(gui.surface,
7299 cairo_surface_get_content(gui.surface),
7300 SIGN_WIDTH, SIGN_HEIGHT);
7301 sign_cr = cairo_create(sign_surf);
7302 gdk_cairo_set_source_pixbuf(sign_cr, sign, -xoffset, -yoffset);
7303 cairo_paint(sign_cr);
7304
7305 cairo_set_operator(sign_cr, CAIRO_OPERATOR_DEST_OVER);
7306 cairo_set_source_surface(sign_cr, bg_surf, 0, 0);
7307 cairo_paint(sign_cr);
7308
7309 cairo_set_source_surface(cr, sign_surf, FILL_X(col), FILL_Y(row));
7310 cairo_paint(cr);
7311
7312 cairo_destroy(sign_cr);
7313 cairo_surface_destroy(sign_surf);
7314 cairo_destroy(bg_cr);
7315 cairo_surface_destroy(bg_surf);
7316 cairo_destroy(cr);
7317
7318 if (!gui.by_signal)
7319 gtk_widget_queue_draw_area(gui.drawarea,
7320 FILL_X(col), FILL_Y(col), width, height);
7321
7322 }
7323# else /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007324 gdk_gc_set_foreground(gui.text_gc, gui.bgcolor);
7325
7326 gdk_draw_rectangle(gui.drawarea->window,
7327 gui.text_gc,
7328 TRUE,
7329 FILL_X(col),
7330 FILL_Y(row),
7331 SIGN_WIDTH,
7332 SIGN_HEIGHT);
7333
Bram Moolenaar071d4272004-06-13 20:20:40 +00007334 gdk_pixbuf_render_to_drawable_alpha(sign,
7335 gui.drawarea->window,
7336 MAX(0, xoffset),
7337 MAX(0, yoffset),
7338 FILL_X(col) - MIN(0, xoffset),
7339 FILL_Y(row) - MIN(0, yoffset),
7340 MIN(width, SIGN_WIDTH),
7341 MIN(height, SIGN_HEIGHT),
7342 GDK_PIXBUF_ALPHA_BILEVEL,
7343 127,
7344 GDK_RGB_DITHER_NORMAL,
7345 0, 0);
Bram Moolenaar98921892016-02-23 17:14:37 +01007346# endif /* !GTK_CHECK_VERSION(3,0,0) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007347 if (need_scale)
7348 g_object_unref(sign);
7349 }
7350}
7351
7352 void *
7353gui_mch_register_sign(char_u *signfile)
7354{
7355 if (signfile[0] != NUL && signfile[0] != '-' && gui.in_use)
7356 {
7357 GdkPixbuf *sign;
7358 GError *error = NULL;
7359 char_u *message;
7360
7361 sign = gdk_pixbuf_new_from_file((const char *)signfile, &error);
7362
7363 if (error == NULL)
7364 return sign;
7365
7366 message = (char_u *)error->message;
7367
7368 if (message != NULL && input_conv.vc_type != CONV_NONE)
7369 message = string_convert(&input_conv, message, NULL);
7370
7371 if (message != NULL)
7372 {
7373 /* The error message is already translated and will be more
7374 * descriptive than anything we could possibly do ourselves. */
7375 EMSG2("E255: %s", message);
7376
7377 if (input_conv.vc_type != CONV_NONE)
7378 vim_free(message);
7379 }
7380 g_error_free(error);
7381 }
7382
7383 return NULL;
7384}
7385
7386 void
7387gui_mch_destroy_sign(void *sign)
7388{
7389 if (sign != NULL)
7390 g_object_unref(sign);
7391}
7392
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393#endif /* FEAT_SIGN_ICONS */